60025.json 314 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808
  1. {
  2. "skeleton": { "hash": "Ur2THs43oaZurHb4DpbOlc7gMTg", "spine": "3.6.53", "width": 440.64, "height": 201, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 124.29, "y": 53.78 },
  6. { "name": "ziti", "parent": "root", "x": 289.64, "y": 16.97 },
  7. { "name": "bone2", "parent": "ziti", "x": -10.26, "y": -2.98 },
  8. { "name": "bone3", "parent": "ziti", "x": -32.44, "y": -3.31 },
  9. { "name": "bone4", "parent": "ziti", "x": -55.61, "y": -2.98 },
  10. { "name": "bone5", "parent": "ziti", "x": 23.17, "y": -0.66 },
  11. { "name": "bone6", "parent": "ziti", "x": 46.01, "y": -1.66 },
  12. { "name": "juese", "parent": "root", "x": -4.61, "y": 68.18 },
  13. { "name": "bone8", "parent": "juese", "length": 11.49, "rotation": 93.65 },
  14. { "name": "bone9", "parent": "bone8", "length": 28.34, "rotation": -6.61, "x": 10.26, "y": -0.17 },
  15. { "name": "bone10", "parent": "bone9", "length": 7.81, "rotation": 1.17, "x": 28.34 },
  16. { "name": "bone11", "parent": "bone10", "length": 57.59, "rotation": 1.3, "x": 7.81 },
  17. { "name": "bone12", "parent": "bone11", "length": 9.38, "rotation": -0.6, "x": 18.53, "y": 16.99 },
  18. { "name": "bone13", "parent": "bone11", "length": 10.63, "rotation": 2.39, "x": 18.41, "y": -11.68 },
  19. { "name": "bone14", "parent": "bone11", "x": 31.74, "y": 3.83 },
  20. { "name": "bone15", "parent": "bone11", "x": 3.06, "y": 3.94 },
  21. { "name": "bone16", "parent": "bone9", "length": 25.78, "rotation": 150.58, "x": 23.97, "y": 6.28, "color": "ae8a27ff" },
  22. { "name": "bone17", "parent": "bone16", "length": 21.56, "rotation": -9.29, "x": 25.78, "color": "ae8a27ff" },
  23. { "name": "bone18", "parent": "bone17", "length": 11.97, "rotation": -9.93, "x": 21.56, "color": "ae8a27ff" },
  24. { "name": "bone19", "parent": "bone9", "length": 27.79, "rotation": -139.8, "x": 21.95, "y": -16.33, "color": "1f429eff" },
  25. { "name": "bone20", "parent": "bone19", "length": 20.96, "rotation": 0.22, "x": 27.54, "y": -0.03, "color": "1f429eff" },
  26. { "name": "bone21", "parent": "bone20", "length": 16.45, "rotation": -3.42, "x": 20.96, "color": "1f429eff" },
  27. { "name": "bone22", "parent": "juese", "length": 15.63, "rotation": -103.09, "x": -7.3, "y": -3.63, "color": "50add8ff" },
  28. { "name": "bone23", "parent": "bone22", "length": 13.68, "rotation": 2.65, "x": 15.63, "color": "50add8ff" },
  29. { "name": "bone24", "parent": "bone23", "length": 12.64, "rotation": -0.87, "x": 13.68, "color": "50add8ff" },
  30. { "name": "bone25", "parent": "bone24", "length": 9.86, "rotation": 2.02, "x": 12.64, "color": "50add8ff" },
  31. { "name": "bone26", "parent": "bone25", "length": 6.61, "rotation": 1.6, "x": 9.86, "color": "50add8ff" },
  32. { "name": "bone27", "parent": "juese", "length": 13.23, "rotation": -74.48, "x": 9.34, "y": -2.74, "color": "40e3b4ff" },
  33. { "name": "bone28", "parent": "bone27", "length": 13.16, "rotation": -4.67, "x": 13.27, "y": 0.17, "color": "40e3b4ff" },
  34. { "name": "bone29", "parent": "bone28", "length": 15.31, "rotation": -0.2, "x": 13.36, "y": 0.14, "color": "40e3b4ff" },
  35. { "name": "bone30", "parent": "bone29", "length": 10.8, "rotation": -0.27, "x": 15.31, "color": "40e3b4ff" },
  36. { "name": "bone31", "parent": "bone30", "length": 7.6, "rotation": 1.71, "x": 10.64, "y": 0.13, "color": "40e3b4ff" },
  37. { "name": "bone32", "parent": "juese", "length": 7.08, "rotation": -77.01, "x": 16.6, "y": -3.2, "color": "5180e1ff" },
  38. { "name": "bone33", "parent": "bone32", "length": 8.96, "rotation": 5.44, "x": 7.47, "y": 0.09, "color": "5180e1ff" },
  39. { "name": "bone34", "parent": "bone33", "length": 11.19, "x": 9.35, "y": 0.06, "color": "5180e1ff" },
  40. { "name": "bone35", "parent": "bone34", "length": 10.48, "rotation": 3.37, "x": 11.75, "color": "5180e1ff" },
  41. { "name": "bone36", "parent": "bone35", "length": 9.66, "rotation": 6.64, "x": 11.04, "y": -0.03, "color": "5180e1ff" },
  42. { "name": "bone37", "parent": "juese", "length": 9.18, "rotation": -107.1, "x": -12.85, "y": -3.12, "color": "9f3ee6ff" },
  43. { "name": "bone38", "parent": "bone37", "length": 11.2, "rotation": 1.73, "x": 9.18, "color": "9f3ee6ff" },
  44. { "name": "bone39", "parent": "bone38", "length": 10.29, "rotation": -1.39, "x": 11.46, "y": 0.07, "color": "9f3ee6ff" },
  45. { "name": "bone40", "parent": "bone39", "length": 9.66, "rotation": 1.38, "x": 11.19, "y": -0.15, "color": "9f3ee6ff" },
  46. { "name": "bone41", "parent": "bone40", "length": 9.79, "rotation": 0.21, "x": 9.66, "color": "9f3ee6ff" },
  47. { "name": "bone46", "parent": "juese", "length": 20.39, "rotation": -89.24, "x": 25.52, "y": -21.85, "color": "2ea42fff" },
  48. { "name": "bone47", "parent": "bone46", "length": 20.65, "rotation": -0.76, "x": 20.39, "y": 0.13, "color": "2ea42fff" },
  49. { "name": "bone48", "parent": "bone47", "length": 11.13, "rotation": -75.96, "x": 20.65, "color": "2ea42fff" },
  50. { "name": "bone49", "parent": "juese", "length": 20.26, "rotation": -91.53, "x": -10.26, "y": -22.39, "color": "ed5e13ff" },
  51. { "name": "bone50", "parent": "bone49", "length": 18.63, "rotation": 1.53, "x": 21.47, "y": 0.03, "color": "ed5e13ff" },
  52. { "name": "bone51", "parent": "bone50", "length": 11.39, "rotation": -76.29, "x": 18.63, "color": "ed5e13ff" },
  53. { "name": "bone52", "parent": "bone11", "x": 21.35, "y": 3.6 },
  54. { "name": "bone53", "parent": "bone18", "length": 35.48, "rotation": 108.13, "x": 15.53, "y": -11.96, "color": "ae8a27ff" },
  55. { "name": "bone54", "parent": "bone18", "length": 4.6, "rotation": -112.68, "x": 14.13, "y": 1.62, "color": "ae8a27ff" },
  56. { "name": "bone55", "parent": "bone11", "length": 19.2, "rotation": 179.34, "x": 13.81, "y": -7.16, "color": "71219cff" },
  57. { "name": "bone56", "parent": "bone55", "length": 19.03, "rotation": 4.04, "x": 19.2, "color": "71219cff" },
  58. { "name": "bone57", "parent": "bone56", "length": 16.91, "rotation": -0.29, "x": 19.03, "color": "71219cff" },
  59. { "name": "bone58", "parent": "bone57", "length": 18, "rotation": 4.75, "x": 17.31, "y": 0.17, "color": "71219cff" },
  60. { "name": "bone59", "parent": "bone11", "length": 10.99, "rotation": 172.48, "x": 35.05, "y": 21.91, "color": "b3ee9aff" },
  61. { "name": "bone60", "parent": "bone59", "length": 12.67, "rotation": 1.07, "x": 10.99, "color": "b3ee9aff" },
  62. { "name": "bone61", "parent": "bone60", "length": 13.2, "rotation": -0.47, "x": 12.82, "y": 0.19, "color": "b3ee9aff" },
  63. { "name": "bone62", "parent": "bone61", "length": 12.92, "rotation": 8.15, "x": 13.87, "y": 0.09, "color": "b3ee9aff" },
  64. { "name": "bone63", "parent": "bone62", "length": 13.6, "rotation": -1.47, "x": 13.6, "y": -0.01, "color": "b3ee9aff" },
  65. { "name": "bone64", "parent": "bone11", "length": 13.6, "rotation": -178.8, "x": 33.65, "y": -39.31, "color": "148b23ff" },
  66. { "name": "bone65", "parent": "bone64", "length": 15.47, "rotation": -0.72, "x": 13.6, "color": "148b23ff" },
  67. { "name": "bone66", "parent": "bone65", "length": 15.31, "rotation": -1.91, "x": 16.15, "y": -0.68, "color": "148b23ff" },
  68. { "name": "bone67", "parent": "bone66", "length": 15.96, "rotation": -6.05, "x": 15.31, "color": "148b23ff" },
  69. { "name": "bone68", "parent": "bone67", "length": 16.33, "rotation": -6.51, "x": 15.96, "color": "148b23ff" },
  70. { "name": "bone69", "parent": "bone11", "length": 11.73, "rotation": -161.77, "x": 50.52, "y": -22.72, "color": "416bbfff" },
  71. { "name": "bone70", "parent": "bone69", "length": 12.62, "rotation": -10.28, "x": 11.73, "color": "416bbfff" },
  72. { "name": "bone71", "parent": "bone70", "length": 15.37, "rotation": -10.24, "x": 12.62, "color": "416bbfff" },
  73. { "name": "bone72", "parent": "bone71", "length": 14.9, "rotation": -13.48, "x": 15.51, "y": 0.01, "color": "416bbfff" },
  74. { "name": "bone73", "parent": "bone11", "length": 13.85, "rotation": 161.66, "x": 55.64, "y": 21.28, "color": "be2a2aff" },
  75. { "name": "bone74", "parent": "bone73", "length": 13.61, "rotation": 13.8, "x": 14.75, "y": 0.15, "color": "be2a2aff" },
  76. { "name": "bone75", "parent": "bone74", "length": 14.3, "rotation": 5.62, "x": 13.61, "color": "be2a2aff" },
  77. { "name": "bone76", "parent": "bone75", "length": 12.69, "rotation": 12.3, "x": 14.3, "color": "be2a2aff" },
  78. { "name": "bone77", "parent": "bone76", "length": 10.32, "rotation": 4.76, "x": 12.69, "color": "be2a2aff" },
  79. { "name": "bone78", "parent": "bone9", "length": 23, "rotation": -135.36, "x": 79.89, "y": -335.35, "color": "d0d635ff" },
  80. { "name": "bone79", "parent": "bone78", "length": 29.97, "rotation": -167.96, "x": 26.33, "y": -2.43, "color": "d0d635ff" },
  81. { "name": "bone80", "parent": "bone79", "length": 16.91, "rotation": -6.87, "x": 29.97, "color": "d0d635ff" },
  82. { "name": "bone81", "parent": "bone9", "length": 29.65, "rotation": 140.42, "x": 87.49, "y": -282.14, "color": "4693c3ff" },
  83. { "name": "bone82", "parent": "bone81", "length": 24.01, "rotation": 127.01, "x": 32.85, "y": -1.59, "color": "4693c3ff" },
  84. { "name": "bone83", "parent": "bone82", "length": 15.5, "rotation": -0.18, "x": 24.01, "color": "4693c3ff" },
  85. { "name": "bone84", "parent": "bone53", "length": 5.93, "rotation": -106.03, "x": -10.95, "y": -5.63, "color": "1ba636ff" },
  86. { "name": "bone85", "parent": "bone84", "length": 5.07, "rotation": 0.12, "x": 5.93, "color": "1ba636ff" },
  87. { "name": "bone86", "parent": "bone85", "length": 5.06, "rotation": 7.04, "x": 5.07, "color": "1ba636ff" },
  88. { "name": "bone87", "parent": "bone53", "length": 4.51, "rotation": -101.52, "x": -9.88, "y": -6.01, "color": "226bccff" },
  89. { "name": "bone88", "parent": "bone87", "length": 5.23, "rotation": 4.27, "x": 4.59, "y": 0.08, "color": "226bccff" },
  90. { "name": "bone89", "parent": "bone88", "length": 4.88, "rotation": 4.89, "x": 5.23, "color": "226bccff" },
  91. { "name": "jian", "parent": "bone", "length": 35.48, "rotation": -33.48, "x": 9.52, "y": -6.09, "color": "ae8a27ff" },
  92. { "name": "bone91", "parent": "jian", "length": 5.93, "rotation": -106.03, "x": -25.07, "y": -6.51, "color": "1ba636ff" },
  93. { "name": "bone92", "parent": "bone91", "length": 5.07, "rotation": 0.12, "x": 5.93, "color": "1ba636ff" },
  94. { "name": "bone93", "parent": "bone92", "length": 5.06, "rotation": 7.04, "x": 5.07, "color": "1ba636ff" },
  95. { "name": "bone94", "parent": "jian", "length": 4.51, "rotation": -101.52, "x": -24, "y": -6.89, "color": "226bccff" },
  96. { "name": "bone95", "parent": "bone94", "length": 5.23, "rotation": 4.27, "x": 4.59, "y": 0.08, "color": "226bccff" },
  97. { "name": "bone96", "parent": "bone95", "length": 4.88, "rotation": 4.89, "x": 5.23, "color": "226bccff" }
  98. ],
  99. "slots": [
  100. { "name": "toufa7", "bone": "bone55", "attachment": "toufa7" },
  101. { "name": "zuoshou", "bone": "bone16", "attachment": "zuoshou" },
  102. { "name": "jian", "bone": "bone53", "attachment": "jian" },
  103. { "name": "jian2", "bone": "jian", "attachment": "jian" },
  104. { "name": "xian1", "bone": "bone84", "attachment": "xian1" },
  105. { "name": "xian3", "bone": "bone91", "attachment": "xian1" },
  106. { "name": "xian2", "bone": "bone87", "attachment": "xian2" },
  107. { "name": "xian4", "bone": "bone94", "attachment": "xian2" },
  108. { "name": "shou", "bone": "bone54", "attachment": "shou" },
  109. { "name": "toufa6", "bone": "bone59", "attachment": "toufa6" },
  110. { "name": "youjiao", "bone": "bone46", "attachment": "youjiao" },
  111. { "name": "zuojiao", "bone": "bone49", "attachment": "zuojiao" },
  112. { "name": "zuoshou 1", "bone": "bone81", "attachment": "zuoshou 1" },
  113. { "name": "qunzi 3", "bone": "bone22", "attachment": "qunzi 3" },
  114. { "name": "shangshen", "bone": "bone8", "attachment": "shangshen" },
  115. { "name": "qunziyou", "bone": "bone32", "attachment": "qunziyou" },
  116. { "name": "qunzi zuo", "bone": "bone37", "attachment": "qunzi zuo" },
  117. { "name": "youshou", "bone": "bone19", "attachment": "youshou" },
  118. { "name": "youshou 1", "bone": "bone78", "attachment": "youshou 1" },
  119. { "name": "youshou2", "bone": "bone79", "attachment": "youshou2" },
  120. { "name": "zuoshou 2", "bone": "bone82", "attachment": "zuoshou 2" },
  121. { "name": "tou", "bone": "bone11", "attachment": "tou" },
  122. { "name": "zuiba", "bone": "bone15", "attachment": "zuiba" },
  123. { "name": "zuoyan", "bone": "bone12", "attachment": "zuoyan" },
  124. { "name": "youyan", "bone": "bone13", "attachment": "youyan" },
  125. { "name": "biyan", "bone": "bone52", "attachment": "biyan" },
  126. { "name": "meimao", "bone": "bone14", "attachment": "meimao" },
  127. { "name": "toufa4", "bone": "bone64", "attachment": "toufa4" },
  128. { "name": "erduo", "bone": "bone11", "attachment": "erduo" },
  129. { "name": "toufa3", "bone": "bone11", "attachment": "toufa3" },
  130. { "name": "toufa2", "bone": "bone69", "attachment": "toufa2" },
  131. { "name": "toufa1", "bone": "bone73", "attachment": "toufa1" },
  132. { "name": "5", "bone": "bone6" },
  133. { "name": "4", "bone": "bone5" },
  134. { "name": "3", "bone": "bone2" },
  135. { "name": "2", "bone": "bone3" },
  136. { "name": "1", "bone": "bone4" },
  137. { "name": "meimao 2", "bone": "bone14" },
  138. { "name": "zuiba 2", "bone": "bone15" }
  139. ],
  140. "skins": {
  141. "default": {
  142. "1": {
  143. "1": { "x": -1.42, "y": 0.37, "width": 30, "height": 28 }
  144. },
  145. "2": {
  146. "2": { "x": 2.41, "y": 1.2, "width": 28, "height": 29 }
  147. },
  148. "3": {
  149. "3": { "x": 6.23, "y": 1.37, "width": 30, "height": 28 }
  150. },
  151. "4": {
  152. "4": { "x": -0.2, "y": -1.45, "width": 30, "height": 29 }
  153. },
  154. "5": {
  155. "5": { "x": -3.54, "y": 0.04, "width": 19, "height": 26 }
  156. },
  157. "biyan": {
  158. "biyan": { "x": -0.41, "y": -1.8, "rotation": -89.51, "width": 46, "height": 7 }
  159. },
  160. "erduo": {
  161. "erduo": { "x": 20.25, "y": -33.71, "rotation": -89.51, "width": 17, "height": 21 }
  162. },
  163. "jian": {
  164. "jian": { "x": 17.53, "y": 1.17, "rotation": 91.4, "width": 17, "height": 89 }
  165. },
  166. "jian2": {
  167. "jian": {
  168. "type": "mesh",
  169. "uvs": [ 1, 0.78865, 1, 1, 0, 1, 0, 0.791, 0, 0, 1, 0 ],
  170. "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 1, 3, 0 ],
  171. "vertices": [ 28.89, 9.41, 47.69, 9.87, 48.11, -7.12, 29.51, -7.58, -40.87, -9.29, -41.28, 7.7 ],
  172. "hull": 6,
  173. "edges": [ 2, 4, 8, 10, 4, 6, 6, 8, 2, 0, 0, 10, 6, 0 ],
  174. "width": 17,
  175. "height": 89
  176. }
  177. },
  178. "meimao": {
  179. "meimao": { "x": 2.22, "y": -2.92, "rotation": -89.51, "width": 54, "height": 9 }
  180. },
  181. "meimao 2": {
  182. "meimao 2": { "x": 0.72, "y": -1.63, "rotation": -89.51, "width": 54, "height": 9 }
  183. },
  184. "qunzi 3": {
  185. "qunzi 3": {
  186. "type": "mesh",
  187. "uvs": [ 0.77148, 0.14174, 0.80645, 0.28179, 0.83178, 0.38905, 0.86191, 0.51667, 0.90621, 0.70424, 0.93533, 0.85487, 0.96339, 1, 0.77771, 0.99999, 0.60324, 1, 0.45164, 1, 0.2839, 0.99999, 0.11629, 1, 0, 1, 0, 0.86126, 0, 0.73814, 0.0432, 0.55375, 0.07641, 0.41196, 0.10078, 0.30794, 0.17334, 0.16907, 0.26167, 0, 0.32176, 0, 0.37136, 0, 0.44001, 0, 0.49938, 0, 0.55438, 0, 0.70558, 0, 0.13336, 0.75662, 0.44877, 0.75335, 0.73537, 0.72955, 0.11463, 0.88753, 0.45056, 0.90759, 0.75968, 0.89075, 0.18007, 0.56779, 0.44675, 0.58001, 0.70704, 0.55002, 0.21309, 0.44276, 0.44517, 0.44369, 0.67399, 0.4251, 0.25554, 0.32228, 0.44379, 0.325, 0.64459, 0.31551, 0.2868, 0.17016, 0.44198, 0.16931, 0.60513, 0.16463, 0.35695, 0.16978, 0.34444, 0.32357, 0.33024, 0.44319, 0.30767, 0.57719, 0.28975, 0.75006, 0.27976, 0.89658, 0.51151, 0.16865, 0.52893, 0.32041, 0.5392, 0.438, 0.56201, 0.57416, 0.59206, 0.74509, 0.60077, 0.89808 ],
  188. "triangles": [ 52, 39, 51, 51, 43, 40, 36, 45, 39, 52, 36, 39, 39, 50, 51, 39, 42, 50, 51, 50, 43, 40, 43, 0, 42, 23, 50, 42, 22, 23, 50, 24, 43, 50, 23, 24, 43, 25, 0, 43, 24, 25, 53, 37, 34, 34, 37, 2, 27, 33, 53, 33, 52, 53, 33, 36, 52, 53, 52, 37, 52, 40, 37, 52, 51, 40, 37, 1, 2, 37, 40, 1, 40, 0, 1, 28, 54, 34, 54, 53, 34, 28, 3, 4, 28, 34, 3, 34, 2, 3, 8, 55, 31, 55, 28, 31, 8, 30, 55, 10, 30, 9, 8, 9, 30, 30, 49, 27, 30, 27, 55, 27, 54, 55, 55, 54, 28, 27, 53, 54, 7, 5, 6, 8, 31, 7, 7, 31, 5, 5, 28, 4, 5, 31, 28, 12, 29, 11, 11, 49, 10, 11, 29, 49, 12, 13, 29, 10, 49, 30, 29, 26, 49, 49, 48, 27, 49, 26, 48, 29, 13, 26, 13, 14, 26, 14, 15, 26, 26, 32, 48, 26, 15, 32, 27, 47, 33, 27, 48, 47, 48, 32, 47, 15, 16, 32, 32, 35, 47, 47, 46, 33, 46, 36, 33, 47, 35, 46, 32, 16, 35, 36, 46, 45, 35, 38, 46, 16, 17, 35, 44, 42, 39, 21, 22, 42, 46, 38, 45, 35, 17, 38, 45, 44, 39, 38, 41, 45, 45, 41, 44, 17, 18, 38, 38, 18, 41, 18, 19, 41, 41, 20, 44, 41, 19, 20, 44, 21, 42, 44, 20, 21 ],
  189. "vertices": [ 3, 30, -23.56, 12.61, 0.00118, 29, -10.15, 12.83, 0.31483, 28, 4.2, 13.78, 0.68399, 3, 30, -13.51, 13.03, 0.0775, 29, -0.1, 13.21, 0.78741, 28, 14.25, 13.35, 0.13509, 4, 32, -31.44, 13.97, 2.7E-4, 30, -5.82, 13.25, 0.35203, 29, 7.59, 13.42, 0.6463, 28, 21.93, 12.92, 0.0014, 4, 32, -22.29, 14.01, 0.02829, 31, -12.05, 13.47, 0.00281, 30, 3.32, 13.53, 0.83582, 29, 16.73, 13.66, 0.13308, 3, 32, -8.85, 14.07, 0.41874, 31, 1.38, 13.93, 0.14627, 30, 16.75, 13.93, 0.43499, 3, 32, 1.86, 13.71, 0.94694, 31, 12.09, 13.89, 0.01705, 30, 27.47, 13.84, 0.03601, 1, 32, 12.17, 13.37, 1, 1, 32, 9.64, 1.57, 1, 6, 25, 25.15, 31.67, 0.01079, 26, 13.62, 31.21, 0.04303, 27, 4.63, 31.09, 0.06724, 32, 7.27, -9.52, 0.24155, 31, 18.19, -9.17, 0.63535, 29, 46.79, -9.23, 0.00205, 7, 25, 27.09, 22.01, 0.02908, 26, 15.22, 21.48, 0.13135, 27, 5.95, 21.33, 0.2388, 32, 5.2, -19.16, 0.01255, 31, 16.42, -18.86, 0.57732, 30, 31.63, -18.94, 0.002, 29, 44.93, -18.91, 0.0089, 6, 25, 29.22, 11.32, 0.00914, 26, 16.98, 10.72, 0.13938, 27, 7.41, 10.52, 0.62823, 31, 14.45, -29.59, 0.21863, 30, 29.62, -29.65, 4.8E-4, 29, 42.88, -29.61, 0.00413, 2, 27, 8.87, -0.27, 0.99947, 31, 12.48, -40.3, 5.3E-4, 1, 27, 9.88, -7.76, 1, 3, 25, 23.32, -8.68, 0.01605, 26, 10.37, -9.05, 0.45222, 27, 0.25, -9.07, 0.53173, 3, 25, 14.87, -10.37, 0.34998, 26, 1.87, -10.45, 0.62131, 27, -8.29, -10.22, 0.02871, 3, 24, 15.18, -10.18, 0.35695, 25, 1.66, -10.15, 0.62612, 26, -11.32, -9.76, 0.01693, 3, 23, 21.11, -9.61, 0.09314, 24, 5.03, -9.85, 0.87262, 25, -8.5, -9.98, 0.03425, 2, 23, 13.66, -9.71, 0.6164, 24, -2.42, -9.61, 0.3836, 2, 23, 3.12, -7.32, 0.99982, 24, -12.83, -6.74, 1.8E-4, 2, 23, -9.7, -4.41, 0.93473, 28, -14.23, -15.49, 0.06527, 2, 23, -10.59, -0.61, 0.84702, 28, -13.19, -11.73, 0.15298, 2, 23, -11.32, 2.53, 0.69578, 28, -12.32, -8.62, 0.30422, 2, 23, -12.33, 6.88, 0.42578, 28, -11.13, -4.32, 0.57422, 2, 23, -13.2, 10.64, 0.21136, 28, -10.1, -0.61, 0.78864, 3, 23, -14.01, 14.12, 0.07754, 29, -22.56, 0.84, 0.00244, 28, -9.14, 2.84, 0.92002, 2, 29, -20.7, 10.49, 0.05332, 28, -6.51, 12.31, 0.94668, 2, 25, 14.44, -1.62, 0.1283, 26, 1.74, -1.68, 0.8717, 8, 24, 24.15, 18.28, 0.03355, 25, 10.19, 18.44, 0.18971, 26, -1.79, 18.51, 0.12012, 27, -11.14, 18.83, 0.058, 31, -0.6, -15.93, 0.35664, 30, 14.63, -15.93, 0.12949, 29, 27.94, -15.84, 0.10993, 28, 39.83, -17.89, 0.00255, 3, 32, -9.44, 2.84, 0.09247, 31, 1.12, 2.69, 0.60419, 30, 16.44, 2.69, 0.30334, 2, 26, 10.98, -1.4, 0.11661, 27, 1.08, -1.44, 0.88339, 8, 24, 34.75, 20.35, 6.4E-4, 25, 20.76, 20.67, 0.05464, 26, 8.84, 20.37, 0.14562, 27, -0.45, 20.39, 0.19696, 32, -1.14, -17.87, 0.00407, 31, 10.04, -17.76, 0.56111, 30, 25.26, -17.81, 0.0174, 29, 38.57, -17.76, 0.01957, 1, 32, 1.92, 2.02, 1, 2, 24, 14.54, -1.25, 0.15183, 25, 0.88, -1.24, 0.84817, 9, 23, 27.12, 16.5, 0.00274, 24, 12.24, 15.95, 0.23041, 25, -1.68, 15.93, 0.16109, 26, -13.75, 16.42, 0.01465, 27, -23.14, 17.08, 0.00189, 31, -12.56, -13.87, 0.05395, 30, 2.68, -13.81, 0.09461, 29, 16, -13.68, 0.38165, 28, 28.11, -14.77, 0.05901, 2, 32, -22.12, 3.68, 0.00424, 30, 3.75, 3.2, 0.99576, 1, 24, 5.54, -0.72, 1, 8, 23, 17.85, 14.24, 0.08661, 24, 2.87, 14.12, 0.28856, 25, -11.02, 13.96, 0.02343, 26, -23.15, 14.78, 2.0E-5, 31, -21.96, -12.25, 0.00183, 30, -6.71, -12.15, 1.7E-4, 29, 6.61, -11.99, 0.32694, 28, 18.89, -12.31, 0.27243, 2, 30, -5.24, 2.71, 0.10332, 29, 8.13, 2.87, 0.89668, 3, 23, 12.36, 0.31, 0.99644, 29, -4.06, -22.49, 4.0E-4, 28, 7.4, -21.91, 0.00317, 5, 23, 9.77, 12.27, 0.2932, 24, -5.28, 12.53, 0.10193, 25, -19.15, 12.24, 1.4E-4, 29, -1.57, -10.51, 0.03791, 28, 10.86, -10.18, 0.56683, 2, 30, -13.13, 2.25, 0.00792, 29, 0.24, 2.43, 0.99208, 1, 23, 1.53, -0.12, 1, 3, 23, -0.82, 9.69, 0.4041, 24, -15.98, 10.44, 4.0E-4, 28, 0.32, -7.37, 0.5955, 2, 29, -10.62, 1.91, 0.04716, 28, 2.85, 2.93, 0.95284, 2, 23, 0.47, 4.31, 0.79875, 28, -1.12, -12.71, 0.20125, 4, 23, 11.14, 5.96, 0.6547, 24, -4.21, 6.16, 0.12018, 29, -2.88, -16.83, 0.0196, 28, 9.03, -16.37, 0.20552, 7, 23, 19.5, 6.96, 0.08245, 24, 4.19, 6.77, 0.68473, 25, -9.59, 6.63, 0.01307, 31, -23.35, -19.59, 0.00121, 30, -8.13, -19.48, 4.6E-4, 29, 5.17, -19.32, 0.10605, 28, 16.85, -19.5, 0.11204, 8, 24, 13.68, 7.03, 0.42498, 25, -0.1, 7.03, 0.37963, 26, -12.48, 7.47, 0.00641, 27, -22.13, 8.09, 1.6E-4, 31, -14.38, -22.73, 0.02475, 30, 0.82, -22.66, 0.01891, 29, 14.1, -22.52, 0.11916, 28, 25.5, -23.43, 0.02599, 8, 24, 25.8, 8.07, 0.01203, 25, 11.99, 8.26, 0.42131, 26, -0.35, 8.27, 0.32274, 27, -9.98, 8.56, 0.04694, 31, -2.69, -26.06, 0.12086, 30, 12.49, -26.04, 0.02829, 29, 25.77, -25.95, 0.04694, 28, 36.85, -27.79, 8.9E-4, 6, 25, 22.18, 9.63, 0.03859, 26, 9.88, 9.29, 0.31707, 27, 0.27, 9.29, 0.43739, 31, 7.28, -28.55, 0.1908, 30, 22.45, -28.58, 0.00618, 29, 35.72, -28.52, 0.00998, 3, 23, -1.88, 14.08, 0.11222, 24, -16.84, 14.88, 8.0E-5, 28, 1.49, -3, 0.8877, 5, 23, 8.21, 17.59, 0.08484, 24, -6.6, 17.91, 0.03592, 25, -20.55, 17.6, 2.0E-5, 29, -0.84, -5.01, 0.00348, 28, 12.03, -4.76, 0.87573, 6, 23, 16.07, 20.1, 0.03012, 24, 1.38, 20.06, 0.09329, 25, -12.61, 19.87, 0.01006, 31, -21.25, -6.17, 2.2E-4, 29, 7.37, -5.91, 0.62438, 28, 20.14, -6.32, 0.24193, 9, 23, 25.02, 23.71, 7.3E-4, 24, 10.48, 23.25, 0.07129, 25, -3.55, 23.2, 0.04815, 26, -15.36, 23.75, 0.00558, 27, -24.55, 24.44, 7.3E-4, 31, -11.61, -6.43, 0.02604, 30, 3.67, -6.37, 0.28918, 29, 17.01, -6.25, 0.52978, 28, 29.72, -7.44, 0.02852, 8, 24, 21.89, 27.34, 0.0112, 25, 7.8, 27.46, 0.047, 26, -3.87, 27.61, 0.02845, 27, -12.96, 27.98, 0.01741, 31, 0.51, -6.67, 0.5475, 30, 15.79, -6.67, 0.29029, 29, 29.13, -6.58, 0.05777, 28, 41.77, -8.76, 3.9E-4, 8, 24, 32.32, 29.83, 1.5E-4, 25, 18.19, 30.11, 0.01897, 26, 6.61, 29.9, 0.04199, 27, -2.42, 29.98, 0.05422, 32, 0.26, -8.18, 0.06585, 31, 11.15, -8.04, 0.80508, 30, 26.42, -8.09, 0.00618, 29, 39.75, -8.04, 0.00755 ],
  190. "hull": 26,
  191. "edges": [ 0, 50, 22, 24, 38, 40, 48, 50, 12, 14, 28, 52, 56, 8, 24, 26, 26, 28, 22, 58, 58, 52, 26, 58, 18, 60, 60, 54, 14, 62, 62, 56, 8, 10, 10, 12, 62, 10, 28, 30, 64, 52, 30, 64, 66, 54, 68, 56, 6, 8, 68, 6, 30, 32, 32, 34, 70, 64, 32, 70, 72, 66, 74, 68, 4, 6, 74, 4, 76, 70, 34, 76, 78, 72, 80, 74, 0, 2, 2, 4, 80, 2, 34, 36, 36, 38, 40, 82, 82, 76, 36, 82, 44, 84, 84, 78, 48, 86, 86, 80, 86, 0, 40, 42, 42, 44, 82, 88, 88, 84, 42, 88, 76, 90, 90, 78, 88, 90, 70, 92, 92, 72, 90, 92, 64, 94, 94, 66, 92, 94, 52, 96, 96, 54, 94, 96, 58, 98, 98, 60, 96, 98, 18, 20, 20, 22, 98, 20, 44, 46, 46, 48, 84, 100, 100, 86, 46, 100, 78, 102, 102, 80, 100, 102, 72, 104, 104, 74, 102, 104, 66, 106, 106, 68, 104, 106, 54, 108, 108, 56, 106, 108, 60, 110, 110, 62, 108, 110, 14, 16, 16, 18, 110, 16 ],
  192. "width": 65,
  193. "height": 70
  194. }
  195. },
  196. "qunzi zuo": {
  197. "qunzi zuo": {
  198. "type": "mesh",
  199. "uvs": [ 1, 0.23573, 0.9369, 0.36089, 0.88664, 0.46056, 0.8365, 0.56, 0.78607, 0.66002, 0.74491, 0.74165, 0.7103, 0.81029, 0.64915, 0.93156, 0.61464, 1, 0.12301, 1, 0, 1, 0, 0.84001, 0, 0.72704, 0.07473, 0.65904, 0.16106, 0.58049, 0.27172, 0.47979, 0.36645, 0.3936, 0.46746, 0.30168, 0.57646, 0.2025, 0.79901, 0, 1, 0, 0.74228, 0.22498, 0.61464, 0.4258, 0.45392, 0.61766, 0.3121, 0.78083, 0.22798, 0.87834, 0.38842, 0.69302, 0.5328, 0.52351, 0.67269, 0.33448 ],
  200. "triangles": [ 9, 25, 8, 8, 25, 7, 25, 9, 11, 9, 10, 11, 25, 24, 7, 7, 24, 6, 24, 25, 12, 25, 11, 12, 24, 26, 6, 6, 26, 5, 12, 13, 24, 24, 13, 26, 26, 23, 5, 5, 23, 4, 13, 14, 26, 26, 14, 23, 14, 15, 23, 23, 27, 4, 4, 27, 3, 23, 15, 27, 27, 22, 3, 3, 22, 2, 15, 16, 27, 27, 16, 22, 22, 28, 2, 2, 28, 1, 16, 17, 22, 22, 17, 28, 28, 21, 1, 17, 18, 28, 1, 21, 0, 28, 18, 21, 21, 20, 0, 21, 19, 20, 21, 18, 19 ],
  201. "vertices": [ 3, 38, 7.33, 5.87, 0.63079, 39, -1.67, 5.92, 0.36327, 40, -13.27, 5.53, 0.00593, 3, 38, 14.68, 6.67, 0.00911, 39, 5.69, 6.5, 0.69776, 40, -5.92, 6.29, 0.29313, 2, 39, 11.56, 6.97, 0.07841, 40, -0.07, 6.9, 0.92159, 2, 40, 5.77, 7.51, 0.97205, 41, -5.23, 7.79, 0.02795, 3, 40, 11.65, 8.12, 0.56706, 41, 0.66, 8.26, 0.42431, 42, -8.97, 8.29, 0.00863, 3, 40, 16.44, 8.62, 0.16968, 41, 5.47, 8.64, 0.67361, 42, -4.16, 8.66, 0.15671, 3, 40, 20.47, 9.04, 0.03587, 41, 9.51, 8.97, 0.45477, 42, -0.12, 8.97, 0.50937, 2, 41, 16.64, 9.54, 0.03841, 42, 7.02, 9.51, 0.96159, 2, 41, 20.67, 9.86, 9.7E-4, 42, 11.05, 9.82, 0.99903, 1, 42, 13.88, -0.62, 1, 1, 42, 14.59, -3.23, 1, 2, 41, 15.32, -5.64, 0.04136, 42, 5.63, -5.66, 0.95864, 2, 41, 9, -7.38, 0.61996, 42, -0.69, -7.38, 0.38004, 3, 40, 16.11, -6.88, 0.01138, 41, 4.76, -6.84, 0.92185, 42, -4.93, -6.82, 0.06677, 2, 40, 11.2, -6.38, 0.33168, 41, -0.14, -6.22, 0.66832, 3, 39, 16.22, -5.78, 0.04821, 40, 4.9, -5.73, 0.90342, 41, -6.41, -5.42, 0.04836, 2, 39, 10.85, -5.09, 0.69766, 40, -0.48, -5.18, 0.30234, 2, 38, 14.43, -4.21, 0.00338, 39, 5.12, -4.36, 0.99662, 2, 38, 8.23, -3.61, 0.73993, 39, -1.06, -3.58, 0.26007, 1, 38, -4.44, -2.38, 1, 1, 38, -5.74, 1.84, 1, 2, 38, 8.4, 0.26, 0.99989, 40, -12.23, -0.08, 1.1E-4, 1, 40, -0.27, 0.59, 1, 2, 40, 11.4, 0.41, 0.12894, 41, 0.23, 0.56, 0.87106, 3, 40, 21.37, 0.16, 1.0E-5, 41, 10.19, 0.07, 0.04722, 42, 0.52, 0.07, 0.95277, 1, 42, 6.47, -0.24, 1, 2, 40, 16, 0.3, 0.00341, 41, 4.83, 0.33, 0.99659, 1, 40, 5.67, 0.5, 1, 2, 39, 5.76, 0.49, 0.98611, 40, -5.71, 0.28, 0.01389 ],
  202. "hull": 21,
  203. "edges": [ 38, 40, 0, 40, 40, 42, 16, 18, 18, 20, 24, 48, 48, 12, 28, 46, 46, 8, 32, 44, 44, 4, 36, 38, 36, 42, 42, 0, 20, 22, 22, 24, 18, 50, 50, 48, 22, 50, 12, 14, 14, 16, 50, 14, 24, 26, 26, 28, 46, 52, 52, 48, 26, 52, 8, 10, 10, 12, 52, 10, 28, 30, 30, 32, 44, 54, 54, 46, 30, 54, 4, 6, 6, 8, 54, 6, 32, 34, 34, 36, 42, 56, 56, 44, 34, 56, 0, 2, 2, 4, 56, 2 ],
  204. "width": 22,
  205. "height": 58
  206. }
  207. },
  208. "qunziyou": {
  209. "qunziyou": {
  210. "type": "mesh",
  211. "uvs": [ 0.46519, 0.15179, 0.58367, 0.27756, 0.6539, 0.3521, 0.71567, 0.41766, 0.78336, 0.48951, 0.87553, 0.58734, 0.93677, 0.65235, 1, 0.71946, 1, 0.85734, 1, 1, 0.78746, 1, 0.58317, 1, 0.23537, 1, 0.20091, 0.9159, 0.16162, 0.82005, 0.11442, 0.70489, 0.06523, 0.58487, 0.03225, 0.50439, 0, 0.42571, 0, 0.26281, 0, 0, 0.17635, 0, 0.32218, 0, 0.41593, 0.51112, 0.2736, 0.20747, 0.33955, 0.34817, 0.56785, 0.71103, 0.66695, 0.84143, 0.74441, 0.94336, 0.49177, 0.61092, 0.61481, 0.77282, 0.3767, 0.42743 ],
  212. "triangles": [ 26, 4, 5, 30, 26, 5, 30, 5, 6, 14, 29, 26, 27, 30, 6, 27, 6, 7, 27, 7, 8, 13, 14, 26, 13, 26, 30, 28, 27, 8, 12, 13, 30, 12, 30, 27, 11, 12, 27, 11, 27, 28, 10, 28, 8, 11, 28, 10, 10, 8, 9, 29, 3, 4, 15, 23, 29, 26, 29, 4, 14, 15, 29, 25, 0, 1, 31, 25, 1, 31, 1, 2, 17, 18, 25, 17, 25, 31, 23, 31, 2, 23, 2, 3, 16, 17, 31, 16, 31, 23, 29, 23, 3, 15, 16, 23, 24, 22, 0, 19, 21, 24, 25, 24, 0, 18, 19, 24, 18, 24, 25, 24, 21, 22, 19, 20, 21 ],
  213. "vertices": [ 3, 33, 6.17, 8.58, 0.22891, 34, -0.49, 8.57, 0.58897, 35, -9.83, 8.51, 0.18212, 3, 34, 8.02, 10.23, 0.17514, 35, -1.33, 10.17, 0.80687, 36, -12.46, 10.92, 0.01799, 4, 34, 13.06, 11.21, 0.08196, 35, 3.72, 11.16, 0.71216, 36, -7.37, 11.61, 0.20023, 37, -16.94, 13.69, 0.00565, 3, 35, 8.15, 12.02, 0.62887, 36, -2.89, 12.21, 0.36051, 37, -12.43, 13.78, 0.01063, 3, 35, 13.01, 12.97, 0.29175, 36, 2.02, 12.88, 0.61763, 37, -7.47, 13.87, 0.09061, 3, 35, 19.63, 14.26, 0.04303, 36, 8.7, 13.78, 0.52601, 37, -0.73, 13.99, 0.43096, 3, 35, 24.03, 15.12, 0.02186, 36, 13.14, 14.37, 0.32839, 37, 3.75, 14.07, 0.64975, 2, 36, 17.72, 14.99, 0.12436, 37, 8.37, 14.15, 0.87564, 2, 36, 25.4, 11.92, 0.00754, 37, 15.65, 10.21, 0.99246, 1, 37, 23.17, 6.14, 1, 1, 37, 19.53, -0.59, 1, 1, 37, 16.03, -7.06, 1, 2, 36, 23.13, -16.82, 1.0E-5, 37, 10.06, -18.07, 0.99999, 3, 34, 40, -14.95, 4.0E-4, 36, 17.98, -16.09, 0.06587, 37, 5.03, -16.76, 0.93373, 3, 34, 34.09, -14.48, 8.5E-4, 36, 12.12, -15.27, 0.14094, 37, -0.7, -15.26, 0.85821, 4, 34, 27, -13.9, 0.02078, 35, 17.65, -13.96, 0.014, 36, 5.07, -14.28, 0.45903, 37, -7.58, -13.46, 0.50618, 4, 34, 19.61, -13.31, 0.12837, 35, 10.26, -13.36, 0.17769, 36, -2.27, -13.25, 0.52851, 37, -14.76, -11.59, 0.16543, 5, 33, 23.28, -11.37, 0.01543, 34, 14.65, -12.91, 0.34524, 35, 5.31, -12.96, 0.21204, 36, -7.2, -12.56, 0.33923, 37, -19.57, -10.34, 0.08806, 5, 33, 18.42, -11.44, 0.03052, 34, 9.81, -12.52, 0.55724, 35, 0.46, -12.57, 0.24561, 36, -12.01, -11.89, 0.15419, 37, -24.27, -9.11, 0.01243, 4, 33, 8.9, -9.24, 0.45524, 34, 0.54, -9.42, 0.52885, 35, -8.81, -9.48, 0.00674, 36, -21.09, -8.26, 0.00916, 1, 33, -6.47, -5.69, 1, 2, 33, -5.04, 0.49, 0.99835, 34, -12.42, 1.58, 0.00165, 3, 33, -3.86, 5.61, 0.94857, 34, -10.76, 6.56, 0.0508, 35, -20.1, 6.51, 6.3E-4, 4, 34, 19.4, 0.07, 6.0E-5, 35, 10.06, 0.01, 0.99629, 36, -1.69, 0.11, 0.00357, 37, -12.63, 1.62, 9.0E-5, 2, 34, 0.5, 0.97, 0.98673, 35, -8.85, 0.91, 0.01327, 1, 35, -0.09, 0.5, 1, 1, 37, 0.52, 0.71, 1, 1, 37, 9.1, 0.12, 1, 1, 37, 15.8, -0.34, 1, 1, 36, 4.88, 0.42, 1, 1, 37, 4.58, 0.43, 1, 4, 34, 14.19, 0.32, 3.0E-5, 35, 4.85, 0.26, 0.99819, 36, -6.88, 0.67, 0.00174, 37, -17.72, 2.77, 4.0E-5 ],
  214. "hull": 23,
  215. "edges": [ 40, 42, 42, 44, 18, 20, 36, 38, 38, 40, 42, 48, 38, 48, 0, 44, 48, 0, 50, 48, 36, 50, 0, 2, 50, 2, 32, 46, 46, 6, 28, 52, 52, 10, 14, 54, 54, 24, 20, 22, 22, 24, 20, 56, 56, 54, 22, 56, 14, 16, 16, 18, 56, 16, 28, 30, 30, 32, 46, 58, 58, 52, 30, 58, 6, 8, 8, 10, 58, 8, 24, 26, 26, 28, 52, 60, 60, 54, 26, 60, 10, 12, 12, 14, 60, 12, 32, 34, 34, 36, 46, 62, 62, 50, 34, 62, 2, 4, 4, 6, 62, 4 ],
  216. "width": 36,
  217. "height": 60
  218. }
  219. },
  220. "shangshen": {
  221. "shangshen": {
  222. "type": "mesh",
  223. "uvs": [ 0.8312, 0.07379, 0.84408, 0.11645, 0.85899, 0.15298, 1, 0.31856, 1, 0.50897, 0.95146, 0.58799, 0.90949, 0.65633, 0.91226, 0.75447, 0.9062, 0.81115, 0.90538, 0.85816, 0.80849, 1, 0.69142, 1, 0.37465, 0.84952, 0, 1, 0, 0.92668, 0.0422, 0.86182, 0.0722, 0.81571, 0.11526, 0.74952, 0.10043, 0.66594, 0.08745, 0.59282, 0.06706, 0.47798, 0.06935, 0.31241, 0.17332, 0.14976, 0.19664, 0.11329, 0.21635, 0.08478, 0.26906, 0, 0.44351, 0, 0.81078, 0, 0.43381, 0.11966, 0.43136, 0.14997, 0.43762, 0.0857, 0.38224, 0.75585, 0.37812, 0.80674, 0.38985, 0.66206, 0.39592, 0.58708 ],
  224. "triangles": [ 30, 25, 26, 24, 25, 30, 30, 26, 27, 30, 27, 0, 28, 24, 30, 23, 24, 28, 28, 30, 0, 28, 0, 1, 29, 23, 28, 22, 23, 29, 29, 28, 1, 2, 29, 1, 5, 2, 3, 29, 21, 22, 34, 21, 29, 4, 5, 3, 34, 29, 2, 5, 34, 2, 6, 34, 5, 20, 21, 34, 19, 20, 34, 34, 18, 19, 33, 34, 6, 33, 18, 34, 17, 18, 33, 31, 17, 33, 7, 31, 33, 7, 33, 6, 32, 17, 31, 8, 31, 7, 32, 31, 8, 16, 17, 32, 12, 16, 32, 9, 32, 8, 12, 32, 9, 15, 16, 12, 13, 14, 15, 13, 15, 12, 11, 12, 9, 10, 11, 9 ],
  225. "vertices": [ 2, 10, 32.99, -16.98, 0.49627, 11, 4.3, -17.07, 0.50373, 2, 10, 30.42, -17.68, 0.60456, 11, 1.72, -17.72, 0.39544, 2, 10, 28.23, -18.45, 0.70938, 11, -0.49, -18.44, 0.29062, 2, 10, 18.47, -25.16, 0.95633, 11, -10.39, -24.96, 0.04367, 3, 9, 14.11, -26.55, 0.02933, 10, 6.87, -25.76, 0.96909, 11, -22, -25.32, 0.00158, 3, 9, 9.44, -24.11, 0.14261, 10, 1.94, -23.88, 0.85666, 11, -26.88, -23.34, 7.3E-4, 2, 9, 5.4, -22, 0.24056, 10, -2.32, -22.25, 0.75944, 2, 9, -0.59, -21.74, 0.48107, 10, -8.29, -22.68, 0.51893, 2, 9, -4.02, -21.26, 0.59583, 10, -11.75, -22.6, 0.40417, 2, 9, -6.88, -21.04, 0.66632, 10, -14.62, -22.71, 0.33368, 2, 9, -15.24, -16.23, 0.81106, 10, -23.48, -18.9, 0.18894, 2, 9, -14.92, -11.09, 0.83761, 10, -23.75, -13.75, 0.16239, 2, 9, -4.87, 2.23, 0.99757, 10, -15.3, 0.64, 0.00243, 1, 9, -12.98, 19.27, 1, 1, 9, -8.51, 18.98, 1, 1, 9, -4.68, 16.88, 1, 1, 9, -1.96, 15.38, 1, 1, 9, 1.95, 13.23, 1, 2, 9, 7.08, 13.56, 0.99707, 10, -4.74, 13.27, 0.00293, 2, 9, 11.57, 13.85, 0.85161, 10, -0.32, 14.07, 0.14839, 2, 9, 18.61, 14.3, 0.62315, 10, 6.63, 15.33, 0.37685, 3, 9, 28.69, 13.55, 0.20138, 10, 16.73, 15.75, 0.79708, 11, -11.29, 15.98, 0.00154, 3, 9, 38.3, 8.35, 0.02332, 10, 26.87, 11.69, 0.74543, 11, -1.23, 11.72, 0.23125, 3, 9, 40.45, 7.19, 0.01022, 10, 29.14, 10.78, 0.58824, 11, 1.02, 10.76, 0.40154, 3, 9, 42.13, 6.21, 0.00442, 10, 30.93, 10.01, 0.43251, 11, 2.79, 9.95, 0.56307, 2, 10, 36.21, 7.96, 0.10436, 11, 8.03, 7.79, 0.89564, 1, 11, 8.27, 0.12, 1, 2, 10, 37.44, -15.85, 0.39705, 11, 8.77, -16.03, 0.60295, 3, 9, 39.4, -3.2, 2.0E-5, 10, 29.3, 0.34, 0.00473, 11, 0.96, 0.32, 0.99526, 3, 9, 37.56, -2.98, 7.0E-5, 10, 27.44, 0.35, 0.94681, 11, -0.89, 0.37, 0.05312, 2, 10, 31.37, 0.28, 0.00205, 11, 3.04, 0.22, 0.99795, 1, 9, 0.81, 1.54, 1, 1, 9, -2.27, 1.91, 1, 1, 9, 6.5, 0.84, 1, 3, 9, 11.05, 0.28, 0.85359, 10, 0.74, 0.53, 0.13864, 11, -27.59, 1.1, 0.00778 ],
  226. "hull": 28,
  227. "edges": [ 26, 28, 40, 42, 4, 6, 6, 8, 12, 14, 18, 20, 26, 24, 20, 22, 24, 22, 50, 52, 52, 54, 46, 56, 4, 2, 56, 2, 58, 56, 4, 58, 42, 44, 44, 46, 58, 44, 46, 48, 48, 50, 52, 60, 60, 56, 48, 60, 2, 0, 0, 54, 60, 0, 34, 62, 62, 14, 28, 30, 30, 24, 24, 18, 30, 32, 32, 34, 24, 64, 64, 62, 32, 64, 14, 16, 16, 18, 64, 16, 34, 36, 66, 62, 36, 66, 66, 12, 36, 38, 38, 40, 58, 68, 68, 66, 38, 68, 8, 10, 10, 12, 68, 10 ],
  228. "width": 44,
  229. "height": 61
  230. }
  231. },
  232. "shou": {
  233. "shou": { "x": 1.87, "y": -0.09, "rotation": -49.76, "width": 8, "height": 13 }
  234. },
  235. "tou": {
  236. "tou": { "x": 35.02, "y": -7.08, "rotation": -89.51, "width": 74, "height": 87 }
  237. },
  238. "toufa1": {
  239. "toufa1": {
  240. "type": "mesh",
  241. "uvs": [ 0.64973, 0.21269, 0.59074, 0.2985, 0.51674, 0.40615, 0.58887, 0.52685, 0.61062, 0.62177, 0.70392, 0.71914, 0.82968, 0.82731, 1, 0.92202, 1, 1, 0.72797, 1, 0.44632, 1, 0.27421, 0.92605, 0.11452, 0.8139, 0, 0.72252, 0, 0.5779, 0, 0.42025, 0.06494, 0.3109, 0.14121, 0.18246, 0.41503, 0, 0.6732, 0, 1, 0, 0.40721, 0.19657, 0.31332, 0.41219, 0.32897, 0.67416, 0.51674, 0.88978, 0.28938, 0.54338, 0.35687, 0.3092, 0.41461, 0.7862 ],
  242. "triangles": [ 9, 6, 8, 6, 7, 8, 10, 24, 9, 9, 24, 6, 10, 11, 24, 11, 27, 24, 24, 5, 6, 11, 12, 27, 24, 27, 5, 12, 23, 27, 12, 13, 23, 27, 4, 5, 27, 23, 4, 13, 25, 23, 13, 14, 25, 23, 3, 4, 23, 25, 3, 14, 15, 25, 25, 2, 3, 25, 22, 2, 25, 15, 22, 15, 16, 22, 22, 26, 2, 22, 16, 26, 2, 26, 1, 16, 17, 26, 26, 21, 1, 26, 17, 21, 1, 21, 0, 0, 19, 20, 0, 21, 19, 21, 18, 19, 21, 17, 18 ],
  243. "vertices": [ 2, 70, 11.66, 4.22, 0.79085, 71, -2.03, 4.69, 0.20915, 2, 70, 17.34, 5.1, 0.03571, 71, 3.7, 4.19, 0.96429, 2, 71, 10.89, 3.56, 0.91695, 72, -2.36, 3.81, 0.08305, 2, 71, 18.72, 5.48, 0.00257, 72, 5.62, 4.95, 0.99743, 2, 72, 11.89, 5.25, 0.75566, 73, -1.24, 5.65, 0.24434, 3, 72, 18.33, 6.77, 0.04487, 73, 5.38, 5.76, 0.9521, 74, -6.81, 6.35, 0.00303, 2, 73, 12.81, 6.25, 0.40493, 74, 0.64, 6.22, 0.59507, 2, 73, 19.55, 7.68, 0.00145, 74, 7.48, 7.08, 0.99855, 1, 74, 12.38, 5.52, 1, 1, 74, 10.98, 1.12, 1, 1, 74, 9.53, -3.45, 1, 2, 73, 17.06, -4.41, 0.03377, 74, 3.99, -4.75, 0.96623, 2, 73, 9.24, -5.4, 0.95232, 74, -3.89, -5.1, 0.04768, 2, 72, 18.43, -5.19, 0.07734, 73, 2.92, -5.95, 0.92266, 2, 72, 8.88, -5.1, 0.99916, 73, -6.38, -3.82, 8.4E-4, 2, 71, 12.59, -5.11, 0.71265, 72, -1.52, -4.99, 0.28735, 1, 71, 5.3, -4.64, 1, 2, 70, 12.56, -4.61, 0.87645, 71, -3.26, -4.1, 0.12355, 1, 70, -0.34, -4.09, 1, 1, 70, -1.76, 0.07, 1, 1, 70, -3.55, 5.33, 1, 1, 70, 11.98, -0.03, 1, 2, 71, 11.59, 0.15, 0.99853, 72, -2, 0.34, 0.00147, 1, 73, 1.06, 0.21, 1, 2, 73, 15.64, 0.15, 2.6E-4, 74, 2.96, -0.1, 0.99974, 1, 72, 6.66, -0.15, 1, 1, 71, 4.75, 0.29, 1, 1, 73, 8.59, -0.02, 1 ],
  244. "hull": 21,
  245. "edges": [ 40, 0, 16, 14, 12, 14, 36, 34, 22, 20, 36, 38, 38, 40, 38, 42, 16, 18, 18, 20, 48, 18, 34, 42, 42, 0, 30, 44, 44, 4, 26, 46, 46, 8, 22, 48, 48, 12, 26, 28, 28, 30, 44, 50, 50, 46, 28, 50, 4, 6, 6, 8, 50, 6, 30, 32, 32, 34, 42, 52, 52, 44, 32, 52, 0, 2, 2, 4, 52, 2, 22, 24, 24, 26, 46, 54, 54, 48, 24, 54, 8, 10, 10, 12, 54, 10 ],
  246. "width": 17,
  247. "height": 66
  248. }
  249. },
  250. "toufa2": {
  251. "toufa2": {
  252. "type": "mesh",
  253. "uvs": [ 0.90063, 0.17044, 0.94326, 0.27519, 1, 0.4146, 1, 0.53812, 1, 0.67067, 0.93479, 0.79984, 0.87172, 0.92476, 0.75607, 1, 0.49585, 1, 0, 1, 0.21007, 0.91881, 0.42068, 0.83742, 0.50062, 0.74927, 0.6115, 0.627, 0.62999, 0.52473, 0.59994, 0.42181, 0.51286, 0.28263, 0.37442, 0.15654, 0, 0, 0.36285, 0, 0.58837, 0, 0.71559, 0.27168, 0.79472, 0.41523, 0.81207, 0.64173, 0.61321, 0.88074, 0.52602, 0.96934, 0.71381, 0.7785, 0.78887, 0.52888, 0.58596, 0.14924 ],
  254. "triangles": [ 12, 13, 26, 5, 23, 4, 26, 23, 5, 24, 12, 26, 11, 12, 24, 6, 26, 5, 24, 26, 6, 25, 11, 24, 10, 11, 25, 8, 10, 25, 9, 10, 8, 7, 24, 6, 25, 24, 7, 8, 25, 7, 27, 14, 22, 27, 22, 3, 23, 27, 3, 13, 14, 27, 23, 13, 27, 23, 3, 4, 26, 13, 23, 22, 21, 1, 22, 1, 2, 15, 16, 21, 15, 21, 22, 14, 15, 22, 22, 2, 3, 28, 19, 20, 17, 19, 28, 18, 19, 17, 28, 20, 0, 21, 28, 0, 21, 0, 1, 16, 17, 28, 16, 28, 21 ],
  255. "vertices": [ 2, 66, 6.51, 6.26, 0.99545, 67, -6.26, 5.23, 0.00455, 2, 66, 13.49, 5.06, 0.32266, 67, 0.82, 5.29, 0.67734, 2, 67, 10.26, 5.37, 0.88241, 68, -3.28, 4.86, 0.11759, 3, 67, 18.46, 4.29, 0.00559, 68, 4.98, 5.26, 0.99247, 69, -11.47, 2.66, 0.00195, 2, 68, 13.85, 5.7, 0.46222, 69, -2.94, 5.14, 0.53778, 1, 69, 5.79, 6.13, 1, 1, 69, 14.23, 7.08, 1, 1, 69, 19.81, 5.94, 1, 1, 69, 21.49, 0.19, 1, 1, 69, 24.68, -10.76, 1, 1, 69, 18.11, -7.64, 1, 2, 68, 25.66, -7.07, 1.7E-4, 69, 11.51, -4.52, 0.99983, 2, 68, 19.67, -5.52, 0.16811, 69, 5.33, -4.41, 0.83189, 1, 68, 11.36, -3.37, 1, 2, 67, 16.47, -4.03, 0.00862, 68, 4.5, -3.28, 0.99138, 2, 67, 9.54, -3.82, 0.9275, 68, -2.36, -4.3, 0.0725, 2, 66, 10.95, -4.52, 0.59575, 67, 0.03, -4.59, 0.40425, 1, 66, 1.93, -4.98, 1, 1, 66, -10.68, -9.99, 1, 1, 66, -8.14, -2.04, 1, 1, 66, -6.56, 2.9, 1, 2, 66, 11.67, 0.14, 0.55162, 67, -0.09, 0.13, 0.44838, 1, 67, 9.68, 0.68, 1, 2, 68, 12.13, 1.28, 0.94858, 69, -3.59, 0.45, 0.05142, 1, 69, 13.06, 0.54, 1, 1, 69, 19.32, 0.28, 1, 1, 69, 5.84, 0.85, 1, 1, 68, 4.6, 0.38, 1, 1, 66, 2.95, -0.2, 1 ],
  256. "hull": 21,
  257. "edges": [ 36, 34, 40, 0, 12, 14, 36, 38, 38, 40, 42, 44, 14, 16, 16, 18, 22, 48, 48, 12, 16, 50, 50, 48, 14, 50, 18, 20, 20, 22, 50, 20, 8, 10, 10, 12, 46, 52, 52, 48, 10, 52, 22, 24, 24, 26, 52, 24, 8, 46, 46, 26, 30, 44, 44, 4, 4, 6, 6, 8, 44, 54, 54, 46, 6, 54, 26, 28, 28, 30, 54, 28, 30, 32, 32, 34, 32, 42, 0, 2, 2, 4, 42, 2, 38, 56, 56, 42, 0, 56, 56, 34 ],
  258. "width": 23,
  259. "height": 67
  260. }
  261. },
  262. "toufa3": {
  263. "toufa3": {
  264. "type": "mesh",
  265. "uvs": [ 0.90653, 0.12873, 0.87905, 0.26964, 1, 0.54101, 1, 0.88023, 0.74799, 0.87762, 0.71628, 0.64539, 0.53871, 0.50709, 0.37382, 0.51753, 0.17934, 0.51753, 0.06307, 0.80195, 0, 0.79934, 0, 0.45229, 0.12015, 0.22267, 0.3252, 0.06089, 0.55985, 0.06089, 0.66977, 0, 0.80506, 0 ],
  266. "triangles": [ 0, 15, 16, 6, 13, 14, 7, 12, 13, 12, 8, 11, 1, 15, 0, 14, 15, 1, 6, 14, 1, 13, 6, 7, 7, 8, 12, 5, 6, 1, 2, 5, 1, 10, 11, 8, 9, 10, 8, 3, 4, 5, 3, 5, 2 ],
  267. "vertices": [ 78.57, -40.33, 69.53, -38.23, 52.25, -47.94, 30.54, -48.12, 30.53, -28.21, 45.38, -25.58, 54.11, -11.48, 53.33, 1.54, 53.2, 16.91, 34.92, 25.94, 35.04, 30.92, 57.25, 31.11, 72.03, 21.74, 82.52, 5.63, 82.68, -12.9, 86.65, -21.56, 86.74, -32.24 ],
  268. "hull": 17,
  269. "edges": [ 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 32, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22 ],
  270. "width": 79,
  271. "height": 64
  272. }
  273. },
  274. "toufa4": {
  275. "toufa4": {
  276. "type": "mesh",
  277. "uvs": [ 1, 0.24625, 1, 0.34435, 1, 0.41912, 0.94018, 0.5131, 0.88901, 0.59351, 0.83087, 0.68487, 0.77175, 0.77775, 0.66226, 0.83755, 0.52508, 0.91247, 0.3648, 1, 0.16132, 1, 0, 1, 0, 0.85012, 0.0711, 0.78701, 0.1668, 0.70204, 0.17732, 0.64383, 0.19199, 0.5626, 0.20226, 0.50576, 0.21558, 0.43198, 0.17396, 0.34857, 0.13208, 0.26467, 0, 0, 0.65645, 0, 1, 0, 0.60897, 0.43037, 0.50723, 0.74076, 0.31323, 0.88616, 0.56093, 0.57696, 0.62808, 0.25713, 0.58402, 0.5065, 0.61799, 0.34866, 0.53378, 0.65978, 0.40577, 0.8168 ],
  278. "triangles": [ 10, 26, 9, 9, 26, 8, 26, 10, 12, 10, 11, 12, 26, 32, 8, 8, 32, 7, 12, 13, 26, 26, 13, 32, 32, 25, 7, 7, 25, 6, 13, 14, 32, 32, 14, 25, 25, 31, 6, 6, 31, 5, 14, 15, 25, 25, 15, 31, 31, 27, 5, 5, 27, 4, 15, 16, 31, 31, 16, 27, 27, 29, 4, 4, 29, 3, 16, 17, 27, 27, 17, 29, 29, 24, 3, 3, 24, 2, 17, 18, 29, 29, 18, 24, 24, 18, 30, 24, 30, 2, 30, 18, 19, 30, 1, 2, 30, 28, 1, 30, 19, 28, 19, 20, 28, 28, 0, 1, 28, 20, 22, 28, 22, 0, 22, 20, 21, 22, 23, 0 ],
  279. "vertices": [ 2, 61, 12.84, 8.63, 0.54597, 62, -0.86, 8.62, 0.45403, 2, 61, 22.36, 8.51, 0.00786, 62, 8.65, 8.62, 0.99214, 2, 62, 15.9, 8.62, 0.89343, 63, -0.56, 9.28, 0.10657, 3, 62, 25.02, 7.24, 0.15965, 63, 8.6, 8.21, 0.82158, 64, -7.53, 7.46, 0.01876, 3, 62, 32.82, 6.06, 0.00358, 63, 16.44, 7.3, 0.42317, 64, 0.35, 7.37, 0.57325, 3, 63, 25.34, 6.25, 5.0E-4, 64, 9.31, 7.28, 0.98388, 65, -7.43, 6.47, 0.01562, 2, 64, 18.43, 7.18, 0.2808, 65, 1.63, 7.41, 0.7192, 2, 64, 24.52, 5.49, 0.00322, 65, 7.88, 6.42, 0.99678, 1, 65, 15.7, 5.18, 1, 1, 65, 24.84, 3.73, 1, 1, 65, 26.01, -0.8, 1, 1, 65, 26.94, -4.39, 1, 1, 65, 12.86, -8.02, 1, 2, 64, 21.55, -8.66, 0.05072, 65, 6.53, -7.97, 0.94928, 2, 64, 13.08, -7.62, 0.74857, 65, -2, -7.9, 0.25143, 3, 63, 21.86, -8.9, 0.04152, 64, 7.45, -8.16, 0.94725, 65, -7.53, -9.07, 0.01123, 2, 63, 13.97, -8.83, 0.5873, 64, -0.4, -8.92, 0.4127, 2, 63, 8.46, -8.77, 0.94098, 64, -5.89, -9.45, 0.05902, 2, 62, 17.15, -9.43, 0.05345, 63, 1.29, -8.71, 0.94656, 3, 61, 22.53, -10.49, 0.03882, 62, 9.06, -10.38, 0.59655, 63, -6.76, -9.93, 0.36463, 3, 61, 14.38, -11.36, 0.45891, 62, 0.92, -11.35, 0.48826, 63, -14.86, -11.17, 0.05283, 1, 61, -11.33, -14.07, 1, 1, 61, -11.14, 1.02, 1, 1, 61, -11.04, 8.93, 1, 2, 62, 17, -0.38, 0.04917, 63, 0.84, 0.33, 0.95083, 2, 64, 15.71, 0.65, 0.66719, 65, -0.32, 0.62, 0.33281, 1, 65, 14.45, -0.17, 1, 2, 63, 15.08, -0.3, 0.61967, 64, -0.19, -0.32, 0.38033, 2, 61, 13.79, 0.06, 0.40511, 62, 0.19, 0.06, 0.59489, 2, 62, 24.38, -0.95, 9.0E-5, 63, 8.23, 0, 0.9999, 2, 62, 9.07, -0.17, 0.99579, 63, -7.09, 0.27, 0.00421, 1, 64, 7.85, 0.17, 1, 1, 65, 7.4, 0.21, 1 ],
  280. "hull": 24,
  281. "edges": [ 22, 24, 42, 44, 44, 46, 18, 20, 20, 22, 28, 50, 50, 12, 20, 52, 24, 52, 16, 18, 52, 16, 32, 54, 54, 8, 36, 48, 48, 4, 40, 42, 44, 56, 40, 56, 0, 46, 56, 0, 32, 34, 34, 36, 48, 58, 58, 54, 34, 58, 4, 6, 6, 8, 58, 6, 36, 38, 38, 40, 48, 60, 60, 56, 38, 60, 0, 2, 2, 4, 60, 2, 28, 30, 30, 32, 50, 62, 62, 54, 30, 62, 8, 10, 10, 12, 62, 10, 24, 26, 26, 28, 50, 64, 64, 52, 26, 64, 12, 14, 14, 16, 64, 14 ],
  282. "width": 23,
  283. "height": 97
  284. }
  285. },
  286. "toufa6": {
  287. "toufa6": {
  288. "type": "mesh",
  289. "uvs": [ 0.55176, 0.035, 1, 0.08621, 0.85376, 0.25173, 0.71248, 0.41164, 0.61486, 0.52213, 0.6037, 0.64633, 0.63227, 0.75784, 0.64836, 0.87834, 0.70699, 1, 0.33313, 1, 0, 1, 0, 0.87699, 1.0E-5, 0.7475, 1.0E-5, 0.62742, 0, 0.4838, 0, 0.36373, 0, 0.20363, 0, 0, 0.308, 0.38698, 0.19913, 0.63349, 0.2075, 0.75505, 0.41659, 0.23019, 0.23476, 0.49862, 0.27698, 0.8755 ],
  290. "triangles": [ 9, 7, 8, 9, 10, 23, 10, 11, 23, 9, 23, 7, 23, 6, 7, 11, 20, 23, 11, 12, 20, 23, 20, 6, 20, 5, 6, 12, 19, 20, 20, 19, 5, 12, 13, 19, 19, 22, 5, 19, 13, 14, 5, 22, 4, 22, 19, 14, 22, 18, 4, 4, 18, 3, 18, 22, 15, 22, 14, 15, 18, 21, 3, 3, 21, 2, 21, 18, 16, 18, 15, 16, 21, 0, 2, 21, 16, 17, 2, 0, 1, 0, 21, 17 ],
  291. "vertices": [ 1, 56, -3.54, 0.32, 1, 1, 56, -0.53, 7.99, 1, 3, 56, 12.74, 7.49, 0.44051, 57, 1.9, 7.46, 0.52426, 58, -10.98, 7.18, 0.03524, 2, 57, 14.71, 6.74, 0.05743, 58, 1.83, 6.57, 0.94257, 2, 58, 10.69, 6.14, 0.80065, 59, -2.29, 6.44, 0.19935, 3, 58, 20.45, 7.23, 0.00521, 59, 7.52, 6.14, 0.94849, 60, -6.24, 5.99, 0.04631, 2, 59, 16.33, 6.48, 0.18901, 60, 2.56, 6.56, 0.81099, 1, 60, 12.08, 6.93, 1, 1, 60, 21.68, 7.99, 1, 1, 60, 21.75, 2.01, 1, 1, 60, 21.82, -3.32, 1, 1, 60, 12.1, -3.44, 1, 2, 59, 15.38, -3.63, 0.07719, 60, 1.87, -3.57, 0.92281, 1, 59, 5.9, -3.5, 1, 2, 57, 21.74, -3.89, 0.03419, 58, 8.96, -4, 0.96581, 1, 57, 12.33, -5.03, 1, 2, 56, 10.88, -6.56, 0.42098, 57, -0.23, -6.56, 0.57902, 1, 56, -5.05, -8.8, 1, 2, 57, 13.56, 0.08, 0.0569, 58, 0.74, -0.1, 0.9431, 1, 59, 6.42, -0.32, 1, 1, 60, 2.43, -0.24, 1, 2, 57, 1.05, 0.31, 0.99968, 58, -11.77, 0.03, 3.2E-4, 2, 57, 22.45, -0.02, 1.1E-4, 58, 9.63, -0.13, 0.99989, 1, 60, 11.93, 0.99, 1 ],
  292. "hull": 18,
  293. "edges": [ 14, 16, 38, 40, 16, 18, 18, 20, 34, 0, 0, 2, 2, 4, 0, 42, 42, 36, 4, 42, 32, 34, 42, 32, 30, 32, 30, 36, 4, 6, 6, 8, 36, 6, 36, 44, 44, 38, 8, 44, 28, 30, 44, 28, 26, 28, 26, 38, 8, 10, 38, 10, 24, 26, 24, 40, 10, 12, 12, 14, 40, 12, 18, 46, 46, 40, 14, 46, 20, 22, 22, 24, 46, 22 ],
  294. "width": 16,
  295. "height": 79
  296. }
  297. },
  298. "toufa7": {
  299. "toufa7": {
  300. "type": "mesh",
  301. "uvs": [ 0.98349, 0.41298, 0.99214, 0.48506, 1, 0.55066, 1, 0.66198, 1, 0.73191, 1, 0.81798, 0.98788, 0.92363, 0.74319, 1, 0.48881, 1, 0.21156, 1, 0.0643, 0.92571, 0.00778, 0.84498, 0.01332, 0.7347, 0.01679, 0.66544, 0.02096, 0.5824, 0.02521, 0.49774, 0.02867, 0.42886, 0.03984, 0.20638, 0.44136, 0.17752, 0.82554, 0.1499, 0.90544, 0, 0.93398, 0, 0.45997, 0.50012, 0.46429, 0.57489, 0.47333, 0.73164, 0.46931, 0.66199, 0.47923, 0.8339, 0.4846, 0.92703, 0.45528, 0.41866 ],
  302. "triangles": [ 24, 3, 4, 26, 24, 4, 5, 26, 4, 6, 26, 5, 27, 26, 6, 10, 26, 27, 9, 10, 27, 7, 8, 27, 9, 27, 8, 6, 7, 27, 24, 12, 13, 24, 13, 25, 26, 11, 12, 26, 12, 24, 10, 11, 26, 23, 22, 1, 23, 1, 2, 23, 14, 15, 23, 15, 22, 25, 23, 2, 3, 25, 2, 25, 13, 14, 25, 14, 23, 24, 25, 3, 28, 18, 19, 17, 18, 28, 19, 20, 21, 19, 21, 0, 28, 19, 0, 16, 17, 28, 22, 28, 0, 22, 0, 1, 16, 28, 22, 15, 16, 22 ],
  303. "vertices": [ 3, 52, 7.29, 44.91, 0.64718, 53, -8.72, 45.63, 0.22154, 55, -41.38, 48.91, 0.13129, 4, 52, 15.64, 45.78, 0.49714, 53, -0.33, 45.92, 0.29125, 54, -19.6, 45.82, 0, 55, -33, 48.55, 0.21161, 4, 52, 23.23, 46.58, 0.36583, 53, 7.3, 46.18, 0.33027, 54, -11.97, 46.12, 0, 55, -25.37, 48.21, 0.3039, 3, 52, 36.14, 46.84, 0.18127, 53, 20.2, 45.53, 0.31535, 55, -12.56, 46.56, 0.50338, 3, 52, 44.25, 47, 0.10029, 53, 28.3, 45.12, 0.26181, 55, -4.51, 45.52, 0.6379, 3, 52, 54.24, 47.2, 0.03898, 53, 38.27, 44.62, 0.18178, 55, 5.39, 44.24, 0.77923, 3, 52, 66.51, 46.45, 0.0096, 53, 50.46, 43, 0.12027, 55, 17.42, 41.69, 0.87012, 4, 52, 75.77, 26.57, 5.0E-5, 53, 58.29, 22.52, 0.04677, 54, 39.15, 22.72, 1.5E-4, 55, 23.63, 20.66, 0.95303, 3, 53, 57.24, 1.69, 1.2E-4, 54, 38.2, 1.88, 3.1E-4, 55, 20.96, -0.03, 0.99958, 3, 53, 56.1, -21.02, 0.01368, 54, 37.17, -20.83, 0.45566, 55, 18.05, -22.58, 0.53066, 4, 52, 68.26, -29.26, 3.0E-5, 53, 46.88, -32.64, 0.03756, 54, 28.01, -32.5, 0.70988, 55, 7.96, -33.45, 0.25253, 4, 52, 58.99, -34.08, 0.0038, 53, 37.29, -36.8, 0.1079, 54, 18.45, -36.71, 0.81058, 55, -1.92, -36.85, 0.07772, 4, 52, 46.2, -33.89, 0.0434, 53, 24.54, -35.7, 0.2757, 54, 5.69, -35.67, 0.67093, 55, -14.55, -34.76, 0.00996, 4, 52, 38.16, -33.76, 0.11376, 53, 16.53, -35.01, 0.38925, 54, -2.33, -35.02, 0.49676, 55, -22.48, -33.45, 2.3E-4, 3, 52, 28.52, -33.61, 0.27569, 53, 6.93, -34.19, 0.4467, 54, -11.93, -34.25, 0.27762, 3, 52, 18.69, -33.46, 0.51921, 53, -2.86, -33.34, 0.36387, 54, -21.73, -33.45, 0.11692, 3, 52, 10.7, -33.34, 0.72091, 53, -10.83, -32.66, 0.23475, 54, -29.7, -32.81, 0.04434, 2, 52, -15.12, -32.94, 0.98838, 53, -36.56, -30.44, 0.01162, 1, 52, -19.13, -0.09, 1, 3, 52, -22.96, 31.35, 0.97196, 53, -39.85, 34.24, 0.02104, 55, -73.3, 39.97, 0.007, 2, 52, -40.48, 37.55, 0.99999, 53, -56.89, 41.66, 1.0E-5, 1, 52, -40.52, 39.89, 1, 3, 52, 18.26, 2.19, 0.71275, 53, -0.79, 2.25, 0.28359, 55, -36.85, 5.04, 0.00366, 3, 52, 26.92, 2.72, 0.01567, 53, 7.89, 2.17, 0.97713, 55, -28.2, 4.28, 0.0072, 4, 52, 45.09, 3.82, 6.6E-4, 53, 26.09, 1.99, 0.01427, 54, 7.05, 2.02, 0.922, 55, -10.07, 2.69, 0.06307, 4, 52, 37.02, 3.33, 0.00242, 53, 18, 2.07, 0.82954, 54, -1.04, 2.06, 0.14615, 55, -18.13, 3.4, 0.02189, 2, 53, 37.96, 1.87, 0.00241, 55, 1.75, 1.65, 0.99759, 2, 53, 48.77, 1.77, 3.0E-4, 55, 12.53, 0.71, 0.9997, 3, 52, 8.82, 1.61, 0.99432, 53, -10.25, 2.34, 0.00449, 55, -46.27, 5.87, 0.00119 ],
  304. "hull": 22,
  305. "edges": [ 38, 40, 40, 42, 34, 36, 36, 38, 30, 44, 4, 2, 44, 2, 46, 44, 4, 46, 28, 30, 46, 28, 24, 48, 48, 8, 24, 26, 26, 28, 46, 50, 50, 48, 26, 50, 4, 6, 6, 8, 50, 6, 22, 24, 52, 48, 22, 52, 8, 10, 52, 10, 16, 54, 54, 52, 10, 12, 54, 12, 30, 32, 32, 34, 36, 56, 56, 44, 32, 56, 2, 0, 0, 42, 56, 0, 14, 16, 14, 12, 16, 18, 20, 54, 18, 20, 20, 22 ],
  306. "width": 82,
  307. "height": 116
  308. }
  309. },
  310. "xian1": {
  311. "xian1": {
  312. "type": "mesh",
  313. "uvs": [ 1, 0.15016, 0.86453, 0.28666, 0.78703, 0.36475, 0.71842, 0.43388, 0.5978, 0.55542, 0.48707, 0.66699, 0.39907, 0.75566, 0.32271, 0.8326, 0.2419, 0.91402, 0.15657, 1, 0, 0.78015, 0, 0.52682, 0.0439, 0.49177, 0.14995, 0.40711, 0.2476, 0.32916, 0.33751, 0.25738, 0.46661, 0.15431, 0.55572, 0.08317, 0.6599, 0, 1, 0, 0.60041, 0.31174, 0.36805, 0.49301, 0.17396, 0.64444, 0.47303, 0.41112, 0.2654, 0.5731, 0.0929, 0.70768, 0.79336, 0.16121, 0.6956, 0.23748 ],
  314. "triangles": [ 9, 10, 8, 10, 25, 8, 8, 25, 7, 7, 25, 22, 7, 22, 6, 10, 11, 25, 22, 24, 6, 6, 24, 5, 25, 11, 22, 22, 11, 12, 24, 21, 5, 22, 12, 24, 12, 13, 24, 24, 13, 21, 13, 14, 21, 5, 21, 4, 4, 21, 23, 4, 20, 3, 4, 23, 20, 14, 15, 21, 21, 15, 23, 15, 16, 23, 23, 16, 20, 3, 20, 2, 20, 27, 2, 2, 27, 1, 16, 17, 20, 20, 17, 27, 27, 26, 1, 1, 26, 0, 17, 18, 27, 27, 18, 26, 0, 26, 19, 26, 18, 19 ],
  315. "vertices": [ 1, 81, -1.55, 2.63, 1, 2, 81, 1.9, 2.92, 0.99656, 82, -4.02, 2.93, 0.00344, 2, 81, 3.87, 3.08, 0.8892, 82, -2.05, 3.09, 0.1108, 2, 81, 5.62, 3.23, 0.53355, 82, -0.3, 3.23, 0.46645, 3, 81, 8.69, 3.48, 0.02824, 82, 2.77, 3.47, 0.89783, 83, -1.86, 3.73, 0.07393, 2, 82, 5.59, 3.7, 0.38482, 83, 0.97, 3.61, 0.61518, 2, 82, 7.83, 3.88, 0.05603, 83, 3.22, 3.52, 0.94397, 2, 82, 9.78, 4.04, 0.0013, 83, 5.16, 3.43, 0.9987, 1, 83, 7.23, 3.35, 1, 1, 83, 9.41, 3.25, 1, 1, 83, 8.38, -1.5, 1, 2, 82, 10.6, -3.92, 1.0E-4, 83, 5.01, -4.57, 0.9999, 2, 82, 9.59, -3.88, 0.00544, 83, 4.01, -4.41, 0.99456, 2, 82, 7.15, -3.8, 0.14415, 83, 1.6, -4.03, 0.85585, 2, 82, 4.9, -3.72, 0.59317, 83, -0.62, -3.67, 0.40683, 3, 81, 8.77, -3.64, 0.03357, 82, 2.84, -3.65, 0.90118, 83, -2.67, -3.35, 0.06525, 2, 81, 5.8, -3.54, 0.50927, 82, -0.14, -3.54, 0.49073, 2, 81, 3.75, -3.48, 0.90708, 82, -2.19, -3.47, 0.09292, 2, 81, 1.35, -3.4, 0.99973, 82, -4.59, -3.39, 2.7E-4, 1, 81, -3.31, 0.58, 1, 2, 81, 5.81, 0.17, 0.78074, 82, -0.12, 0.17, 0.21926, 2, 82, 5.18, -0.07, 0.25526, 83, 0.1, -0.08, 0.74474, 1, 83, 4.47, -0.83, 1, 1, 82, 2.78, 0.04, 1, 1, 83, 2.41, -0.48, 1, 1, 83, 6.29, -1.14, 1, 1, 81, 1.41, 0.37, 1, 2, 81, 3.64, 0.27, 0.99866, 82, -2.29, 0.27, 0.00134 ],
  316. "hull": 20,
  317. "edges": [ 0, 38, 36, 38, 20, 22, 18, 20, 40, 6, 28, 42, 42, 10, 40, 32, 14, 44, 22, 24, 44, 24, 6, 8, 8, 10, 40, 46, 46, 42, 8, 46, 28, 30, 30, 32, 46, 30, 24, 26, 26, 28, 42, 48, 48, 44, 26, 48, 10, 12, 12, 14, 48, 12, 20, 50, 50, 44, 22, 50, 14, 16, 16, 18, 50, 16, 38, 52, 36, 52, 0, 2, 52, 2, 32, 34, 34, 36, 40, 54, 54, 52, 34, 54, 2, 4, 4, 6, 54, 4 ],
  318. "width": 18,
  319. "height": 18
  320. }
  321. },
  322. "xian2": {
  323. "xian2": {
  324. "type": "mesh",
  325. "uvs": [ 0.93706, 0.12699, 1, 0.15992, 0.76873, 0.44534, 0.66607, 0.57204, 0.5626, 0.69973, 0.4426, 0.84782, 0.37366, 0.93291, 0.3193, 1, 0.13072, 0.94352, 0, 0.81992, 0.09477, 0.73587, 0.2143, 0.62988, 0.33955, 0.5188, 0.44729, 0.42325, 0.56063, 0.31617, 0.82367, 0.06766, 0.68245, 0.38363, 0.45371, 0.61419, 0.56207, 0.50497, 0.33192, 0.73696, 0.2299, 0.83978 ],
  326. "triangles": [ 8, 20, 7, 7, 20, 6, 9, 10, 8, 8, 10, 20, 5, 6, 19, 6, 20, 19, 5, 17, 4, 5, 19, 17, 10, 11, 20, 20, 11, 19, 19, 12, 17, 19, 11, 12, 17, 18, 4, 4, 18, 3, 12, 13, 17, 17, 13, 18, 3, 16, 2, 3, 18, 16, 13, 14, 18, 18, 14, 16, 2, 16, 0, 2, 0, 1, 16, 15, 0, 16, 14, 15 ],
  327. "vertices": [ 1, 84, -1.37, -0.43, 1, 1, 84, -1.62, 0.65, 1, 2, 84, 4.47, 1.83, 0.23335, 85, 0.01, 1.76, 0.76665, 2, 85, 2.74, 2.08, 0.99131, 86, -2.3, 2.29, 0.00869, 2, 85, 5.5, 2.41, 0.35609, 86, 0.48, 2.37, 0.64391, 1, 86, 3.69, 2.48, 1, 1, 86, 5.54, 2.53, 1, 1, 86, 6.99, 2.58, 1, 1, 86, 7.83, -0.31, 1, 1, 86, 7.17, -3.2, 1, 1, 86, 5.11, -2.93, 1, 2, 85, 7.95, -2.37, 0.00225, 86, 2.52, -2.6, 0.99775, 3, 84, 9.95, -1.78, 6.0E-4, 85, 5.21, -2.25, 0.52253, 86, -0.21, -2.25, 0.47687, 3, 84, 7.6, -1.86, 0.10386, 85, 2.85, -2.15, 0.89179, 86, -2.55, -1.94, 0.00435, 2, 84, 5.03, -2.02, 0.87292, 85, 0.28, -2.12, 0.12708, 1, 84, -0.92, -2.39, 1, 1, 85, 0.01, 0.06, 1, 2, 85, 5.4, 0.16, 0.09555, 86, 0.18, 0.15, 0.90445, 1, 85, 2.85, 0.11, 1, 1, 86, 3.04, -0.04, 1, 1, 86, 5.44, -0.2, 1 ],
  328. "hull": 16,
  329. "edges": [ 2, 0, 0, 30, 14, 16, 16, 18, 2, 4, 0, 32, 4, 32, 26, 28, 28, 30, 32, 28, 24, 26, 24, 34, 34, 8, 32, 36, 36, 34, 26, 36, 4, 6, 6, 8, 36, 6, 22, 24, 38, 34, 22, 38, 8, 10, 38, 10, 18, 20, 20, 22, 16, 40, 40, 38, 20, 40, 10, 12, 12, 14, 40, 12 ],
  330. "width": 15,
  331. "height": 18
  332. }
  333. },
  334. "xian3": {
  335. "xian1": {
  336. "type": "mesh",
  337. "uvs": [ 1, 0.15016, 0.86453, 0.28666, 0.78703, 0.36475, 0.71842, 0.43388, 0.5978, 0.55542, 0.48707, 0.66699, 0.39907, 0.75566, 0.32271, 0.8326, 0.2419, 0.91402, 0.15657, 1, 0, 0.78015, 0, 0.52682, 0.0439, 0.49177, 0.14995, 0.40711, 0.2476, 0.32916, 0.33751, 0.25738, 0.46661, 0.15431, 0.55572, 0.08317, 0.6599, 0, 1, 0, 0.60041, 0.31174, 0.36805, 0.49301, 0.17396, 0.64444, 0.47303, 0.41112, 0.2654, 0.5731, 0.0929, 0.70768, 0.79336, 0.16121, 0.6956, 0.23748 ],
  338. "triangles": [ 9, 10, 8, 10, 25, 8, 8, 25, 7, 7, 25, 22, 7, 22, 6, 10, 11, 25, 22, 24, 6, 6, 24, 5, 25, 11, 22, 22, 11, 12, 24, 21, 5, 22, 12, 24, 12, 13, 24, 24, 13, 21, 13, 14, 21, 5, 21, 4, 4, 21, 23, 4, 20, 3, 4, 23, 20, 14, 15, 21, 21, 15, 23, 15, 16, 23, 23, 16, 20, 3, 20, 2, 20, 27, 2, 2, 27, 1, 16, 17, 20, 20, 17, 27, 27, 26, 1, 1, 26, 0, 17, 18, 27, 27, 18, 26, 0, 26, 19, 26, 18, 19 ],
  339. "vertices": [ 1, 88, -1.55, 2.63, 1, 2, 88, 1.9, 2.92, 0.99656, 89, -4.02, 2.93, 0.00344, 2, 88, 3.87, 3.08, 0.8892, 89, -2.05, 3.09, 0.1108, 2, 88, 5.62, 3.23, 0.53355, 89, -0.3, 3.23, 0.46645, 3, 88, 8.69, 3.48, 0.02824, 89, 2.77, 3.47, 0.89783, 90, -1.86, 3.73, 0.07393, 2, 89, 5.59, 3.7, 0.38482, 90, 0.97, 3.61, 0.61518, 2, 89, 7.83, 3.88, 0.05603, 90, 3.22, 3.52, 0.94397, 2, 89, 9.78, 4.04, 0.0013, 90, 5.16, 3.43, 0.9987, 1, 90, 7.23, 3.35, 1, 1, 90, 9.41, 3.25, 1, 1, 90, 8.38, -1.5, 1, 2, 89, 10.6, -3.92, 1.0E-4, 90, 5.01, -4.57, 0.9999, 2, 89, 9.59, -3.88, 0.00544, 90, 4.01, -4.41, 0.99456, 2, 89, 7.15, -3.8, 0.14415, 90, 1.6, -4.03, 0.85585, 2, 89, 4.9, -3.72, 0.59317, 90, -0.62, -3.67, 0.40683, 3, 88, 8.77, -3.64, 0.03357, 89, 2.84, -3.65, 0.90118, 90, -2.67, -3.35, 0.06525, 2, 88, 5.8, -3.54, 0.50927, 89, -0.14, -3.54, 0.49073, 2, 88, 3.75, -3.48, 0.90708, 89, -2.19, -3.47, 0.09292, 2, 88, 1.35, -3.4, 0.99973, 89, -4.59, -3.39, 2.7E-4, 1, 88, -3.31, 0.58, 1, 2, 88, 5.81, 0.17, 0.78074, 89, -0.12, 0.17, 0.21926, 2, 89, 5.18, -0.07, 0.25526, 90, 0.1, -0.08, 0.74474, 1, 90, 4.47, -0.83, 1, 1, 89, 2.78, 0.04, 1, 1, 90, 2.41, -0.48, 1, 1, 90, 6.29, -1.14, 1, 1, 88, 1.41, 0.37, 1, 2, 88, 3.64, 0.27, 0.99866, 89, -2.29, 0.27, 0.00134 ],
  340. "hull": 20,
  341. "edges": [ 0, 38, 36, 38, 20, 22, 18, 20, 40, 6, 28, 42, 42, 10, 40, 32, 14, 44, 22, 24, 44, 24, 6, 8, 8, 10, 40, 46, 46, 42, 8, 46, 28, 30, 30, 32, 46, 30, 24, 26, 26, 28, 42, 48, 48, 44, 26, 48, 10, 12, 12, 14, 48, 12, 20, 50, 50, 44, 22, 50, 14, 16, 16, 18, 50, 16, 38, 52, 36, 52, 0, 2, 52, 2, 32, 34, 34, 36, 40, 54, 54, 52, 34, 54, 2, 4, 4, 6, 54, 4 ],
  342. "width": 18,
  343. "height": 18
  344. }
  345. },
  346. "xian4": {
  347. "xian2": {
  348. "type": "mesh",
  349. "uvs": [ 0.93706, 0.12699, 1, 0.15992, 0.76873, 0.44534, 0.66607, 0.57204, 0.5626, 0.69973, 0.4426, 0.84782, 0.37366, 0.93291, 0.3193, 1, 0.13072, 0.94352, 0, 0.81992, 0.09477, 0.73587, 0.2143, 0.62988, 0.33955, 0.5188, 0.44729, 0.42325, 0.56063, 0.31617, 0.82367, 0.06766, 0.68245, 0.38363, 0.45371, 0.61419, 0.56207, 0.50497, 0.33192, 0.73696, 0.2299, 0.83978 ],
  350. "triangles": [ 8, 20, 7, 7, 20, 6, 9, 10, 8, 8, 10, 20, 5, 6, 19, 6, 20, 19, 5, 17, 4, 5, 19, 17, 10, 11, 20, 20, 11, 19, 19, 12, 17, 19, 11, 12, 17, 18, 4, 4, 18, 3, 12, 13, 17, 17, 13, 18, 3, 16, 2, 3, 18, 16, 13, 14, 18, 18, 14, 16, 2, 16, 0, 2, 0, 1, 16, 15, 0, 16, 14, 15 ],
  351. "vertices": [ 1, 91, -1.37, -0.43, 1, 1, 91, -1.62, 0.65, 1, 2, 91, 4.47, 1.83, 0.23335, 92, 0.01, 1.76, 0.76665, 2, 92, 2.74, 2.08, 0.99131, 93, -2.3, 2.29, 0.00869, 2, 92, 5.5, 2.41, 0.35609, 93, 0.48, 2.37, 0.64391, 1, 93, 3.69, 2.48, 1, 1, 93, 5.54, 2.53, 1, 1, 93, 6.99, 2.58, 1, 1, 93, 7.83, -0.31, 1, 1, 93, 7.17, -3.2, 1, 1, 93, 5.11, -2.93, 1, 2, 92, 7.95, -2.37, 0.00225, 93, 2.52, -2.6, 0.99775, 3, 91, 9.95, -1.78, 6.0E-4, 92, 5.21, -2.25, 0.52253, 93, -0.21, -2.25, 0.47687, 3, 91, 7.6, -1.86, 0.10386, 92, 2.85, -2.15, 0.89179, 93, -2.55, -1.94, 0.00435, 2, 91, 5.03, -2.02, 0.87292, 92, 0.28, -2.12, 0.12708, 1, 91, -0.92, -2.39, 1, 1, 92, 0.01, 0.06, 1, 2, 92, 5.4, 0.16, 0.09555, 93, 0.18, 0.15, 0.90445, 1, 92, 2.85, 0.11, 1, 1, 93, 3.04, -0.04, 1, 1, 93, 5.44, -0.2, 1 ],
  352. "hull": 16,
  353. "edges": [ 2, 0, 0, 30, 14, 16, 16, 18, 2, 4, 0, 32, 4, 32, 26, 28, 28, 30, 32, 28, 24, 26, 24, 34, 34, 8, 32, 36, 36, 34, 26, 36, 4, 6, 6, 8, 36, 6, 22, 24, 38, 34, 22, 38, 8, 10, 38, 10, 18, 20, 20, 22, 16, 40, 40, 38, 20, 40, 10, 12, 12, 14, 40, 12 ],
  354. "width": 15,
  355. "height": 18
  356. }
  357. },
  358. "youjiao": {
  359. "youjiao": {
  360. "type": "mesh",
  361. "uvs": [ 1, 0.42859, 1, 0.452, 1, 0.47915, 1, 0.81892, 1, 0.84045, 1, 0.85992, 1, 1, 0, 1, 0, 0.95657, 0, 0.8924, 0.32044, 0.8427, 0.3193, 0.82357, 0.31814, 0.80406, 0.29877, 0.4783, 0.29728, 0.45315, 0.29549, 0.42305, 0.27034, 0, 0.69181, 0, 1, 0, 0.69959, 0.85521, 0.69943, 0.83764, 0.69926, 0.81892, 0.69592, 0.45199, 0.69617, 0.47913, 0.6957, 0.42762 ],
  362. "triangles": [ 7, 19, 6, 7, 8, 19, 8, 10, 19, 8, 9, 10, 19, 5, 6, 19, 4, 5, 10, 20, 19, 19, 20, 4, 10, 11, 20, 20, 3, 4, 11, 21, 20, 20, 21, 3, 11, 12, 21, 12, 23, 21, 3, 21, 2, 21, 23, 2, 12, 13, 23, 23, 1, 2, 13, 22, 23, 23, 22, 1, 22, 0, 1, 13, 14, 22, 14, 24, 22, 14, 15, 24, 22, 24, 0, 24, 18, 0, 15, 17, 24, 24, 17, 18, 15, 16, 17 ],
  363. "vertices": [ 2, 43, 19.55, 5.82, 0.2099, 44, -0.91, 5.67, 0.7901, 2, 43, 20.65, 5.8, 0.10158, 44, 0.19, 5.67, 0.89842, 2, 43, 21.93, 5.79, 0.02854, 44, 1.47, 5.67, 0.97146, 2, 44, 17.44, 5.67, 0.97133, 45, -6.28, -1.75, 0.02867, 2, 44, 18.45, 5.67, 0.92813, 45, -6.04, -0.77, 0.07187, 2, 44, 19.36, 5.67, 0.86515, 45, -5.82, 0.12, 0.13485, 2, 44, 25.95, 5.67, 0.30363, 45, -4.22, 6.51, 0.69637, 1, 45, 14.21, 1.9, 1, 1, 45, 13.72, -0.08, 1, 1, 45, 12.99, -3.01, 1, 3, 43, 38.84, -7.35, 2.0E-5, 44, 18.55, -7.24, 0.20498, 45, 6.51, -3.8, 0.795, 3, 43, 37.94, -7.36, 3.5E-4, 44, 17.65, -7.26, 0.36108, 45, 6.32, -4.67, 0.63857, 3, 43, 37.03, -7.37, 0.00131, 44, 16.74, -7.28, 0.48995, 45, 6.12, -5.57, 0.50874, 2, 43, 21.71, -7.53, 0.79688, 44, 1.43, -7.65, 0.20312, 2, 43, 20.53, -7.55, 0.88941, 44, 0.24, -7.68, 0.11059, 2, 43, 19.12, -7.56, 0.96188, 44, -1.17, -7.71, 0.03812, 1, 43, -0.77, -7.78, 1, 1, 43, -0.67, 0.23, 1, 1, 43, -0.59, 6.09, 1, 2, 44, 19.14, -0.04, 0.99283, 45, -0.33, -1.48, 0.00717, 2, 44, 18.31, -0.04, 0.99535, 45, -0.53, -2.28, 0.00465, 2, 44, 17.44, -0.04, 0.99617, 45, -0.74, -3.13, 0.00383, 2, 43, 20.58, 0.03, 0.50766, 44, 0.19, -0.11, 0.49234, 2, 43, 21.85, 0.02, 0.03197, 44, 1.47, -0.1, 0.96803, 1, 43, 19.43, 0.04, 1 ],
  364. "hull": 19,
  365. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  366. "width": 19,
  367. "height": 47
  368. }
  369. },
  370. "youshou": {
  371. "youshou": {
  372. "type": "mesh",
  373. "uvs": [ 0.57171, 0.29729, 0.59362, 0.31502, 0.61362, 0.33122, 0.90937, 0.57064, 0.94181, 0.59607, 0.97721, 0.62384, 1, 1, 0.55016, 0.95563, 0.52544, 0.92563, 0.49735, 0.89154, 0.2449, 0.58999, 0.23262, 0.57532, 0.21648, 0.55604, 0, 0.29745, 0, 0, 0.20448, 0, 0.71146, 0.74224, 0.7499, 0.77659, 0.73244, 0.76098, 0.42572, 0.44414, 0.43909, 0.45809, 0.40781, 0.42546 ],
  374. "triangles": [ 7, 17, 6, 17, 5, 6, 7, 18, 17, 7, 8, 18, 8, 16, 18, 8, 9, 16, 9, 20, 16, 17, 18, 4, 18, 16, 3, 16, 2, 3, 10, 20, 9, 17, 4, 5, 18, 3, 4, 10, 19, 20, 10, 11, 19, 11, 12, 21, 20, 2, 16, 11, 21, 19, 12, 13, 21, 20, 1, 2, 20, 19, 1, 19, 0, 1, 19, 21, 0, 0, 21, 15, 15, 21, 14, 21, 13, 14 ],
  375. "vertices": [ 2, 20, 24.61, 10.83, 0.98152, 21, -2.89, 10.88, 0.01848, 2, 20, 26.07, 11.02, 0.94876, 21, -1.43, 11.06, 0.05124, 2, 20, 27.4, 11.19, 0.89921, 21, -0.1, 11.22, 0.10079, 3, 20, 47.05, 13.71, 0.0312, 21, 19.56, 13.67, 0.83847, 22, -2.21, 13.56, 0.13033, 3, 20, 49.17, 14.01, 0.01663, 21, 21.68, 13.97, 0.77554, 22, -0.11, 13.98, 0.20783, 3, 20, 51.48, 14.35, 0.00882, 21, 23.99, 14.29, 0.70938, 22, 2.18, 14.45, 0.2818, 1, 22, 21.17, 2.91, 1, 2, 21, 27.33, -13.55, 0.08894, 22, 7.17, -13.14, 0.91106, 2, 21, 25.22, -13.39, 0.1398, 22, 5.05, -13.12, 0.8602, 2, 21, 22.82, -13.22, 0.2494, 22, 2.65, -13.08, 0.7506, 3, 20, 29.07, -11.85, 0.05227, 21, 1.48, -11.82, 0.94704, 22, -18.74, -12.96, 7.0E-4, 3, 20, 28.03, -11.78, 0.0875, 21, 0.44, -11.75, 0.91234, 22, -19.78, -12.95, 1.6E-4, 2, 20, 26.66, -11.7, 0.15144, 21, -0.92, -11.66, 0.84856, 2, 20, 8.36, -10.57, 0.98069, 21, -19.22, -10.46, 0.01931, 1, 20, -5.61, 0.05, 1, 1, 20, 0.2, 7.7, 1, 2, 20, 49.49, 0.18, 3.0E-5, 22, 0.98, 0.18, 0.99997, 2, 21, 24.65, 0.33, 0.02212, 22, 3.67, 0.55, 0.97788, 3, 20, 50.96, 0.29, 1.0E-5, 21, 23.42, 0.24, 0.02688, 22, 2.45, 0.38, 0.97311, 2, 20, 27.36, 0.13, 0.83842, 21, -0.18, 0.16, 0.16158, 2, 20, 28.39, 0.13, 0.5776, 21, 0.85, 0.16, 0.4224, 1, 20, 25.97, 0.12, 1 ],
  376. "hull": 16,
  377. "edges": [ 28, 30, 12, 10, 26, 28, 12, 14, 18, 32, 32, 6, 12, 34, 14, 34, 34, 10, 14, 16, 16, 18, 32, 36, 36, 34, 16, 36, 6, 8, 8, 10, 36, 8, 22, 38, 38, 2, 18, 20, 20, 22, 32, 40, 40, 38, 20, 40, 2, 4, 4, 6, 40, 4, 22, 24, 24, 26, 28, 42, 42, 38, 24, 42, 2, 0, 0, 30, 42, 0 ],
  378. "width": 47,
  379. "height": 59
  380. }
  381. },
  382. "youshou 1": {
  383. "youshou 1": {
  384. "type": "mesh",
  385. "uvs": [ 1, 0.51559, 1, 1, 0.35811, 1, 0, 0.60606, 0, 0, 0.42524, 0 ],
  386. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  387. "vertices": [ 23.8, 7.56, 35.38, -2.74, 25.56, -13.77, 10.67, -11.54, -3.81, 1.35, 2.69, 8.66 ],
  388. "hull": 6,
  389. "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
  390. "width": 23,
  391. "height": 32
  392. }
  393. },
  394. "youshou2": {
  395. "youshou2": {
  396. "type": "mesh",
  397. "uvs": [ 0.55562, 0.0345, 0.60017, 0.08995, 1, 0.58767, 1, 1, 0.65807, 1, 0.16853, 0.64793, 0.12544, 0.61694, 0.06191, 0.57125, 0, 0.52672, 0, 0, 0.52791, 0, 0.27849, 0.31341, 0.30999, 0.34339, 0.35403, 0.38529 ],
  398. "triangles": [ 11, 9, 10, 11, 10, 0, 12, 11, 0, 1, 12, 0, 13, 12, 1, 8, 9, 11, 7, 8, 11, 7, 11, 12, 6, 7, 12, 6, 12, 13, 13, 1, 2, 5, 6, 13, 3, 4, 13, 5, 13, 4, 3, 13, 2 ],
  399. "vertices": [ 2, 76, 29.72, -16.29, 0.36278, 77, 1.7, -16.2, 0.63722, 2, 76, 26.93, -15.73, 0.48773, 77, -1.13, -15.98, 0.51227, 1, 76, 1.88, -10.65, 1, 1, 76, -7.39, 1.98, 1, 1, 76, 4.46, 10.68, 1, 2, 76, 29.35, 12.35, 0.42186, 77, -2.1, 12.19, 0.57814, 2, 76, 31.54, 12.5, 0.27462, 77, 0.06, 12.59, 0.72538, 2, 76, 34.77, 12.71, 0.11431, 77, 3.24, 13.2, 0.88569, 2, 76, 37.91, 12.92, 0.04621, 77, 6.34, 13.78, 0.95379, 1, 77, 20.03, -0.82, 1, 2, 76, 31.46, -16.64, 0.3119, 77, 3.47, -16.34, 0.6881, 2, 76, 33.06, -0.7, 5.7E-4, 77, 3.15, -0.32, 0.99943, 1, 77, 1.38, -0.42, 1, 1, 76, 28.82, -0.42, 1 ],
  400. "hull": 11,
  401. "edges": [ 6, 4, 18, 20, 6, 8, 16, 18, 22, 18, 14, 16, 14, 22, 22, 20, 12, 14, 24, 22, 12, 24, 0, 20, 24, 0, 8, 10, 10, 12, 6, 26, 26, 24, 10, 26, 0, 2, 2, 4, 26, 2 ],
  402. "width": 43,
  403. "height": 38
  404. }
  405. },
  406. "youyan": {
  407. "youyan": { "x": 7.08, "y": -2.28, "rotation": -91.91, "width": 21, "height": 16 }
  408. },
  409. "zuiba": {
  410. "zuiba": { "x": 0.39, "y": -2.29, "rotation": -89.51, "width": 16, "height": 6 }
  411. },
  412. "zuiba 2": {
  413. "zuiba 2": { "x": 0.02, "y": -2.9, "rotation": -89.51, "width": 17, "height": 7 }
  414. },
  415. "zuojiao": {
  416. "zuojiao": {
  417. "type": "mesh",
  418. "uvs": [ 1, 0.45867, 1, 0.4738, 1, 0.49101, 1, 0.8415, 1, 0.85507, 1, 1, 0, 1, 0, 0.97159, 0, 0.91177, 0.42798, 0.82273, 0.42682, 0.80775, 0.42571, 0.79351, 0.40209, 0.48991, 0.40097, 0.47545, 0.39951, 0.4567, 0.36398, 0, 0.71093, 0, 1, 0, 0.72777, 0.84359, 0.72752, 0.83104, 0.72721, 0.81536, 0.72037, 0.47273, 0.72066, 0.48736, 0.72, 0.45448 ],
  419. "triangles": [ 6, 18, 5, 6, 7, 18, 7, 9, 18, 7, 8, 9, 18, 4, 5, 18, 3, 4, 9, 19, 18, 18, 19, 3, 3, 20, 2, 19, 10, 20, 3, 19, 20, 19, 9, 10, 20, 11, 22, 20, 22, 2, 20, 10, 11, 11, 12, 22, 22, 1, 2, 12, 21, 22, 12, 13, 21, 22, 21, 1, 13, 23, 21, 13, 14, 23, 21, 0, 1, 21, 23, 0, 23, 17, 0, 14, 16, 23, 14, 15, 16, 23, 16, 17 ],
  420. "vertices": [ 2, 46, 20.75, 5.41, 0.70287, 47, -0.58, 5.39, 0.29713, 2, 46, 21.45, 5.43, 0.59851, 47, 0.12, 5.39, 0.40149, 2, 46, 22.24, 5.45, 0.47692, 47, 0.91, 5.39, 0.52308, 2, 47, 17.03, 5.39, 0.92334, 48, -5.62, -0.27, 0.07666, 2, 47, 17.66, 5.39, 0.86688, 48, -5.47, 0.33, 0.13312, 2, 47, 24.33, 5.39, 0.19503, 48, -3.89, 6.81, 0.80497, 1, 48, 14.57, 2.31, 1, 1, 48, 14.26, 1.04, 1, 1, 48, 13.61, -1.63, 1, 2, 47, 16.17, -5.48, 0.33514, 48, 4.74, -3.69, 0.66486, 2, 47, 15.48, -5.5, 0.50129, 48, 4.6, -4.36, 0.49871, 2, 47, 14.83, -5.52, 0.61255, 48, 4.46, -5, 0.38745, 2, 46, 22.49, -5.91, 0.16645, 47, 0.86, -5.97, 0.83355, 2, 46, 21.83, -5.95, 0.24013, 47, 0.2, -5.99, 0.75987, 2, 46, 20.97, -6, 0.35571, 47, -0.67, -6.02, 0.64429, 1, 46, -0.02, -7.24, 1, 1, 46, -0.19, -0.65, 1, 1, 46, -0.34, 4.84, 1, 1, 47, 17.13, 0.22, 1, 1, 47, 16.55, 0.22, 1, 1, 47, 15.83, 0.21, 1, 1, 47, 0.07, 0.08, 1, 2, 46, 22.21, 0.14, 0.00798, 47, 0.74, 0.08, 0.99202, 2, 46, 20.7, 0.08, 0.66589, 47, -0.77, 0.07, 0.33411 ],
  421. "hull": 18,
  422. "edges": [ 10, 12, 18, 16, 30, 32, 32, 34, 12, 14, 14, 16, 36, 14, 18, 36, 10, 8, 36, 8, 18, 20, 38, 36, 20, 38, 8, 6, 38, 6, 20, 22, 40, 38, 22, 40, 26, 42, 42, 2, 22, 24, 24, 26, 40, 44, 44, 42, 24, 44, 2, 4, 4, 6, 44, 4, 26, 28, 28, 30, 32, 46, 46, 42, 28, 46, 2, 0, 0, 34, 46, 0 ],
  423. "width": 19,
  424. "height": 46
  425. }
  426. },
  427. "zuoshou": {
  428. "zuoshou": {
  429. "type": "mesh",
  430. "uvs": [ 1, 0.2959, 0.82125, 0.51961, 0.79834, 0.54829, 0.78255, 0.56805, 0.54279, 0.86812, 0.52649, 0.88852, 0.50162, 0.92432, 0.43742, 1, 0, 1, 0, 0.71049, 0.11444, 0.61116, 0.1296, 0.598, 0.15069, 0.58006, 0.45872, 0.31422, 0.47715, 0.29652, 0.49891, 0.27762, 0.81856, 0, 0.93329, 0, 1, 0, 0.64095, 0.42334, 0.33289, 0.75205, 0.31376, 0.76796, 0.35952, 0.72417, 0.62735, 0.43788, 0.65825, 0.39828 ],
  431. "triangles": [ 8, 21, 7, 7, 21, 6, 21, 9, 10, 21, 8, 9, 21, 20, 6, 6, 20, 5, 20, 22, 5, 10, 11, 21, 21, 11, 20, 11, 12, 20, 20, 12, 22, 5, 22, 4, 4, 23, 3, 4, 22, 23, 22, 13, 23, 22, 12, 13, 23, 19, 3, 13, 14, 23, 23, 14, 19, 3, 19, 2, 2, 19, 1, 19, 24, 1, 1, 24, 0, 14, 15, 19, 19, 15, 24, 0, 24, 17, 24, 16, 17, 24, 15, 16, 17, 18, 0 ],
  432. "vertices": [ 1, 17, 10.18, 11.34, 1, 2, 17, 25.07, 10.41, 0.61899, 18, -2.38, 10.16, 0.38101, 2, 17, 26.98, 10.29, 0.45926, 18, -0.48, 10.35, 0.54074, 2, 17, 28.29, 10.21, 0.3516, 18, 0.83, 10.48, 0.6484, 2, 18, 20.75, 12.48, 0.60553, 19, -2.96, 12.15, 0.39447, 2, 18, 22.1, 12.61, 0.51254, 19, -1.65, 12.52, 0.48746, 2, 18, 24.36, 12.99, 0.37114, 19, 0.51, 13.28, 0.62886, 2, 18, 29.5, 13.36, 0.17894, 19, 5.51, 14.53, 0.82106, 1, 19, 22.31, 1.21, 1, 2, 18, 32.07, -13.05, 0.00981, 19, 12.6, -11.04, 0.99019, 2, 18, 24.34, -12.43, 0.20667, 19, 4.88, -11.76, 0.79333, 2, 18, 23.31, -12.34, 0.26407, 19, 3.85, -11.86, 0.73593, 2, 18, 21.9, -12.22, 0.35405, 19, 2.44, -11.97, 0.64595, 2, 17, 25.22, -10.53, 0.46683, 18, 1.14, -10.49, 0.53317, 2, 17, 23.93, -10.28, 0.571, 18, -0.17, -10.45, 0.429, 2, 17, 22.49, -9.93, 0.68321, 18, -1.64, -10.33, 0.31679, 1, 17, 1.44, -4.73, 1, 1, 17, -1.57, 0.02, 1, 1, 17, -3.32, 2.78, 1, 2, 17, 25.41, 0.16, 0.77301, 18, -0.39, 0.1, 0.22699, 1, 19, 1.21, 0.85, 1, 1, 19, 2.48, 0.94, 1, 2, 18, 20.91, 0.6, 0.91826, 19, -0.75, 0.48, 0.08174, 2, 17, 26.43, 0.02, 0.05577, 18, 0.64, 0.13, 0.94423, 1, 17, 23.81, 0.16, 1 ],
  433. "hull": 19,
  434. "edges": [ 0, 36, 14, 16, 16, 18, 32, 34, 34, 36, 22, 40, 40, 10, 18, 20, 20, 22, 16, 42, 42, 40, 20, 42, 10, 12, 12, 14, 42, 12, 22, 24, 44, 40, 24, 44, 8, 10, 44, 8, 28, 38, 38, 4, 24, 26, 26, 28, 38, 46, 46, 44, 26, 46, 4, 6, 6, 8, 46, 6, 0, 2, 2, 4, 34, 48, 48, 38, 2, 48, 28, 30, 30, 32, 48, 30 ],
  435. "width": 49,
  436. "height": 54
  437. }
  438. },
  439. "zuoshou 2": {
  440. "zuoshou 2": {
  441. "type": "mesh",
  442. "uvs": [ 1, 0.58063, 1, 0.75357, 0.62773, 0.99999, 0.57773, 1, 0.53898, 0.99999, 0, 0.72669, 0, 0.39919, 0, 0, 0.61698, 0, 0.66248, 1.0E-5, 0.71623, 1.0E-5, 1, 0, 0.61059, 0.5132, 0.65967, 0.51888, 0.56523, 0.50692 ],
  443. "triangles": [ 9, 12, 8, 13, 12, 9, 10, 13, 9, 13, 10, 11, 0, 13, 11, 13, 0, 1, 13, 2, 12, 1, 2, 13, 2, 3, 12, 6, 7, 8, 14, 6, 8, 12, 14, 8, 5, 6, 14, 4, 5, 14, 4, 14, 12, 12, 3, 4 ],
  444. "vertices": [ 1, 80, 19.09, 0.11, 1, 1, 80, 19.52, -4.19, 1, 2, 79, 26.33, -12.1, 0.48401, 80, 2.36, -12.1, 0.51599, 2, 79, 23.94, -12.34, 0.6211, 80, -0.03, -12.34, 0.3789, 2, 79, 22.09, -12.51, 0.71994, 80, -1.88, -12.52, 0.28006, 1, 79, -4.32, -8.21, 1, 1, 79, -5.11, -0.06, 1, 1, 79, -6.07, 9.88, 1, 2, 79, 23.41, 12.73, 0.48361, 80, -0.65, 12.73, 0.51639, 2, 79, 25.58, 12.94, 0.3363, 80, 1.53, 12.94, 0.6637, 2, 79, 28.15, 13.19, 0.19181, 80, 4.09, 13.2, 0.80819, 1, 80, 17.65, 14.56, 1, 2, 79, 24.34, -0.07, 0.18552, 80, 0.33, -0.07, 0.81448, 1, 80, 2.68, 0.02, 1, 1, 79, 22.16, -0.12, 1 ],
  445. "hull": 12,
  446. "edges": [ 12, 14, 0, 22, 18, 24, 24, 6, 18, 20, 20, 22, 0, 26, 26, 24, 20, 26, 4, 6, 26, 4, 14, 16, 16, 18, 12, 28, 28, 24, 16, 28, 6, 8, 28, 8, 10, 12, 8, 10, 0, 2, 4, 2 ],
  447. "width": 48,
  448. "height": 25
  449. }
  450. },
  451. "zuoshou 1": {
  452. "zuoshou 1": {
  453. "type": "mesh",
  454. "uvs": [ 1, 0.45466, 0.51462, 1, 0, 1, 0, 0.53266, 0.71462, 0, 1, 0 ],
  455. "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
  456. "vertices": [ 7.93, 10.7, 31.26, 14.32, 40.65, 4.08, 28.26, -7.29, 1.08, -6.04, -4.13, -0.36 ],
  457. "hull": 6,
  458. "edges": [ 2, 4, 0, 10, 2, 0, 8, 10, 4, 6, 8, 6 ],
  459. "width": 27,
  460. "height": 36
  461. }
  462. },
  463. "zuoyan": {
  464. "zuoyan": { "x": 5.82, "y": -1.1, "rotation": -88.92, "width": 20, "height": 14 }
  465. }
  466. }
  467. },
  468. "animations": {
  469. "stand1": {
  470. "slots": {
  471. "1": {
  472. "color": [
  473. { "time": 1.6333, "color": "ffffff00" },
  474. { "time": 1.8333, "color": "ffffffff", "curve": "stepped" },
  475. { "time": 3.9333, "color": "ffffffff" },
  476. { "time": 4.2, "color": "ffffff00" }
  477. ],
  478. "attachment": [
  479. { "time": 0, "name": null },
  480. { "time": 1.6333, "name": "1" }
  481. ]
  482. },
  483. "2": {
  484. "color": [
  485. { "time": 1.8333, "color": "ffffff00" },
  486. { "time": 2.0333, "color": "ffffffff", "curve": "stepped" },
  487. { "time": 3.9333, "color": "ffffffff" },
  488. { "time": 4.2, "color": "ffffff00" }
  489. ],
  490. "attachment": [
  491. { "time": 0, "name": null },
  492. { "time": 1.8333, "name": "2" }
  493. ]
  494. },
  495. "3": {
  496. "color": [
  497. { "time": 2, "color": "ffffff00" },
  498. { "time": 2.2333, "color": "ffffffff", "curve": "stepped" },
  499. { "time": 3.9333, "color": "ffffffff" },
  500. { "time": 4.2, "color": "ffffff00" }
  501. ],
  502. "attachment": [
  503. { "time": 0, "name": null },
  504. { "time": 0.2667, "name": null },
  505. { "time": 2, "name": "3" }
  506. ]
  507. },
  508. "4": {
  509. "color": [
  510. { "time": 2.1667, "color": "ffffff00" },
  511. { "time": 2.4, "color": "ffffffff", "curve": "stepped" },
  512. { "time": 3.9333, "color": "ffffffff" },
  513. { "time": 4.2, "color": "ffffff00" }
  514. ],
  515. "attachment": [
  516. { "time": 0, "name": null },
  517. { "time": 0.2667, "name": null },
  518. { "time": 2.1667, "name": "4" }
  519. ]
  520. },
  521. "5": {
  522. "color": [
  523. { "time": 2.3333, "color": "ffffff00" },
  524. { "time": 2.5667, "color": "ffffffff", "curve": "stepped" },
  525. { "time": 3.9333, "color": "ffffffff" },
  526. { "time": 4.2, "color": "ffffff00" }
  527. ],
  528. "attachment": [
  529. { "time": 0, "name": null },
  530. { "time": 2.3333, "name": "5" }
  531. ]
  532. },
  533. "biyan": {
  534. "attachment": [
  535. { "time": 0, "name": null },
  536. { "time": 0.8667, "name": null },
  537. { "time": 1.1, "name": "biyan" },
  538. { "time": 1.8333, "name": null },
  539. { "time": 2.5, "name": null }
  540. ]
  541. },
  542. "jian": {
  543. "attachment": [
  544. { "time": 1.3, "name": null },
  545. { "time": 1.4667, "name": null }
  546. ]
  547. },
  548. "jian2": {
  549. "attachment": [
  550. { "time": 0, "name": null },
  551. { "time": 0.8667, "name": null },
  552. { "time": 1.3, "name": "jian" },
  553. { "time": 1.6, "name": "jian" }
  554. ]
  555. },
  556. "meimao": {
  557. "attachment": [
  558. { "time": 1.8333, "name": null }
  559. ]
  560. },
  561. "meimao 2": {
  562. "attachment": [
  563. { "time": 1.8333, "name": "meimao 2" }
  564. ]
  565. },
  566. "shou": {
  567. "attachment": [
  568. { "time": 1.3, "name": null }
  569. ]
  570. },
  571. "xian1": {
  572. "attachment": [
  573. { "time": 1.3, "name": null },
  574. { "time": 1.4667, "name": null }
  575. ]
  576. },
  577. "xian2": {
  578. "attachment": [
  579. { "time": 1.3, "name": null },
  580. { "time": 1.4667, "name": null }
  581. ]
  582. },
  583. "xian3": {
  584. "attachment": [
  585. { "time": 0, "name": null },
  586. { "time": 0.8667, "name": null },
  587. { "time": 1.2667, "name": null },
  588. { "time": 1.3, "name": "xian1" }
  589. ]
  590. },
  591. "xian4": {
  592. "attachment": [
  593. { "time": 0, "name": null },
  594. { "time": 1.2667, "name": null },
  595. { "time": 1.3, "name": "xian2" }
  596. ]
  597. },
  598. "youshou": {
  599. "attachment": [
  600. { "time": 1.2, "name": null }
  601. ]
  602. },
  603. "youshou2": {
  604. "attachment": [
  605. { "time": 0, "name": null },
  606. { "time": 0.8667, "name": null },
  607. { "time": 1.2, "name": "youshou2" }
  608. ]
  609. },
  610. "youshou 1": {
  611. "attachment": [
  612. { "time": 0, "name": null },
  613. { "time": 0.8667, "name": null },
  614. { "time": 1.2, "name": "youshou 1" }
  615. ]
  616. },
  617. "youyan": {
  618. "attachment": [
  619. { "time": 1.1, "name": null },
  620. { "time": 1.8333, "name": "youyan" }
  621. ]
  622. },
  623. "zuiba": {
  624. "attachment": [
  625. { "time": 2.0333, "name": "zuiba" }
  626. ]
  627. },
  628. "zuiba 2": {
  629. "attachment": [
  630. { "time": 2.0333, "name": null }
  631. ]
  632. },
  633. "zuoshou": {
  634. "attachment": [
  635. { "time": 1.6667, "name": null }
  636. ]
  637. },
  638. "zuoshou 1": {
  639. "attachment": [
  640. { "time": 0, "name": null },
  641. { "time": 1.2, "name": null },
  642. { "time": 1.6667, "name": "zuoshou 1" }
  643. ]
  644. },
  645. "zuoshou 2": {
  646. "attachment": [
  647. { "time": 0, "name": null },
  648. { "time": 1.2, "name": null },
  649. { "time": 1.6667, "name": "zuoshou 2" }
  650. ]
  651. },
  652. "zuoyan": {
  653. "attachment": [
  654. { "time": 1.1, "name": null },
  655. { "time": 1.8333, "name": "zuoyan" }
  656. ]
  657. }
  658. },
  659. "bones": {
  660. "root": {
  661. "rotate": [
  662. { "time": 0, "angle": 0 }
  663. ],
  664. "scale": [
  665. { "time": 0, "x": 0.65, "y": 0.65 }
  666. ]
  667. },
  668. "bone8": {
  669. "rotate": [
  670. {
  671. "time": 0,
  672. "angle": 0,
  673. "curve": [ 0.25, 0, 0.75, 1 ]
  674. },
  675. { "time": 0.3667, "angle": -1.65 },
  676. { "time": 0.5667, "angle": -1.76, "curve": "stepped" },
  677. { "time": 0.8667, "angle": -1.76 },
  678. { "time": 1, "angle": -2.22 },
  679. { "time": 1.1667, "angle": -3.78 },
  680. { "time": 1.4, "angle": -2.34 },
  681. { "time": 1.4667, "angle": -5.45 },
  682. { "time": 1.6667, "angle": 0 }
  683. ],
  684. "translate": [
  685. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  686. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  687. { "time": 0.8667, "x": 0, "y": 0 },
  688. { "time": 1, "x": -0.37, "y": -0.25 },
  689. { "time": 1.1667, "x": 0, "y": -0.41 },
  690. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  691. { "time": 1.6667, "x": 0, "y": 0 }
  692. ]
  693. },
  694. "bone9": {
  695. "rotate": [
  696. { "time": 0, "angle": 0, "curve": "stepped" },
  697. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  698. { "time": 0.8667, "angle": 0 },
  699. { "time": 1, "angle": 7.85 },
  700. { "time": 1.1667, "angle": 13.34 },
  701. { "time": 1.4, "angle": -3.39 },
  702. { "time": 1.6667, "angle": 0 }
  703. ],
  704. "translate": [
  705. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  706. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  707. { "time": 0.8667, "x": 0, "y": 0 },
  708. { "time": 1, "x": -1.94, "y": -0.01 },
  709. { "time": 1.1667, "x": -0.76, "y": 0.04 },
  710. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  711. { "time": 1.6667, "x": 0, "y": 0 }
  712. ]
  713. },
  714. "bone10": {
  715. "rotate": [
  716. { "time": 0, "angle": 0, "curve": "stepped" },
  717. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  718. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  719. { "time": 1, "angle": 0, "curve": "stepped" },
  720. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  721. { "time": 1.2, "angle": 0, "curve": "stepped" },
  722. { "time": 1.3, "angle": 0, "curve": "stepped" },
  723. { "time": 1.4667, "angle": 0 }
  724. ],
  725. "translate": [
  726. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  727. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  728. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  729. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  730. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  731. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  732. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  733. { "time": 1.4667, "x": 0, "y": 0 }
  734. ],
  735. "scale": [
  736. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  737. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  738. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  739. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  740. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  741. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  742. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  743. { "time": 1.4667, "x": 1, "y": 1 }
  744. ]
  745. },
  746. "bone11": {
  747. "rotate": [
  748. { "time": 0, "angle": 0, "curve": "stepped" },
  749. { "time": 0.1333, "angle": 0 },
  750. { "time": 0.8667, "angle": -2.13 },
  751. { "time": 1, "angle": 4.32 },
  752. { "time": 1.1667, "angle": 4.96 },
  753. { "time": 1.3, "angle": 0, "curve": "stepped" },
  754. { "time": 1.4667, "angle": 0 }
  755. ],
  756. "translate": [
  757. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  758. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  759. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  760. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  761. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  762. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 1.4667, "x": 0, "y": 0 }
  764. ],
  765. "scale": [
  766. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  767. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  768. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  769. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  770. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  771. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  772. { "time": 1.4667, "x": 1, "y": 1 }
  773. ]
  774. },
  775. "bone12": {
  776. "rotate": [
  777. { "time": 0, "angle": 0, "curve": "stepped" },
  778. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  779. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  780. { "time": 1, "angle": 0, "curve": "stepped" },
  781. { "time": 1.1, "angle": 0, "curve": "stepped" },
  782. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  783. { "time": 2.5, "angle": 0 }
  784. ],
  785. "translate": [
  786. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  787. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  788. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  789. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  790. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  791. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  792. { "time": 2.5, "x": 0, "y": 0 }
  793. ],
  794. "scale": [
  795. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  796. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  797. { "time": 0.8667, "x": 1, "y": 1 },
  798. { "time": 1, "x": 0.649, "y": 1 },
  799. { "time": 1.1, "x": 0.474, "y": 1, "curve": "stepped" },
  800. { "time": 1.8333, "x": 0.474, "y": 1 },
  801. { "time": 2.5, "x": 1, "y": 1 }
  802. ]
  803. },
  804. "bone13": {
  805. "rotate": [
  806. { "time": 0, "angle": 0, "curve": "stepped" },
  807. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  808. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  809. { "time": 1, "angle": 0, "curve": "stepped" },
  810. { "time": 1.1, "angle": 0, "curve": "stepped" },
  811. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  812. { "time": 2.5, "angle": 0 }
  813. ],
  814. "translate": [
  815. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  816. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  817. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  818. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  819. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  820. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  821. { "time": 2.5, "x": 0, "y": 0 }
  822. ],
  823. "scale": [
  824. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  825. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  826. { "time": 0.8667, "x": 1, "y": 1 },
  827. { "time": 1, "x": 0.616, "y": 1 },
  828. { "time": 1.1, "x": 0.424, "y": 1, "curve": "stepped" },
  829. { "time": 1.8333, "x": 0.424, "y": 1 },
  830. { "time": 2.5, "x": 1, "y": 1 }
  831. ]
  832. },
  833. "bone14": {
  834. "rotate": [
  835. { "time": 0, "angle": 0, "curve": "stepped" },
  836. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  837. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  838. { "time": 1, "angle": 0, "curve": "stepped" },
  839. { "time": 1.1, "angle": 0, "curve": "stepped" },
  840. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  841. { "time": 2.5, "angle": 0 }
  842. ],
  843. "translate": [
  844. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  845. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  846. { "time": 0.8667, "x": 0, "y": 0 },
  847. { "time": 1, "x": -1.38, "y": 0 },
  848. { "time": 1.1, "x": -2.07, "y": 0, "curve": "stepped" },
  849. { "time": 1.8333, "x": -2.07, "y": 0 },
  850. { "time": 2.5, "x": 0, "y": 0 }
  851. ],
  852. "scale": [
  853. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  854. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  857. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  858. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  859. { "time": 2.5, "x": 1, "y": 1 }
  860. ]
  861. },
  862. "bone15": {
  863. "rotate": [
  864. { "time": 0, "angle": 0, "curve": "stepped" },
  865. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  866. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  867. { "time": 1, "angle": 0, "curve": "stepped" },
  868. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  869. { "time": 1.2, "angle": 0, "curve": "stepped" },
  870. { "time": 1.3, "angle": 0, "curve": "stepped" },
  871. { "time": 1.4667, "angle": 0 }
  872. ],
  873. "translate": [
  874. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  875. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  876. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  877. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  880. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  881. { "time": 1.4667, "x": 0, "y": 0 }
  882. ],
  883. "scale": [
  884. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  886. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  887. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  888. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  889. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  890. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  891. { "time": 1.4667, "x": 1, "y": 1 }
  892. ]
  893. },
  894. "bone16": {
  895. "rotate": [
  896. { "time": 0, "angle": 23.46 },
  897. { "time": 0.1333, "angle": -12.3 },
  898. { "time": 0.3333, "angle": 4.51 },
  899. { "time": 0.8667, "angle": 9.63 },
  900. { "time": 1, "angle": 24.05 },
  901. { "time": 1.1667, "angle": -319.12, "curve": "stepped" },
  902. {
  903. "time": 1.2,
  904. "angle": -319.12,
  905. "curve": [ 0.25, 0, 0.75, 1 ]
  906. },
  907. { "time": 1.3667, "angle": -54.73 },
  908. { "time": 1.5333, "angle": -53.12 },
  909. { "time": 1.6333, "angle": -18.76 },
  910. {
  911. "time": 1.9333,
  912. "angle": 19.25,
  913. "curve": [ 0.25, 0, 0.75, 1 ]
  914. },
  915. { "time": 2.2667, "angle": 23.05 }
  916. ]
  917. },
  918. "bone17": {
  919. "rotate": [
  920. { "time": 0, "angle": -9.66 },
  921. { "time": 0.1333, "angle": -46.56 },
  922. { "time": 0.3333, "angle": -76.17 },
  923. { "time": 0.8667, "angle": -85.92 },
  924. { "time": 1, "angle": 5.93 },
  925. { "time": 1.1667, "angle": 10.08, "curve": "stepped" },
  926. {
  927. "time": 1.2,
  928. "angle": 10.08,
  929. "curve": [ 0.25, 0, 0.75, 1 ]
  930. },
  931. { "time": 1.3667, "angle": -17.07 },
  932. { "time": 1.5333, "angle": -39.33 },
  933. { "time": 1.6333, "angle": -94.62, "curve": "stepped" },
  934. { "time": 1.6667, "angle": -61.04 },
  935. { "time": 1.9333, "angle": 6.9 }
  936. ],
  937. "translate": [
  938. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  939. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  940. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  941. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  942. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  943. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  944. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  945. { "time": 1.5333, "x": 0, "y": 0 }
  946. ],
  947. "scale": [
  948. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  949. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  950. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  951. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  952. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  953. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  954. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  955. { "time": 1.5333, "x": 1, "y": 1 }
  956. ]
  957. },
  958. "bone18": {
  959. "rotate": [
  960. { "time": 0, "angle": 0, "curve": "stepped" },
  961. { "time": 0.1333, "angle": 0 },
  962. { "time": 0.8667, "angle": 9.22 },
  963. { "time": 1, "angle": -12.01 },
  964. { "time": 1.1667, "angle": -20.43, "curve": "stepped" },
  965. {
  966. "time": 1.2,
  967. "angle": -20.43,
  968. "curve": [ 0.25, 0, 0.625, 0.5 ]
  969. },
  970. {
  971. "time": 1.2667,
  972. "angle": 13.94,
  973. "curve": [ 0.375, 0.5, 0.75, 1 ]
  974. },
  975. { "time": 1.3333, "angle": 0 },
  976. { "time": 1.5, "angle": -4.47, "curve": "stepped" },
  977. { "time": 1.5333, "angle": -4.47 }
  978. ]
  979. },
  980. "bone19": {
  981. "rotate": [
  982. { "time": 0, "angle": -23.2 },
  983. { "time": 0.3333, "angle": -17.83, "curve": "stepped" },
  984. { "time": 0.8667, "angle": -17.83 },
  985. { "time": 1, "angle": -12.57 },
  986. { "time": 1.1667, "angle": -23.75 }
  987. ],
  988. "translate": [
  989. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 0.8667, "x": 0, "y": 0 },
  991. { "time": 1, "x": 0.26, "y": -0.83 },
  992. { "time": 1.1667, "x": 0.45, "y": -1.4 }
  993. ]
  994. },
  995. "bone20": {
  996. "rotate": [
  997. { "time": 0, "angle": -17.28 },
  998. { "time": 0.3333, "angle": -15.8, "curve": "stepped" },
  999. { "time": 0.8667, "angle": -15.8 },
  1000. { "time": 1, "angle": -19.57 },
  1001. { "time": 1.1667, "angle": -11.3 }
  1002. ]
  1003. },
  1004. "bone22": {
  1005. "rotate": [
  1006. { "time": 0, "angle": 0 },
  1007. { "time": 0.1333, "angle": -5.39 },
  1008. { "time": 0.8667, "angle": -9.37 },
  1009. { "time": 1, "angle": 5.38 },
  1010. {
  1011. "time": 1.2667,
  1012. "angle": 10.77,
  1013. "curve": [ 0.279, 0, 0.622, 0.39 ]
  1014. },
  1015. {
  1016. "time": 1.4667,
  1017. "angle": -13.56,
  1018. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  1019. },
  1020. {
  1021. "time": 1.9667,
  1022. "angle": -0.37,
  1023. "curve": [ 0.379, 0.52, 0.747, 1 ]
  1024. },
  1025. { "time": 2.7, "angle": 0 }
  1026. ],
  1027. "translate": [
  1028. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1031. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 2.7, "x": 0, "y": 0 }
  1034. ],
  1035. "scale": [
  1036. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 2.7, "x": 1, "y": 1 }
  1042. ]
  1043. },
  1044. "bone23": {
  1045. "rotate": [
  1046. { "time": 0, "angle": 0, "curve": "stepped" },
  1047. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1048. { "time": 0.8667, "angle": 0 },
  1049. { "time": 1, "angle": -0.54 },
  1050. {
  1051. "time": 1.2667,
  1052. "angle": -1.09,
  1053. "curve": [ 0.279, 0, 0.622, 0.39 ]
  1054. },
  1055. {
  1056. "time": 1.4667,
  1057. "angle": -3.07,
  1058. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  1059. },
  1060. {
  1061. "time": 1.9667,
  1062. "angle": -17.33,
  1063. "curve": [ 0.379, 0.52, 0.747, 1 ]
  1064. },
  1065. { "time": 2.7, "angle": 0 },
  1066. { "time": 4.2, "angle": 2.3 }
  1067. ],
  1068. "translate": [
  1069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 0.8667, "x": 0, "y": 0 },
  1072. { "time": 1, "x": 0.92, "y": -0.07 },
  1073. {
  1074. "time": 1.2667,
  1075. "x": 1.83,
  1076. "y": -0.15,
  1077. "curve": [ 0.25, 0, 0.75, 1 ]
  1078. },
  1079. { "time": 2.7, "x": 0, "y": 0 }
  1080. ],
  1081. "scale": [
  1082. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1086. {
  1087. "time": 1.2667,
  1088. "x": 1,
  1089. "y": 1,
  1090. "curve": [ 0.25, 0, 0.75, 1 ]
  1091. },
  1092. { "time": 1.4667, "x": 0.9, "y": 1 },
  1093. { "time": 2.7, "x": 1, "y": 1 }
  1094. ]
  1095. },
  1096. "bone24": {
  1097. "rotate": [
  1098. { "time": 0, "angle": 0 },
  1099. { "time": 0.1333, "angle": -0.98 },
  1100. { "time": 0.8667, "angle": 0 },
  1101. { "time": 1, "angle": -2.37 },
  1102. {
  1103. "time": 1.2667,
  1104. "angle": -4.74,
  1105. "curve": [ 0.279, 0, 0.622, 0.39 ]
  1106. },
  1107. {
  1108. "time": 1.4667,
  1109. "angle": -3.07,
  1110. "curve": [ 0.329, 0.32, 0.758, 1 ]
  1111. },
  1112. { "time": 2.7, "angle": 0 },
  1113. { "time": 4.2, "angle": 2.3 }
  1114. ],
  1115. "translate": [
  1116. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1117. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1118. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1119. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1120. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1121. { "time": 2.7, "x": 0, "y": 0 }
  1122. ],
  1123. "scale": [
  1124. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1125. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1126. { "time": 0.8667, "x": 1, "y": 1 },
  1127. { "time": 1, "x": 1, "y": 1.25 },
  1128. {
  1129. "time": 1.2667,
  1130. "x": 1,
  1131. "y": 1.5,
  1132. "curve": [ 0.25, 0, 0.75, 1 ]
  1133. },
  1134. { "time": 2.7, "x": 1, "y": 1 }
  1135. ]
  1136. },
  1137. "bone25": {
  1138. "rotate": [
  1139. { "time": 0, "angle": 0 },
  1140. { "time": 0.1333, "angle": -0.98 },
  1141. { "time": 0.8667, "angle": 0 },
  1142. { "time": 1, "angle": -2.37 },
  1143. {
  1144. "time": 1.2667,
  1145. "angle": -4.74,
  1146. "curve": [ 0.296, 0, 0.633, 0.37 ]
  1147. },
  1148. {
  1149. "time": 1.4667,
  1150. "angle": 4.21,
  1151. "curve": [ 0.318, 0.27, 0.652, 0.61 ]
  1152. },
  1153. {
  1154. "time": 1.6,
  1155. "angle": -17.51,
  1156. "curve": [ 0.329, 0.32, 0.758, 1 ]
  1157. },
  1158. { "time": 2.7, "angle": 0 },
  1159. { "time": 4.2, "angle": 2.3 }
  1160. ],
  1161. "translate": [
  1162. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1163. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1164. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1165. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1166. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1167. { "time": 2.7, "x": 0, "y": 0 }
  1168. ],
  1169. "scale": [
  1170. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1171. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1172. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1173. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1174. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1175. { "time": 2.7, "x": 1, "y": 1 }
  1176. ]
  1177. },
  1178. "bone26": {
  1179. "rotate": [
  1180. { "time": 0, "angle": 0 },
  1181. { "time": 0.1333, "angle": -0.98 },
  1182. { "time": 0.8667, "angle": 0 },
  1183. { "time": 1, "angle": -2.37 },
  1184. {
  1185. "time": 1.2667,
  1186. "angle": -4.74,
  1187. "curve": [ 0.296, 0, 0.633, 0.37 ]
  1188. },
  1189. {
  1190. "time": 1.4667,
  1191. "angle": 4.21,
  1192. "curve": [ 0.318, 0.27, 0.652, 0.61 ]
  1193. },
  1194. {
  1195. "time": 1.6,
  1196. "angle": -17.51,
  1197. "curve": [ 0.329, 0.32, 0.758, 1 ]
  1198. },
  1199. { "time": 2.7, "angle": 0 },
  1200. { "time": 4.2, "angle": 2.3 }
  1201. ],
  1202. "translate": [
  1203. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1204. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1205. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1206. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1207. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1208. { "time": 2.7, "x": 0, "y": 0 }
  1209. ],
  1210. "scale": [
  1211. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1212. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1213. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1214. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1215. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1216. { "time": 2.7, "x": 1, "y": 1 }
  1217. ]
  1218. },
  1219. "bone28": {
  1220. "rotate": [
  1221. { "time": 0, "angle": 0 },
  1222. { "time": 0.1333, "angle": 3.43 },
  1223. { "time": 0.8667, "angle": 0 },
  1224. { "time": 1, "angle": -0.38 },
  1225. {
  1226. "time": 1.2667,
  1227. "angle": -0.76,
  1228. "curve": [ 0.272, 0, 0.619, 0.41 ]
  1229. },
  1230. {
  1231. "time": 1.6333,
  1232. "angle": 16.56,
  1233. "curve": [ 0.317, 0.28, 0.671, 0.68 ]
  1234. },
  1235. {
  1236. "time": 2.1,
  1237. "angle": 9.25,
  1238. "curve": [ 0.382, 0.56, 0.737, 1 ]
  1239. },
  1240. { "time": 2.7, "angle": 0 },
  1241. { "time": 4.2, "angle": 4.6 }
  1242. ],
  1243. "translate": [
  1244. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1245. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 0.8667, "x": 0, "y": 0 },
  1247. { "time": 1, "x": 0.54, "y": 0.65 },
  1248. { "time": 1.1, "x": 0.81, "y": 0.97 },
  1249. {
  1250. "time": 1.2667,
  1251. "x": 1.51,
  1252. "y": 0,
  1253. "curve": [ 0.25, 0, 0.75, 1 ]
  1254. },
  1255. { "time": 2.7, "x": 0, "y": 0 }
  1256. ],
  1257. "scale": [
  1258. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1259. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1260. { "time": 0.8667, "x": 1, "y": 1 },
  1261. { "time": 1, "x": 1, "y": 1.25 },
  1262. {
  1263. "time": 1.2667,
  1264. "x": 1,
  1265. "y": 1.5,
  1266. "curve": [ 0.25, 0, 0.75, 1 ]
  1267. },
  1268. { "time": 1.6333, "x": 0.9, "y": 1.327 },
  1269. { "time": 2.7, "x": 1, "y": 1 }
  1270. ]
  1271. },
  1272. "bone29": {
  1273. "rotate": [
  1274. { "time": 0, "angle": 0 },
  1275. { "time": 0.1333, "angle": 2.26 },
  1276. { "time": 0.8667, "angle": 0 },
  1277. { "time": 1, "angle": 7.35 },
  1278. { "time": 1.1, "angle": 11.03 },
  1279. {
  1280. "time": 1.2667,
  1281. "angle": 2.32,
  1282. "curve": [ 0.272, 0, 0.619, 0.41 ]
  1283. },
  1284. {
  1285. "time": 1.6333,
  1286. "angle": 7,
  1287. "curve": [ 0.34, 0.36, 0.757, 1 ]
  1288. },
  1289. { "time": 2.7, "angle": 0 },
  1290. { "time": 4.2, "angle": 4.6 }
  1291. ],
  1292. "translate": [
  1293. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1294. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1295. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1296. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1297. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1298. { "time": 2.7, "x": 0, "y": 0 }
  1299. ],
  1300. "scale": [
  1301. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1302. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1303. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1304. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1305. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1306. { "time": 2.7, "x": 1, "y": 1 }
  1307. ]
  1308. },
  1309. "bone30": {
  1310. "rotate": [
  1311. { "time": 0, "angle": 0, "curve": "stepped" },
  1312. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1313. { "time": 0.8667, "angle": 0 },
  1314. { "time": 1, "angle": 1.16 },
  1315. {
  1316. "time": 1.2667,
  1317. "angle": 2.32,
  1318. "curve": [ 0.25, 0, 0.75, 1 ]
  1319. },
  1320. { "time": 2.7, "angle": 0 },
  1321. { "time": 4.2, "angle": 4.6 }
  1322. ],
  1323. "translate": [
  1324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1325. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1326. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1327. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1328. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1329. { "time": 2.7, "x": 0, "y": 0 }
  1330. ],
  1331. "scale": [
  1332. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1333. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1334. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1335. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1337. { "time": 2.7, "x": 1, "y": 1 }
  1338. ]
  1339. },
  1340. "bone31": {
  1341. "rotate": [
  1342. { "time": 0, "angle": 0, "curve": "stepped" },
  1343. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1344. { "time": 0.8667, "angle": 0 },
  1345. { "time": 1, "angle": 1.16 },
  1346. {
  1347. "time": 1.2667,
  1348. "angle": 2.32,
  1349. "curve": [ 0.25, 0, 0.75, 1 ]
  1350. },
  1351. { "time": 2.7, "angle": 0 },
  1352. { "time": 4.2, "angle": 4.6 }
  1353. ]
  1354. },
  1355. "bone32": {
  1356. "rotate": [
  1357. { "time": 0, "angle": 0, "curve": "stepped" },
  1358. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1359. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1360. { "time": 1, "angle": 0, "curve": "stepped" },
  1361. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1362. { "time": 2.7, "angle": 0 }
  1363. ],
  1364. "translate": [
  1365. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1366. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1367. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1368. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1369. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1370. { "time": 2.7, "x": 0, "y": 0 }
  1371. ],
  1372. "scale": [
  1373. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1374. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1375. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1376. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1377. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1378. { "time": 2.7, "x": 1, "y": 1 }
  1379. ]
  1380. },
  1381. "bone33": {
  1382. "rotate": [
  1383. { "time": 0, "angle": 0, "curve": "stepped" },
  1384. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1385. { "time": 0.8667, "angle": 0 },
  1386. { "time": 1, "angle": 2.22 },
  1387. { "time": 1.1, "angle": 3.33 },
  1388. {
  1389. "time": 1.2667,
  1390. "angle": 4.17,
  1391. "curve": [ 0.272, 0, 0.619, 0.41 ]
  1392. },
  1393. {
  1394. "time": 1.6333,
  1395. "angle": 14.29,
  1396. "curve": [ 0.317, 0.28, 0.671, 0.68 ]
  1397. },
  1398. {
  1399. "time": 2.1,
  1400. "angle": 2.73,
  1401. "curve": [ 0.382, 0.56, 0.737, 1 ]
  1402. },
  1403. { "time": 2.7, "angle": 0 },
  1404. { "time": 4.2, "angle": 4.6 }
  1405. ],
  1406. "translate": [
  1407. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1408. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1409. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1410. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1411. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1412. { "time": 2.7, "x": 0, "y": 0 }
  1413. ],
  1414. "scale": [
  1415. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1416. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1417. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1418. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1419. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1420. { "time": 2.7, "x": 1, "y": 1 }
  1421. ]
  1422. },
  1423. "bone34": {
  1424. "rotate": [
  1425. { "time": 0, "angle": 0 },
  1426. { "time": 0.1333, "angle": 6.79 },
  1427. { "time": 0.8667, "angle": 0 },
  1428. { "time": 1, "angle": 3.4 },
  1429. { "time": 1.1, "angle": 5.1 },
  1430. {
  1431. "time": 1.5,
  1432. "angle": 3.84,
  1433. "curve": [ 0.246, 0, 0.635, 0.54 ]
  1434. },
  1435. {
  1436. "time": 2.1,
  1437. "angle": 4.82,
  1438. "curve": [ 0.381, 0.54, 0.744, 1 ]
  1439. },
  1440. { "time": 2.7, "angle": 0 },
  1441. { "time": 4.2, "angle": 4.6 }
  1442. ],
  1443. "translate": [
  1444. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1445. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1446. { "time": 0.8667, "x": 0, "y": 0 },
  1447. { "time": 1, "x": 1.8, "y": 0.14 },
  1448. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1449. { "time": 2.7, "x": 0, "y": 0 }
  1450. ],
  1451. "scale": [
  1452. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1453. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1454. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1455. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1456. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1457. { "time": 2.7, "x": 1, "y": 1 }
  1458. ]
  1459. },
  1460. "bone35": {
  1461. "rotate": [
  1462. { "time": 0, "angle": 0, "curve": "stepped" },
  1463. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1464. { "time": 0.8667, "angle": 0 },
  1465. { "time": 1, "angle": 0.68 },
  1466. {
  1467. "time": 1.5,
  1468. "angle": 1.37,
  1469. "curve": [ 0.246, 0, 0.635, 0.54 ]
  1470. },
  1471. {
  1472. "time": 2.1,
  1473. "angle": 4.82,
  1474. "curve": [ 0.381, 0.54, 0.744, 1 ]
  1475. },
  1476. { "time": 2.7, "angle": 0 },
  1477. { "time": 4.2, "angle": 4.6 }
  1478. ],
  1479. "translate": [
  1480. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1481. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1482. { "time": 0.8667, "x": 0, "y": 0 },
  1483. { "time": 1, "x": 1.38, "y": 0.11 },
  1484. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1485. { "time": 2.7, "x": 0, "y": 0 }
  1486. ],
  1487. "scale": [
  1488. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1489. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1490. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1491. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1492. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1493. { "time": 2.7, "x": 1, "y": 1 }
  1494. ]
  1495. },
  1496. "bone36": {
  1497. "rotate": [
  1498. { "time": 0, "angle": 0, "curve": "stepped" },
  1499. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1500. { "time": 0.8667, "angle": 0 },
  1501. { "time": 1, "angle": 2.44 },
  1502. {
  1503. "time": 1.2667,
  1504. "angle": 4.87,
  1505. "curve": [ 0.246, 0, 0.635, 0.54 ]
  1506. },
  1507. {
  1508. "time": 2.1,
  1509. "angle": 4.82,
  1510. "curve": [ 0.381, 0.54, 0.744, 1 ]
  1511. },
  1512. { "time": 2.7, "angle": 0 },
  1513. { "time": 4.2, "angle": 4.6 }
  1514. ],
  1515. "translate": [
  1516. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1517. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1518. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1519. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 2.7, "x": 0, "y": 0 }
  1522. ],
  1523. "scale": [
  1524. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1525. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1526. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1528. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1529. { "time": 2.7, "x": 1, "y": 1 }
  1530. ]
  1531. },
  1532. "bone37": {
  1533. "rotate": [
  1534. { "time": 0, "angle": 0, "curve": "stepped" },
  1535. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1536. { "time": 0.8667, "angle": 0 },
  1537. { "time": 1, "angle": 6.95 },
  1538. {
  1539. "time": 1.2667,
  1540. "angle": 13.9,
  1541. "curve": [ 0.296, 0, 0.633, 0.37 ]
  1542. },
  1543. {
  1544. "time": 1.4667,
  1545. "angle": -4.92,
  1546. "curve": [ 0.293, 0.19, 0.646, 0.59 ]
  1547. },
  1548. {
  1549. "time": 1.9667,
  1550. "angle": 6.19,
  1551. "curve": [ 0.374, 0.49, 0.751, 1 ]
  1552. },
  1553. { "time": 2.7, "angle": 0 }
  1554. ],
  1555. "translate": [
  1556. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1557. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1558. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1559. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1560. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1561. { "time": 2.7, "x": 0, "y": 0 }
  1562. ],
  1563. "scale": [
  1564. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1565. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1566. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1567. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1568. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1569. { "time": 2.7, "x": 1, "y": 1 }
  1570. ]
  1571. },
  1572. "bone38": {
  1573. "rotate": [
  1574. { "time": 0, "angle": 0 },
  1575. { "time": 0.1333, "angle": -4.39 },
  1576. { "time": 0.8667, "angle": -4.85 },
  1577. { "time": 1, "angle": -4.67 },
  1578. {
  1579. "time": 1.2667,
  1580. "angle": -9.35,
  1581. "curve": [ 0.279, 0, 0.622, 0.39 ]
  1582. },
  1583. {
  1584. "time": 1.4667,
  1585. "angle": -22.37,
  1586. "curve": [ 0.329, 0.32, 0.758, 1 ]
  1587. },
  1588. { "time": 2.7, "angle": 0 },
  1589. { "time": 4.2, "angle": 1.34 }
  1590. ],
  1591. "translate": [
  1592. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1593. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1594. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1595. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1596. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1597. { "time": 2.7, "x": 0, "y": 0 }
  1598. ],
  1599. "scale": [
  1600. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1601. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1602. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1603. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1604. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1605. { "time": 2.7, "x": 1, "y": 1 }
  1606. ]
  1607. },
  1608. "bone39": {
  1609. "rotate": [
  1610. { "time": 0, "angle": 0 },
  1611. { "time": 0.1333, "angle": -4.58 },
  1612. { "time": 0.8667, "angle": -4.85 },
  1613. { "time": 1, "angle": -1.23 },
  1614. {
  1615. "time": 1.2667,
  1616. "angle": -2.45,
  1617. "curve": [ 0.279, 0, 0.622, 0.39 ]
  1618. },
  1619. {
  1620. "time": 1.4667,
  1621. "angle": 3.12,
  1622. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  1623. },
  1624. {
  1625. "time": 1.9667,
  1626. "angle": -12.53,
  1627. "curve": [ 0.379, 0.52, 0.747, 1 ]
  1628. },
  1629. { "time": 2.7, "angle": 0 },
  1630. { "time": 4.2, "angle": 1.34 }
  1631. ],
  1632. "translate": [
  1633. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1634. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1635. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1636. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1637. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1638. { "time": 2.7, "x": 0, "y": 0 }
  1639. ],
  1640. "scale": [
  1641. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1642. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1644. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1645. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1646. { "time": 2.7, "x": 1, "y": 1 }
  1647. ]
  1648. },
  1649. "bone40": {
  1650. "rotate": [
  1651. { "time": 0, "angle": 0, "curve": "stepped" },
  1652. { "time": 0.1333, "angle": 0 },
  1653. { "time": 0.8667, "angle": -4.85 },
  1654. { "time": 1, "angle": -4.8 },
  1655. {
  1656. "time": 1.2667,
  1657. "angle": -9.6,
  1658. "curve": [ 0.279, 0, 0.622, 0.39 ]
  1659. },
  1660. {
  1661. "time": 1.4667,
  1662. "angle": 3.12,
  1663. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  1664. },
  1665. {
  1666. "time": 1.9667,
  1667. "angle": -12.53,
  1668. "curve": [ 0.379, 0.52, 0.747, 1 ]
  1669. },
  1670. { "time": 2.7, "angle": 0 },
  1671. { "time": 4.2, "angle": 1.34 }
  1672. ],
  1673. "translate": [
  1674. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1675. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1676. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1677. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1678. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1679. { "time": 2.7, "x": 0, "y": 0 }
  1680. ],
  1681. "scale": [
  1682. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1684. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1686. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1687. { "time": 2.7, "x": 1, "y": 1 }
  1688. ]
  1689. },
  1690. "bone41": {
  1691. "rotate": [
  1692. { "time": 0, "angle": 0, "curve": "stepped" },
  1693. { "time": 0.1333, "angle": 0 },
  1694. { "time": 0.8667, "angle": -4.85 },
  1695. { "time": 1, "angle": -2.2 },
  1696. {
  1697. "time": 1.2667,
  1698. "angle": -4.41,
  1699. "curve": [ 0.279, 0, 0.622, 0.39 ]
  1700. },
  1701. {
  1702. "time": 1.4667,
  1703. "angle": 3.12,
  1704. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  1705. },
  1706. {
  1707. "time": 1.9667,
  1708. "angle": -12.53,
  1709. "curve": [ 0.379, 0.52, 0.747, 1 ]
  1710. },
  1711. { "time": 2.7, "angle": 0 },
  1712. { "time": 4.2, "angle": 1.34 }
  1713. ],
  1714. "translate": [
  1715. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1716. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1717. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1720. { "time": 2.7, "x": 0, "y": 0 }
  1721. ],
  1722. "scale": [
  1723. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1724. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1725. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1727. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 2.7, "x": 1, "y": 1 }
  1729. ]
  1730. },
  1731. "bone47": {
  1732. "rotate": [
  1733. { "time": 0, "angle": 0, "curve": "stepped" },
  1734. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1735. { "time": 0.8667, "angle": 0 },
  1736. { "time": 1, "angle": 7.59 },
  1737. { "time": 1.1667, "angle": 12.9, "curve": "stepped" },
  1738. { "time": 1.2, "angle": 12.9, "curve": "stepped" },
  1739. { "time": 1.3, "angle": 12.9, "curve": "stepped" },
  1740. { "time": 1.4667, "angle": 12.9 }
  1741. ]
  1742. },
  1743. "bone49": {
  1744. "rotate": [
  1745. { "time": 0, "angle": 0, "curve": "stepped" },
  1746. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1747. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1748. { "time": 1, "angle": 0, "curve": "stepped" },
  1749. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1750. { "time": 1.2, "angle": 0 },
  1751. { "time": 1.3, "angle": 4.41 }
  1752. ]
  1753. },
  1754. "bone52": {
  1755. "rotate": [
  1756. { "time": 0, "angle": 0, "curve": "stepped" },
  1757. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1758. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1759. { "time": 1, "angle": 0, "curve": "stepped" },
  1760. { "time": 1.1, "angle": 0, "curve": "stepped" },
  1761. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1762. { "time": 2.5, "angle": 0 }
  1763. ]
  1764. },
  1765. "bone53": {
  1766. "rotate": [
  1767. { "time": 0, "angle": 0, "curve": "stepped" },
  1768. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1769. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1770. { "time": 1, "angle": 0, "curve": "stepped" },
  1771. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1772. { "time": 1.2, "angle": 0 },
  1773. { "time": 1.2667, "angle": -24.42 },
  1774. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1775. { "time": 1.4667, "angle": 0 }
  1776. ],
  1777. "translate": [
  1778. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1779. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1780. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1781. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1782. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1783. { "time": 1.2, "x": 0, "y": 0 },
  1784. { "time": 1.2667, "x": -5.34, "y": -12.54 },
  1785. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1786. { "time": 1.4667, "x": 0, "y": 0 }
  1787. ]
  1788. },
  1789. "bone55": {
  1790. "rotate": [
  1791. { "time": 0, "angle": 0 },
  1792. { "time": 0.8667, "angle": -355.14 },
  1793. { "time": 1, "angle": 0, "curve": "stepped" },
  1794. { "time": 1.1667, "angle": 0 },
  1795. { "time": 1.4667, "angle": -358.18 },
  1796. { "time": 2.7, "angle": 0 }
  1797. ],
  1798. "translate": [
  1799. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1800. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1801. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1802. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1803. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1804. { "time": 2.7, "x": 0, "y": 0 }
  1805. ],
  1806. "scale": [
  1807. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1808. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1809. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1810. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1811. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1812. { "time": 2.7, "x": 1, "y": 1 }
  1813. ]
  1814. },
  1815. "bone56": {
  1816. "rotate": [
  1817. { "time": 0, "angle": 0 },
  1818. { "time": 0.8667, "angle": 4.92 },
  1819. { "time": 1, "angle": 0 },
  1820. { "time": 1.1667, "angle": -7.54 },
  1821. { "time": 1.4667, "angle": 1.82 },
  1822. { "time": 2.7, "angle": 0 }
  1823. ],
  1824. "translate": [
  1825. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1826. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1827. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1828. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1829. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1830. { "time": 2.7, "x": 0, "y": 0 }
  1831. ],
  1832. "scale": [
  1833. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1834. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1835. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1836. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1837. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1838. { "time": 2.7, "x": 1, "y": 1 }
  1839. ]
  1840. },
  1841. "bone57": {
  1842. "rotate": [
  1843. { "time": 0, "angle": 0, "curve": "stepped" },
  1844. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1845. { "time": 1, "angle": 0, "curve": "stepped" },
  1846. { "time": 1.1667, "angle": 0 },
  1847. { "time": 1.4667, "angle": 1.82 },
  1848. { "time": 2.7, "angle": 0 }
  1849. ],
  1850. "translate": [
  1851. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1852. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1853. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1854. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1855. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1856. { "time": 2.7, "x": 0, "y": 0 }
  1857. ],
  1858. "scale": [
  1859. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1860. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1861. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1862. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1863. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 2.7, "x": 1, "y": 1 }
  1865. ]
  1866. },
  1867. "bone58": {
  1868. "rotate": [
  1869. { "time": 0, "angle": 0, "curve": "stepped" },
  1870. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  1871. { "time": 1, "angle": 0, "curve": "stepped" },
  1872. { "time": 1.1667, "angle": 0 },
  1873. { "time": 1.4667, "angle": 1.82 },
  1874. { "time": 2.7, "angle": 0 }
  1875. ],
  1876. "translate": [
  1877. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1878. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1879. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1880. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1881. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1882. { "time": 2.7, "x": 0, "y": 0 }
  1883. ],
  1884. "scale": [
  1885. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1886. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1887. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1888. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1890. { "time": 2.7, "x": 1, "y": 1 }
  1891. ]
  1892. },
  1893. "bone60": {
  1894. "rotate": [
  1895. { "time": 0, "angle": 0 },
  1896. { "time": 0.8667, "angle": 0.89 },
  1897. { "time": 1, "angle": 0, "curve": "stepped" },
  1898. { "time": 1.1667, "angle": 0 },
  1899. { "time": 1.5667, "angle": -9.71 },
  1900. { "time": 2.7, "angle": 3.67 },
  1901. { "time": 4.2, "angle": -9.71 }
  1902. ],
  1903. "translate": [
  1904. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1905. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1906. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1907. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1908. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1909. { "time": 4.2, "x": 0, "y": 0 }
  1910. ],
  1911. "scale": [
  1912. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1913. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1914. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1915. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1916. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1917. { "time": 4.2, "x": 1, "y": 1 }
  1918. ]
  1919. },
  1920. "bone61": {
  1921. "rotate": [
  1922. { "time": 0, "angle": 0 },
  1923. { "time": 0.8667, "angle": 3.1 },
  1924. { "time": 1, "angle": 2.49 },
  1925. { "time": 1.1667, "angle": 4.24 },
  1926. { "time": 1.5667, "angle": 0 },
  1927. { "time": 2.7, "angle": 1.93 },
  1928. { "time": 4.2, "angle": 0 }
  1929. ],
  1930. "translate": [
  1931. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1932. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1933. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1934. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1935. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1936. { "time": 4.2, "x": 0, "y": 0 }
  1937. ],
  1938. "scale": [
  1939. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1940. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1941. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1942. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1943. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1944. { "time": 4.2, "x": 1, "y": 1 }
  1945. ]
  1946. },
  1947. "bone62": {
  1948. "rotate": [
  1949. { "time": 0, "angle": 0 },
  1950. { "time": 0.8667, "angle": 8.69 },
  1951. { "time": 1, "angle": 2.49 },
  1952. { "time": 1.1667, "angle": 4.24 },
  1953. { "time": 1.5667, "angle": 8.36 },
  1954. { "time": 2.7, "angle": -7.92 },
  1955. { "time": 4.2, "angle": 8.36 }
  1956. ],
  1957. "translate": [
  1958. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1959. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1960. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1961. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1962. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1963. { "time": 4.2, "x": 0, "y": 0 }
  1964. ],
  1965. "scale": [
  1966. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1967. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1968. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1969. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1970. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1971. { "time": 4.2, "x": 1, "y": 1 }
  1972. ]
  1973. },
  1974. "bone63": {
  1975. "rotate": [
  1976. { "time": 0, "angle": 0 },
  1977. { "time": 0.8667, "angle": 0.89 },
  1978. { "time": 1, "angle": 2.49 },
  1979. { "time": 1.1667, "angle": 4.24 },
  1980. { "time": 1.5667, "angle": 8.36 },
  1981. { "time": 2.7, "angle": 6.18 },
  1982. { "time": 4.2, "angle": 8.36 }
  1983. ],
  1984. "translate": [
  1985. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1986. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1987. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1988. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1989. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1990. { "time": 4.2, "x": 0, "y": 0 }
  1991. ],
  1992. "scale": [
  1993. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1994. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1995. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1996. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1997. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1998. { "time": 4.2, "x": 1, "y": 1 }
  1999. ]
  2000. },
  2001. "bone64": {
  2002. "rotate": [
  2003. { "time": 0, "angle": 0, "curve": "stepped" },
  2004. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2005. { "time": 1, "angle": 0, "curve": "stepped" },
  2006. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2007. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2008. { "time": 4.2, "angle": 0 }
  2009. ],
  2010. "translate": [
  2011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2013. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2014. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2015. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2016. { "time": 4.2, "x": 0, "y": 0 }
  2017. ],
  2018. "scale": [
  2019. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2022. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2023. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2024. { "time": 4.2, "x": 1, "y": 1 }
  2025. ]
  2026. },
  2027. "bone65": {
  2028. "rotate": [
  2029. { "time": 0, "angle": 0 },
  2030. { "time": 0.8667, "angle": 2.4 },
  2031. { "time": 1, "angle": 0, "curve": "stepped" },
  2032. { "time": 1.1667, "angle": 0 },
  2033. { "time": 1.6667, "angle": 12.56 },
  2034. { "time": 2.7, "angle": -2.25 },
  2035. { "time": 4.2, "angle": 12.56 }
  2036. ],
  2037. "translate": [
  2038. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2039. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2040. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 4.2, "x": 0, "y": 0 }
  2044. ],
  2045. "scale": [
  2046. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2047. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2048. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2049. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2050. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 4.2, "x": 1, "y": 1 }
  2052. ]
  2053. },
  2054. "bone66": {
  2055. "rotate": [
  2056. { "time": 0, "angle": 0 },
  2057. { "time": 0.8667, "angle": 2.4 },
  2058. { "time": 1, "angle": -2.64 },
  2059. { "time": 1.1667, "angle": -4.49 },
  2060. { "time": 1.6667, "angle": 7.7 },
  2061. { "time": 2.7, "angle": 3.59 },
  2062. { "time": 4.2, "angle": 7.7 }
  2063. ],
  2064. "translate": [
  2065. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2066. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2067. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2068. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2069. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2070. { "time": 4.2, "x": 0, "y": 0 }
  2071. ],
  2072. "scale": [
  2073. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2075. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2076. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2077. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2078. { "time": 4.2, "x": 1, "y": 1 }
  2079. ]
  2080. },
  2081. "bone67": {
  2082. "rotate": [
  2083. { "time": 0, "angle": 0, "curve": "stepped" },
  2084. { "time": 0.8667, "angle": 0 },
  2085. { "time": 1, "angle": -2.64 },
  2086. { "time": 1.1667, "angle": -4.49 },
  2087. { "time": 1.6667, "angle": -5.16 },
  2088. { "time": 2.7, "angle": 6.57 },
  2089. { "time": 4.2, "angle": -5.16 }
  2090. ],
  2091. "translate": [
  2092. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2093. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2094. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2095. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2096. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2097. { "time": 4.2, "x": 0, "y": 0 }
  2098. ],
  2099. "scale": [
  2100. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2101. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2102. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2103. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2104. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2105. { "time": 4.2, "x": 1, "y": 1 }
  2106. ]
  2107. },
  2108. "bone68": {
  2109. "rotate": [
  2110. { "time": 0, "angle": 0, "curve": "stepped" },
  2111. { "time": 0.8667, "angle": 0 },
  2112. { "time": 1, "angle": -2.64 },
  2113. { "time": 1.1667, "angle": -4.49 },
  2114. { "time": 1.6667, "angle": 0 },
  2115. { "time": 2.7, "angle": 13.87 },
  2116. { "time": 4.2, "angle": 0 }
  2117. ],
  2118. "translate": [
  2119. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2120. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2121. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2122. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2123. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2124. { "time": 4.2, "x": 0, "y": 0 }
  2125. ],
  2126. "scale": [
  2127. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2128. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2129. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2130. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2131. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2132. { "time": 4.2, "x": 1, "y": 1 }
  2133. ]
  2134. },
  2135. "bone69": {
  2136. "rotate": [
  2137. { "time": 0, "angle": 0, "curve": "stepped" },
  2138. { "time": 1.1667, "angle": 0 },
  2139. { "time": 1.5667, "angle": -4.32 },
  2140. { "time": 2.7, "angle": 0 },
  2141. { "time": 4.2, "angle": -4.32 }
  2142. ],
  2143. "translate": [
  2144. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2145. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2146. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2147. { "time": 4.2, "x": 0, "y": 0 }
  2148. ],
  2149. "scale": [
  2150. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2151. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2152. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2153. { "time": 4.2, "x": 1, "y": 1 }
  2154. ]
  2155. },
  2156. "bone70": {
  2157. "rotate": [
  2158. { "time": 0, "angle": 0 },
  2159. { "time": 0.8667, "angle": 3.66 },
  2160. { "time": 1, "angle": -1.35 },
  2161. { "time": 1.1667, "angle": -2.3 },
  2162. { "time": 1.5667, "angle": -0.79 },
  2163. { "time": 2.7, "angle": 2.16 },
  2164. { "time": 4.2, "angle": -0.79 }
  2165. ],
  2166. "translate": [
  2167. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2168. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2169. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2170. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2172. { "time": 4.2, "x": 0, "y": 0 }
  2173. ],
  2174. "scale": [
  2175. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2176. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2177. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2178. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2179. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2180. { "time": 4.2, "x": 1, "y": 1 }
  2181. ]
  2182. },
  2183. "bone71": {
  2184. "rotate": [
  2185. { "time": 0, "angle": 0 },
  2186. { "time": 0.8667, "angle": 5.89 },
  2187. { "time": 1, "angle": 0, "curve": "stepped" },
  2188. { "time": 1.1667, "angle": 0 },
  2189. { "time": 1.5667, "angle": -8.58 },
  2190. { "time": 2.7, "angle": 0 },
  2191. { "time": 4.2, "angle": -8.58 }
  2192. ],
  2193. "translate": [
  2194. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2195. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2196. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2197. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2198. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2199. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2200. { "time": 4.2, "x": 0, "y": 0 }
  2201. ],
  2202. "scale": [
  2203. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2204. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2205. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2206. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2207. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2208. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2209. { "time": 4.2, "x": 1, "y": 1 }
  2210. ]
  2211. },
  2212. "bone72": {
  2213. "rotate": [
  2214. { "time": 0, "angle": 0, "curve": "stepped" },
  2215. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2216. { "time": 1, "angle": 0, "curve": "stepped" },
  2217. { "time": 1.1667, "angle": 0 },
  2218. { "time": 1.5667, "angle": 5.68 },
  2219. { "time": 2.7, "angle": 0 },
  2220. { "time": 4.2, "angle": 5.68 }
  2221. ],
  2222. "translate": [
  2223. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2224. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2225. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2226. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2227. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2228. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  2229. { "time": 4.2, "x": 0, "y": 0 }
  2230. ],
  2231. "scale": [
  2232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2233. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2234. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2235. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2236. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2237. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  2238. { "time": 4.2, "x": 1, "y": 1 }
  2239. ]
  2240. },
  2241. "bone73": {
  2242. "rotate": [
  2243. { "time": 0, "angle": 0, "curve": "stepped" },
  2244. { "time": 1.5667, "angle": 0 },
  2245. { "time": 2.7, "angle": -2.9 },
  2246. { "time": 4.2, "angle": 0 }
  2247. ],
  2248. "translate": [
  2249. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2250. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2251. { "time": 4.2, "x": 0, "y": 0 }
  2252. ],
  2253. "scale": [
  2254. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 4.2, "x": 1, "y": 1 }
  2257. ]
  2258. },
  2259. "bone74": {
  2260. "rotate": [
  2261. { "time": 0, "angle": 0 },
  2262. { "time": 0.8667, "angle": 7.34 },
  2263. { "time": 1, "angle": 2.38 },
  2264. { "time": 1.1667, "angle": 4.04 },
  2265. { "time": 1.5667, "angle": -2.69 },
  2266. { "time": 2.7, "angle": 0 },
  2267. { "time": 4.2, "angle": -2.69 }
  2268. ],
  2269. "translate": [
  2270. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2271. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2272. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 2.7, "x": 0, "y": 0 }
  2275. ],
  2276. "scale": [
  2277. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2278. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2279. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2280. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2281. { "time": 2.7, "x": 1, "y": 1 }
  2282. ]
  2283. },
  2284. "bone75": {
  2285. "rotate": [
  2286. { "time": 0, "angle": 0, "curve": "stepped" },
  2287. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2288. { "time": 1, "angle": 0, "curve": "stepped" },
  2289. { "time": 1.1667, "angle": 0 },
  2290. { "time": 1.4667, "angle": -8.17 },
  2291. { "time": 2.7, "angle": 0 }
  2292. ],
  2293. "translate": [
  2294. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2295. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2296. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2297. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2298. { "time": 2.7, "x": 0, "y": 0 }
  2299. ],
  2300. "scale": [
  2301. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2302. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2303. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2304. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2305. { "time": 2.7, "x": 1, "y": 1 }
  2306. ]
  2307. },
  2308. "bone76": {
  2309. "rotate": [
  2310. { "time": 0, "angle": 0, "curve": "stepped" },
  2311. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2312. { "time": 1, "angle": 0, "curve": "stepped" },
  2313. { "time": 1.1667, "angle": 0 },
  2314. { "time": 1.4667, "angle": 2.44 },
  2315. { "time": 2.7, "angle": 0 }
  2316. ],
  2317. "translate": [
  2318. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2319. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2320. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2321. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2322. { "time": 2.7, "x": 0, "y": 0 }
  2323. ],
  2324. "scale": [
  2325. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2326. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2327. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2328. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2329. { "time": 2.7, "x": 1, "y": 1 }
  2330. ]
  2331. },
  2332. "bone77": {
  2333. "rotate": [
  2334. { "time": 0, "angle": 0, "curve": "stepped" },
  2335. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2336. { "time": 1, "angle": 0, "curve": "stepped" },
  2337. { "time": 1.1667, "angle": 0 },
  2338. { "time": 1.4667, "angle": 2.44 },
  2339. { "time": 2.7, "angle": 0 }
  2340. ],
  2341. "translate": [
  2342. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2343. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2344. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2345. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2346. { "time": 2.7, "x": 0, "y": 0 }
  2347. ],
  2348. "scale": [
  2349. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2350. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2351. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2352. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2353. { "time": 2.7, "x": 1, "y": 1 }
  2354. ]
  2355. },
  2356. "bone84": {
  2357. "rotate": [
  2358. { "time": 0, "angle": 26.28 },
  2359. { "time": 0.8667, "angle": 80.47 },
  2360. { "time": 1, "angle": 0 },
  2361. { "time": 1.1667, "angle": -15.65 },
  2362. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2363. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2364. { "time": 1.4667, "angle": 0 }
  2365. ]
  2366. },
  2367. "bone85": {
  2368. "rotate": [
  2369. { "time": 0, "angle": 0 },
  2370. { "time": 0.8667, "angle": 21.97 },
  2371. { "time": 1, "angle": 0 },
  2372. { "time": 1.1667, "angle": -15.65 },
  2373. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2374. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2375. { "time": 1.4667, "angle": 0 }
  2376. ]
  2377. },
  2378. "bone86": {
  2379. "rotate": [
  2380. { "time": 0, "angle": 0 },
  2381. { "time": 0.8667, "angle": 21.97 },
  2382. { "time": 1, "angle": 0 },
  2383. { "time": 1.1667, "angle": -15.65 },
  2384. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2385. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2386. { "time": 1.4667, "angle": 0 }
  2387. ],
  2388. "translate": [
  2389. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2390. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2391. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2392. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2393. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  2394. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2395. { "time": 1.4667, "x": 0, "y": 0 }
  2396. ],
  2397. "scale": [
  2398. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2399. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2401. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2402. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  2403. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2404. { "time": 1.4667, "x": 1, "y": 1 }
  2405. ]
  2406. },
  2407. "bone87": {
  2408. "rotate": [
  2409. { "time": 0, "angle": 44.56 },
  2410. { "time": 0.8667, "angle": 107.56 },
  2411. { "time": 1, "angle": 0 },
  2412. { "time": 1.1667, "angle": -14.4 },
  2413. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2414. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2415. { "time": 1.4667, "angle": 0 }
  2416. ]
  2417. },
  2418. "bone88": {
  2419. "rotate": [
  2420. { "time": 0, "angle": 0, "curve": "stepped" },
  2421. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2422. { "time": 1, "angle": 0 },
  2423. { "time": 1.1667, "angle": -14.4 },
  2424. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2425. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2426. { "time": 1.4667, "angle": 0 }
  2427. ]
  2428. },
  2429. "bone89": {
  2430. "rotate": [
  2431. { "time": 0, "angle": 0, "curve": "stepped" },
  2432. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2433. { "time": 1, "angle": 0 },
  2434. { "time": 1.1667, "angle": -14.4 },
  2435. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2436. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2437. { "time": 1.4667, "angle": 0 }
  2438. ]
  2439. },
  2440. "bone6": {
  2441. "rotate": [
  2442. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  2443. { "time": 2.8333, "angle": 0 }
  2444. ],
  2445. "translate": [
  2446. { "time": 2.3333, "x": 6.85, "y": 0 },
  2447. { "time": 2.8333, "x": 0, "y": 0 },
  2448. { "time": 4.2, "x": -3.59, "y": 0 }
  2449. ],
  2450. "scale": [
  2451. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 2.8333, "x": 1, "y": 1 }
  2453. ]
  2454. },
  2455. "bone5": {
  2456. "rotate": [
  2457. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2458. { "time": 2.6667, "angle": 0 }
  2459. ],
  2460. "translate": [
  2461. { "time": 2.1667, "x": 6.85, "y": 0 },
  2462. { "time": 2.6667, "x": 0, "y": 0 },
  2463. { "time": 4.2, "x": -3.59, "y": 0 }
  2464. ],
  2465. "scale": [
  2466. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2467. { "time": 2.6667, "x": 1, "y": 1 }
  2468. ]
  2469. },
  2470. "bone4": {
  2471. "rotate": [
  2472. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2473. { "time": 2.1333, "angle": 0 }
  2474. ],
  2475. "translate": [
  2476. { "time": 1.6333, "x": 6.85, "y": 0 },
  2477. { "time": 2.1333, "x": 0, "y": 0 },
  2478. { "time": 4.2, "x": -3.59, "y": 0 }
  2479. ],
  2480. "scale": [
  2481. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2482. { "time": 2.1333, "x": 1, "y": 1 }
  2483. ]
  2484. },
  2485. "bone3": {
  2486. "rotate": [
  2487. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2488. { "time": 2.3333, "angle": 0 }
  2489. ],
  2490. "translate": [
  2491. { "time": 1.8333, "x": 6.85, "y": 0 },
  2492. { "time": 2.3333, "x": 0, "y": 0 },
  2493. { "time": 4.2, "x": -3.59, "y": 0 }
  2494. ],
  2495. "scale": [
  2496. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2497. { "time": 2.3333, "x": 1, "y": 1 }
  2498. ]
  2499. },
  2500. "bone2": {
  2501. "rotate": [
  2502. { "time": 2, "angle": 0, "curve": "stepped" },
  2503. { "time": 2.5, "angle": 0 }
  2504. ],
  2505. "translate": [
  2506. { "time": 2, "x": 6.85, "y": 0 },
  2507. { "time": 2.5, "x": 0, "y": 0 },
  2508. { "time": 4.2, "x": -3.59, "y": 0 }
  2509. ],
  2510. "scale": [
  2511. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 2.5, "x": 1, "y": 1 }
  2513. ]
  2514. },
  2515. "bone81": {
  2516. "rotate": [
  2517. { "time": 0, "angle": -14.41, "curve": "stepped" },
  2518. { "time": 1.6667, "angle": -14.41 },
  2519. { "time": 1.8667, "angle": 0 }
  2520. ],
  2521. "translate": [
  2522. { "time": 0, "x": -63.79, "y": 288.91, "curve": "stepped" },
  2523. { "time": 1.6667, "x": -63.79, "y": 288.91 },
  2524. { "time": 1.8667, "x": -65.24, "y": 291.14 }
  2525. ],
  2526. "scale": [
  2527. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2528. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 1.8667, "x": 1, "y": 1 }
  2530. ]
  2531. },
  2532. "bone78": {
  2533. "rotate": [
  2534. { "time": 0, "angle": 0, "curve": "stepped" },
  2535. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2536. { "time": 1, "angle": 0, "curve": "stepped" },
  2537. {
  2538. "time": 1.2,
  2539. "angle": -26.76,
  2540. "curve": [ 0.25, 0, 0.75, 1 ]
  2541. },
  2542. { "time": 1.5333, "angle": -0.08 }
  2543. ],
  2544. "translate": [
  2545. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2546. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2547. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2548. {
  2549. "time": 1.2,
  2550. "x": -57.48,
  2551. "y": 318.43,
  2552. "curve": [ 0.25, 0, 0.75, 1 ]
  2553. },
  2554. { "time": 1.5333, "x": -55.57, "y": 320.99 }
  2555. ],
  2556. "scale": [
  2557. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2558. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2559. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2560. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  2561. { "time": 1.5333, "x": 1, "y": 1 }
  2562. ]
  2563. },
  2564. "bone79": {
  2565. "rotate": [
  2566. { "time": 0, "angle": 0, "curve": "stepped" },
  2567. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2568. { "time": 1, "angle": 0 },
  2569. {
  2570. "time": 1.2,
  2571. "angle": 131.49,
  2572. "curve": [ 0.287, 0, 0.627, 0.38 ]
  2573. },
  2574. {
  2575. "time": 1.3333,
  2576. "angle": 90.82,
  2577. "curve": [ 0.304, 0.24, 0.649, 0.61 ]
  2578. },
  2579. {
  2580. "time": 1.5333,
  2581. "angle": 52.75,
  2582. "curve": [ 0.37, 0.48, 0.753, 1 ]
  2583. },
  2584. { "time": 1.6667, "angle": 58.83 }
  2585. ],
  2586. "translate": [
  2587. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2588. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2589. { "time": 1, "x": 0, "y": 0 },
  2590. {
  2591. "time": 1.2,
  2592. "x": -6.3,
  2593. "y": 2.81,
  2594. "curve": [ 0.25, 0, 0.75, 1 ]
  2595. },
  2596. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2597. { "time": 1.6667, "x": 0, "y": 0 }
  2598. ],
  2599. "scale": [
  2600. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2601. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2602. { "time": 1, "x": 1, "y": 1 }
  2603. ]
  2604. },
  2605. "bone80": {
  2606. "rotate": [
  2607. { "time": 0, "angle": 0, "curve": "stepped" },
  2608. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2609. { "time": 1, "angle": 0, "curve": "stepped" },
  2610. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2611. { "time": 1.5, "angle": 0 },
  2612. { "time": 1.6333, "angle": -7.89 }
  2613. ],
  2614. "translate": [
  2615. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2616. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2617. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2618. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  2619. { "time": 1.5, "x": 0, "y": 0 }
  2620. ],
  2621. "scale": [
  2622. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2623. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2624. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2625. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  2626. { "time": 1.5, "x": 1, "y": 1 }
  2627. ]
  2628. },
  2629. "bone93": {
  2630. "rotate": [
  2631. { "time": 0, "angle": 0 },
  2632. { "time": 1.3, "angle": 44.6 },
  2633. { "time": 1.3667, "angle": -14.38, "curve": "stepped" },
  2634. { "time": 1.7, "angle": -14.38 },
  2635. { "time": 1.8667, "angle": -19.19 },
  2636. { "time": 2.7, "angle": -1.89 },
  2637. { "time": 4.2, "angle": 12.55 }
  2638. ],
  2639. "translate": [
  2640. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2641. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2642. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2643. { "time": 1.7, "x": 0, "y": 0 }
  2644. ],
  2645. "scale": [
  2646. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2647. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2648. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2649. { "time": 1.7, "x": 1, "y": 1 }
  2650. ]
  2651. },
  2652. "bone92": {
  2653. "rotate": [
  2654. { "time": 0, "angle": 0 },
  2655. { "time": 1.3, "angle": 44.6 },
  2656. { "time": 1.3667, "angle": -14.38, "curve": "stepped" },
  2657. { "time": 1.7, "angle": -14.38 },
  2658. { "time": 1.8667, "angle": -19.19 },
  2659. { "time": 2.7, "angle": 1.16 },
  2660. { "time": 4.2, "angle": 15.61 }
  2661. ]
  2662. },
  2663. "bone91": {
  2664. "rotate": [
  2665. { "time": 0, "angle": 0 },
  2666. { "time": 1.3, "angle": 44.6 },
  2667. { "time": 1.3667, "angle": -14.38, "curve": "stepped" },
  2668. { "time": 1.7, "angle": -14.38 },
  2669. { "time": 2.0333, "angle": 98.62 },
  2670. { "time": 2.7, "angle": 109.85 },
  2671. { "time": 4.2, "angle": 124.3 }
  2672. ]
  2673. },
  2674. "bone96": {
  2675. "rotate": [
  2676. { "time": 0, "angle": 0 },
  2677. { "time": 1.3, "angle": 30.6 },
  2678. { "time": 1.3667, "angle": 0 },
  2679. { "time": 1.5333, "angle": -40.52 },
  2680. { "time": 1.7, "angle": 0 },
  2681. { "time": 1.8667, "angle": -39.79 },
  2682. { "time": 2.0333, "angle": -3.34 },
  2683. { "time": 2.7, "angle": -2.13 },
  2684. { "time": 3.5, "angle": 5.12 },
  2685. { "time": 4.2, "angle": -3.34 }
  2686. ]
  2687. },
  2688. "bone95": {
  2689. "rotate": [
  2690. { "time": 0, "angle": 0 },
  2691. { "time": 1.3, "angle": 30.6 },
  2692. { "time": 1.3667, "angle": 0 },
  2693. { "time": 1.5333, "angle": -40.52 },
  2694. { "time": 1.7, "angle": 0 },
  2695. { "time": 1.8667, "angle": -39.79 },
  2696. { "time": 2.0333, "angle": -1.83 },
  2697. { "time": 3.5, "angle": 5.43 },
  2698. { "time": 4.2, "angle": -1.83 }
  2699. ],
  2700. "translate": [
  2701. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2702. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2703. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  2704. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2705. { "time": 1.7, "x": 0, "y": 0 }
  2706. ],
  2707. "scale": [
  2708. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 1.7, "x": 1, "y": 1 }
  2713. ]
  2714. },
  2715. "bone94": {
  2716. "rotate": [
  2717. { "time": 0, "angle": 0 },
  2718. { "time": 1.3, "angle": 30.6 },
  2719. { "time": 1.3667, "angle": -6.85 },
  2720. { "time": 1.5333, "angle": -47.37 },
  2721. { "time": 1.7, "angle": -6.85 },
  2722. { "time": 1.8667, "angle": -46.64 },
  2723. { "time": 2.0333, "angle": 108.5 },
  2724. { "time": 2.7, "angle": 97.3 },
  2725. { "time": 3.5, "angle": 104.56 },
  2726. { "time": 4.2, "angle": 108.5 }
  2727. ]
  2728. },
  2729. "jian": {
  2730. "rotate": [
  2731. { "time": 0, "angle": 0, "curve": "stepped" },
  2732. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2733. { "time": 1, "angle": 0, "curve": "stepped" },
  2734. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2735. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2736. { "time": 1.3, "angle": 0 },
  2737. { "time": 1.4, "angle": 122.71 },
  2738. { "time": 1.4667, "angle": 208.6 },
  2739. { "time": 1.5333, "angle": -42.8 },
  2740. { "time": 1.6, "angle": 0 },
  2741. { "time": 1.6333, "angle": 122.71 },
  2742. { "time": 1.7, "angle": 208.6 },
  2743. { "time": 1.7667, "angle": -42.8 },
  2744. { "time": 1.8333, "angle": 97.37 },
  2745. { "time": 1.8667, "angle": 213.1 },
  2746. { "time": 1.9, "angle": -80.62 },
  2747. { "time": 1.9333, "angle": -52.95, "curve": "stepped" },
  2748. { "time": 2, "angle": -52.95 }
  2749. ],
  2750. "translate": [
  2751. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2752. { "time": 0.8667, "x": 0, "y": 0 },
  2753. { "time": 1, "x": -113.21, "y": 15.2 },
  2754. { "time": 1.1667, "x": -192.46, "y": 25.84, "curve": "stepped" },
  2755. { "time": 1.2, "x": -192.46, "y": 25.84 },
  2756. { "time": 1.3, "x": -205.12, "y": 68.21 },
  2757. { "time": 1.4, "x": -204.64, "y": 91.78 },
  2758. { "time": 1.4667, "x": -206.21, "y": 96.97 },
  2759. { "time": 1.5333, "x": -217.59, "y": 78.37 },
  2760. { "time": 1.6, "x": -216.58, "y": 79.1 },
  2761. { "time": 1.6333, "x": -204.79, "y": 80.59 },
  2762. { "time": 1.7, "x": -207.27, "y": 73.93 },
  2763. { "time": 1.7667, "x": -215.73, "y": 70.76 },
  2764. { "time": 1.8333, "x": -202.9, "y": 47.88 },
  2765. { "time": 1.8667, "x": -207.24, "y": 53.05 },
  2766. { "time": 1.9, "x": -204.85, "y": 57.11 },
  2767. { "time": 1.9333, "x": -209.82, "y": -22.78 },
  2768. { "time": 1.9667, "x": -209.92, "y": -25.69 },
  2769. { "time": 2, "x": -210.46, "y": -21.39 }
  2770. ]
  2771. },
  2772. "bone": {
  2773. "rotate": [
  2774. { "time": 0, "angle": 0, "curve": "stepped" },
  2775. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2776. { "time": 1, "angle": 0 }
  2777. ],
  2778. "translate": [
  2779. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2780. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  2781. { "time": 1, "x": 0, "y": 0 },
  2782. { "time": 1.3, "x": -29.46, "y": 0 },
  2783. { "time": 1.5, "x": -44.6, "y": 27.37 },
  2784. { "time": 1.9333, "x": -59.81, "y": 3.65 }
  2785. ],
  2786. "scale": [
  2787. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2788. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2789. { "time": 1, "x": 1, "y": 1 }
  2790. ]
  2791. },
  2792. "bone82": {
  2793. "rotate": [
  2794. { "time": 0, "angle": 92.19, "curve": "stepped" },
  2795. { "time": 1.6667, "angle": 92.19 },
  2796. { "time": 1.9, "angle": 6.21 },
  2797. { "time": 2.1333, "angle": -3.92 }
  2798. ],
  2799. "translate": [
  2800. { "time": 0, "x": -3.23, "y": 6.19, "curve": "stepped" },
  2801. { "time": 1.6667, "x": -3.23, "y": 6.19 },
  2802. { "time": 1.9, "x": 0, "y": 0 },
  2803. { "time": 2.1333, "x": -0.58, "y": 0.88 }
  2804. ],
  2805. "scale": [
  2806. { "time": 0, "x": 1, "y": 0.7, "curve": "stepped" },
  2807. { "time": 1.6667, "x": 1, "y": 0.7 },
  2808. { "time": 1.9, "x": 1, "y": 1 }
  2809. ]
  2810. },
  2811. "bone83": {
  2812. "rotate": [
  2813. { "time": 0, "angle": 0, "curve": "stepped" },
  2814. { "time": 1.8667, "angle": 0 },
  2815. { "time": 2.1333, "angle": 6.4 }
  2816. ],
  2817. "translate": [
  2818. { "time": 0, "x": -2.81, "y": 0.01, "curve": "stepped" },
  2819. { "time": 1.6667, "x": -2.81, "y": 0.01 },
  2820. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2821. { "time": 2.1333, "x": 0, "y": 0 }
  2822. ],
  2823. "scale": [
  2824. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2826. { "time": 2.1333, "x": 1, "y": 1 }
  2827. ]
  2828. },
  2829. "ziti": {
  2830. "translate": [
  2831. { "time": 1.6333, "x": -279.84, "y": 40.94 }
  2832. ]
  2833. }
  2834. },
  2835. "deform": {
  2836. "default": {
  2837. "jian2": {
  2838. "jian": [
  2839. { "time": 1.9 },
  2840. {
  2841. "time": 1.9333,
  2842. "offset": 2,
  2843. "vertices": [ -17.74767, -0.35046, -18.49281, -0.45106 ]
  2844. }
  2845. ]
  2846. },
  2847. "qunzi 3": {
  2848. "qunzi 3": [
  2849. { "time": 1.2667 },
  2850. {
  2851. "time": 1.4667,
  2852. "offset": 44,
  2853. "vertices": [ -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3641, 0.28881, -3.3759, 0.06193, -3.36501, -0.27733, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3641, 0.28881, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, -3.16896, -0.44804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3641, 0.28881, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, 0, 0, 0, 0, 0, 0, -0.94601, -1.55436, -1.03849, -1.56118, -0.92872, -1.11354, -1.04407, -1.00622, -1.14056, -0.89541, -1.88328, -0.15687, -1.87716, -0.21855, -1.858, -0.34515, -1.74472, -0.51677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.93162, -1.11603, -2.13716, -1.13001, -2.05443, -0.87113, -2.25241, 0.59281, -2.27066, 0.51863, -2.30052, 0.36369, -2.18084, 0.46984, -1.03849, -1.56118, -0.92872, -1.11354, -1.04407, -1.00622, -1.14056, -0.89541, -1.88328, -0.15687, -1.87716, -0.21855, -1.858, -0.34515, -1.74472, -0.51677, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, -3.16896, -0.44804, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.28923, 0.23238, -1.43429, 0.22303, -1.44624, 0.08472, -0.74676, 0.8293, -0.82622, 0.75013, -0.79943, 1.03782, -1.81586, -0.17849, -2.01606, -0.19167, -1.99814, -0.22541, -2.01083, -0.00732, -2.00126, 0.19623, -1.44335, 0.94362, -1.47359, 0.89577, -1.53077, 0.79393, -1.46559, 1.08691, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, -3.16896, -0.44804, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3641, 0.28881, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733 ]
  2854. },
  2855. { "time": 2.2 }
  2856. ]
  2857. },
  2858. "shangshen": {
  2859. "shangshen": [
  2860. { "time": 0, "curve": "stepped" },
  2861. { "time": 0.3667 },
  2862. {
  2863. "time": 0.8667,
  2864. "offset": 118,
  2865. "vertices": [ -0.25352, -1.43439, -0.08664, -1.45405, -0.11633, -1.45198, 0, 0, 0, 0, 0, 0, 0, 0, -0.04084, -1.23533, 0.58303, -2.06638, 0.81716, -1.9855, 0.77642, -2.00178 ]
  2866. },
  2867. {
  2868. "time": 1,
  2869. "offset": 48,
  2870. "vertices": [ -1.19966, 1.47236, -1.16771, 1.49782, -1.05541, -1.00399, -1.07674, -0.98106, -1.49296, -2.02342, -1.49296, -2.02342, -1.49296, -2.02342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.67342, 0.6866, -2.46033, 0.71851, -2.44511, 0.76863, 0, 0, 0, 0, -0.43244, -0.81345, -0.43758, -1.0194, -1.97931, -0.6288, -2.23594, -0.13028, -2.23826, -0.08216, -2.23953, -0.0364 ]
  2871. },
  2872. {
  2873. "time": 1.4,
  2874. "offset": 48,
  2875. "vertices": [ 0.03602, 1.44402, 0.05409, 1.68449, 0.81839, -1.1236, 0.78936, -0.77347, 0.90814, -0.4762, 0.90814, -0.4762, 0.90814, -0.4762, 2.4011, 1.54722, 2.4011, 1.54722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.67342, 0.6866, -2.46033, 0.71851, -2.44511, 0.76863, 0, 0, 0, 0, 1.44136, -0.93305, 1.43622, -1.139, 1.67105, 0.39984, 3.00502, 1.23343, 2.74512, 1.7365, 2.78019, 1.68005 ]
  2876. },
  2877. {
  2878. "time": 1.7667,
  2879. "offset": 48,
  2880. "vertices": [ 0.03602, 1.44402, 0.05409, 1.68449, 0.81839, -1.1236, 0.78936, -0.77347, 0.90814, -0.4762, 0.90814, -0.4762, 0.90814, -0.4762, 2.4011, 1.54722, 2.4011, 1.54722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.67342, 0.6866, -2.46033, 0.71851, -2.44511, 0.76863, 0, 0, 0, 0, 1.44136, -0.93305, 1.43622, -1.139, -0.46947, 0.44329, -0.46444, 0.89576, -0.66251, 1.00151, -0.64167, 1.01485 ]
  2881. }
  2882. ]
  2883. },
  2884. "youshou2": {
  2885. "youshou2": [
  2886. { "time": 1.3333 },
  2887. {
  2888. "time": 1.6667,
  2889. "offset": 8,
  2890. "vertices": [ -5.46825, 0.79005, -2.74052, -2.1778, -2.86515, -2.03429 ]
  2891. }
  2892. ]
  2893. },
  2894. "zuoshou": {
  2895. "zuoshou": [
  2896. { "time": 1.3667 },
  2897. {
  2898. "time": 1.6333,
  2899. "offset": 14,
  2900. "vertices": [ 0.6022, 0.12596, 1.14288, 0.45588, 1.86452, 0.16178, 3.61732, 0.96191, 2.23486, -0.0231, 4.41068, 0.72546, 1.79432, -0.46429, 3.69501, -0.29568, 0.32486, 0.3954, 1.90985, 0.53721, 3.57711, 1.71718, 2.90197, 0.52055, 5.53736, 2.02661, 2.9769, 0.71757, 5.61701, 2.4406, 3.30559, 0.33888, 6.39518, 1.80793, -8.25609, -7.49931, 9.2648, -6.21129, -7.47334, -5.60382, 7.23663, -5.90728, -8.43139, -4.73439, 6.62292, -7.04597, -3.26586, -2.50221, -3.96453, -0.86575, 0, 0, 0, 0, 0, 0, 5.26103, 0.91729, 5.28929, 1.04147, 2.94121, 0.23031, 5.71479, 1.46838 ]
  2901. },
  2902. {
  2903. "time": 1.9333,
  2904. "offset": 14,
  2905. "vertices": [ 1.27967, 0.26766, 2.42862, 0.96874, 3.96211, 0.34378, 7.68681, 2.04406, 4.74907, -0.04908, 9.3727, 1.54159, 3.81293, -0.98662, 7.85189, -0.62831, 0.69032, 0.84022, 4.05842, 1.14157, 7.60135, 3.64901, 6.16669, 1.10616, 11.76689, 4.30654, 6.32592, 1.52484, 11.93615, 5.18627, 7.02438, 0.72011, 13.58976, 3.84185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.1797, 1.94924, 11.23974, 2.21312, 6.25007, 0.48941, 12.14392, 3.1203 ]
  2906. }
  2907. ]
  2908. },
  2909. "zuoshou 1": {
  2910. "zuoshou 1": [
  2911. {
  2912. "time": 1.6667,
  2913. "offset": 2,
  2914. "vertices": [ -0.09244, -2.83789, 0, 0, -1.75505, -1.87154, -2.81084, 0.5216 ]
  2915. },
  2916. {
  2917. "time": 1.8667,
  2918. "offset": 10,
  2919. "vertices": [ -6.9414, 0.76295 ]
  2920. }
  2921. ]
  2922. },
  2923. "zuoshou 2": {
  2924. "zuoshou 2": [
  2925. {
  2926. "time": 1.6667,
  2927. "vertices": [ -0.44453, 5.78827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.04171, 5.77401, -0.06006, 5.77383, 0.14422, 5.52589, 0.1267, 5.52633, -0.46378, 4.34814, -0.47754, 4.34662, 0, 0, -0.45947, 4.74854, -0.47459, 4.74702, 0.1737, 7.84893, -0.45947, 4.74854 ]
  2928. },
  2929. { "time": 2.1667 }
  2930. ]
  2931. }
  2932. }
  2933. },
  2934. "drawOrder": [
  2935. {
  2936. "time": 1.6667,
  2937. "offsets": [
  2938. { "slot": "toufa6", "offset": 11 }
  2939. ]
  2940. },
  2941. {
  2942. "time": 3.5,
  2943. "offsets": [
  2944. { "slot": "toufa6", "offset": 11 }
  2945. ]
  2946. }
  2947. ]
  2948. },
  2949. "stand2": {
  2950. "slots": {
  2951. "1": {
  2952. "color": [
  2953. { "time": 1.6333, "color": "ffffff00" },
  2954. { "time": 1.8333, "color": "ffffffff", "curve": "stepped" },
  2955. { "time": 3.9333, "color": "ffffffff" },
  2956. { "time": 4.2, "color": "ffffff00" }
  2957. ],
  2958. "attachment": [
  2959. { "time": 0, "name": null },
  2960. { "time": 1.6333, "name": "1" }
  2961. ]
  2962. },
  2963. "2": {
  2964. "color": [
  2965. { "time": 1.8333, "color": "ffffff00" },
  2966. { "time": 2.0333, "color": "ffffffff", "curve": "stepped" },
  2967. { "time": 3.9333, "color": "ffffffff" },
  2968. { "time": 4.2, "color": "ffffff00" }
  2969. ],
  2970. "attachment": [
  2971. { "time": 0, "name": null },
  2972. { "time": 1.8333, "name": "2" }
  2973. ]
  2974. },
  2975. "3": {
  2976. "color": [
  2977. { "time": 2, "color": "ffffff00" },
  2978. { "time": 2.2333, "color": "ffffffff", "curve": "stepped" },
  2979. { "time": 3.9333, "color": "ffffffff" },
  2980. { "time": 4.2, "color": "ffffff00" }
  2981. ],
  2982. "attachment": [
  2983. { "time": 0, "name": null },
  2984. { "time": 0.2667, "name": null },
  2985. { "time": 2, "name": "3" }
  2986. ]
  2987. },
  2988. "4": {
  2989. "color": [
  2990. { "time": 2.1667, "color": "ffffff00" },
  2991. { "time": 2.4, "color": "ffffffff", "curve": "stepped" },
  2992. { "time": 3.9333, "color": "ffffffff" },
  2993. { "time": 4.2, "color": "ffffff00" }
  2994. ],
  2995. "attachment": [
  2996. { "time": 0, "name": null },
  2997. { "time": 0.2667, "name": null },
  2998. { "time": 2.1667, "name": "4" }
  2999. ]
  3000. },
  3001. "5": {
  3002. "color": [
  3003. { "time": 2.3333, "color": "ffffff00" },
  3004. { "time": 2.5667, "color": "ffffffff", "curve": "stepped" },
  3005. { "time": 3.9333, "color": "ffffffff" },
  3006. { "time": 4.2, "color": "ffffff00" }
  3007. ],
  3008. "attachment": [
  3009. { "time": 0, "name": null },
  3010. { "time": 2.3333, "name": "5" }
  3011. ]
  3012. },
  3013. "biyan": {
  3014. "attachment": [
  3015. { "time": 0, "name": null },
  3016. { "time": 0.8667, "name": null },
  3017. { "time": 1.1, "name": "biyan" },
  3018. { "time": 1.8333, "name": null },
  3019. { "time": 2.5, "name": null }
  3020. ]
  3021. },
  3022. "jian": {
  3023. "attachment": [
  3024. { "time": 1.3, "name": null },
  3025. { "time": 1.4667, "name": null }
  3026. ]
  3027. },
  3028. "jian2": {
  3029. "attachment": [
  3030. { "time": 0, "name": null },
  3031. { "time": 0.8667, "name": null },
  3032. { "time": 1.3, "name": "jian" },
  3033. { "time": 1.6, "name": "jian" }
  3034. ]
  3035. },
  3036. "meimao": {
  3037. "attachment": [
  3038. { "time": 1.8333, "name": null }
  3039. ]
  3040. },
  3041. "meimao 2": {
  3042. "attachment": [
  3043. { "time": 1.8333, "name": "meimao 2" }
  3044. ]
  3045. },
  3046. "shou": {
  3047. "attachment": [
  3048. { "time": 1.3, "name": null }
  3049. ]
  3050. },
  3051. "xian1": {
  3052. "attachment": [
  3053. { "time": 1.3, "name": null },
  3054. { "time": 1.4667, "name": null }
  3055. ]
  3056. },
  3057. "xian2": {
  3058. "attachment": [
  3059. { "time": 1.3, "name": null },
  3060. { "time": 1.4667, "name": null }
  3061. ]
  3062. },
  3063. "xian3": {
  3064. "attachment": [
  3065. { "time": 0, "name": null },
  3066. { "time": 0.8667, "name": null },
  3067. { "time": 1.2667, "name": null },
  3068. { "time": 1.3, "name": "xian1" }
  3069. ]
  3070. },
  3071. "xian4": {
  3072. "attachment": [
  3073. { "time": 0, "name": null },
  3074. { "time": 1.2667, "name": null },
  3075. { "time": 1.3, "name": "xian2" }
  3076. ]
  3077. },
  3078. "youshou": {
  3079. "attachment": [
  3080. { "time": 1.2, "name": null }
  3081. ]
  3082. },
  3083. "youshou2": {
  3084. "attachment": [
  3085. { "time": 0, "name": null },
  3086. { "time": 0.8667, "name": null },
  3087. { "time": 1.2, "name": "youshou2" }
  3088. ]
  3089. },
  3090. "youshou 1": {
  3091. "attachment": [
  3092. { "time": 0, "name": null },
  3093. { "time": 0.8667, "name": null },
  3094. { "time": 1.2, "name": "youshou 1" }
  3095. ]
  3096. },
  3097. "youyan": {
  3098. "attachment": [
  3099. { "time": 1.1, "name": null },
  3100. { "time": 1.8333, "name": "youyan" }
  3101. ]
  3102. },
  3103. "zuiba": {
  3104. "attachment": [
  3105. { "time": 2.0333, "name": "zuiba" }
  3106. ]
  3107. },
  3108. "zuiba 2": {
  3109. "attachment": [
  3110. { "time": 2.0333, "name": null }
  3111. ]
  3112. },
  3113. "zuoshou": {
  3114. "attachment": [
  3115. { "time": 1.6667, "name": null }
  3116. ]
  3117. },
  3118. "zuoshou 1": {
  3119. "attachment": [
  3120. { "time": 0, "name": null },
  3121. { "time": 1.2, "name": null },
  3122. { "time": 1.6667, "name": "zuoshou 1" }
  3123. ]
  3124. },
  3125. "zuoshou 2": {
  3126. "attachment": [
  3127. { "time": 0, "name": null },
  3128. { "time": 1.2, "name": null },
  3129. { "time": 1.6667, "name": "zuoshou 2" }
  3130. ]
  3131. },
  3132. "zuoyan": {
  3133. "attachment": [
  3134. { "time": 1.1, "name": null },
  3135. { "time": 1.8333, "name": "zuoyan" }
  3136. ]
  3137. }
  3138. },
  3139. "bones": {
  3140. "root": {
  3141. "rotate": [
  3142. { "time": 0, "angle": 0 }
  3143. ],
  3144. "scale": [
  3145. { "time": 0, "x": -0.65, "y": 0.65 }
  3146. ]
  3147. },
  3148. "bone8": {
  3149. "rotate": [
  3150. {
  3151. "time": 0,
  3152. "angle": 0,
  3153. "curve": [ 0.25, 0, 0.75, 1 ]
  3154. },
  3155. { "time": 0.3667, "angle": -1.65 },
  3156. { "time": 0.5667, "angle": -1.76, "curve": "stepped" },
  3157. { "time": 0.8667, "angle": -1.76 },
  3158. { "time": 1, "angle": -2.22 },
  3159. { "time": 1.1667, "angle": -3.78 },
  3160. { "time": 1.4, "angle": -2.34 },
  3161. { "time": 1.4667, "angle": -5.45 },
  3162. { "time": 1.6667, "angle": 0 }
  3163. ],
  3164. "translate": [
  3165. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3166. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3167. { "time": 0.8667, "x": 0, "y": 0 },
  3168. { "time": 1, "x": -0.37, "y": -0.25 },
  3169. { "time": 1.1667, "x": 0, "y": -0.41 },
  3170. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3171. { "time": 1.6667, "x": 0, "y": 0 }
  3172. ]
  3173. },
  3174. "bone9": {
  3175. "rotate": [
  3176. { "time": 0, "angle": 0, "curve": "stepped" },
  3177. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3178. { "time": 0.8667, "angle": 0 },
  3179. { "time": 1, "angle": 7.85 },
  3180. { "time": 1.1667, "angle": 13.34 },
  3181. { "time": 1.4, "angle": -3.39 },
  3182. { "time": 1.6667, "angle": 0 }
  3183. ],
  3184. "translate": [
  3185. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3186. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3187. { "time": 0.8667, "x": 0, "y": 0 },
  3188. { "time": 1, "x": -1.94, "y": -0.01 },
  3189. { "time": 1.1667, "x": -0.76, "y": 0.04 },
  3190. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3191. { "time": 1.6667, "x": 0, "y": 0 }
  3192. ]
  3193. },
  3194. "bone10": {
  3195. "rotate": [
  3196. { "time": 0, "angle": 0, "curve": "stepped" },
  3197. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3198. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3199. { "time": 1, "angle": 0, "curve": "stepped" },
  3200. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3201. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3202. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3203. { "time": 1.4667, "angle": 0 }
  3204. ],
  3205. "translate": [
  3206. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3207. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3208. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3209. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3210. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3211. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3212. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3213. { "time": 1.4667, "x": 0, "y": 0 }
  3214. ],
  3215. "scale": [
  3216. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3217. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3218. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3219. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3220. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3221. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 1.4667, "x": 1, "y": 1 }
  3224. ]
  3225. },
  3226. "bone11": {
  3227. "rotate": [
  3228. { "time": 0, "angle": 0, "curve": "stepped" },
  3229. { "time": 0.1333, "angle": 0 },
  3230. { "time": 0.8667, "angle": -2.13 },
  3231. { "time": 1, "angle": 4.32 },
  3232. { "time": 1.1667, "angle": 4.96 },
  3233. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3234. { "time": 1.4667, "angle": 0 }
  3235. ],
  3236. "translate": [
  3237. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3238. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3239. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3240. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3241. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3242. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3243. { "time": 1.4667, "x": 0, "y": 0 }
  3244. ],
  3245. "scale": [
  3246. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3247. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3248. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3249. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3250. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3251. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3252. { "time": 1.4667, "x": 1, "y": 1 }
  3253. ]
  3254. },
  3255. "bone12": {
  3256. "rotate": [
  3257. { "time": 0, "angle": 0, "curve": "stepped" },
  3258. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3259. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3260. { "time": 1, "angle": 0, "curve": "stepped" },
  3261. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3262. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3263. { "time": 2.5, "angle": 0 }
  3264. ],
  3265. "translate": [
  3266. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3267. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3268. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3269. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3270. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3271. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3272. { "time": 2.5, "x": 0, "y": 0 }
  3273. ],
  3274. "scale": [
  3275. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3276. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3277. { "time": 0.8667, "x": 1, "y": 1 },
  3278. { "time": 1, "x": 0.649, "y": 1 },
  3279. { "time": 1.1, "x": 0.474, "y": 1, "curve": "stepped" },
  3280. { "time": 1.8333, "x": 0.474, "y": 1 },
  3281. { "time": 2.5, "x": 1, "y": 1 }
  3282. ]
  3283. },
  3284. "bone13": {
  3285. "rotate": [
  3286. { "time": 0, "angle": 0, "curve": "stepped" },
  3287. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3288. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3289. { "time": 1, "angle": 0, "curve": "stepped" },
  3290. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3291. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3292. { "time": 2.5, "angle": 0 }
  3293. ],
  3294. "translate": [
  3295. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3296. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3297. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3298. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3299. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3301. { "time": 2.5, "x": 0, "y": 0 }
  3302. ],
  3303. "scale": [
  3304. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3305. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 0.8667, "x": 1, "y": 1 },
  3307. { "time": 1, "x": 0.616, "y": 1 },
  3308. { "time": 1.1, "x": 0.424, "y": 1, "curve": "stepped" },
  3309. { "time": 1.8333, "x": 0.424, "y": 1 },
  3310. { "time": 2.5, "x": 1, "y": 1 }
  3311. ]
  3312. },
  3313. "bone14": {
  3314. "rotate": [
  3315. { "time": 0, "angle": 0, "curve": "stepped" },
  3316. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3317. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3318. { "time": 1, "angle": 0, "curve": "stepped" },
  3319. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3320. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3321. { "time": 2.5, "angle": 0 }
  3322. ],
  3323. "translate": [
  3324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3325. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3326. { "time": 0.8667, "x": 0, "y": 0 },
  3327. { "time": 1, "x": -1.38, "y": 0 },
  3328. { "time": 1.1, "x": -2.07, "y": 0, "curve": "stepped" },
  3329. { "time": 1.8333, "x": -2.07, "y": 0 },
  3330. { "time": 2.5, "x": 0, "y": 0 }
  3331. ],
  3332. "scale": [
  3333. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3334. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3335. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3336. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3337. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  3338. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3339. { "time": 2.5, "x": 1, "y": 1 }
  3340. ]
  3341. },
  3342. "bone15": {
  3343. "rotate": [
  3344. { "time": 0, "angle": 0, "curve": "stepped" },
  3345. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3346. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3347. { "time": 1, "angle": 0, "curve": "stepped" },
  3348. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3349. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3350. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3351. { "time": 1.4667, "angle": 0 }
  3352. ],
  3353. "translate": [
  3354. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3355. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3356. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3357. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3358. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3359. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3360. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3361. { "time": 1.4667, "x": 0, "y": 0 }
  3362. ],
  3363. "scale": [
  3364. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3366. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3367. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3368. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3369. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3370. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3371. { "time": 1.4667, "x": 1, "y": 1 }
  3372. ]
  3373. },
  3374. "bone16": {
  3375. "rotate": [
  3376. { "time": 0, "angle": 23.46 },
  3377. { "time": 0.1333, "angle": -12.3 },
  3378. { "time": 0.3333, "angle": 4.51 },
  3379. { "time": 0.8667, "angle": 9.63 },
  3380. { "time": 1, "angle": 24.05 },
  3381. { "time": 1.1667, "angle": -319.12, "curve": "stepped" },
  3382. {
  3383. "time": 1.2,
  3384. "angle": -319.12,
  3385. "curve": [ 0.25, 0, 0.75, 1 ]
  3386. },
  3387. { "time": 1.3667, "angle": -54.73 },
  3388. { "time": 1.5333, "angle": -53.12 },
  3389. { "time": 1.6333, "angle": -18.76 },
  3390. {
  3391. "time": 1.9333,
  3392. "angle": 19.25,
  3393. "curve": [ 0.25, 0, 0.75, 1 ]
  3394. },
  3395. { "time": 2.2667, "angle": 23.05 }
  3396. ]
  3397. },
  3398. "bone17": {
  3399. "rotate": [
  3400. { "time": 0, "angle": -9.66 },
  3401. { "time": 0.1333, "angle": -46.56 },
  3402. { "time": 0.3333, "angle": -76.17 },
  3403. { "time": 0.8667, "angle": -85.92 },
  3404. { "time": 1, "angle": 5.93 },
  3405. { "time": 1.1667, "angle": 10.08, "curve": "stepped" },
  3406. {
  3407. "time": 1.2,
  3408. "angle": 10.08,
  3409. "curve": [ 0.25, 0, 0.75, 1 ]
  3410. },
  3411. { "time": 1.3667, "angle": -17.07 },
  3412. { "time": 1.5333, "angle": -39.33 },
  3413. { "time": 1.6333, "angle": -94.62 },
  3414. { "time": 1.6667, "angle": -61.04 },
  3415. { "time": 1.9333, "angle": 6.9 }
  3416. ],
  3417. "translate": [
  3418. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3419. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3420. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3421. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3422. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3423. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3424. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  3425. { "time": 1.5333, "x": 0, "y": 0 }
  3426. ],
  3427. "scale": [
  3428. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3429. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3430. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3431. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3432. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3433. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3434. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  3435. { "time": 1.5333, "x": 1, "y": 1 }
  3436. ]
  3437. },
  3438. "bone18": {
  3439. "rotate": [
  3440. { "time": 0, "angle": 0, "curve": "stepped" },
  3441. { "time": 0.1333, "angle": 0 },
  3442. { "time": 0.8667, "angle": 9.22 },
  3443. { "time": 1, "angle": -12.01 },
  3444. { "time": 1.1667, "angle": -20.43, "curve": "stepped" },
  3445. {
  3446. "time": 1.2,
  3447. "angle": -20.43,
  3448. "curve": [ 0.25, 0, 0.625, 0.5 ]
  3449. },
  3450. {
  3451. "time": 1.2667,
  3452. "angle": 13.94,
  3453. "curve": [ 0.375, 0.5, 0.75, 1 ]
  3454. },
  3455. { "time": 1.3333, "angle": 0 },
  3456. { "time": 1.5, "angle": -4.47, "curve": "stepped" },
  3457. { "time": 1.5333, "angle": -4.47 }
  3458. ]
  3459. },
  3460. "bone19": {
  3461. "rotate": [
  3462. { "time": 0, "angle": -23.2 },
  3463. { "time": 0.3333, "angle": -17.83, "curve": "stepped" },
  3464. { "time": 0.8667, "angle": -17.83 },
  3465. { "time": 1, "angle": -12.57 },
  3466. { "time": 1.1667, "angle": -23.75 }
  3467. ],
  3468. "translate": [
  3469. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3470. { "time": 0.8667, "x": 0, "y": 0 },
  3471. { "time": 1, "x": 0.26, "y": -0.83 },
  3472. { "time": 1.1667, "x": 0.45, "y": -1.4 }
  3473. ]
  3474. },
  3475. "bone20": {
  3476. "rotate": [
  3477. { "time": 0, "angle": -17.28 },
  3478. { "time": 0.3333, "angle": -15.8, "curve": "stepped" },
  3479. { "time": 0.8667, "angle": -15.8 },
  3480. { "time": 1, "angle": -19.57 },
  3481. { "time": 1.1667, "angle": -11.3 }
  3482. ]
  3483. },
  3484. "bone22": {
  3485. "rotate": [
  3486. { "time": 0, "angle": 0 },
  3487. { "time": 0.1333, "angle": -5.39 },
  3488. { "time": 0.8667, "angle": -9.37 },
  3489. { "time": 1, "angle": 5.38 },
  3490. {
  3491. "time": 1.2667,
  3492. "angle": 10.77,
  3493. "curve": [ 0.279, 0, 0.622, 0.39 ]
  3494. },
  3495. {
  3496. "time": 1.4667,
  3497. "angle": -13.56,
  3498. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  3499. },
  3500. {
  3501. "time": 1.9667,
  3502. "angle": -0.37,
  3503. "curve": [ 0.379, 0.52, 0.747, 1 ]
  3504. },
  3505. { "time": 2.7, "angle": 0 }
  3506. ],
  3507. "translate": [
  3508. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3509. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3510. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3511. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3512. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3513. { "time": 2.7, "x": 0, "y": 0 }
  3514. ],
  3515. "scale": [
  3516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3517. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3518. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3519. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3520. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3521. { "time": 2.7, "x": 1, "y": 1 }
  3522. ]
  3523. },
  3524. "bone23": {
  3525. "rotate": [
  3526. { "time": 0, "angle": 0, "curve": "stepped" },
  3527. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3528. { "time": 0.8667, "angle": 0 },
  3529. { "time": 1, "angle": -0.54 },
  3530. {
  3531. "time": 1.2667,
  3532. "angle": -1.09,
  3533. "curve": [ 0.279, 0, 0.622, 0.39 ]
  3534. },
  3535. {
  3536. "time": 1.4667,
  3537. "angle": -3.07,
  3538. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  3539. },
  3540. {
  3541. "time": 1.9667,
  3542. "angle": -17.33,
  3543. "curve": [ 0.379, 0.52, 0.747, 1 ]
  3544. },
  3545. { "time": 2.7, "angle": 0 },
  3546. { "time": 4.2, "angle": 2.3 }
  3547. ],
  3548. "translate": [
  3549. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3550. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3551. { "time": 0.8667, "x": 0, "y": 0 },
  3552. { "time": 1, "x": 0.92, "y": -0.07 },
  3553. {
  3554. "time": 1.2667,
  3555. "x": 1.83,
  3556. "y": -0.15,
  3557. "curve": [ 0.25, 0, 0.75, 1 ]
  3558. },
  3559. { "time": 2.7, "x": 0, "y": 0 }
  3560. ],
  3561. "scale": [
  3562. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3563. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3564. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3565. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3566. {
  3567. "time": 1.2667,
  3568. "x": 1,
  3569. "y": 1,
  3570. "curve": [ 0.25, 0, 0.75, 1 ]
  3571. },
  3572. { "time": 1.4667, "x": 0.9, "y": 1 },
  3573. { "time": 2.7, "x": 1, "y": 1 }
  3574. ]
  3575. },
  3576. "bone24": {
  3577. "rotate": [
  3578. { "time": 0, "angle": 0 },
  3579. { "time": 0.1333, "angle": -0.98 },
  3580. { "time": 0.8667, "angle": 0 },
  3581. { "time": 1, "angle": -2.37 },
  3582. {
  3583. "time": 1.2667,
  3584. "angle": -4.74,
  3585. "curve": [ 0.279, 0, 0.622, 0.39 ]
  3586. },
  3587. {
  3588. "time": 1.4667,
  3589. "angle": -3.07,
  3590. "curve": [ 0.329, 0.32, 0.758, 1 ]
  3591. },
  3592. { "time": 2.7, "angle": 0 },
  3593. { "time": 4.2, "angle": 2.3 }
  3594. ],
  3595. "translate": [
  3596. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3597. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3598. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3599. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3600. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3601. { "time": 2.7, "x": 0, "y": 0 }
  3602. ],
  3603. "scale": [
  3604. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3606. { "time": 0.8667, "x": 1, "y": 1 },
  3607. { "time": 1, "x": 1, "y": 1.25 },
  3608. {
  3609. "time": 1.2667,
  3610. "x": 1,
  3611. "y": 1.5,
  3612. "curve": [ 0.25, 0, 0.75, 1 ]
  3613. },
  3614. { "time": 2.7, "x": 1, "y": 1 }
  3615. ]
  3616. },
  3617. "bone25": {
  3618. "rotate": [
  3619. { "time": 0, "angle": 0 },
  3620. { "time": 0.1333, "angle": -0.98 },
  3621. { "time": 0.8667, "angle": 0 },
  3622. { "time": 1, "angle": -2.37 },
  3623. {
  3624. "time": 1.2667,
  3625. "angle": -4.74,
  3626. "curve": [ 0.296, 0, 0.633, 0.37 ]
  3627. },
  3628. {
  3629. "time": 1.4667,
  3630. "angle": 4.21,
  3631. "curve": [ 0.318, 0.27, 0.652, 0.61 ]
  3632. },
  3633. {
  3634. "time": 1.6,
  3635. "angle": -17.51,
  3636. "curve": [ 0.329, 0.32, 0.758, 1 ]
  3637. },
  3638. { "time": 2.7, "angle": 0 },
  3639. { "time": 4.2, "angle": 2.3 }
  3640. ],
  3641. "translate": [
  3642. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3645. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3646. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3647. { "time": 2.7, "x": 0, "y": 0 }
  3648. ],
  3649. "scale": [
  3650. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3651. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3652. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3653. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3654. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3655. { "time": 2.7, "x": 1, "y": 1 }
  3656. ]
  3657. },
  3658. "bone26": {
  3659. "rotate": [
  3660. { "time": 0, "angle": 0 },
  3661. { "time": 0.1333, "angle": -0.98 },
  3662. { "time": 0.8667, "angle": 0 },
  3663. { "time": 1, "angle": -2.37 },
  3664. {
  3665. "time": 1.2667,
  3666. "angle": -4.74,
  3667. "curve": [ 0.296, 0, 0.633, 0.37 ]
  3668. },
  3669. {
  3670. "time": 1.4667,
  3671. "angle": 4.21,
  3672. "curve": [ 0.318, 0.27, 0.652, 0.61 ]
  3673. },
  3674. {
  3675. "time": 1.6,
  3676. "angle": -17.51,
  3677. "curve": [ 0.329, 0.32, 0.758, 1 ]
  3678. },
  3679. { "time": 2.7, "angle": 0 },
  3680. { "time": 4.2, "angle": 2.3 }
  3681. ],
  3682. "translate": [
  3683. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3684. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3685. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3686. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3687. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3688. { "time": 2.7, "x": 0, "y": 0 }
  3689. ],
  3690. "scale": [
  3691. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3692. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3693. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3694. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3695. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3696. { "time": 2.7, "x": 1, "y": 1 }
  3697. ]
  3698. },
  3699. "bone28": {
  3700. "rotate": [
  3701. { "time": 0, "angle": 0 },
  3702. { "time": 0.1333, "angle": 3.43 },
  3703. { "time": 0.8667, "angle": 0 },
  3704. { "time": 1, "angle": -0.38 },
  3705. {
  3706. "time": 1.2667,
  3707. "angle": -0.76,
  3708. "curve": [ 0.272, 0, 0.619, 0.41 ]
  3709. },
  3710. {
  3711. "time": 1.6333,
  3712. "angle": 16.56,
  3713. "curve": [ 0.317, 0.28, 0.671, 0.68 ]
  3714. },
  3715. {
  3716. "time": 2.1,
  3717. "angle": 9.25,
  3718. "curve": [ 0.382, 0.56, 0.737, 1 ]
  3719. },
  3720. { "time": 2.7, "angle": 0 },
  3721. { "time": 4.2, "angle": 4.6 }
  3722. ],
  3723. "translate": [
  3724. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3725. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3726. { "time": 0.8667, "x": 0, "y": 0 },
  3727. { "time": 1, "x": 0.54, "y": 0.65 },
  3728. { "time": 1.1, "x": 0.81, "y": 0.97 },
  3729. {
  3730. "time": 1.2667,
  3731. "x": 1.51,
  3732. "y": 0,
  3733. "curve": [ 0.25, 0, 0.75, 1 ]
  3734. },
  3735. { "time": 2.7, "x": 0, "y": 0 }
  3736. ],
  3737. "scale": [
  3738. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3739. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3740. { "time": 0.8667, "x": 1, "y": 1 },
  3741. { "time": 1, "x": 1, "y": 1.25 },
  3742. {
  3743. "time": 1.2667,
  3744. "x": 1,
  3745. "y": 1.5,
  3746. "curve": [ 0.25, 0, 0.75, 1 ]
  3747. },
  3748. { "time": 1.6333, "x": 0.9, "y": 1.327 },
  3749. { "time": 2.7, "x": 1, "y": 1 }
  3750. ]
  3751. },
  3752. "bone29": {
  3753. "rotate": [
  3754. { "time": 0, "angle": 0 },
  3755. { "time": 0.1333, "angle": 2.26 },
  3756. { "time": 0.8667, "angle": 0 },
  3757. { "time": 1, "angle": 7.35 },
  3758. { "time": 1.1, "angle": 11.03 },
  3759. {
  3760. "time": 1.2667,
  3761. "angle": 2.32,
  3762. "curve": [ 0.272, 0, 0.619, 0.41 ]
  3763. },
  3764. {
  3765. "time": 1.6333,
  3766. "angle": 7,
  3767. "curve": [ 0.34, 0.36, 0.757, 1 ]
  3768. },
  3769. { "time": 2.7, "angle": 0 },
  3770. { "time": 4.2, "angle": 4.6 }
  3771. ],
  3772. "translate": [
  3773. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3774. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3775. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3776. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3777. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3778. { "time": 2.7, "x": 0, "y": 0 }
  3779. ],
  3780. "scale": [
  3781. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3782. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3783. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3784. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3785. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3786. { "time": 2.7, "x": 1, "y": 1 }
  3787. ]
  3788. },
  3789. "bone30": {
  3790. "rotate": [
  3791. { "time": 0, "angle": 0, "curve": "stepped" },
  3792. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3793. { "time": 0.8667, "angle": 0 },
  3794. { "time": 1, "angle": 1.16 },
  3795. {
  3796. "time": 1.2667,
  3797. "angle": 2.32,
  3798. "curve": [ 0.25, 0, 0.75, 1 ]
  3799. },
  3800. { "time": 2.7, "angle": 0 },
  3801. { "time": 4.2, "angle": 4.6 }
  3802. ],
  3803. "translate": [
  3804. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3805. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3806. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3807. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3808. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3809. { "time": 2.7, "x": 0, "y": 0 }
  3810. ],
  3811. "scale": [
  3812. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3813. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3814. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3815. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3816. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3817. { "time": 2.7, "x": 1, "y": 1 }
  3818. ]
  3819. },
  3820. "bone31": {
  3821. "rotate": [
  3822. { "time": 0, "angle": 0, "curve": "stepped" },
  3823. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3824. { "time": 0.8667, "angle": 0 },
  3825. { "time": 1, "angle": 1.16 },
  3826. {
  3827. "time": 1.2667,
  3828. "angle": 2.32,
  3829. "curve": [ 0.25, 0, 0.75, 1 ]
  3830. },
  3831. { "time": 2.7, "angle": 0 },
  3832. { "time": 4.2, "angle": 4.6 }
  3833. ]
  3834. },
  3835. "bone32": {
  3836. "rotate": [
  3837. { "time": 0, "angle": 0, "curve": "stepped" },
  3838. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3839. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  3840. { "time": 1, "angle": 0, "curve": "stepped" },
  3841. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  3842. { "time": 2.7, "angle": 0 }
  3843. ],
  3844. "translate": [
  3845. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3846. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3847. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3848. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3849. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3850. { "time": 2.7, "x": 0, "y": 0 }
  3851. ],
  3852. "scale": [
  3853. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3855. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3858. { "time": 2.7, "x": 1, "y": 1 }
  3859. ]
  3860. },
  3861. "bone33": {
  3862. "rotate": [
  3863. { "time": 0, "angle": 0, "curve": "stepped" },
  3864. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3865. { "time": 0.8667, "angle": 0 },
  3866. { "time": 1, "angle": 2.22 },
  3867. { "time": 1.1, "angle": 3.33 },
  3868. {
  3869. "time": 1.2667,
  3870. "angle": 4.17,
  3871. "curve": [ 0.272, 0, 0.619, 0.41 ]
  3872. },
  3873. {
  3874. "time": 1.6333,
  3875. "angle": 14.29,
  3876. "curve": [ 0.317, 0.28, 0.671, 0.68 ]
  3877. },
  3878. {
  3879. "time": 2.1,
  3880. "angle": 2.73,
  3881. "curve": [ 0.382, 0.56, 0.737, 1 ]
  3882. },
  3883. { "time": 2.7, "angle": 0 },
  3884. { "time": 4.2, "angle": 4.6 }
  3885. ],
  3886. "translate": [
  3887. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3888. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3889. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3890. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3891. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3892. { "time": 2.7, "x": 0, "y": 0 }
  3893. ],
  3894. "scale": [
  3895. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3896. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3897. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3898. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3899. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3900. { "time": 2.7, "x": 1, "y": 1 }
  3901. ]
  3902. },
  3903. "bone34": {
  3904. "rotate": [
  3905. { "time": 0, "angle": 0 },
  3906. { "time": 0.1333, "angle": 6.79 },
  3907. { "time": 0.8667, "angle": 0 },
  3908. { "time": 1, "angle": 3.4 },
  3909. { "time": 1.1, "angle": 5.1 },
  3910. {
  3911. "time": 1.5,
  3912. "angle": 3.84,
  3913. "curve": [ 0.246, 0, 0.635, 0.54 ]
  3914. },
  3915. {
  3916. "time": 2.1,
  3917. "angle": 4.82,
  3918. "curve": [ 0.381, 0.54, 0.744, 1 ]
  3919. },
  3920. { "time": 2.7, "angle": 0 },
  3921. { "time": 4.2, "angle": 4.6 }
  3922. ],
  3923. "translate": [
  3924. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3925. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3926. { "time": 0.8667, "x": 0, "y": 0 },
  3927. { "time": 1, "x": 1.8, "y": 0.14 },
  3928. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3929. { "time": 2.7, "x": 0, "y": 0 }
  3930. ],
  3931. "scale": [
  3932. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3933. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3934. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3935. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3936. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3937. { "time": 2.7, "x": 1, "y": 1 }
  3938. ]
  3939. },
  3940. "bone35": {
  3941. "rotate": [
  3942. { "time": 0, "angle": 0, "curve": "stepped" },
  3943. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3944. { "time": 0.8667, "angle": 0 },
  3945. { "time": 1, "angle": 0.68 },
  3946. {
  3947. "time": 1.5,
  3948. "angle": 1.37,
  3949. "curve": [ 0.246, 0, 0.635, 0.54 ]
  3950. },
  3951. {
  3952. "time": 2.1,
  3953. "angle": 4.82,
  3954. "curve": [ 0.381, 0.54, 0.744, 1 ]
  3955. },
  3956. { "time": 2.7, "angle": 0 },
  3957. { "time": 4.2, "angle": 4.6 }
  3958. ],
  3959. "translate": [
  3960. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3961. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3962. { "time": 0.8667, "x": 0, "y": 0 },
  3963. { "time": 1, "x": 1.38, "y": 0.11 },
  3964. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3965. { "time": 2.7, "x": 0, "y": 0 }
  3966. ],
  3967. "scale": [
  3968. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3969. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3970. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3971. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3972. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3973. { "time": 2.7, "x": 1, "y": 1 }
  3974. ]
  3975. },
  3976. "bone36": {
  3977. "rotate": [
  3978. { "time": 0, "angle": 0, "curve": "stepped" },
  3979. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3980. { "time": 0.8667, "angle": 0 },
  3981. { "time": 1, "angle": 2.44 },
  3982. {
  3983. "time": 1.2667,
  3984. "angle": 4.87,
  3985. "curve": [ 0.246, 0, 0.635, 0.54 ]
  3986. },
  3987. {
  3988. "time": 2.1,
  3989. "angle": 4.82,
  3990. "curve": [ 0.381, 0.54, 0.744, 1 ]
  3991. },
  3992. { "time": 2.7, "angle": 0 },
  3993. { "time": 4.2, "angle": 4.6 }
  3994. ],
  3995. "translate": [
  3996. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3997. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3998. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3999. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4000. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4001. { "time": 2.7, "x": 0, "y": 0 }
  4002. ],
  4003. "scale": [
  4004. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4005. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4006. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4007. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4008. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4009. { "time": 2.7, "x": 1, "y": 1 }
  4010. ]
  4011. },
  4012. "bone37": {
  4013. "rotate": [
  4014. { "time": 0, "angle": 0, "curve": "stepped" },
  4015. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4016. { "time": 0.8667, "angle": 0 },
  4017. { "time": 1, "angle": 6.95 },
  4018. {
  4019. "time": 1.2667,
  4020. "angle": 13.9,
  4021. "curve": [ 0.296, 0, 0.633, 0.37 ]
  4022. },
  4023. {
  4024. "time": 1.4667,
  4025. "angle": -4.92,
  4026. "curve": [ 0.293, 0.19, 0.646, 0.59 ]
  4027. },
  4028. {
  4029. "time": 1.9667,
  4030. "angle": 6.19,
  4031. "curve": [ 0.374, 0.49, 0.751, 1 ]
  4032. },
  4033. { "time": 2.7, "angle": 0 }
  4034. ],
  4035. "translate": [
  4036. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4037. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4038. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4039. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4040. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4041. { "time": 2.7, "x": 0, "y": 0 }
  4042. ],
  4043. "scale": [
  4044. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4045. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4046. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4047. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4048. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4049. { "time": 2.7, "x": 1, "y": 1 }
  4050. ]
  4051. },
  4052. "bone38": {
  4053. "rotate": [
  4054. { "time": 0, "angle": 0 },
  4055. { "time": 0.1333, "angle": -4.39 },
  4056. { "time": 0.8667, "angle": -4.85 },
  4057. { "time": 1, "angle": -4.67 },
  4058. {
  4059. "time": 1.2667,
  4060. "angle": -9.35,
  4061. "curve": [ 0.279, 0, 0.622, 0.39 ]
  4062. },
  4063. {
  4064. "time": 1.4667,
  4065. "angle": -22.37,
  4066. "curve": [ 0.329, 0.32, 0.758, 1 ]
  4067. },
  4068. { "time": 2.7, "angle": 0 },
  4069. { "time": 4.2, "angle": 1.34 }
  4070. ],
  4071. "translate": [
  4072. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4073. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4074. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4075. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4076. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4077. { "time": 2.7, "x": 0, "y": 0 }
  4078. ],
  4079. "scale": [
  4080. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4081. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4082. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4083. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4084. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4085. { "time": 2.7, "x": 1, "y": 1 }
  4086. ]
  4087. },
  4088. "bone39": {
  4089. "rotate": [
  4090. { "time": 0, "angle": 0 },
  4091. { "time": 0.1333, "angle": -4.58 },
  4092. { "time": 0.8667, "angle": -4.85 },
  4093. { "time": 1, "angle": -1.23 },
  4094. {
  4095. "time": 1.2667,
  4096. "angle": -2.45,
  4097. "curve": [ 0.279, 0, 0.622, 0.39 ]
  4098. },
  4099. {
  4100. "time": 1.4667,
  4101. "angle": 3.12,
  4102. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  4103. },
  4104. {
  4105. "time": 1.9667,
  4106. "angle": -12.53,
  4107. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4108. },
  4109. { "time": 2.7, "angle": 0 },
  4110. { "time": 4.2, "angle": 1.34 }
  4111. ],
  4112. "translate": [
  4113. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4114. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4115. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4116. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4117. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4118. { "time": 2.7, "x": 0, "y": 0 }
  4119. ],
  4120. "scale": [
  4121. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4122. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4123. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4124. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4125. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4126. { "time": 2.7, "x": 1, "y": 1 }
  4127. ]
  4128. },
  4129. "bone40": {
  4130. "rotate": [
  4131. { "time": 0, "angle": 0, "curve": "stepped" },
  4132. { "time": 0.1333, "angle": 0 },
  4133. { "time": 0.8667, "angle": -4.85 },
  4134. { "time": 1, "angle": -4.8 },
  4135. {
  4136. "time": 1.2667,
  4137. "angle": -9.6,
  4138. "curve": [ 0.279, 0, 0.622, 0.39 ]
  4139. },
  4140. {
  4141. "time": 1.4667,
  4142. "angle": 3.12,
  4143. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  4144. },
  4145. {
  4146. "time": 1.9667,
  4147. "angle": -12.53,
  4148. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4149. },
  4150. { "time": 2.7, "angle": 0 },
  4151. { "time": 4.2, "angle": 1.34 }
  4152. ],
  4153. "translate": [
  4154. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4155. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4156. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4157. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4158. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4159. { "time": 2.7, "x": 0, "y": 0 }
  4160. ],
  4161. "scale": [
  4162. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4163. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4164. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4165. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4166. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4167. { "time": 2.7, "x": 1, "y": 1 }
  4168. ]
  4169. },
  4170. "bone41": {
  4171. "rotate": [
  4172. { "time": 0, "angle": 0, "curve": "stepped" },
  4173. { "time": 0.1333, "angle": 0 },
  4174. { "time": 0.8667, "angle": -4.85 },
  4175. { "time": 1, "angle": -2.2 },
  4176. {
  4177. "time": 1.2667,
  4178. "angle": -4.41,
  4179. "curve": [ 0.279, 0, 0.622, 0.39 ]
  4180. },
  4181. {
  4182. "time": 1.4667,
  4183. "angle": 3.12,
  4184. "curve": [ 0.31, 0.26, 0.658, 0.64 ]
  4185. },
  4186. {
  4187. "time": 1.9667,
  4188. "angle": -12.53,
  4189. "curve": [ 0.379, 0.52, 0.747, 1 ]
  4190. },
  4191. { "time": 2.7, "angle": 0 },
  4192. { "time": 4.2, "angle": 1.34 }
  4193. ],
  4194. "translate": [
  4195. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4196. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4197. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4198. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4199. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4200. { "time": 2.7, "x": 0, "y": 0 }
  4201. ],
  4202. "scale": [
  4203. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4204. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  4205. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4206. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4207. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4208. { "time": 2.7, "x": 1, "y": 1 }
  4209. ]
  4210. },
  4211. "bone47": {
  4212. "rotate": [
  4213. { "time": 0, "angle": 0, "curve": "stepped" },
  4214. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4215. { "time": 0.8667, "angle": 0 },
  4216. { "time": 1, "angle": 7.59 },
  4217. { "time": 1.1667, "angle": 12.9, "curve": "stepped" },
  4218. { "time": 1.2, "angle": 12.9, "curve": "stepped" },
  4219. { "time": 1.3, "angle": 12.9, "curve": "stepped" },
  4220. { "time": 1.4667, "angle": 12.9 }
  4221. ]
  4222. },
  4223. "bone49": {
  4224. "rotate": [
  4225. { "time": 0, "angle": 0, "curve": "stepped" },
  4226. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4227. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4228. { "time": 1, "angle": 0, "curve": "stepped" },
  4229. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4230. { "time": 1.2, "angle": 0 },
  4231. { "time": 1.3, "angle": 4.41 }
  4232. ]
  4233. },
  4234. "bone52": {
  4235. "rotate": [
  4236. { "time": 0, "angle": 0, "curve": "stepped" },
  4237. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4238. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4239. { "time": 1, "angle": 0, "curve": "stepped" },
  4240. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4241. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4242. { "time": 2.5, "angle": 0 }
  4243. ]
  4244. },
  4245. "bone53": {
  4246. "rotate": [
  4247. { "time": 0, "angle": 0, "curve": "stepped" },
  4248. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4249. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4250. { "time": 1, "angle": 0, "curve": "stepped" },
  4251. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4252. { "time": 1.2, "angle": 0 },
  4253. { "time": 1.2667, "angle": -24.42 },
  4254. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4255. { "time": 1.4667, "angle": 0 }
  4256. ],
  4257. "translate": [
  4258. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4259. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4260. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4261. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4262. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4263. { "time": 1.2, "x": 0, "y": 0 },
  4264. { "time": 1.2667, "x": -5.34, "y": -12.54 },
  4265. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4266. { "time": 1.4667, "x": 0, "y": 0 }
  4267. ]
  4268. },
  4269. "bone55": {
  4270. "rotate": [
  4271. { "time": 0, "angle": 0 },
  4272. { "time": 0.8667, "angle": -355.14 },
  4273. { "time": 1, "angle": 0, "curve": "stepped" },
  4274. { "time": 1.1667, "angle": 0 },
  4275. { "time": 1.4667, "angle": -358.18 },
  4276. { "time": 2.7, "angle": 0 }
  4277. ],
  4278. "translate": [
  4279. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4280. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4281. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4282. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4283. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4284. { "time": 2.7, "x": 0, "y": 0 }
  4285. ],
  4286. "scale": [
  4287. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4288. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4289. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4290. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4291. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4292. { "time": 2.7, "x": 1, "y": 1 }
  4293. ]
  4294. },
  4295. "bone56": {
  4296. "rotate": [
  4297. { "time": 0, "angle": 0 },
  4298. { "time": 0.8667, "angle": 4.92 },
  4299. { "time": 1, "angle": 0 },
  4300. { "time": 1.1667, "angle": -7.54 },
  4301. { "time": 1.4667, "angle": 1.82 },
  4302. { "time": 2.7, "angle": 0 }
  4303. ],
  4304. "translate": [
  4305. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4306. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4307. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4308. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4309. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4310. { "time": 2.7, "x": 0, "y": 0 }
  4311. ],
  4312. "scale": [
  4313. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4314. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4315. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4316. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4317. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4318. { "time": 2.7, "x": 1, "y": 1 }
  4319. ]
  4320. },
  4321. "bone57": {
  4322. "rotate": [
  4323. { "time": 0, "angle": 0, "curve": "stepped" },
  4324. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4325. { "time": 1, "angle": 0, "curve": "stepped" },
  4326. { "time": 1.1667, "angle": 0 },
  4327. { "time": 1.4667, "angle": 1.82 },
  4328. { "time": 2.7, "angle": 0 }
  4329. ],
  4330. "translate": [
  4331. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4332. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4333. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4334. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4335. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4336. { "time": 2.7, "x": 0, "y": 0 }
  4337. ],
  4338. "scale": [
  4339. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4340. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4341. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4342. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4343. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4344. { "time": 2.7, "x": 1, "y": 1 }
  4345. ]
  4346. },
  4347. "bone58": {
  4348. "rotate": [
  4349. { "time": 0, "angle": 0, "curve": "stepped" },
  4350. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4351. { "time": 1, "angle": 0, "curve": "stepped" },
  4352. { "time": 1.1667, "angle": 0 },
  4353. { "time": 1.4667, "angle": 1.82 },
  4354. { "time": 2.7, "angle": 0 }
  4355. ],
  4356. "translate": [
  4357. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4358. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4359. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4360. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4361. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4362. { "time": 2.7, "x": 0, "y": 0 }
  4363. ],
  4364. "scale": [
  4365. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4366. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4367. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4368. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4369. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4370. { "time": 2.7, "x": 1, "y": 1 }
  4371. ]
  4372. },
  4373. "bone60": {
  4374. "rotate": [
  4375. { "time": 0, "angle": 0 },
  4376. { "time": 0.8667, "angle": 0.89 },
  4377. { "time": 1, "angle": 0, "curve": "stepped" },
  4378. { "time": 1.1667, "angle": 0 },
  4379. { "time": 1.5667, "angle": -9.71 },
  4380. { "time": 2.7, "angle": 3.67 },
  4381. { "time": 4.2, "angle": -9.71 }
  4382. ],
  4383. "translate": [
  4384. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4385. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4386. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4387. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4388. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4389. { "time": 4.2, "x": 0, "y": 0 }
  4390. ],
  4391. "scale": [
  4392. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4393. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4394. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4395. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4396. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4397. { "time": 4.2, "x": 1, "y": 1 }
  4398. ]
  4399. },
  4400. "bone61": {
  4401. "rotate": [
  4402. { "time": 0, "angle": 0 },
  4403. { "time": 0.8667, "angle": 3.1 },
  4404. { "time": 1, "angle": 2.49 },
  4405. { "time": 1.1667, "angle": 4.24 },
  4406. { "time": 1.5667, "angle": 0 },
  4407. { "time": 2.7, "angle": 1.93 },
  4408. { "time": 4.2, "angle": 0 }
  4409. ],
  4410. "translate": [
  4411. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4412. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4413. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4414. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4415. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4416. { "time": 4.2, "x": 0, "y": 0 }
  4417. ],
  4418. "scale": [
  4419. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4420. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4421. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4422. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4423. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4424. { "time": 4.2, "x": 1, "y": 1 }
  4425. ]
  4426. },
  4427. "bone62": {
  4428. "rotate": [
  4429. { "time": 0, "angle": 0 },
  4430. { "time": 0.8667, "angle": 8.69 },
  4431. { "time": 1, "angle": 2.49 },
  4432. { "time": 1.1667, "angle": 4.24 },
  4433. { "time": 1.5667, "angle": 8.36 },
  4434. { "time": 2.7, "angle": -7.92 },
  4435. { "time": 4.2, "angle": 8.36 }
  4436. ],
  4437. "translate": [
  4438. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4439. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4440. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4441. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4442. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4443. { "time": 4.2, "x": 0, "y": 0 }
  4444. ],
  4445. "scale": [
  4446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4447. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4448. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4449. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4450. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4451. { "time": 4.2, "x": 1, "y": 1 }
  4452. ]
  4453. },
  4454. "bone63": {
  4455. "rotate": [
  4456. { "time": 0, "angle": 0 },
  4457. { "time": 0.8667, "angle": 0.89 },
  4458. { "time": 1, "angle": 2.49 },
  4459. { "time": 1.1667, "angle": 4.24 },
  4460. { "time": 1.5667, "angle": 8.36 },
  4461. { "time": 2.7, "angle": 6.18 },
  4462. { "time": 4.2, "angle": 8.36 }
  4463. ],
  4464. "translate": [
  4465. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4466. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4467. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4468. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4469. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4470. { "time": 4.2, "x": 0, "y": 0 }
  4471. ],
  4472. "scale": [
  4473. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4474. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4475. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4476. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4477. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4478. { "time": 4.2, "x": 1, "y": 1 }
  4479. ]
  4480. },
  4481. "bone64": {
  4482. "rotate": [
  4483. { "time": 0, "angle": 0, "curve": "stepped" },
  4484. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4485. { "time": 1, "angle": 0, "curve": "stepped" },
  4486. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4487. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4488. { "time": 4.2, "angle": 0 }
  4489. ],
  4490. "translate": [
  4491. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4492. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4493. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4494. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4495. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4496. { "time": 4.2, "x": 0, "y": 0 }
  4497. ],
  4498. "scale": [
  4499. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4500. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4501. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4502. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4503. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4504. { "time": 4.2, "x": 1, "y": 1 }
  4505. ]
  4506. },
  4507. "bone65": {
  4508. "rotate": [
  4509. { "time": 0, "angle": 0 },
  4510. { "time": 0.8667, "angle": 2.4 },
  4511. { "time": 1, "angle": 0, "curve": "stepped" },
  4512. { "time": 1.1667, "angle": 0 },
  4513. { "time": 1.6667, "angle": 12.56 },
  4514. { "time": 2.7, "angle": -2.25 },
  4515. { "time": 4.2, "angle": 12.56 }
  4516. ],
  4517. "translate": [
  4518. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4519. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4520. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4521. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4522. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4523. { "time": 4.2, "x": 0, "y": 0 }
  4524. ],
  4525. "scale": [
  4526. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4527. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4528. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4529. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4530. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4531. { "time": 4.2, "x": 1, "y": 1 }
  4532. ]
  4533. },
  4534. "bone66": {
  4535. "rotate": [
  4536. { "time": 0, "angle": 0 },
  4537. { "time": 0.8667, "angle": 2.4 },
  4538. { "time": 1, "angle": -2.64 },
  4539. { "time": 1.1667, "angle": -4.49 },
  4540. { "time": 1.6667, "angle": 7.7 },
  4541. { "time": 2.7, "angle": 3.59 },
  4542. { "time": 4.2, "angle": 7.7 }
  4543. ],
  4544. "translate": [
  4545. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4546. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4547. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4548. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4550. { "time": 4.2, "x": 0, "y": 0 }
  4551. ],
  4552. "scale": [
  4553. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4554. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4555. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4556. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4557. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4558. { "time": 4.2, "x": 1, "y": 1 }
  4559. ]
  4560. },
  4561. "bone67": {
  4562. "rotate": [
  4563. { "time": 0, "angle": 0, "curve": "stepped" },
  4564. { "time": 0.8667, "angle": 0 },
  4565. { "time": 1, "angle": -2.64 },
  4566. { "time": 1.1667, "angle": -4.49 },
  4567. { "time": 1.6667, "angle": -5.16 },
  4568. { "time": 2.7, "angle": 6.57 },
  4569. { "time": 4.2, "angle": -5.16 }
  4570. ],
  4571. "translate": [
  4572. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4573. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4574. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4575. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4576. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4577. { "time": 4.2, "x": 0, "y": 0 }
  4578. ],
  4579. "scale": [
  4580. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4581. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4582. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4583. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4584. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4585. { "time": 4.2, "x": 1, "y": 1 }
  4586. ]
  4587. },
  4588. "bone68": {
  4589. "rotate": [
  4590. { "time": 0, "angle": 0, "curve": "stepped" },
  4591. { "time": 0.8667, "angle": 0 },
  4592. { "time": 1, "angle": -2.64 },
  4593. { "time": 1.1667, "angle": -4.49 },
  4594. { "time": 1.6667, "angle": 0 },
  4595. { "time": 2.7, "angle": 13.87 },
  4596. { "time": 4.2, "angle": 0 }
  4597. ],
  4598. "translate": [
  4599. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4600. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4601. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4602. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4603. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4604. { "time": 4.2, "x": 0, "y": 0 }
  4605. ],
  4606. "scale": [
  4607. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4608. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4609. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4610. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4611. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4612. { "time": 4.2, "x": 1, "y": 1 }
  4613. ]
  4614. },
  4615. "bone69": {
  4616. "rotate": [
  4617. { "time": 0, "angle": 0, "curve": "stepped" },
  4618. { "time": 1.1667, "angle": 0 },
  4619. { "time": 1.5667, "angle": -4.32 },
  4620. { "time": 2.7, "angle": 0 },
  4621. { "time": 4.2, "angle": -4.32 }
  4622. ],
  4623. "translate": [
  4624. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4625. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4626. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4627. { "time": 4.2, "x": 0, "y": 0 }
  4628. ],
  4629. "scale": [
  4630. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4631. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4632. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4633. { "time": 4.2, "x": 1, "y": 1 }
  4634. ]
  4635. },
  4636. "bone70": {
  4637. "rotate": [
  4638. { "time": 0, "angle": 0 },
  4639. { "time": 0.8667, "angle": 3.66 },
  4640. { "time": 1, "angle": -1.35 },
  4641. { "time": 1.1667, "angle": -2.3 },
  4642. { "time": 1.5667, "angle": -0.79 },
  4643. { "time": 2.7, "angle": 2.16 },
  4644. { "time": 4.2, "angle": -0.79 }
  4645. ],
  4646. "translate": [
  4647. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4648. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4649. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4650. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4651. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4652. { "time": 4.2, "x": 0, "y": 0 }
  4653. ],
  4654. "scale": [
  4655. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4656. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4657. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4658. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4659. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4660. { "time": 4.2, "x": 1, "y": 1 }
  4661. ]
  4662. },
  4663. "bone71": {
  4664. "rotate": [
  4665. { "time": 0, "angle": 0 },
  4666. { "time": 0.8667, "angle": 5.89 },
  4667. { "time": 1, "angle": 0, "curve": "stepped" },
  4668. { "time": 1.1667, "angle": 0 },
  4669. { "time": 1.5667, "angle": -8.58 },
  4670. { "time": 2.7, "angle": 0 },
  4671. { "time": 4.2, "angle": -8.58 }
  4672. ],
  4673. "translate": [
  4674. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4675. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4676. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4677. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4678. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 4.2, "x": 0, "y": 0 }
  4681. ],
  4682. "scale": [
  4683. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4684. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4685. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4687. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4688. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  4689. { "time": 4.2, "x": 1, "y": 1 }
  4690. ]
  4691. },
  4692. "bone72": {
  4693. "rotate": [
  4694. { "time": 0, "angle": 0, "curve": "stepped" },
  4695. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4696. { "time": 1, "angle": 0, "curve": "stepped" },
  4697. { "time": 1.1667, "angle": 0 },
  4698. { "time": 1.5667, "angle": 5.68 },
  4699. { "time": 2.7, "angle": 0 },
  4700. { "time": 4.2, "angle": 5.68 }
  4701. ],
  4702. "translate": [
  4703. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4704. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4705. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4706. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4707. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4708. { "time": 2.7, "x": 0, "y": 0, "curve": "stepped" },
  4709. { "time": 4.2, "x": 0, "y": 0 }
  4710. ],
  4711. "scale": [
  4712. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4713. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4714. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4715. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4716. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4717. { "time": 2.7, "x": 1, "y": 1, "curve": "stepped" },
  4718. { "time": 4.2, "x": 1, "y": 1 }
  4719. ]
  4720. },
  4721. "bone73": {
  4722. "rotate": [
  4723. { "time": 0, "angle": 0, "curve": "stepped" },
  4724. { "time": 1.5667, "angle": 0 },
  4725. { "time": 2.7, "angle": -2.9 },
  4726. { "time": 4.2, "angle": 0 }
  4727. ],
  4728. "translate": [
  4729. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4730. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4731. { "time": 4.2, "x": 0, "y": 0 }
  4732. ],
  4733. "scale": [
  4734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4735. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4736. { "time": 4.2, "x": 1, "y": 1 }
  4737. ]
  4738. },
  4739. "bone74": {
  4740. "rotate": [
  4741. { "time": 0, "angle": 0 },
  4742. { "time": 0.8667, "angle": 7.34 },
  4743. { "time": 1, "angle": 2.38 },
  4744. { "time": 1.1667, "angle": 4.04 },
  4745. { "time": 1.5667, "angle": -2.69 },
  4746. { "time": 2.7, "angle": 0 },
  4747. { "time": 4.2, "angle": -2.69 }
  4748. ],
  4749. "translate": [
  4750. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4751. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4752. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4753. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4754. { "time": 2.7, "x": 0, "y": 0 }
  4755. ],
  4756. "scale": [
  4757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4761. { "time": 2.7, "x": 1, "y": 1 }
  4762. ]
  4763. },
  4764. "bone75": {
  4765. "rotate": [
  4766. { "time": 0, "angle": 0, "curve": "stepped" },
  4767. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4768. { "time": 1, "angle": 0, "curve": "stepped" },
  4769. { "time": 1.1667, "angle": 0 },
  4770. { "time": 1.4667, "angle": -8.17 },
  4771. { "time": 2.7, "angle": 0 }
  4772. ],
  4773. "translate": [
  4774. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4775. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4776. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4777. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4778. { "time": 2.7, "x": 0, "y": 0 }
  4779. ],
  4780. "scale": [
  4781. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4782. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4783. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4784. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4785. { "time": 2.7, "x": 1, "y": 1 }
  4786. ]
  4787. },
  4788. "bone76": {
  4789. "rotate": [
  4790. { "time": 0, "angle": 0, "curve": "stepped" },
  4791. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4792. { "time": 1, "angle": 0, "curve": "stepped" },
  4793. { "time": 1.1667, "angle": 0 },
  4794. { "time": 1.4667, "angle": 2.44 },
  4795. { "time": 2.7, "angle": 0 }
  4796. ],
  4797. "translate": [
  4798. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4799. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4800. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4801. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4802. { "time": 2.7, "x": 0, "y": 0 }
  4803. ],
  4804. "scale": [
  4805. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4806. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4807. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4808. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4809. { "time": 2.7, "x": 1, "y": 1 }
  4810. ]
  4811. },
  4812. "bone77": {
  4813. "rotate": [
  4814. { "time": 0, "angle": 0, "curve": "stepped" },
  4815. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4816. { "time": 1, "angle": 0, "curve": "stepped" },
  4817. { "time": 1.1667, "angle": 0 },
  4818. { "time": 1.4667, "angle": 2.44 },
  4819. { "time": 2.7, "angle": 0 }
  4820. ],
  4821. "translate": [
  4822. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4823. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4824. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4825. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4826. { "time": 2.7, "x": 0, "y": 0 }
  4827. ],
  4828. "scale": [
  4829. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4830. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4831. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4832. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4833. { "time": 2.7, "x": 1, "y": 1 }
  4834. ]
  4835. },
  4836. "bone84": {
  4837. "rotate": [
  4838. { "time": 0, "angle": 26.28 },
  4839. { "time": 0.8667, "angle": 80.47 },
  4840. { "time": 1, "angle": 0 },
  4841. { "time": 1.1667, "angle": -15.65 },
  4842. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4843. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4844. { "time": 1.4667, "angle": 0 }
  4845. ]
  4846. },
  4847. "bone85": {
  4848. "rotate": [
  4849. { "time": 0, "angle": 0 },
  4850. { "time": 0.8667, "angle": 21.97 },
  4851. { "time": 1, "angle": 0 },
  4852. { "time": 1.1667, "angle": -15.65 },
  4853. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4854. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4855. { "time": 1.4667, "angle": 0 }
  4856. ]
  4857. },
  4858. "bone86": {
  4859. "rotate": [
  4860. { "time": 0, "angle": 0 },
  4861. { "time": 0.8667, "angle": 21.97 },
  4862. { "time": 1, "angle": 0 },
  4863. { "time": 1.1667, "angle": -15.65 },
  4864. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4865. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4866. { "time": 1.4667, "angle": 0 }
  4867. ],
  4868. "translate": [
  4869. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4870. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4871. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4872. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4873. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4874. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4875. { "time": 1.4667, "x": 0, "y": 0 }
  4876. ],
  4877. "scale": [
  4878. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4879. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4880. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4881. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4882. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4883. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4884. { "time": 1.4667, "x": 1, "y": 1 }
  4885. ]
  4886. },
  4887. "bone87": {
  4888. "rotate": [
  4889. { "time": 0, "angle": 44.56 },
  4890. { "time": 0.8667, "angle": 107.56 },
  4891. { "time": 1, "angle": 0 },
  4892. { "time": 1.1667, "angle": -14.4 },
  4893. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4894. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4895. { "time": 1.4667, "angle": 0 }
  4896. ]
  4897. },
  4898. "bone88": {
  4899. "rotate": [
  4900. { "time": 0, "angle": 0, "curve": "stepped" },
  4901. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4902. { "time": 1, "angle": 0 },
  4903. { "time": 1.1667, "angle": -14.4 },
  4904. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4905. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4906. { "time": 1.4667, "angle": 0 }
  4907. ]
  4908. },
  4909. "bone89": {
  4910. "rotate": [
  4911. { "time": 0, "angle": 0, "curve": "stepped" },
  4912. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4913. { "time": 1, "angle": 0 },
  4914. { "time": 1.1667, "angle": -14.4 },
  4915. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4916. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4917. { "time": 1.4667, "angle": 0 }
  4918. ]
  4919. },
  4920. "bone6": {
  4921. "rotate": [
  4922. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4923. { "time": 2.8333, "angle": 0 }
  4924. ],
  4925. "translate": [
  4926. { "time": 2.3333, "x": 6.85, "y": 0 },
  4927. { "time": 2.8333, "x": 0, "y": 0 },
  4928. { "time": 4.2, "x": -3.59, "y": 0 }
  4929. ],
  4930. "scale": [
  4931. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4932. { "time": 2.8333, "x": 1, "y": 1 }
  4933. ]
  4934. },
  4935. "bone5": {
  4936. "rotate": [
  4937. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  4938. { "time": 2.6667, "angle": 0 }
  4939. ],
  4940. "translate": [
  4941. { "time": 2.1667, "x": 6.85, "y": 0 },
  4942. { "time": 2.6667, "x": 0, "y": 0 },
  4943. { "time": 4.2, "x": -3.59, "y": 0 }
  4944. ],
  4945. "scale": [
  4946. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  4947. { "time": 2.6667, "x": 1, "y": 1 }
  4948. ]
  4949. },
  4950. "bone4": {
  4951. "rotate": [
  4952. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4953. { "time": 2.1333, "angle": 0 }
  4954. ],
  4955. "translate": [
  4956. { "time": 1.6333, "x": 6.85, "y": 0 },
  4957. { "time": 2.1333, "x": 0, "y": 0 },
  4958. { "time": 4.2, "x": -3.59, "y": 0 }
  4959. ],
  4960. "scale": [
  4961. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4962. { "time": 2.1333, "x": 1, "y": 1 }
  4963. ]
  4964. },
  4965. "bone3": {
  4966. "rotate": [
  4967. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4968. { "time": 2.3333, "angle": 0 }
  4969. ],
  4970. "translate": [
  4971. { "time": 1.8333, "x": 6.85, "y": 0 },
  4972. { "time": 2.3333, "x": 0, "y": 0 },
  4973. { "time": 4.2, "x": -3.59, "y": 0 }
  4974. ],
  4975. "scale": [
  4976. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4977. { "time": 2.3333, "x": 1, "y": 1 }
  4978. ]
  4979. },
  4980. "bone2": {
  4981. "rotate": [
  4982. { "time": 2, "angle": 0, "curve": "stepped" },
  4983. { "time": 2.5, "angle": 0 }
  4984. ],
  4985. "translate": [
  4986. { "time": 2, "x": 6.85, "y": 0 },
  4987. { "time": 2.5, "x": 0, "y": 0 },
  4988. { "time": 4.2, "x": -3.59, "y": 0 }
  4989. ],
  4990. "scale": [
  4991. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4992. { "time": 2.5, "x": 1, "y": 1 }
  4993. ]
  4994. },
  4995. "bone81": {
  4996. "rotate": [
  4997. { "time": 0, "angle": -5.2, "curve": "stepped" },
  4998. { "time": 1.6667, "angle": -5.2 },
  4999. { "time": 1.8667, "angle": 0 }
  5000. ],
  5001. "translate": [
  5002. { "time": 0, "x": -63.79, "y": 288.91, "curve": "stepped" },
  5003. { "time": 1.6667, "x": -63.79, "y": 288.91 },
  5004. { "time": 1.8667, "x": -65.24, "y": 291.14 }
  5005. ],
  5006. "scale": [
  5007. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5008. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5009. { "time": 1.8667, "x": 1, "y": 1 }
  5010. ]
  5011. },
  5012. "bone78": {
  5013. "rotate": [
  5014. { "time": 0, "angle": 0, "curve": "stepped" },
  5015. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  5016. { "time": 1, "angle": 0, "curve": "stepped" },
  5017. {
  5018. "time": 1.2,
  5019. "angle": -26.76,
  5020. "curve": [ 0.25, 0, 0.75, 1 ]
  5021. },
  5022. { "time": 1.5333, "angle": -0.08 }
  5023. ],
  5024. "translate": [
  5025. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5026. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  5027. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5028. {
  5029. "time": 1.2,
  5030. "x": -57.48,
  5031. "y": 318.43,
  5032. "curve": [ 0.25, 0, 0.75, 1 ]
  5033. },
  5034. { "time": 1.5333, "x": -55.57, "y": 320.99 }
  5035. ],
  5036. "scale": [
  5037. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5038. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  5039. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5040. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  5041. { "time": 1.5333, "x": 1, "y": 1 }
  5042. ]
  5043. },
  5044. "bone79": {
  5045. "rotate": [
  5046. { "time": 0, "angle": 0, "curve": "stepped" },
  5047. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  5048. { "time": 1, "angle": 0 },
  5049. {
  5050. "time": 1.2,
  5051. "angle": 131.49,
  5052. "curve": [ 0.287, 0, 0.627, 0.38 ]
  5053. },
  5054. {
  5055. "time": 1.3333,
  5056. "angle": 90.82,
  5057. "curve": [ 0.304, 0.24, 0.649, 0.61 ]
  5058. },
  5059. {
  5060. "time": 1.5333,
  5061. "angle": 52.75,
  5062. "curve": [ 0.37, 0.48, 0.753, 1 ]
  5063. },
  5064. { "time": 1.6667, "angle": 58.83 }
  5065. ],
  5066. "translate": [
  5067. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5068. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  5069. { "time": 1, "x": 0, "y": 0 },
  5070. {
  5071. "time": 1.2,
  5072. "x": -6.3,
  5073. "y": 2.81,
  5074. "curve": [ 0.25, 0, 0.75, 1 ]
  5075. },
  5076. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5077. { "time": 1.6667, "x": 0, "y": 0 }
  5078. ],
  5079. "scale": [
  5080. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5081. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  5082. { "time": 1, "x": 1, "y": 1 }
  5083. ]
  5084. },
  5085. "bone80": {
  5086. "rotate": [
  5087. { "time": 0, "angle": 0, "curve": "stepped" },
  5088. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  5089. { "time": 1, "angle": 0, "curve": "stepped" },
  5090. { "time": 1.2, "angle": 0, "curve": "stepped" },
  5091. { "time": 1.5, "angle": 0 },
  5092. { "time": 1.6333, "angle": -7.89 }
  5093. ],
  5094. "translate": [
  5095. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5096. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  5097. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5098. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  5099. { "time": 1.5, "x": 0, "y": 0 }
  5100. ],
  5101. "scale": [
  5102. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5103. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  5104. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5105. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  5106. { "time": 1.5, "x": 1, "y": 1 }
  5107. ]
  5108. },
  5109. "bone93": {
  5110. "rotate": [
  5111. { "time": 0, "angle": 0 },
  5112. { "time": 1.3, "angle": 44.6 },
  5113. { "time": 1.3667, "angle": -14.38, "curve": "stepped" },
  5114. { "time": 1.7, "angle": -14.38 },
  5115. { "time": 1.8667, "angle": -19.19 },
  5116. { "time": 2.7, "angle": -1.89 },
  5117. { "time": 4.2, "angle": 12.55 }
  5118. ],
  5119. "translate": [
  5120. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5121. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5122. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  5123. { "time": 1.7, "x": 0, "y": 0 }
  5124. ],
  5125. "scale": [
  5126. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5127. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5128. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  5129. { "time": 1.7, "x": 1, "y": 1 }
  5130. ]
  5131. },
  5132. "bone92": {
  5133. "rotate": [
  5134. { "time": 0, "angle": 0 },
  5135. { "time": 1.3, "angle": 44.6 },
  5136. { "time": 1.3667, "angle": -14.38, "curve": "stepped" },
  5137. { "time": 1.7, "angle": -14.38 },
  5138. { "time": 1.8667, "angle": -19.19 },
  5139. { "time": 2.7, "angle": 1.16 },
  5140. { "time": 4.2, "angle": 15.61 }
  5141. ]
  5142. },
  5143. "bone91": {
  5144. "rotate": [
  5145. { "time": 0, "angle": 0 },
  5146. { "time": 1.3, "angle": 44.6 },
  5147. { "time": 1.3667, "angle": -14.38, "curve": "stepped" },
  5148. { "time": 1.7, "angle": -14.38 },
  5149. { "time": 2.0333, "angle": 98.62 },
  5150. { "time": 2.7, "angle": 109.85 },
  5151. { "time": 4.2, "angle": 124.3 }
  5152. ]
  5153. },
  5154. "bone96": {
  5155. "rotate": [
  5156. { "time": 0, "angle": 0 },
  5157. { "time": 1.3, "angle": 30.6 },
  5158. { "time": 1.3667, "angle": 0 },
  5159. { "time": 1.5333, "angle": -40.52 },
  5160. { "time": 1.7, "angle": 0 },
  5161. { "time": 1.8667, "angle": -39.79 },
  5162. { "time": 2.0333, "angle": -3.34 },
  5163. { "time": 2.7, "angle": -2.13 },
  5164. { "time": 3.5, "angle": 5.12 },
  5165. { "time": 4.2, "angle": -3.34 }
  5166. ]
  5167. },
  5168. "bone95": {
  5169. "rotate": [
  5170. { "time": 0, "angle": 0 },
  5171. { "time": 1.3, "angle": 30.6 },
  5172. { "time": 1.3667, "angle": 0 },
  5173. { "time": 1.5333, "angle": -40.52 },
  5174. { "time": 1.7, "angle": 0 },
  5175. { "time": 1.8667, "angle": -39.79 },
  5176. { "time": 2.0333, "angle": -1.83 },
  5177. { "time": 3.5, "angle": 5.43 },
  5178. { "time": 4.2, "angle": -1.83 }
  5179. ],
  5180. "translate": [
  5181. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5182. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5183. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  5184. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5185. { "time": 1.7, "x": 0, "y": 0 }
  5186. ],
  5187. "scale": [
  5188. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5189. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5190. { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
  5191. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5192. { "time": 1.7, "x": 1, "y": 1 }
  5193. ]
  5194. },
  5195. "bone94": {
  5196. "rotate": [
  5197. { "time": 0, "angle": 0 },
  5198. { "time": 1.3, "angle": 30.6 },
  5199. { "time": 1.3667, "angle": -6.85 },
  5200. { "time": 1.5333, "angle": -47.37 },
  5201. { "time": 1.7, "angle": -6.85 },
  5202. { "time": 1.8667, "angle": -46.64 },
  5203. { "time": 2.0333, "angle": 108.5 },
  5204. { "time": 2.7, "angle": 97.3 },
  5205. { "time": 3.5, "angle": 104.56 },
  5206. { "time": 4.2, "angle": 108.5 }
  5207. ]
  5208. },
  5209. "jian": {
  5210. "rotate": [
  5211. { "time": 0, "angle": 0, "curve": "stepped" },
  5212. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  5213. { "time": 1, "angle": 0, "curve": "stepped" },
  5214. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5215. { "time": 1.2, "angle": 0, "curve": "stepped" },
  5216. { "time": 1.3, "angle": 0 },
  5217. { "time": 1.4, "angle": 122.71 },
  5218. { "time": 1.4667, "angle": 208.6 },
  5219. { "time": 1.5333, "angle": -42.8 },
  5220. { "time": 1.6, "angle": 0 },
  5221. { "time": 1.6333, "angle": 122.71 },
  5222. { "time": 1.7, "angle": 208.6 },
  5223. { "time": 1.7667, "angle": -42.8 },
  5224. { "time": 1.8333, "angle": 97.37 },
  5225. { "time": 1.8667, "angle": 213.1 },
  5226. { "time": 1.9, "angle": -80.62 },
  5227. { "time": 1.9333, "angle": -52.95, "curve": "stepped" },
  5228. { "time": 2, "angle": -52.95 }
  5229. ],
  5230. "translate": [
  5231. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5232. { "time": 0.8667, "x": 0, "y": 0 },
  5233. { "time": 1, "x": -113.21, "y": 15.2 },
  5234. { "time": 1.1667, "x": -192.46, "y": 25.84, "curve": "stepped" },
  5235. { "time": 1.2, "x": -192.46, "y": 25.84 },
  5236. { "time": 1.3, "x": -205.12, "y": 68.21 },
  5237. { "time": 1.4, "x": -204.64, "y": 91.78 },
  5238. { "time": 1.4667, "x": -206.21, "y": 96.97 },
  5239. { "time": 1.5333, "x": -217.59, "y": 78.37 },
  5240. { "time": 1.6, "x": -216.58, "y": 79.1 },
  5241. { "time": 1.6333, "x": -204.79, "y": 80.59 },
  5242. { "time": 1.7, "x": -207.27, "y": 73.93 },
  5243. { "time": 1.7667, "x": -215.73, "y": 70.76 },
  5244. { "time": 1.8333, "x": -202.9, "y": 47.88 },
  5245. { "time": 1.8667, "x": -207.24, "y": 53.05 },
  5246. { "time": 1.9, "x": -204.85, "y": 57.11 },
  5247. { "time": 1.9333, "x": -209.82, "y": -22.78 },
  5248. { "time": 1.9667, "x": -209.92, "y": -25.69 },
  5249. { "time": 2, "x": -210.46, "y": -21.39 }
  5250. ]
  5251. },
  5252. "bone": {
  5253. "rotate": [
  5254. { "time": 0, "angle": 0, "curve": "stepped" },
  5255. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  5256. { "time": 1, "angle": 0 }
  5257. ],
  5258. "translate": [
  5259. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5260. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  5261. { "time": 1, "x": 0, "y": 0 },
  5262. { "time": 1.3, "x": -29.46, "y": 0 },
  5263. { "time": 1.5, "x": -44.6, "y": 27.37 },
  5264. { "time": 1.9333, "x": -59.81, "y": 3.65 }
  5265. ]
  5266. },
  5267. "bone82": {
  5268. "rotate": [
  5269. { "time": 0, "angle": -250.62 },
  5270. { "time": 1.6667, "angle": 76.74 },
  5271. { "time": 1.7333, "angle": 44.1 },
  5272. { "time": 1.9, "angle": 6.21 },
  5273. { "time": 2.1333, "angle": -3.92 }
  5274. ],
  5275. "translate": [
  5276. { "time": 0, "x": -3.55, "y": 6.46 },
  5277. { "time": 1.6667, "x": -2.75, "y": 5.24 },
  5278. { "time": 1.7333, "x": -1.96, "y": 4.02 },
  5279. { "time": 1.9, "x": 0, "y": 0 },
  5280. { "time": 2.1333, "x": -0.58, "y": 0.88 }
  5281. ],
  5282. "scale": [
  5283. { "time": 0, "x": 1, "y": 0.7 },
  5284. { "time": 1.6667, "x": 1, "y": 0.743 },
  5285. { "time": 1.9, "x": 1, "y": 1 }
  5286. ]
  5287. },
  5288. "bone83": {
  5289. "rotate": [
  5290. { "time": 0, "angle": 0, "curve": "stepped" },
  5291. { "time": 1.8667, "angle": 0 },
  5292. { "time": 2.1333, "angle": 6.4 }
  5293. ],
  5294. "translate": [
  5295. { "time": 0, "x": -4.33, "y": 0.01, "curve": "stepped" },
  5296. { "time": 1.6667, "x": -4.33, "y": 0.01 },
  5297. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5298. { "time": 2.1333, "x": 0, "y": 0 }
  5299. ],
  5300. "scale": [
  5301. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5302. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5303. { "time": 2.1333, "x": 1, "y": 1 }
  5304. ]
  5305. },
  5306. "ziti": {
  5307. "translate": [
  5308. { "time": 1.6667, "x": -290.84, "y": 40.94 }
  5309. ],
  5310. "scale": [
  5311. { "time": 1.6667, "x": -1, "y": 1 }
  5312. ]
  5313. }
  5314. },
  5315. "deform": {
  5316. "default": {
  5317. "jian2": {
  5318. "jian": [
  5319. { "time": 1.9 },
  5320. {
  5321. "time": 1.9333,
  5322. "offset": 2,
  5323. "vertices": [ -17.74767, -0.35046, -18.49281, -0.45106 ]
  5324. }
  5325. ]
  5326. },
  5327. "qunzi 3": {
  5328. "qunzi 3": [
  5329. { "time": 1.2667 },
  5330. {
  5331. "time": 1.4667,
  5332. "offset": 44,
  5333. "vertices": [ -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3641, 0.28881, -3.3759, 0.06193, -3.36501, -0.27733, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3641, 0.28881, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, -3.16896, -0.44804, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3641, 0.28881, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, 0, 0, 0, 0, 0, 0, -0.94601, -1.55436, -1.03849, -1.56118, -0.92872, -1.11354, -1.04407, -1.00622, -1.14056, -0.89541, -1.88328, -0.15687, -1.87716, -0.21855, -1.858, -0.34515, -1.74472, -0.51677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.93162, -1.11603, -2.13716, -1.13001, -2.05443, -0.87113, -2.25241, 0.59281, -2.27066, 0.51863, -2.30052, 0.36369, -2.18084, 0.46984, -1.03849, -1.56118, -0.92872, -1.11354, -1.04407, -1.00622, -1.14056, -0.89541, -1.88328, -0.15687, -1.87716, -0.21855, -1.858, -0.34515, -1.74472, -0.51677, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, -3.16896, -0.44804, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.28923, 0.23238, -1.43429, 0.22303, -1.44624, 0.08472, -0.74676, 0.8293, -0.82622, 0.75013, -0.79943, 1.03782, -1.81586, -0.17849, -2.01606, -0.19167, -1.99814, -0.22541, -2.01083, -0.00732, -2.00126, 0.19623, -1.44335, 0.94362, -1.47359, 0.89577, -1.53077, 0.79393, -1.46559, 1.08691, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733, -3.16896, -0.44804, -2.2551, -2.47444, -2.07968, -1.79354, -2.26204, -1.55734, -2.40805, -1.32045, -3.3641, 0.28881, -3.3759, 0.06193, -3.37618, -0.04883, -3.36501, -0.27733 ]
  5334. },
  5335. { "time": 2.2 }
  5336. ]
  5337. },
  5338. "shangshen": {
  5339. "shangshen": [
  5340. { "time": 0, "curve": "stepped" },
  5341. { "time": 0.3667 },
  5342. {
  5343. "time": 0.8667,
  5344. "offset": 118,
  5345. "vertices": [ -0.25352, -1.43439, -0.08664, -1.45405, -0.11633, -1.45198, 0, 0, 0, 0, 0, 0, 0, 0, -0.04084, -1.23533, 0.58303, -2.06638, 0.81716, -1.9855, 0.77642, -2.00178 ]
  5346. },
  5347. {
  5348. "time": 1,
  5349. "offset": 48,
  5350. "vertices": [ -1.19966, 1.47236, -1.16771, 1.49782, -1.05541, -1.00399, -1.07674, -0.98106, -1.49296, -2.02342, -1.49296, -2.02342, -1.49296, -2.02342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.67342, 0.6866, -2.46033, 0.71851, -2.44511, 0.76863, 0, 0, 0, 0, -0.43244, -0.81345, -0.43758, -1.0194, -1.97931, -0.6288, -2.23594, -0.13028, -2.23826, -0.08216, -2.23953, -0.0364 ]
  5351. },
  5352. {
  5353. "time": 1.4,
  5354. "offset": 48,
  5355. "vertices": [ 0.03602, 1.44402, 0.05409, 1.68449, 0.81839, -1.1236, 0.78936, -0.77347, 0.90814, -0.4762, 0.90814, -0.4762, 0.90814, -0.4762, 2.4011, 1.54722, 2.4011, 1.54722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.67342, 0.6866, -2.46033, 0.71851, -2.44511, 0.76863, 0, 0, 0, 0, 1.44136, -0.93305, 1.43622, -1.139, 1.67105, 0.39984, 3.00502, 1.23343, 2.74512, 1.7365, 2.78019, 1.68005 ]
  5356. },
  5357. {
  5358. "time": 1.7667,
  5359. "offset": 48,
  5360. "vertices": [ 0.03602, 1.44402, 0.05409, 1.68449, 0.81839, -1.1236, 0.78936, -0.77347, 0.90814, -0.4762, 0.90814, -0.4762, 0.90814, -0.4762, 2.4011, 1.54722, 2.4011, 1.54722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.67342, 0.6866, -2.46033, 0.71851, -2.44511, 0.76863, 0, 0, 0, 0, 1.44136, -0.93305, 1.43622, -1.139, -0.46947, 0.44329, -0.46444, 0.89576, -0.66251, 1.00151, -0.64167, 1.01485 ]
  5361. }
  5362. ]
  5363. },
  5364. "youshou2": {
  5365. "youshou2": [
  5366. { "time": 1.3333 },
  5367. {
  5368. "time": 1.6667,
  5369. "offset": 8,
  5370. "vertices": [ -5.46825, 0.79005, -2.74052, -2.1778, -2.86515, -2.03429 ]
  5371. }
  5372. ]
  5373. },
  5374. "zuoshou": {
  5375. "zuoshou": [
  5376. { "time": 1.3667 },
  5377. {
  5378. "time": 1.6333,
  5379. "offset": 14,
  5380. "vertices": [ 0.6022, 0.12596, 1.14288, 0.45588, 1.86452, 0.16178, 3.61732, 0.96191, 2.23486, -0.0231, 4.41068, 0.72546, 1.79432, -0.46429, 3.69501, -0.29568, 0.32486, 0.3954, 1.90985, 0.53721, 3.57711, 1.71718, 2.90197, 0.52055, 5.53736, 2.02661, 2.9769, 0.71757, 5.61701, 2.4406, 3.30559, 0.33888, 6.39518, 1.80793, -8.25609, -7.49931, 9.2648, -6.21129, -7.47334, -5.60382, 7.23663, -5.90728, -8.43139, -4.73439, 6.62292, -7.04597, -3.26586, -2.50221, -3.96453, -0.86575, 0, 0, 0, 0, 0, 0, 5.26103, 0.91729, 5.28929, 1.04147, 2.94121, 0.23031, 5.71479, 1.46838 ]
  5381. },
  5382. {
  5383. "time": 1.9333,
  5384. "offset": 14,
  5385. "vertices": [ 1.27967, 0.26766, 2.42862, 0.96874, 3.96211, 0.34378, 7.68681, 2.04406, 4.74907, -0.04908, 9.3727, 1.54159, 3.81293, -0.98662, 7.85189, -0.62831, 0.69032, 0.84022, 4.05842, 1.14157, 7.60135, 3.64901, 6.16669, 1.10616, 11.76689, 4.30654, 6.32592, 1.52484, 11.93615, 5.18627, 7.02438, 0.72011, 13.58976, 3.84185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11.1797, 1.94924, 11.23974, 2.21312, 6.25007, 0.48941, 12.14392, 3.1203 ]
  5386. }
  5387. ]
  5388. },
  5389. "zuoshou 1": {
  5390. "zuoshou 1": [
  5391. {
  5392. "time": 0,
  5393. "offset": 2,
  5394. "vertices": [ -0.09244, -2.83789, 0, 0, -1.75505, -1.87154, -2.81084, 0.5216 ],
  5395. "curve": "stepped"
  5396. },
  5397. {
  5398. "time": 1.6667,
  5399. "offset": 2,
  5400. "vertices": [ -0.09244, -2.83789, 0, 0, -1.75505, -1.87154, -2.81084, 0.5216 ]
  5401. },
  5402. {
  5403. "time": 1.8667,
  5404. "offset": 10,
  5405. "vertices": [ -6.9414, 0.76295 ]
  5406. }
  5407. ]
  5408. },
  5409. "zuoshou 2": {
  5410. "zuoshou 2": [
  5411. {
  5412. "time": 0,
  5413. "vertices": [ -0.44453, 5.78827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.04171, 5.77401, -0.06006, 5.77383, 0.14422, 5.52589, 0.1267, 5.52633, -0.46378, 4.34814, -0.47754, 4.34662, 0, 0, -0.45947, 4.74854, -0.47459, 4.74702, 0.1737, 7.84893, -0.45947, 4.74854 ],
  5414. "curve": "stepped"
  5415. },
  5416. {
  5417. "time": 1.6667,
  5418. "vertices": [ -0.44453, 5.78827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.04171, 5.77401, -0.06006, 5.77383, 0.14422, 5.52589, 0.1267, 5.52633, -0.46378, 4.34814, -0.47754, 4.34662, 0, 0, -0.45947, 4.74854, -0.47459, 4.74702, 0.1737, 7.84893, -0.45947, 4.74854 ]
  5419. },
  5420. { "time": 2.1667 }
  5421. ]
  5422. }
  5423. }
  5424. },
  5425. "drawOrder": [
  5426. {
  5427. "time": 0,
  5428. "offsets": [
  5429. { "slot": "toufa6", "offset": 11 }
  5430. ]
  5431. },
  5432. {
  5433. "time": 1.6667,
  5434. "offsets": [
  5435. { "slot": "toufa6", "offset": 11 }
  5436. ]
  5437. },
  5438. {
  5439. "time": 3.5,
  5440. "offsets": [
  5441. { "slot": "toufa6", "offset": 11 }
  5442. ]
  5443. }
  5444. ]
  5445. },
  5446. "walk1": {
  5447. "slots": {
  5448. "biyan": {
  5449. "attachment": [
  5450. { "time": 0, "name": null },
  5451. { "time": 1, "name": null },
  5452. { "time": 1.1, "name": "biyan" },
  5453. { "time": 1.2667, "name": null }
  5454. ]
  5455. },
  5456. "jian2": {
  5457. "attachment": [
  5458. { "time": 0, "name": null }
  5459. ]
  5460. },
  5461. "xian3": {
  5462. "attachment": [
  5463. { "time": 0, "name": null }
  5464. ]
  5465. },
  5466. "xian4": {
  5467. "attachment": [
  5468. { "time": 0, "name": null }
  5469. ]
  5470. },
  5471. "youshou2": {
  5472. "attachment": [
  5473. { "time": 0, "name": null }
  5474. ]
  5475. },
  5476. "youshou 1": {
  5477. "attachment": [
  5478. { "time": 0, "name": null }
  5479. ]
  5480. },
  5481. "youyan": {
  5482. "attachment": [
  5483. { "time": 1.1, "name": null },
  5484. { "time": 1.2667, "name": "youyan" }
  5485. ]
  5486. },
  5487. "zuoshou 1": {
  5488. "attachment": [
  5489. { "time": 0, "name": null }
  5490. ]
  5491. },
  5492. "zuoshou 2": {
  5493. "attachment": [
  5494. { "time": 0, "name": null }
  5495. ]
  5496. },
  5497. "zuoyan": {
  5498. "attachment": [
  5499. { "time": 1.1, "name": null },
  5500. { "time": 1.2667, "name": "zuoyan" }
  5501. ]
  5502. }
  5503. },
  5504. "bones": {
  5505. "root": {
  5506. "rotate": [
  5507. { "time": 0, "angle": 0 }
  5508. ],
  5509. "translate": [
  5510. { "time": 0, "x": 0, "y": 0 }
  5511. ],
  5512. "scale": [
  5513. { "time": 0, "x": 0.65, "y": 0.65 }
  5514. ]
  5515. },
  5516. "juese": {
  5517. "rotate": [
  5518. { "time": 0, "angle": 0, "curve": "stepped" },
  5519. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5520. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5521. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5522. { "time": 1, "angle": 0, "curve": "stepped" },
  5523. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5524. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5525. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5526. { "time": 2, "angle": 0 }
  5527. ],
  5528. "translate": [
  5529. { "time": 0, "x": 0, "y": 0 },
  5530. { "time": 0.1667, "x": 0, "y": 1 },
  5531. { "time": 0.5, "x": 0, "y": 0 },
  5532. { "time": 0.6667, "x": 0, "y": 1 },
  5533. { "time": 1, "x": 0, "y": 0 },
  5534. { "time": 1.1667, "x": 0, "y": 1 },
  5535. { "time": 1.5, "x": 0, "y": 0 },
  5536. { "time": 1.6667, "x": 0, "y": 1 },
  5537. { "time": 2, "x": 0, "y": 0 }
  5538. ],
  5539. "scale": [
  5540. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5541. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5542. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5543. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5544. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5545. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5546. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5547. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5548. { "time": 2, "x": 1, "y": 1 }
  5549. ]
  5550. },
  5551. "bone8": {
  5552. "rotate": [
  5553. { "time": 0, "angle": 0, "curve": "stepped" },
  5554. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5555. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5556. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5557. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5558. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5559. { "time": 1, "angle": 0, "curve": "stepped" },
  5560. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5561. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5562. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5563. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5564. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5565. { "time": 2, "angle": 0 }
  5566. ],
  5567. "translate": [
  5568. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5569. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5570. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5571. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5572. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5573. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5574. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5575. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5576. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5577. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5578. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5579. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5580. { "time": 2, "x": 0, "y": 0 }
  5581. ],
  5582. "scale": [
  5583. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5584. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5585. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5586. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5587. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5588. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5589. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5590. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5591. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5592. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5595. { "time": 2, "x": 1, "y": 1 }
  5596. ]
  5597. },
  5598. "bone9": {
  5599. "rotate": [
  5600. { "time": 0, "angle": 0 },
  5601. { "time": 0.5, "angle": -0.89 },
  5602. { "time": 1, "angle": 0 },
  5603. { "time": 1.5, "angle": -0.89 },
  5604. { "time": 2, "angle": 0 }
  5605. ],
  5606. "translate": [
  5607. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5608. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5609. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5610. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5611. { "time": 2, "x": 0, "y": 0 }
  5612. ],
  5613. "scale": [
  5614. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5615. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5616. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5617. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5618. { "time": 2, "x": 1, "y": 1 }
  5619. ]
  5620. },
  5621. "bone12": {
  5622. "rotate": [
  5623. { "time": 0, "angle": 0, "curve": "stepped" },
  5624. { "time": 1, "angle": 0, "curve": "stepped" },
  5625. { "time": 1.1, "angle": 0, "curve": "stepped" },
  5626. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5627. { "time": 1.4333, "angle": 0 }
  5628. ],
  5629. "translate": [
  5630. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5631. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5632. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5633. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5634. { "time": 1.4333, "x": 0, "y": 0 }
  5635. ],
  5636. "scale": [
  5637. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5638. { "time": 1, "x": 1, "y": 1 },
  5639. { "time": 1.1, "x": 0.305, "y": 1, "curve": "stepped" },
  5640. { "time": 1.2667, "x": 0.305, "y": 1 },
  5641. { "time": 1.4333, "x": 1, "y": 1 }
  5642. ]
  5643. },
  5644. "bone13": {
  5645. "rotate": [
  5646. { "time": 0, "angle": 0, "curve": "stepped" },
  5647. { "time": 1, "angle": 0, "curve": "stepped" },
  5648. { "time": 1.1, "angle": 0, "curve": "stepped" },
  5649. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5650. { "time": 1.4333, "angle": 0 }
  5651. ],
  5652. "translate": [
  5653. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5654. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5655. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  5656. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5657. { "time": 1.4333, "x": 0, "y": 0 }
  5658. ],
  5659. "scale": [
  5660. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5661. { "time": 1, "x": 1, "y": 1 },
  5662. { "time": 1.1, "x": 0.302, "y": 1, "curve": "stepped" },
  5663. { "time": 1.2667, "x": 0.302, "y": 1 },
  5664. { "time": 1.4333, "x": 1, "y": 1 }
  5665. ]
  5666. },
  5667. "bone14": {
  5668. "rotate": [
  5669. { "time": 0, "angle": 0, "curve": "stepped" },
  5670. { "time": 1, "angle": 0, "curve": "stepped" },
  5671. { "time": 1.1, "angle": 0, "curve": "stepped" },
  5672. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5673. { "time": 1.4333, "angle": 0 }
  5674. ],
  5675. "translate": [
  5676. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5677. { "time": 1, "x": 0, "y": 0 },
  5678. { "time": 1.1, "x": -0.99, "y": 0, "curve": "stepped" },
  5679. { "time": 1.2667, "x": -0.99, "y": 0 },
  5680. { "time": 1.4333, "x": 0, "y": 0 }
  5681. ],
  5682. "scale": [
  5683. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5684. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5685. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  5686. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5687. { "time": 1.4333, "x": 1, "y": 1 }
  5688. ]
  5689. },
  5690. "bone16": {
  5691. "rotate": [
  5692. {
  5693. "time": 0,
  5694. "angle": -308.32,
  5695. "curve": [ 0.25, 0, 0.75, 1 ]
  5696. },
  5697. {
  5698. "time": 0.5,
  5699. "angle": 19.92,
  5700. "curve": [ 0.25, 0, 0.75, 1 ]
  5701. },
  5702. {
  5703. "time": 1,
  5704. "angle": -308.32,
  5705. "curve": [ 0.25, 0, 0.75, 1 ]
  5706. },
  5707. {
  5708. "time": 1.5,
  5709. "angle": 19.92,
  5710. "curve": [ 0.25, 0, 0.75, 1 ]
  5711. },
  5712. { "time": 2, "angle": -308.32 }
  5713. ],
  5714. "translate": [
  5715. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5716. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5717. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5718. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5719. { "time": 2, "x": 0, "y": 0 }
  5720. ],
  5721. "scale": [
  5722. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5723. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5724. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5725. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5726. { "time": 2, "x": 1, "y": 1 }
  5727. ]
  5728. },
  5729. "bone17": {
  5730. "rotate": [
  5731. { "time": 0, "angle": -11.18, "curve": "stepped" },
  5732. { "time": 0.5, "angle": -11.18, "curve": "stepped" },
  5733. { "time": 1, "angle": -11.18, "curve": "stepped" },
  5734. { "time": 1.5, "angle": -11.18, "curve": "stepped" },
  5735. { "time": 2, "angle": -11.18 }
  5736. ],
  5737. "translate": [
  5738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5739. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5740. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5741. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5742. { "time": 2, "x": 0, "y": 0 }
  5743. ],
  5744. "scale": [
  5745. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5746. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5747. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5748. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5749. { "time": 2, "x": 1, "y": 1 }
  5750. ]
  5751. },
  5752. "bone18": {
  5753. "rotate": [
  5754. { "time": 0, "angle": 0, "curve": "stepped" },
  5755. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5756. { "time": 1, "angle": 0, "curve": "stepped" },
  5757. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5758. { "time": 2, "angle": 0 }
  5759. ],
  5760. "translate": [
  5761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5762. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5763. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5764. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5765. { "time": 2, "x": 0, "y": 0 }
  5766. ],
  5767. "scale": [
  5768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5769. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5770. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5771. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5772. { "time": 2, "x": 1, "y": 1 }
  5773. ]
  5774. },
  5775. "bone19": {
  5776. "rotate": [
  5777. {
  5778. "time": 0,
  5779. "angle": 313.76,
  5780. "curve": [ 0.25, 0, 0.75, 1 ]
  5781. },
  5782. {
  5783. "time": 0.5,
  5784. "angle": -11.71,
  5785. "curve": [ 0.25, 0, 0.75, 1 ]
  5786. },
  5787. {
  5788. "time": 1,
  5789. "angle": 313.76,
  5790. "curve": [ 0.25, 0, 0.75, 1 ]
  5791. },
  5792. {
  5793. "time": 1.5,
  5794. "angle": -11.71,
  5795. "curve": [ 0.25, 0, 0.75, 1 ]
  5796. },
  5797. { "time": 2, "angle": 313.76 }
  5798. ],
  5799. "translate": [
  5800. {
  5801. "time": 0,
  5802. "x": 0.54,
  5803. "y": -2.08,
  5804. "curve": [ 0.25, 0, 0.75, 1 ]
  5805. },
  5806. {
  5807. "time": 0.5,
  5808. "x": 0,
  5809. "y": 0,
  5810. "curve": [ 0.25, 0, 0.75, 1 ]
  5811. },
  5812. {
  5813. "time": 1,
  5814. "x": 0.54,
  5815. "y": -2.08,
  5816. "curve": [ 0.25, 0, 0.75, 1 ]
  5817. },
  5818. {
  5819. "time": 1.5,
  5820. "x": 0,
  5821. "y": 0,
  5822. "curve": [ 0.25, 0, 0.75, 1 ]
  5823. },
  5824. { "time": 2, "x": 0.54, "y": -2.08 }
  5825. ]
  5826. },
  5827. "bone20": {
  5828. "rotate": [
  5829. {
  5830. "time": 0,
  5831. "angle": -13.8,
  5832. "curve": [ 0.25, 0, 0.75, 1 ]
  5833. },
  5834. {
  5835. "time": 0.5,
  5836. "angle": -8.73,
  5837. "curve": [ 0.25, 0, 0.75, 1 ]
  5838. },
  5839. {
  5840. "time": 1,
  5841. "angle": -13.8,
  5842. "curve": [ 0.25, 0, 0.75, 1 ]
  5843. },
  5844. {
  5845. "time": 1.5,
  5846. "angle": -8.73,
  5847. "curve": [ 0.25, 0, 0.75, 1 ]
  5848. },
  5849. { "time": 2, "angle": -13.8 }
  5850. ],
  5851. "translate": [
  5852. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5853. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5854. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5855. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5856. { "time": 2, "x": 0, "y": 0 }
  5857. ],
  5858. "scale": [
  5859. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5860. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5861. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5862. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5863. { "time": 2, "x": 1, "y": 1 }
  5864. ]
  5865. },
  5866. "bone21": {
  5867. "rotate": [
  5868. { "time": 0, "angle": 0, "curve": "stepped" },
  5869. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5870. { "time": 1, "angle": 0, "curve": "stepped" },
  5871. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5872. { "time": 2, "angle": 0 }
  5873. ],
  5874. "translate": [
  5875. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5876. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5877. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5878. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5879. { "time": 2, "x": 0, "y": 0 }
  5880. ],
  5881. "scale": [
  5882. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5883. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5884. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5885. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5886. { "time": 2, "x": 1, "y": 1 }
  5887. ]
  5888. },
  5889. "bone22": {
  5890. "rotate": [
  5891. { "time": 0, "angle": 0 },
  5892. {
  5893. "time": 0.5,
  5894. "angle": 12.34,
  5895. "curve": [ 0.25, 0, 0.75, 1 ]
  5896. },
  5897. { "time": 1, "angle": 0 },
  5898. {
  5899. "time": 1.5,
  5900. "angle": 12.34,
  5901. "curve": [ 0.25, 0, 0.75, 1 ]
  5902. },
  5903. { "time": 2, "angle": 0 }
  5904. ],
  5905. "translate": [
  5906. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5907. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5908. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5909. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5910. { "time": 2, "x": 0, "y": 0 }
  5911. ],
  5912. "scale": [
  5913. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5914. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5915. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5916. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5917. { "time": 2, "x": 1, "y": 1 }
  5918. ]
  5919. },
  5920. "bone23": {
  5921. "rotate": [
  5922. { "time": 0, "angle": -8.92 },
  5923. {
  5924. "time": 0.5,
  5925. "angle": -11.05,
  5926. "curve": [ 0.25, 0, 0.75, 1 ]
  5927. },
  5928. { "time": 1, "angle": -8.92 },
  5929. {
  5930. "time": 1.5,
  5931. "angle": -11.05,
  5932. "curve": [ 0.25, 0, 0.75, 1 ]
  5933. },
  5934. { "time": 2, "angle": -8.92 }
  5935. ],
  5936. "translate": [
  5937. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5938. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5939. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5940. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5941. { "time": 2, "x": 0, "y": 0 }
  5942. ],
  5943. "scale": [
  5944. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5945. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5946. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5947. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5948. { "time": 2, "x": 1, "y": 1 }
  5949. ]
  5950. },
  5951. "bone24": {
  5952. "rotate": [
  5953. { "time": 0, "angle": -8.92 },
  5954. {
  5955. "time": 0.5,
  5956. "angle": -11.05,
  5957. "curve": [ 0.25, 0, 0.75, 1 ]
  5958. },
  5959. { "time": 1, "angle": -8.92 },
  5960. {
  5961. "time": 1.5,
  5962. "angle": -11.05,
  5963. "curve": [ 0.25, 0, 0.75, 1 ]
  5964. },
  5965. { "time": 2, "angle": -8.92 }
  5966. ],
  5967. "translate": [
  5968. { "time": 0, "x": 0, "y": 0 },
  5969. { "time": 0.1667, "x": -1.43, "y": 0.26 },
  5970. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5971. { "time": 1, "x": 0, "y": 0 },
  5972. { "time": 1.1667, "x": -1.43, "y": 0.26 },
  5973. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5974. { "time": 2, "x": 0, "y": 0 }
  5975. ],
  5976. "scale": [
  5977. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5978. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5979. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5980. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5981. { "time": 2, "x": 1, "y": 1 }
  5982. ]
  5983. },
  5984. "bone25": {
  5985. "rotate": [
  5986. { "time": 0, "angle": -8.92 },
  5987. {
  5988. "time": 0.5,
  5989. "angle": -11.05,
  5990. "curve": [ 0.25, 0, 0.75, 1 ]
  5991. },
  5992. { "time": 1, "angle": -8.92 },
  5993. {
  5994. "time": 1.5,
  5995. "angle": -11.05,
  5996. "curve": [ 0.25, 0, 0.75, 1 ]
  5997. },
  5998. { "time": 2, "angle": -8.92 }
  5999. ],
  6000. "translate": [
  6001. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6002. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6003. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6004. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6005. { "time": 2, "x": 0, "y": 0 }
  6006. ],
  6007. "scale": [
  6008. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6009. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6010. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6011. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6012. { "time": 2, "x": 1, "y": 1 }
  6013. ]
  6014. },
  6015. "bone26": {
  6016. "rotate": [
  6017. { "time": 0, "angle": 0 },
  6018. {
  6019. "time": 0.5,
  6020. "angle": -11.05,
  6021. "curve": [ 0.25, 0, 0.75, 1 ]
  6022. },
  6023. { "time": 1, "angle": 0 },
  6024. {
  6025. "time": 1.5,
  6026. "angle": -11.05,
  6027. "curve": [ 0.25, 0, 0.75, 1 ]
  6028. },
  6029. { "time": 2, "angle": 0 }
  6030. ],
  6031. "translate": [
  6032. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6033. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6034. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6035. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6036. { "time": 2, "x": 0, "y": 0 }
  6037. ],
  6038. "scale": [
  6039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6040. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6041. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6042. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6043. { "time": 2, "x": 1, "y": 1 }
  6044. ]
  6045. },
  6046. "bone27": {
  6047. "rotate": [
  6048. { "time": 0, "angle": 0, "curve": "stepped" },
  6049. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6050. { "time": 1, "angle": 0, "curve": "stepped" },
  6051. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6052. { "time": 2, "angle": 0 }
  6053. ],
  6054. "translate": [
  6055. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6056. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6057. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6058. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6059. { "time": 2, "x": 0, "y": 0 }
  6060. ],
  6061. "scale": [
  6062. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6063. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6064. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6065. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6066. { "time": 2, "x": 1, "y": 1 }
  6067. ]
  6068. },
  6069. "bone28": {
  6070. "rotate": [
  6071. { "time": 0, "angle": 16.7 },
  6072. {
  6073. "time": 0.5,
  6074. "angle": 2.38,
  6075. "curve": [ 0.25, 0, 0.75, 1 ]
  6076. },
  6077. { "time": 1, "angle": 16.7 },
  6078. {
  6079. "time": 1.5,
  6080. "angle": 2.38,
  6081. "curve": [ 0.25, 0, 0.75, 1 ]
  6082. },
  6083. { "time": 2, "angle": 16.7 }
  6084. ],
  6085. "translate": [
  6086. { "time": 0, "x": 0, "y": 0 },
  6087. {
  6088. "time": 0.5,
  6089. "x": 0.07,
  6090. "y": 1.77,
  6091. "curve": [ 0.25, 0, 0.75, 1 ]
  6092. },
  6093. { "time": 1, "x": 0, "y": 0 },
  6094. {
  6095. "time": 1.5,
  6096. "x": 0.07,
  6097. "y": 1.77,
  6098. "curve": [ 0.25, 0, 0.75, 1 ]
  6099. },
  6100. { "time": 2, "x": 0, "y": 0 }
  6101. ]
  6102. },
  6103. "bone29": {
  6104. "rotate": [
  6105. { "time": 0, "angle": 6.76 },
  6106. {
  6107. "time": 0.5,
  6108. "angle": 13.14,
  6109. "curve": [ 0.25, 0, 0.75, 1 ]
  6110. },
  6111. { "time": 1, "angle": 6.76 },
  6112. {
  6113. "time": 1.5,
  6114. "angle": 13.14,
  6115. "curve": [ 0.25, 0, 0.75, 1 ]
  6116. },
  6117. { "time": 2, "angle": 6.76 }
  6118. ],
  6119. "translate": [
  6120. { "time": 0, "x": 0, "y": 0 },
  6121. { "time": 0.1667, "x": 2.03, "y": 0.2 },
  6122. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6123. { "time": 1, "x": 0, "y": 0 },
  6124. { "time": 1.1667, "x": 2.03, "y": 0.2 },
  6125. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6126. { "time": 2, "x": 0, "y": 0 }
  6127. ],
  6128. "scale": [
  6129. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6130. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6131. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6132. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6133. { "time": 2, "x": 1, "y": 1 }
  6134. ]
  6135. },
  6136. "bone30": {
  6137. "rotate": [
  6138. { "time": 0, "angle": 6.76 },
  6139. {
  6140. "time": 0.5,
  6141. "angle": 0,
  6142. "curve": [ 0.25, 0, 0.75, 1 ]
  6143. },
  6144. { "time": 1, "angle": 6.76 },
  6145. {
  6146. "time": 1.5,
  6147. "angle": 0,
  6148. "curve": [ 0.25, 0, 0.75, 1 ]
  6149. },
  6150. { "time": 2, "angle": 6.76 }
  6151. ],
  6152. "translate": [
  6153. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6154. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6155. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6156. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6157. { "time": 2, "x": 0, "y": 0 }
  6158. ],
  6159. "scale": [
  6160. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6161. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6162. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6163. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6164. { "time": 2, "x": 1, "y": 1 }
  6165. ]
  6166. },
  6167. "bone31": {
  6168. "rotate": [
  6169. { "time": 0, "angle": 6.76 },
  6170. {
  6171. "time": 0.5,
  6172. "angle": 0,
  6173. "curve": [ 0.25, 0, 0.75, 1 ]
  6174. },
  6175. { "time": 1, "angle": 6.76 },
  6176. {
  6177. "time": 1.5,
  6178. "angle": 0,
  6179. "curve": [ 0.25, 0, 0.75, 1 ]
  6180. },
  6181. { "time": 2, "angle": 6.76 }
  6182. ],
  6183. "translate": [
  6184. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6185. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6186. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6187. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6188. { "time": 2, "x": 0, "y": 0 }
  6189. ],
  6190. "scale": [
  6191. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6192. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6193. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6194. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6195. { "time": 2, "x": 1, "y": 1 }
  6196. ]
  6197. },
  6198. "bone33": {
  6199. "rotate": [
  6200. { "time": 0, "angle": 8.96 },
  6201. { "time": 0.5, "angle": 0 },
  6202. { "time": 1, "angle": 8.96 },
  6203. { "time": 1.5, "angle": 0 },
  6204. { "time": 2, "angle": 8.96 }
  6205. ],
  6206. "translate": [
  6207. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6208. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6209. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6210. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6211. { "time": 2, "x": 0, "y": 0 }
  6212. ],
  6213. "scale": [
  6214. { "time": 0, "x": 1, "y": 1 },
  6215. { "time": 0.5, "x": 1, "y": 0.9 },
  6216. { "time": 1, "x": 1, "y": 1 },
  6217. { "time": 1.5, "x": 1, "y": 0.9 },
  6218. { "time": 2, "x": 1, "y": 1 }
  6219. ]
  6220. },
  6221. "bone34": {
  6222. "rotate": [
  6223. { "time": 0, "angle": 8.08 },
  6224. { "time": 0.5, "angle": 0 },
  6225. { "time": 1, "angle": 8.08 },
  6226. { "time": 1.5, "angle": 0 },
  6227. { "time": 2, "angle": 8.08 }
  6228. ],
  6229. "translate": [
  6230. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6231. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6232. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6233. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6234. { "time": 2, "x": 0, "y": 0 }
  6235. ],
  6236. "scale": [
  6237. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6238. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6239. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6240. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6241. { "time": 2, "x": 1, "y": 1 }
  6242. ]
  6243. },
  6244. "bone35": {
  6245. "rotate": [
  6246. { "time": 0, "angle": 8.96 },
  6247. { "time": 0.5, "angle": 12.67 },
  6248. { "time": 1, "angle": 8.96 },
  6249. { "time": 1.5, "angle": 12.67 },
  6250. { "time": 2, "angle": 8.96 }
  6251. ],
  6252. "translate": [
  6253. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6254. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6255. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6256. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6257. { "time": 2, "x": 0, "y": 0 }
  6258. ],
  6259. "scale": [
  6260. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6261. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6262. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6263. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6264. { "time": 2, "x": 1, "y": 1 }
  6265. ]
  6266. },
  6267. "bone36": {
  6268. "rotate": [
  6269. { "time": 0, "angle": 8.96 },
  6270. { "time": 0.5, "angle": 0 },
  6271. { "time": 1, "angle": 8.96 },
  6272. { "time": 1.5, "angle": 0 },
  6273. { "time": 2, "angle": 8.96 }
  6274. ],
  6275. "translate": [
  6276. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6277. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6278. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6279. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6280. { "time": 2, "x": 0, "y": 0 }
  6281. ],
  6282. "scale": [
  6283. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6284. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6285. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6286. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6287. { "time": 2, "x": 1, "y": 1 }
  6288. ]
  6289. },
  6290. "bone37": {
  6291. "rotate": [
  6292. {
  6293. "time": 0,
  6294. "angle": 6.32,
  6295. "curve": [ 0.25, 0, 0.75, 1 ]
  6296. },
  6297. { "time": 0.5, "angle": 0 },
  6298. {
  6299. "time": 1,
  6300. "angle": 6.32,
  6301. "curve": [ 0.25, 0, 0.75, 1 ]
  6302. },
  6303. { "time": 1.5, "angle": 0 },
  6304. { "time": 2, "angle": 6.32 }
  6305. ],
  6306. "translate": [
  6307. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6308. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6309. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6310. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6311. { "time": 2, "x": 0, "y": 0 }
  6312. ],
  6313. "scale": [
  6314. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6315. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6316. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6317. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6318. { "time": 2, "x": 1, "y": 1 }
  6319. ]
  6320. },
  6321. "bone38": {
  6322. "rotate": [
  6323. {
  6324. "time": 0,
  6325. "angle": -8.96,
  6326. "curve": [ 0.25, 0, 0.75, 1 ]
  6327. },
  6328. { "time": 0.5, "angle": 0 },
  6329. {
  6330. "time": 1,
  6331. "angle": -8.96,
  6332. "curve": [ 0.25, 0, 0.75, 1 ]
  6333. },
  6334. { "time": 1.5, "angle": 0 },
  6335. { "time": 2, "angle": -8.96 }
  6336. ],
  6337. "translate": [
  6338. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6339. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6340. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6341. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6342. { "time": 2, "x": 0, "y": 0 }
  6343. ],
  6344. "scale": [
  6345. {
  6346. "time": 0,
  6347. "x": 1,
  6348. "y": 0.5,
  6349. "curve": [ 0.25, 0, 0.75, 1 ]
  6350. },
  6351. { "time": 0.5, "x": 1, "y": 1 },
  6352. {
  6353. "time": 1,
  6354. "x": 1,
  6355. "y": 0.5,
  6356. "curve": [ 0.25, 0, 0.75, 1 ]
  6357. },
  6358. { "time": 1.5, "x": 1, "y": 1 },
  6359. { "time": 2, "x": 1, "y": 0.5 }
  6360. ]
  6361. },
  6362. "bone39": {
  6363. "rotate": [
  6364. {
  6365. "time": 0,
  6366. "angle": -8.96,
  6367. "curve": [ 0.25, 0, 0.75, 1 ]
  6368. },
  6369. { "time": 0.5, "angle": 0 },
  6370. {
  6371. "time": 1,
  6372. "angle": -8.96,
  6373. "curve": [ 0.25, 0, 0.75, 1 ]
  6374. },
  6375. { "time": 1.5, "angle": 0 },
  6376. { "time": 2, "angle": -8.96 }
  6377. ],
  6378. "translate": [
  6379. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6380. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6381. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6382. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6383. { "time": 2, "x": 0, "y": 0 }
  6384. ],
  6385. "scale": [
  6386. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6387. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6388. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6389. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6390. { "time": 2, "x": 1, "y": 1 }
  6391. ]
  6392. },
  6393. "bone40": {
  6394. "rotate": [
  6395. {
  6396. "time": 0,
  6397. "angle": -8.96,
  6398. "curve": [ 0.25, 0, 0.75, 1 ]
  6399. },
  6400. { "time": 0.5, "angle": 0 },
  6401. {
  6402. "time": 1,
  6403. "angle": -8.96,
  6404. "curve": [ 0.25, 0, 0.75, 1 ]
  6405. },
  6406. { "time": 1.5, "angle": 0 },
  6407. { "time": 2, "angle": -8.96 }
  6408. ],
  6409. "translate": [
  6410. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6411. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6412. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6413. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6414. { "time": 2, "x": 0, "y": 0 }
  6415. ],
  6416. "scale": [
  6417. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6418. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6419. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6420. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6421. { "time": 2, "x": 1, "y": 1 }
  6422. ]
  6423. },
  6424. "bone41": {
  6425. "rotate": [
  6426. {
  6427. "time": 0,
  6428. "angle": -8.96,
  6429. "curve": [ 0.25, 0, 0.75, 1 ]
  6430. },
  6431. { "time": 0.5, "angle": 0 },
  6432. {
  6433. "time": 1,
  6434. "angle": -8.96,
  6435. "curve": [ 0.25, 0, 0.75, 1 ]
  6436. },
  6437. { "time": 1.5, "angle": 0 },
  6438. { "time": 2, "angle": -8.96 }
  6439. ],
  6440. "translate": [
  6441. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6442. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6443. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6444. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6445. { "time": 2, "x": 0, "y": 0 }
  6446. ],
  6447. "scale": [
  6448. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6449. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6450. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6451. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6452. { "time": 2, "x": 1, "y": 1 }
  6453. ]
  6454. },
  6455. "bone46": {
  6456. "rotate": [
  6457. { "time": 0, "angle": 13.54 },
  6458. { "time": 0.1667, "angle": -5.24 },
  6459. { "time": 0.3333, "angle": -37.14 },
  6460. { "time": 0.5, "angle": -26.72 },
  6461. { "time": 0.6667, "angle": -19.19 },
  6462. { "time": 0.8333, "angle": 0.12 },
  6463. { "time": 1, "angle": 13.54 },
  6464. { "time": 1.1667, "angle": -5.24 },
  6465. { "time": 1.3333, "angle": -37.14 },
  6466. { "time": 1.5, "angle": -26.72 },
  6467. { "time": 1.6667, "angle": -19.19 },
  6468. { "time": 1.8333, "angle": 0.12 },
  6469. { "time": 2, "angle": 13.54 }
  6470. ],
  6471. "translate": [
  6472. { "time": 0, "x": 0, "y": 0 },
  6473. { "time": 0.1667, "x": -6.21, "y": -0.77 },
  6474. { "time": 0.3333, "x": -12.42, "y": -1.54 },
  6475. { "time": 0.5, "x": -18.63, "y": -2.32 },
  6476. { "time": 0.6667, "x": -12.42, "y": -1.54 },
  6477. { "time": 0.8333, "x": -6.21, "y": -0.77 },
  6478. { "time": 1, "x": 0, "y": 0 },
  6479. { "time": 1.1667, "x": -6.21, "y": -0.77 },
  6480. { "time": 1.3333, "x": -12.42, "y": -1.54 },
  6481. { "time": 1.5, "x": -18.63, "y": -2.32 },
  6482. { "time": 1.6667, "x": -12.42, "y": -1.54 },
  6483. { "time": 1.8333, "x": -6.21, "y": -0.77 },
  6484. { "time": 2, "x": 0, "y": 0 }
  6485. ],
  6486. "scale": [
  6487. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6488. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6489. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6490. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6491. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6492. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6493. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6494. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6495. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6496. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6497. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6498. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6499. { "time": 2, "x": 1, "y": 1 }
  6500. ]
  6501. },
  6502. "bone47": {
  6503. "rotate": [
  6504. { "time": 0, "angle": 0 },
  6505. { "time": 0.1667, "angle": 33.86 },
  6506. { "time": 0.3333, "angle": 47.87 },
  6507. { "time": 0.5, "angle": 0 },
  6508. { "time": 0.6667, "angle": 23.62 },
  6509. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6510. { "time": 1, "angle": 0 },
  6511. { "time": 1.1667, "angle": 33.86 },
  6512. { "time": 1.3333, "angle": 47.87 },
  6513. { "time": 1.5, "angle": 0 },
  6514. { "time": 1.6667, "angle": 23.62 },
  6515. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6516. { "time": 2, "angle": 0 }
  6517. ],
  6518. "translate": [
  6519. { "time": 0, "x": 0, "y": 0 },
  6520. { "time": 0.1667, "x": -2.38, "y": -1.55 },
  6521. { "time": 0.3333, "x": -2.01, "y": -1.22 },
  6522. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6523. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6524. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6525. { "time": 1, "x": 0, "y": 0 },
  6526. { "time": 1.1667, "x": -2.38, "y": -1.55 },
  6527. { "time": 1.3333, "x": -2.01, "y": -1.22 },
  6528. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6529. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6530. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6531. { "time": 2, "x": 0, "y": 0 }
  6532. ],
  6533. "scale": [
  6534. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6535. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6536. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6537. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6538. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6539. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6540. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6541. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6542. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6543. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6544. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6545. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6546. { "time": 2, "x": 1, "y": 1 }
  6547. ]
  6548. },
  6549. "bone48": {
  6550. "rotate": [
  6551. { "time": 0, "angle": 0, "curve": "stepped" },
  6552. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6553. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6554. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6555. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6556. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6557. { "time": 1, "angle": 0, "curve": "stepped" },
  6558. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6559. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6560. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6561. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6562. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6563. { "time": 2, "angle": 0 }
  6564. ],
  6565. "translate": [
  6566. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6567. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6568. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6569. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6570. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6571. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6572. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6573. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6574. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6575. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6576. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6577. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6578. { "time": 2, "x": 0, "y": 0 }
  6579. ],
  6580. "scale": [
  6581. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6582. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6583. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6584. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6585. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6586. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6587. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6588. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6589. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6590. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6591. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6592. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6593. { "time": 2, "x": 1, "y": 1 }
  6594. ]
  6595. },
  6596. "bone49": {
  6597. "rotate": [
  6598. { "time": 0, "angle": -9.76 },
  6599. { "time": 0.1667, "angle": -0.95 },
  6600. { "time": 0.3333, "angle": 18.52 },
  6601. { "time": 0.5, "angle": 32.66 },
  6602. { "time": 0.6667, "angle": 11.12 },
  6603. { "time": 0.8333, "angle": -12.34 },
  6604. { "time": 1, "angle": -9.76 },
  6605. { "time": 1.1667, "angle": -0.95 },
  6606. { "time": 1.3333, "angle": 18.52 },
  6607. { "time": 1.5, "angle": 32.66 },
  6608. { "time": 1.6667, "angle": 11.12 },
  6609. { "time": 1.8333, "angle": -12.34 },
  6610. { "time": 2, "angle": -9.76 }
  6611. ],
  6612. "translate": [
  6613. { "time": 0, "x": 0, "y": 0 },
  6614. { "time": 0.1667, "x": 2.98, "y": -0.21 },
  6615. { "time": 0.3333, "x": 5.96, "y": -0.41 },
  6616. { "time": 0.5, "x": 12.83, "y": -0.32 },
  6617. { "time": 0.6667, "x": 10.18, "y": 0.3 },
  6618. { "time": 0.8333, "x": 2.98, "y": -0.21 },
  6619. { "time": 1, "x": 0, "y": 0 },
  6620. { "time": 1.1667, "x": 2.98, "y": -0.21 },
  6621. { "time": 1.3333, "x": 5.96, "y": -0.41 },
  6622. { "time": 1.5, "x": 12.83, "y": -0.32 },
  6623. { "time": 1.6667, "x": 10.18, "y": 0.3 },
  6624. { "time": 1.8333, "x": 2.98, "y": -0.21 },
  6625. { "time": 2, "x": 0, "y": 0 }
  6626. ],
  6627. "scale": [
  6628. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6629. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6630. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6631. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6632. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6633. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6634. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6635. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6636. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6637. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6638. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6639. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6640. { "time": 2, "x": 1, "y": 1 }
  6641. ]
  6642. },
  6643. "bone50": {
  6644. "rotate": [
  6645. { "time": 0, "angle": 0 },
  6646. { "time": 0.1667, "angle": 12.19 },
  6647. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6648. { "time": 0.5, "angle": 0 },
  6649. { "time": 0.6667, "angle": 40.44 },
  6650. { "time": 0.8333, "angle": 46.12 },
  6651. { "time": 1, "angle": 0 },
  6652. { "time": 1.1667, "angle": 12.19 },
  6653. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6654. { "time": 1.5, "angle": 0 },
  6655. { "time": 1.6667, "angle": 40.44 },
  6656. { "time": 1.8333, "angle": 46.12 },
  6657. { "time": 2, "angle": 0 }
  6658. ],
  6659. "translate": [
  6660. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6661. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6662. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6663. { "time": 0.5, "x": 0, "y": 0 },
  6664. { "time": 0.6667, "x": -2.26, "y": -2.03 },
  6665. { "time": 0.8333, "x": -2.01, "y": -2.21 },
  6666. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6667. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6668. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6669. { "time": 1.5, "x": 0, "y": 0 },
  6670. { "time": 1.6667, "x": -2.26, "y": -2.03 },
  6671. { "time": 1.8333, "x": -2.01, "y": -2.21 },
  6672. { "time": 2, "x": 0, "y": 0 }
  6673. ],
  6674. "scale": [
  6675. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6676. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6677. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6678. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6679. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6680. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6681. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6682. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6683. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6684. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6685. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6686. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6687. { "time": 2, "x": 1, "y": 1 }
  6688. ]
  6689. },
  6690. "bone51": {
  6691. "rotate": [
  6692. { "time": 0, "angle": -13.9, "curve": "stepped" },
  6693. { "time": 0.1667, "angle": -13.9, "curve": "stepped" },
  6694. { "time": 0.3333, "angle": -13.9, "curve": "stepped" },
  6695. { "time": 0.5, "angle": -13.9, "curve": "stepped" },
  6696. { "time": 0.6667, "angle": -13.9, "curve": "stepped" },
  6697. { "time": 0.8333, "angle": -13.9, "curve": "stepped" },
  6698. { "time": 1, "angle": -13.9, "curve": "stepped" },
  6699. { "time": 1.1667, "angle": -13.9, "curve": "stepped" },
  6700. { "time": 1.3333, "angle": -13.9, "curve": "stepped" },
  6701. { "time": 1.5, "angle": -13.9, "curve": "stepped" },
  6702. { "time": 1.6667, "angle": -13.9, "curve": "stepped" },
  6703. { "time": 1.8333, "angle": -13.9, "curve": "stepped" },
  6704. { "time": 2, "angle": -13.9 }
  6705. ],
  6706. "translate": [
  6707. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6708. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6709. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6710. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6711. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6712. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6713. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6714. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6715. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6716. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6717. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6718. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6719. { "time": 2, "x": 0, "y": 0 }
  6720. ],
  6721. "scale": [
  6722. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6723. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6724. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6725. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6726. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6727. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6728. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6729. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6730. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6731. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6732. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6733. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6734. { "time": 2, "x": 1, "y": 1 }
  6735. ]
  6736. },
  6737. "bone52": {
  6738. "rotate": [
  6739. { "time": 0, "angle": 0, "curve": "stepped" },
  6740. { "time": 1, "angle": 0, "curve": "stepped" },
  6741. { "time": 1.1, "angle": 0, "curve": "stepped" },
  6742. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  6743. { "time": 1.4333, "angle": 0 }
  6744. ],
  6745. "translate": [
  6746. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6747. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6748. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6749. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6750. { "time": 1.4333, "x": 0, "y": 0 }
  6751. ],
  6752. "scale": [
  6753. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6754. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6755. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  6756. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6757. { "time": 1.4333, "x": 1, "y": 1 }
  6758. ]
  6759. },
  6760. "bone55": {
  6761. "rotate": [
  6762. { "time": 0, "angle": 0, "curve": "stepped" },
  6763. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6764. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6765. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6766. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6767. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6768. { "time": 1, "angle": 0, "curve": "stepped" },
  6769. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6770. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6771. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6772. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6773. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6774. { "time": 2, "angle": 0 }
  6775. ],
  6776. "translate": [
  6777. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6778. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6779. { "time": 0.3333, "x": 0, "y": 0 },
  6780. { "time": 0.5, "x": -0.01, "y": -1.28 },
  6781. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6782. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6783. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6784. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6785. { "time": 1.3333, "x": 0, "y": 0 },
  6786. { "time": 1.5, "x": -0.01, "y": -1.28 },
  6787. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6788. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6789. { "time": 2, "x": 0, "y": 0 }
  6790. ],
  6791. "scale": [
  6792. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6793. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6794. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6795. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6796. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6797. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6798. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6799. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6800. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6801. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6802. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6803. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6804. { "time": 2, "x": 1, "y": 1 }
  6805. ]
  6806. },
  6807. "bone56": {
  6808. "rotate": [
  6809. {
  6810. "time": 0,
  6811. "angle": -3.67,
  6812. "curve": [ 0.25, 0, 0.75, 1 ]
  6813. },
  6814. {
  6815. "time": 0.5,
  6816. "angle": 0,
  6817. "curve": [ 0.25, 0, 0.75, 1 ]
  6818. },
  6819. {
  6820. "time": 1,
  6821. "angle": -3.67,
  6822. "curve": [ 0.25, 0, 0.75, 1 ]
  6823. },
  6824. {
  6825. "time": 1.5,
  6826. "angle": 0,
  6827. "curve": [ 0.25, 0, 0.75, 1 ]
  6828. },
  6829. { "time": 2, "angle": -3.67 }
  6830. ],
  6831. "translate": [
  6832. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6833. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6834. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6835. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6836. { "time": 2, "x": 0, "y": 0 }
  6837. ],
  6838. "scale": [
  6839. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6840. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6841. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6842. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6843. { "time": 2, "x": 1, "y": 1 }
  6844. ]
  6845. },
  6846. "bone57": {
  6847. "rotate": [
  6848. {
  6849. "time": 0,
  6850. "angle": -7.28,
  6851. "curve": [ 0.25, 0, 0.75, 1 ]
  6852. },
  6853. {
  6854. "time": 0.5,
  6855. "angle": 0,
  6856. "curve": [ 0.25, 0, 0.75, 1 ]
  6857. },
  6858. {
  6859. "time": 1,
  6860. "angle": -7.28,
  6861. "curve": [ 0.25, 0, 0.75, 1 ]
  6862. },
  6863. {
  6864. "time": 1.5,
  6865. "angle": 0,
  6866. "curve": [ 0.25, 0, 0.75, 1 ]
  6867. },
  6868. { "time": 2, "angle": -7.28 }
  6869. ],
  6870. "translate": [
  6871. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6872. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6873. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6874. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6875. { "time": 2, "x": 0, "y": 0 }
  6876. ],
  6877. "scale": [
  6878. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6879. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6880. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6881. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6882. { "time": 2, "x": 1, "y": 1 }
  6883. ]
  6884. },
  6885. "bone58": {
  6886. "rotate": [
  6887. {
  6888. "time": 0,
  6889. "angle": -3.6,
  6890. "curve": [ 0.25, 0, 0.75, 1 ]
  6891. },
  6892. {
  6893. "time": 0.5,
  6894. "angle": 0,
  6895. "curve": [ 0.25, 0, 0.75, 1 ]
  6896. },
  6897. {
  6898. "time": 1,
  6899. "angle": -3.6,
  6900. "curve": [ 0.25, 0, 0.75, 1 ]
  6901. },
  6902. {
  6903. "time": 1.5,
  6904. "angle": 0,
  6905. "curve": [ 0.25, 0, 0.75, 1 ]
  6906. },
  6907. { "time": 2, "angle": -3.6 }
  6908. ],
  6909. "translate": [
  6910. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6911. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6912. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6913. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6914. { "time": 2, "x": 0, "y": 0 }
  6915. ],
  6916. "scale": [
  6917. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6918. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6919. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6920. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6921. { "time": 2, "x": 1, "y": 1 }
  6922. ]
  6923. },
  6924. "bone61": {
  6925. "rotate": [
  6926. {
  6927. "time": 0,
  6928. "angle": 1.73,
  6929. "curve": [ 0.25, 0, 0.75, 1 ]
  6930. },
  6931. { "time": 0.5, "angle": 0 },
  6932. {
  6933. "time": 1,
  6934. "angle": 1.73,
  6935. "curve": [ 0.25, 0, 0.75, 1 ]
  6936. },
  6937. { "time": 1.5, "angle": 0 },
  6938. { "time": 2, "angle": 1.73 }
  6939. ],
  6940. "translate": [
  6941. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6942. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6943. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6944. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6945. { "time": 2, "x": 0, "y": 0 }
  6946. ],
  6947. "scale": [
  6948. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6949. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6950. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6951. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6952. { "time": 2, "x": 1, "y": 1 }
  6953. ]
  6954. },
  6955. "bone62": {
  6956. "rotate": [
  6957. {
  6958. "time": 0,
  6959. "angle": -7.62,
  6960. "curve": [ 0.25, 0, 0.75, 1 ]
  6961. },
  6962. { "time": 0.5, "angle": 0 },
  6963. {
  6964. "time": 1,
  6965. "angle": -7.62,
  6966. "curve": [ 0.25, 0, 0.75, 1 ]
  6967. },
  6968. { "time": 1.5, "angle": 0 },
  6969. { "time": 2, "angle": -7.62 }
  6970. ],
  6971. "translate": [
  6972. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6973. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6974. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6975. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6976. { "time": 2, "x": 0, "y": 0 }
  6977. ],
  6978. "scale": [
  6979. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6980. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6981. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6982. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6983. { "time": 2, "x": 1, "y": 1 }
  6984. ]
  6985. },
  6986. "bone63": {
  6987. "rotate": [
  6988. {
  6989. "time": 0,
  6990. "angle": -7.62,
  6991. "curve": [ 0.25, 0, 0.75, 1 ]
  6992. },
  6993. { "time": 0.5, "angle": 0 },
  6994. {
  6995. "time": 1,
  6996. "angle": -7.62,
  6997. "curve": [ 0.25, 0, 0.75, 1 ]
  6998. },
  6999. { "time": 1.5, "angle": 0 },
  7000. { "time": 2, "angle": -7.62 }
  7001. ],
  7002. "translate": [
  7003. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7004. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7005. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7006. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7007. { "time": 2, "x": 0, "y": 0 }
  7008. ],
  7009. "scale": [
  7010. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7011. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7012. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7013. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7014. { "time": 2, "x": 1, "y": 1 }
  7015. ]
  7016. },
  7017. "bone65": {
  7018. "rotate": [
  7019. { "time": 0, "angle": 0 },
  7020. {
  7021. "time": 0.5,
  7022. "angle": 2.71,
  7023. "curve": [ 0.25, 0, 0.75, 1 ]
  7024. },
  7025. { "time": 1, "angle": 0 },
  7026. {
  7027. "time": 1.5,
  7028. "angle": 2.71,
  7029. "curve": [ 0.25, 0, 0.75, 1 ]
  7030. },
  7031. { "time": 2, "angle": 0 }
  7032. ],
  7033. "translate": [
  7034. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7035. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7036. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7037. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7038. { "time": 2, "x": 0, "y": 0 }
  7039. ],
  7040. "scale": [
  7041. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7042. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7043. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7044. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7045. { "time": 2, "x": 1, "y": 1 }
  7046. ]
  7047. },
  7048. "bone66": {
  7049. "rotate": [
  7050. { "time": 0, "angle": -2.19 },
  7051. {
  7052. "time": 0.5,
  7053. "angle": 1.05,
  7054. "curve": [ 0.25, 0, 0.75, 1 ]
  7055. },
  7056. { "time": 1, "angle": -2.19 },
  7057. {
  7058. "time": 1.5,
  7059. "angle": 1.05,
  7060. "curve": [ 0.25, 0, 0.75, 1 ]
  7061. },
  7062. { "time": 2, "angle": -2.19 }
  7063. ],
  7064. "translate": [
  7065. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7066. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7067. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7068. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7069. { "time": 2, "x": 0, "y": 0 }
  7070. ],
  7071. "scale": [
  7072. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7073. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7074. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7075. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7076. { "time": 2, "x": 1, "y": 1 }
  7077. ]
  7078. },
  7079. "bone67": {
  7080. "rotate": [
  7081. { "time": 0, "angle": -2.19 },
  7082. {
  7083. "time": 0.5,
  7084. "angle": 0,
  7085. "curve": [ 0.25, 0, 0.75, 1 ]
  7086. },
  7087. { "time": 1, "angle": -2.19 },
  7088. {
  7089. "time": 1.5,
  7090. "angle": 0,
  7091. "curve": [ 0.25, 0, 0.75, 1 ]
  7092. },
  7093. { "time": 2, "angle": -2.19 }
  7094. ],
  7095. "translate": [
  7096. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7097. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7098. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7099. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7100. { "time": 2, "x": 0, "y": 0 }
  7101. ],
  7102. "scale": [
  7103. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7104. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7105. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7106. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7107. { "time": 2, "x": 1, "y": 1 }
  7108. ]
  7109. },
  7110. "bone68": {
  7111. "rotate": [
  7112. { "time": 0, "angle": -2.19 },
  7113. {
  7114. "time": 0.5,
  7115. "angle": 0,
  7116. "curve": [ 0.25, 0, 0.75, 1 ]
  7117. },
  7118. { "time": 1, "angle": -2.19 },
  7119. {
  7120. "time": 1.5,
  7121. "angle": 0,
  7122. "curve": [ 0.25, 0, 0.75, 1 ]
  7123. },
  7124. { "time": 2, "angle": -2.19 }
  7125. ],
  7126. "translate": [
  7127. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7128. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7129. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7130. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7131. { "time": 2, "x": 0, "y": 0 }
  7132. ],
  7133. "scale": [
  7134. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7135. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7136. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7137. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7138. { "time": 2, "x": 1, "y": 1 }
  7139. ]
  7140. },
  7141. "bone70": {
  7142. "rotate": [
  7143. { "time": 0, "angle": 0 },
  7144. {
  7145. "time": 0.5,
  7146. "angle": 3.66,
  7147. "curve": [ 0.25, 0, 0.75, 1 ]
  7148. },
  7149. { "time": 1, "angle": 0 },
  7150. {
  7151. "time": 1.5,
  7152. "angle": 3.66,
  7153. "curve": [ 0.25, 0, 0.75, 1 ]
  7154. },
  7155. { "time": 2, "angle": 0 }
  7156. ],
  7157. "translate": [
  7158. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7159. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7160. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7161. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7162. { "time": 2, "x": 0, "y": 0 }
  7163. ],
  7164. "scale": [
  7165. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7166. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7167. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7168. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7169. { "time": 2, "x": 1, "y": 1 }
  7170. ]
  7171. },
  7172. "bone71": {
  7173. "rotate": [
  7174. { "time": 0, "angle": 0 },
  7175. {
  7176. "time": 0.5,
  7177. "angle": 3.66,
  7178. "curve": [ 0.25, 0, 0.75, 1 ]
  7179. },
  7180. { "time": 1, "angle": 0 },
  7181. {
  7182. "time": 1.5,
  7183. "angle": 3.66,
  7184. "curve": [ 0.25, 0, 0.75, 1 ]
  7185. },
  7186. { "time": 2, "angle": 0 }
  7187. ],
  7188. "translate": [
  7189. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7190. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7191. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7192. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7193. { "time": 2, "x": 0, "y": 0 }
  7194. ],
  7195. "scale": [
  7196. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7197. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7198. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7199. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7200. { "time": 2, "x": 1, "y": 1 }
  7201. ]
  7202. },
  7203. "bone72": {
  7204. "rotate": [
  7205. { "time": 0, "angle": 0 },
  7206. {
  7207. "time": 0.5,
  7208. "angle": 3.66,
  7209. "curve": [ 0.25, 0, 0.75, 1 ]
  7210. },
  7211. { "time": 1, "angle": 0 },
  7212. {
  7213. "time": 1.5,
  7214. "angle": 3.66,
  7215. "curve": [ 0.25, 0, 0.75, 1 ]
  7216. },
  7217. { "time": 2, "angle": 0 }
  7218. ],
  7219. "translate": [
  7220. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7221. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7222. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7223. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7224. { "time": 2, "x": 0, "y": 0 }
  7225. ],
  7226. "scale": [
  7227. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7228. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7229. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7230. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7231. { "time": 2, "x": 1, "y": 1 }
  7232. ]
  7233. },
  7234. "bone74": {
  7235. "rotate": [
  7236. { "time": 0, "angle": 0 },
  7237. {
  7238. "time": 0.5,
  7239. "angle": -1.73,
  7240. "curve": [ 0.25, 0, 0.75, 1 ]
  7241. },
  7242. { "time": 1, "angle": 0 },
  7243. {
  7244. "time": 1.5,
  7245. "angle": -1.73,
  7246. "curve": [ 0.25, 0, 0.75, 1 ]
  7247. },
  7248. { "time": 2, "angle": 0 }
  7249. ],
  7250. "translate": [
  7251. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7252. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7253. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7254. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7255. { "time": 2, "x": 0, "y": 0 }
  7256. ],
  7257. "scale": [
  7258. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7259. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7260. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7261. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7262. { "time": 2, "x": 1, "y": 1 }
  7263. ]
  7264. },
  7265. "bone75": {
  7266. "rotate": [
  7267. { "time": 0, "angle": 0 },
  7268. {
  7269. "time": 0.5,
  7270. "angle": -1.73,
  7271. "curve": [ 0.25, 0, 0.75, 1 ]
  7272. },
  7273. { "time": 1, "angle": 0 },
  7274. {
  7275. "time": 1.5,
  7276. "angle": -1.73,
  7277. "curve": [ 0.25, 0, 0.75, 1 ]
  7278. },
  7279. { "time": 2, "angle": 0 }
  7280. ],
  7281. "translate": [
  7282. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7283. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7284. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7285. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7286. { "time": 2, "x": 0, "y": 0 }
  7287. ],
  7288. "scale": [
  7289. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7290. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7291. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7292. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7293. { "time": 2, "x": 1, "y": 1 }
  7294. ]
  7295. },
  7296. "bone76": {
  7297. "rotate": [
  7298. { "time": 0, "angle": 0 },
  7299. {
  7300. "time": 0.5,
  7301. "angle": -1.73,
  7302. "curve": [ 0.25, 0, 0.75, 1 ]
  7303. },
  7304. { "time": 1, "angle": 0 },
  7305. {
  7306. "time": 1.5,
  7307. "angle": -1.73,
  7308. "curve": [ 0.25, 0, 0.75, 1 ]
  7309. },
  7310. { "time": 2, "angle": 0 }
  7311. ],
  7312. "translate": [
  7313. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7314. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7315. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7316. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7317. { "time": 2, "x": 0, "y": 0 }
  7318. ],
  7319. "scale": [
  7320. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7321. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7322. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7323. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7324. { "time": 2, "x": 1, "y": 1 }
  7325. ]
  7326. },
  7327. "bone77": {
  7328. "rotate": [
  7329. { "time": 0, "angle": 0 },
  7330. {
  7331. "time": 0.5,
  7332. "angle": -1.73,
  7333. "curve": [ 0.25, 0, 0.75, 1 ]
  7334. },
  7335. { "time": 1, "angle": 0 },
  7336. {
  7337. "time": 1.5,
  7338. "angle": -1.73,
  7339. "curve": [ 0.25, 0, 0.75, 1 ]
  7340. },
  7341. { "time": 2, "angle": 0 }
  7342. ],
  7343. "translate": [
  7344. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7345. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7346. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7347. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7348. { "time": 2, "x": 0, "y": 0 }
  7349. ],
  7350. "scale": [
  7351. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7352. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7353. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7354. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7355. { "time": 2, "x": 1, "y": 1 }
  7356. ]
  7357. },
  7358. "bone87": {
  7359. "rotate": [
  7360. {
  7361. "time": 0,
  7362. "angle": 46.81,
  7363. "curve": [ 0.25, 0, 0.75, 1 ]
  7364. },
  7365. {
  7366. "time": 0.5,
  7367. "angle": 26.49,
  7368. "curve": [ 0.25, 0, 0.75, 1 ]
  7369. },
  7370. {
  7371. "time": 1,
  7372. "angle": 46.81,
  7373. "curve": [ 0.25, 0, 0.75, 1 ]
  7374. },
  7375. {
  7376. "time": 1.5,
  7377. "angle": 26.49,
  7378. "curve": [ 0.25, 0, 0.75, 1 ]
  7379. },
  7380. { "time": 2, "angle": 46.81 }
  7381. ],
  7382. "translate": [
  7383. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7384. { "time": 1.5, "x": 0, "y": 0 }
  7385. ],
  7386. "scale": [
  7387. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7388. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7389. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7390. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7391. { "time": 2, "x": 1, "y": 1 }
  7392. ]
  7393. },
  7394. "bone84": {
  7395. "rotate": [
  7396. { "time": 0, "angle": 57.69 },
  7397. { "time": 0.5, "angle": 27.39 },
  7398. { "time": 1, "angle": 57.69 },
  7399. { "time": 1.5, "angle": 27.39 },
  7400. { "time": 2, "angle": 57.69 }
  7401. ],
  7402. "translate": [
  7403. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7404. { "time": 1.5, "x": 0, "y": 0 }
  7405. ],
  7406. "scale": [
  7407. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7408. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7409. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7410. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7411. { "time": 2, "x": 1, "y": 1 }
  7412. ]
  7413. },
  7414. "bone85": {
  7415. "rotate": [
  7416. { "time": 0, "angle": 13.42 },
  7417. { "time": 0.5, "angle": -9.28 },
  7418. { "time": 1, "angle": 13.42 },
  7419. { "time": 1.5, "angle": -9.28 },
  7420. { "time": 2, "angle": 13.42 }
  7421. ],
  7422. "translate": [
  7423. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7424. { "time": 1.5, "x": 0, "y": 0 }
  7425. ],
  7426. "scale": [
  7427. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7428. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7429. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7430. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7431. { "time": 2, "x": 1, "y": 1 }
  7432. ]
  7433. },
  7434. "bone86": {
  7435. "rotate": [
  7436. {
  7437. "time": 0,
  7438. "angle": 13.42,
  7439. "curve": [ 0.25, 0, 0.75, 1 ]
  7440. },
  7441. {
  7442. "time": 0.5,
  7443. "angle": -9.28,
  7444. "curve": [ 0.25, 0, 0.75, 1 ]
  7445. },
  7446. {
  7447. "time": 1,
  7448. "angle": 13.42,
  7449. "curve": [ 0.25, 0, 0.75, 1 ]
  7450. },
  7451. {
  7452. "time": 1.5,
  7453. "angle": -9.28,
  7454. "curve": [ 0.25, 0, 0.75, 1 ]
  7455. },
  7456. { "time": 2, "angle": 13.42 }
  7457. ],
  7458. "translate": [
  7459. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7460. { "time": 1.5, "x": 0, "y": 0 }
  7461. ],
  7462. "scale": [
  7463. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7464. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7465. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7466. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7467. { "time": 2, "x": 1, "y": 1 }
  7468. ]
  7469. },
  7470. "bone88": {
  7471. "rotate": [
  7472. {
  7473. "time": 0,
  7474. "angle": 37.27,
  7475. "curve": [ 0.25, 0, 0.75, 1 ]
  7476. },
  7477. {
  7478. "time": 0.5,
  7479. "angle": -35.66,
  7480. "curve": [ 0.25, 0, 0.75, 1 ]
  7481. },
  7482. {
  7483. "time": 1,
  7484. "angle": 37.27,
  7485. "curve": [ 0.25, 0, 0.75, 1 ]
  7486. },
  7487. {
  7488. "time": 1.5,
  7489. "angle": -35.66,
  7490. "curve": [ 0.25, 0, 0.75, 1 ]
  7491. },
  7492. { "time": 2, "angle": 37.27 }
  7493. ],
  7494. "translate": [
  7495. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7496. { "time": 1.5, "x": 0, "y": 0 }
  7497. ],
  7498. "scale": [
  7499. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7500. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7501. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7502. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7503. { "time": 2, "x": 1, "y": 1 }
  7504. ]
  7505. },
  7506. "bone89": {
  7507. "rotate": [
  7508. {
  7509. "time": 0,
  7510. "angle": 37.27,
  7511. "curve": [ 0.25, 0, 0.75, 1 ]
  7512. },
  7513. {
  7514. "time": 0.5,
  7515. "angle": -35.66,
  7516. "curve": [ 0.25, 0, 0.75, 1 ]
  7517. },
  7518. {
  7519. "time": 1,
  7520. "angle": 37.27,
  7521. "curve": [ 0.25, 0, 0.75, 1 ]
  7522. },
  7523. {
  7524. "time": 1.5,
  7525. "angle": -35.66,
  7526. "curve": [ 0.25, 0, 0.75, 1 ]
  7527. },
  7528. { "time": 2, "angle": 37.27 }
  7529. ],
  7530. "translate": [
  7531. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7532. { "time": 1.5, "x": 0, "y": 0 }
  7533. ],
  7534. "scale": [
  7535. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7536. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7537. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7538. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7539. { "time": 2, "x": 1, "y": 1 }
  7540. ]
  7541. },
  7542. "bone93": {
  7543. "rotate": [
  7544. {
  7545. "time": 0,
  7546. "angle": 13.42,
  7547. "curve": [ 0.25, 0, 0.75, 1 ]
  7548. },
  7549. {
  7550. "time": 0.5,
  7551. "angle": -9.28,
  7552. "curve": [ 0.25, 0, 0.75, 1 ]
  7553. },
  7554. {
  7555. "time": 1,
  7556. "angle": 13.42,
  7557. "curve": [ 0.25, 0, 0.75, 1 ]
  7558. },
  7559. {
  7560. "time": 1.5,
  7561. "angle": -9.28,
  7562. "curve": [ 0.25, 0, 0.75, 1 ]
  7563. },
  7564. { "time": 2, "angle": 13.42 }
  7565. ],
  7566. "translate": [
  7567. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7568. { "time": 1.5, "x": 0, "y": 0 }
  7569. ],
  7570. "scale": [
  7571. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7572. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7573. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7574. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7575. { "time": 2, "x": 1, "y": 1 }
  7576. ]
  7577. },
  7578. "bone92": {
  7579. "rotate": [
  7580. { "time": 0, "angle": 13.42 },
  7581. { "time": 0.5, "angle": -9.28 },
  7582. { "time": 1, "angle": 13.42 },
  7583. { "time": 1.5, "angle": -9.28 },
  7584. { "time": 2, "angle": 13.42 }
  7585. ],
  7586. "translate": [
  7587. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7588. { "time": 1.5, "x": 0, "y": 0 }
  7589. ],
  7590. "scale": [
  7591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7592. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7593. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7594. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7595. { "time": 2, "x": 1, "y": 1 }
  7596. ]
  7597. },
  7598. "bone91": {
  7599. "rotate": [
  7600. { "time": 0, "angle": 57.69 },
  7601. { "time": 0.5, "angle": 27.39 },
  7602. { "time": 1, "angle": 57.69 },
  7603. { "time": 1.5, "angle": 27.39 },
  7604. { "time": 2, "angle": 57.69 }
  7605. ],
  7606. "translate": [
  7607. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7608. { "time": 1.5, "x": 0, "y": 0 }
  7609. ],
  7610. "scale": [
  7611. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7612. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7613. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7614. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7615. { "time": 2, "x": 1, "y": 1 }
  7616. ]
  7617. },
  7618. "bone96": {
  7619. "rotate": [
  7620. {
  7621. "time": 0,
  7622. "angle": 37.27,
  7623. "curve": [ 0.25, 0, 0.75, 1 ]
  7624. },
  7625. {
  7626. "time": 0.5,
  7627. "angle": -35.66,
  7628. "curve": [ 0.25, 0, 0.75, 1 ]
  7629. },
  7630. {
  7631. "time": 1,
  7632. "angle": 37.27,
  7633. "curve": [ 0.25, 0, 0.75, 1 ]
  7634. },
  7635. {
  7636. "time": 1.5,
  7637. "angle": -35.66,
  7638. "curve": [ 0.25, 0, 0.75, 1 ]
  7639. },
  7640. { "time": 2, "angle": 37.27 }
  7641. ],
  7642. "translate": [
  7643. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7644. { "time": 1.5, "x": 0, "y": 0 }
  7645. ],
  7646. "scale": [
  7647. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7648. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7649. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7650. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7651. { "time": 2, "x": 1, "y": 1 }
  7652. ]
  7653. },
  7654. "bone95": {
  7655. "rotate": [
  7656. {
  7657. "time": 0,
  7658. "angle": 37.27,
  7659. "curve": [ 0.25, 0, 0.75, 1 ]
  7660. },
  7661. {
  7662. "time": 0.5,
  7663. "angle": -35.66,
  7664. "curve": [ 0.25, 0, 0.75, 1 ]
  7665. },
  7666. {
  7667. "time": 1,
  7668. "angle": 37.27,
  7669. "curve": [ 0.25, 0, 0.75, 1 ]
  7670. },
  7671. {
  7672. "time": 1.5,
  7673. "angle": -35.66,
  7674. "curve": [ 0.25, 0, 0.75, 1 ]
  7675. },
  7676. { "time": 2, "angle": 37.27 }
  7677. ],
  7678. "translate": [
  7679. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7680. { "time": 1.5, "x": 0, "y": 0 }
  7681. ],
  7682. "scale": [
  7683. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7684. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7685. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7686. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7687. { "time": 2, "x": 1, "y": 1 }
  7688. ]
  7689. },
  7690. "bone94": {
  7691. "rotate": [
  7692. {
  7693. "time": 0,
  7694. "angle": 46.81,
  7695. "curve": [ 0.25, 0, 0.75, 1 ]
  7696. },
  7697. {
  7698. "time": 0.5,
  7699. "angle": 26.49,
  7700. "curve": [ 0.25, 0, 0.75, 1 ]
  7701. },
  7702. {
  7703. "time": 1,
  7704. "angle": 46.81,
  7705. "curve": [ 0.25, 0, 0.75, 1 ]
  7706. },
  7707. {
  7708. "time": 1.5,
  7709. "angle": 26.49,
  7710. "curve": [ 0.25, 0, 0.75, 1 ]
  7711. },
  7712. { "time": 2, "angle": 46.81 }
  7713. ],
  7714. "translate": [
  7715. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7716. { "time": 1.5, "x": 0, "y": 0 }
  7717. ],
  7718. "scale": [
  7719. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7720. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7721. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7722. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7723. { "time": 2, "x": 1, "y": 1 }
  7724. ]
  7725. }
  7726. },
  7727. "deform": {
  7728. "default": {
  7729. "qunzi 3": {
  7730. "qunzi 3": [
  7731. { "time": 0 },
  7732. {
  7733. "time": 0.5,
  7734. "offset": 44,
  7735. "vertices": [ -1.50157, -0.99059, -1.32745, -1.21407, -1.10999, -1.41564, -1.73529, 0.47412, -1.74865, 0.42231, -1.79868, 0.02824, -2.37963, -1.56981, -2.10366, -1.92399, -1.75906, -2.2434, -2.74998, 0.75142, -2.77114, 0.66925, -2.76795, 0.68238, -2.85046, 0.04479, -2.37963, -1.56981, -2.10366, -1.92399, -1.75906, -2.2434, -2.77114, 0.66925, -2.76795, 0.68238, -2.85046, 0.04479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.94321, -0.96346, -2.68064, -1.55075, -2.40391, -1.95244, -2.05056, -2.32079, -2.96254, 0.90235, -2.95822, 0.91638, -3.08833, 0.23019, -3.0767, 0.35336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.00174, -1.5754, -3.58993, -2.36822, -3.17359, -2.90253, -2.65373, -3.38441, -4.14863, 1.13359, -4.18056, 1.00964, -4.17574, 1.02945, -4.30022, 0.06757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.94318, -0.96346, -2.68064, -1.55075, -2.4039, -1.95245, -2.05054, -2.3208, -2.96253, 0.90234, -2.95821, 0.91637, -3.08832, 0.23018, -3.07671, 0.35335, -2.37963, -1.56981, -2.10366, -1.92399, -1.75906, -2.2434, -2.77114, 0.66925, -2.76795, 0.68238, -2.85046, 0.04479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.67381, -0.65895, -1.50157, -0.99059, -1.32745, -1.21407, -1.10999, -1.41564, -1.73529, 0.47412, -1.74865, 0.42231, -1.74664, 0.43058, -1.79868, 0.02824 ]
  7736. },
  7737. { "time": 1 },
  7738. {
  7739. "time": 1.5,
  7740. "offset": 44,
  7741. "vertices": [ -1.50157, -0.99059, -1.32745, -1.21407, -1.10999, -1.41564, -1.73529, 0.47412, -1.74865, 0.42231, -1.79868, 0.02824, -2.37963, -1.56981, -2.10366, -1.92399, -1.75906, -2.2434, -2.74998, 0.75142, -2.77114, 0.66925, -2.76795, 0.68238, -2.85046, 0.04479, -2.37963, -1.56981, -2.10366, -1.92399, -1.75906, -2.2434, -2.77114, 0.66925, -2.76795, 0.68238, -2.85046, 0.04479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.94321, -0.96346, -2.68064, -1.55075, -2.40391, -1.95244, -2.05056, -2.32079, -2.96254, 0.90235, -2.95822, 0.91638, -3.08833, 0.23019, -3.0767, 0.35336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.00174, -1.5754, -3.58993, -2.36822, -3.17359, -2.90253, -2.65373, -3.38441, -4.14863, 1.13359, -4.18056, 1.00964, -4.17574, 1.02945, -4.30022, 0.06757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -2.94318, -0.96346, -2.68064, -1.55075, -2.4039, -1.95245, -2.05054, -2.3208, -2.96253, 0.90234, -2.95821, 0.91637, -3.08832, 0.23018, -3.07671, 0.35335, -2.37963, -1.56981, -2.10366, -1.92399, -1.75906, -2.2434, -2.77114, 0.66925, -2.76795, 0.68238, -2.85046, 0.04479, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.67381, -0.65895, -1.50157, -0.99059, -1.32745, -1.21407, -1.10999, -1.41564, -1.73529, 0.47412, -1.74865, 0.42231, -1.74664, 0.43058, -1.79868, 0.02824 ]
  7742. },
  7743. { "time": 2 }
  7744. ]
  7745. },
  7746. "shangshen": {
  7747. "shangshen": [
  7748. {
  7749. "time": 0,
  7750. "offset": 52,
  7751. "vertices": [ 0.2927, 4.58365, -0.23728, 4.58687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.8634, 0.31663, -0.89442, 0.21508, -0.88961, 0.2333, 0, 0, 0, 0, 0.2927, 4.58365, 0.2927, 4.58365, 0.2927, 4.58365 ]
  7752. },
  7753. {
  7754. "time": 0.5,
  7755. "offset": 52,
  7756. "vertices": [ 0.13041, 2.04182, -0.1362, 2.04144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.6036, -1.54568, -0.42168, -1.60491, -0.45432, -1.59596, 0, 0, 0, 0, 0.13041, 2.04182, 0.13041, 2.04182, 0.02563, 0.40118 ]
  7757. },
  7758. {
  7759. "time": 1,
  7760. "offset": 52,
  7761. "vertices": [ 0.2927, 4.58365, -0.23728, 4.58687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.8634, 0.31663, -0.89442, 0.21508, -0.88961, 0.2333, 0, 0, 0, 0, 0.2927, 4.58365, 0.2927, 4.58365, 0.2927, 4.58365 ]
  7762. },
  7763. {
  7764. "time": 1.5,
  7765. "offset": 52,
  7766. "vertices": [ 0.13041, 2.04182, -0.1362, 2.04144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.6036, -1.54568, -0.42168, -1.60491, -0.45432, -1.59596, 0, 0, 0, 0, 0.13041, 2.04182, 0.13041, 2.04182, 0.02563, 0.40118 ]
  7767. },
  7768. {
  7769. "time": 2,
  7770. "offset": 52,
  7771. "vertices": [ 0.2927, 4.58365, -0.23728, 4.58687, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.8634, 0.31663, -0.89442, 0.21508, -0.88961, 0.2333, 0, 0, 0, 0, 0.2927, 4.58365, 0.2927, 4.58365, 0.2927, 4.58365 ]
  7772. }
  7773. ]
  7774. },
  7775. "youshou": {
  7776. "youshou": [
  7777. {
  7778. "time": 0,
  7779. "offset": 60,
  7780. "vertices": [ -1.24863, 0.10992, -1.23951, -0.18632, 1.88179, -2.16412 ]
  7781. },
  7782. {
  7783. "time": 0.5,
  7784. "offset": 64,
  7785. "vertices": [ 1.34101, -1.45131 ]
  7786. },
  7787. {
  7788. "time": 1,
  7789. "offset": 60,
  7790. "vertices": [ -1.24863, 0.10992, -1.23951, -0.18632, 1.88179, -2.16412 ]
  7791. },
  7792. {
  7793. "time": 1.5,
  7794. "offset": 64,
  7795. "vertices": [ 1.34101, -1.45131 ]
  7796. },
  7797. {
  7798. "time": 2,
  7799. "offset": 60,
  7800. "vertices": [ -1.24863, 0.10992, -1.23951, -0.18632, 1.88179, -2.16412 ]
  7801. }
  7802. ]
  7803. }
  7804. }
  7805. }
  7806. }
  7807. }
  7808. }