42102.json 337 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058
  1. {
  2. "skeleton": { "hash": "xR1lcWFMKdVRoxv7rqgNTbS9llo", "spine": "3.6.53", "width": 197.98, "height": 222.09, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 2.08, "y": 68.64 },
  6. { "name": "bone2", "parent": "bone", "length": 23.45, "rotation": -93.81, "x": -5.93, "y": -10.3 },
  7. { "name": "bone3", "parent": "bone2", "length": 20, "rotation": 1.02, "x": 23.45 },
  8. { "name": "bone4", "parent": "bone3", "length": 21.73, "rotation": -68.21, "x": 21.48, "y": 0.5 },
  9. { "name": "bone5", "parent": "bone", "length": 25.71, "rotation": -84.43, "x": 9.05, "y": -9.36 },
  10. { "name": "bone6", "parent": "bone5", "length": 20, "rotation": -1.86, "x": 25.71 },
  11. { "name": "bone7", "parent": "bone6", "length": 17.37, "rotation": -68.66, "x": 20.62, "y": -0.04 },
  12. { "name": "bone8", "parent": "bone", "length": 21.63, "rotation": 86.82, "x": -1.1, "y": 4.43 },
  13. { "name": "bone9", "parent": "bone", "length": 7.2, "rotation": 88.09, "x": -2.3, "y": -9.49 },
  14. { "name": "bone10", "parent": "bone8", "length": 17.56, "rotation": 172.95, "x": 24.51, "y": 8.81 },
  15. { "name": "bone11", "parent": "bone10", "length": 13.61, "rotation": 1.1, "x": 17.56 },
  16. { "name": "bone12", "parent": "bone11", "length": 8.43, "rotation": -10.85, "x": 13.61 },
  17. { "name": "bone13", "parent": "bone8", "length": 19.3, "rotation": -171.11, "x": 22.49, "y": -11.01 },
  18. { "name": "bone14", "parent": "bone13", "length": 8.96, "rotation": 1.99, "x": 19.82, "y": 0.43 },
  19. { "name": "bone15", "parent": "bone14", "length": 6.87, "rotation": 17.08, "x": 7.74, "y": -0.08 },
  20. { "name": "bone16", "parent": "bone8", "length": 15.04, "rotation": 158.66, "x": 22.66, "y": 11.84 },
  21. { "name": "bone17", "parent": "bone16", "length": 15.24, "rotation": -1.64, "x": 15.04 },
  22. { "name": "bone18", "parent": "bone17", "length": 14.91, "rotation": -7.02, "x": 15.24 },
  23. { "name": "bone19", "parent": "bone8", "length": 18.03, "rotation": -149.91, "x": 24.95, "y": -16.4 },
  24. { "name": "bone20", "parent": "bone19", "length": 15.78, "rotation": 1.22, "x": 18.03 },
  25. { "name": "bone21", "parent": "bone20", "length": 11.46, "rotation": -8.55, "x": 15.78 },
  26. { "name": "bone22", "parent": "bone8", "length": 39.28, "rotation": 4.44, "x": 29.59, "y": -1.05 },
  27. { "name": "bone23", "parent": "bone22", "length": 10.03, "rotation": -76.27, "x": 19.29, "y": -27.59 },
  28. { "name": "bone24", "parent": "bone22", "length": 33.95, "rotation": 5.18, "x": 49.89, "y": 2.53 },
  29. { "name": "bone25", "parent": "bone22", "length": 15.06, "rotation": 176.28, "x": 74.46, "y": 15.29 },
  30. { "name": "bone26", "parent": "bone25", "length": 11.66, "rotation": 7.74, "x": 15.06 },
  31. { "name": "bone27", "parent": "bone26", "length": 10.54, "rotation": 6.48, "x": 11.66 },
  32. { "name": "bone28", "parent": "bone27", "length": 8.24, "rotation": 3.36, "x": 10.75, "y": -0.04 },
  33. { "name": "bone29", "parent": "bone22", "length": 18, "rotation": 167.03, "x": 65.9, "y": 26.88 },
  34. { "name": "bone30", "parent": "bone29", "length": 11.4, "rotation": 12.79, "x": 18 },
  35. { "name": "bone31", "parent": "bone30", "length": 7.85, "rotation": -10.54, "x": 11.4 },
  36. { "name": "bone32", "parent": "bone31", "length": 7.88, "rotation": -16.4, "x": 7.85 },
  37. { "name": "bone33", "parent": "bone22", "length": 20.54, "rotation": -150.4, "x": 68.18, "y": -6.29 },
  38. { "name": "bone34", "parent": "bone33", "length": 17.2, "rotation": 6.01, "x": 20.54 },
  39. { "name": "bone35", "parent": "bone34", "length": 19.81, "rotation": 26.01, "x": 17.2 },
  40. { "name": "bone36", "parent": "bone22", "length": 7.09, "rotation": -1.26, "x": 30.96, "y": 2.49 },
  41. { "name": "bone37", "parent": "bone22", "length": 8.18, "rotation": 1.75, "x": 20.94, "y": 16.26 },
  42. { "name": "bone38", "parent": "bone22", "length": 10.11, "rotation": -2.48, "x": 19.94, "y": -9.53 },
  43. { "name": "bone39", "parent": "bone22", "length": 6.23, "rotation": -1.26, "x": 18.07, "y": 3.42 },
  44. { "name": "bone40", "parent": "bone22", "length": 6.46, "rotation": 2.55, "x": 6.86, "y": 0.64 },
  45. { "name": "bone41", "parent": "bone", "length": 10.66, "rotation": -46.82, "x": 11.9, "y": -4.68 },
  46. { "name": "bone42", "parent": "bone41", "length": 5.91, "rotation": 3.8, "x": 10.66 },
  47. { "name": "bone43", "parent": "bone42", "length": 5.45, "rotation": 2.31, "x": 5.91 },
  48. { "name": "bone44", "parent": "bone8", "length": 10.68, "rotation": 179.06, "x": 20.66, "y": 1.07 },
  49. { "name": "bone45", "parent": "bone44", "length": 6.98, "rotation": -3.78, "x": 10.68 },
  50. { "name": "bone46", "parent": "bone45", "length": 7.2, "rotation": 6.38, "x": 6.98 },
  51. { "name": "bone47", "parent": "bone8", "length": 33.95, "rotation": 9.62, "x": 79.14, "y": 5.34 },
  52. { "name": "bone48", "parent": "root", "length": 23.36, "rotation": 86.82, "x": 65.15, "y": 115.22 },
  53. { "name": "bone49", "parent": "root", "length": 23.36, "rotation": 86.82, "x": -44.13, "y": 200.54, "scaleX": 0.6, "scaleY": 0.6 },
  54. { "name": "bone50", "parent": "root", "length": 23.36, "rotation": 86.82, "x": -74.81, "y": 106.85, "scaleX": 0.8, "scaleY": 0.8 },
  55. { "name": "bone51", "parent": "root", "length": 23.36, "rotation": 86.82, "x": -71.98, "y": 157.94, "scaleX": 0.8, "scaleY": 0.8 }
  56. ],
  57. "slots": [
  58. { "name": "chenshanhebozi", "bone": "bone8", "attachment": "chenshanhebozi" },
  59. { "name": "lingdai", "bone": "bone44", "attachment": "lingdai" },
  60. { "name": "zuotui", "bone": "bone2", "attachment": "zuotui" },
  61. { "name": "youtui", "bone": "bone5", "attachment": "youtui" },
  62. { "name": "sijiaoku", "bone": "bone9", "attachment": "sijiaoku" },
  63. { "name": "zuoshou", "bone": "bone17", "attachment": "zuoshou" },
  64. { "name": "yaoweijing", "bone": "bone41", "attachment": "yaoweijing" },
  65. { "name": "youbianwaitao", "bone": "bone13", "attachment": "youbianwaitao" },
  66. { "name": "zuobianwaitao", "bone": "bone10", "attachment": "zuobianwaitao" },
  67. { "name": "youshou", "bone": "bone19", "attachment": "youshou" },
  68. { "name": "houmiantoufa", "bone": "bone23", "attachment": "houmiantoufa" },
  69. { "name": "lian", "bone": "bone23", "attachment": "lian" },
  70. { "name": "zuiba", "bone": "bone40", "attachment": "zuiba" },
  71. { "name": "youyan", "bone": "bone38", "attachment": "youyan" },
  72. { "name": "zuoyan", "bone": "bone37", "attachment": "zuoyan" },
  73. { "name": "biyan", "bone": "bone39", "attachment": "biyan" },
  74. { "name": "meimao", "bone": "bone36", "attachment": "meimao" },
  75. { "name": "toufa1", "bone": "bone29", "attachment": "toufa1" },
  76. { "name": "toufa2", "bone": "bone23", "attachment": "toufa2" },
  77. { "name": "toufa3", "bone": "bone33", "attachment": "toufa3" },
  78. { "name": "toufa4", "bone": "bone25", "attachment": "toufa4" },
  79. { "name": "yinying", "bone": "bone23", "attachment": "yinying" },
  80. { "name": "eduo", "bone": "bone23", "attachment": "eduo" },
  81. { "name": "maozi", "bone": "bone24", "attachment": "maozi" },
  82. { "name": "maozi2", "bone": "bone47", "attachment": "maozi" },
  83. { "name": "star", "bone": "bone48", "attachment": "star" },
  84. { "name": "star2", "bone": "bone49", "attachment": "star" },
  85. { "name": "star3", "bone": "bone50", "attachment": "star" },
  86. { "name": "star4", "bone": "bone51", "attachment": "star" }
  87. ],
  88. "skins": {
  89. "default": {
  90. "biyan": {
  91. "biyan": { "x": 1.44, "y": -0.79, "rotation": -90, "width": 44, "height": 8 }
  92. },
  93. "chenshanhebozi": {
  94. "chenshanhebozi": {
  95. "type": "mesh",
  96. "uvs": [ 1, 1, 0.41829, 1, 0, 1, 0, 0, 0.48237, 0, 1, 0 ],
  97. "triangles": [ 1, 2, 3, 4, 1, 3, 4, 5, 0, 1, 4, 0 ],
  98. "vertices": [ -14.24, -15.48, -15.11, 0.2, -15.74, 11.48, 34.18, 14.25, 34.91, 1.25, 35.68, -12.71 ],
  99. "hull": 6,
  100. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  101. "width": 27,
  102. "height": 50
  103. }
  104. },
  105. "eduo": {
  106. "eduo": { "x": 5.18, "y": 0.72, "rotation": -15, "width": 20, "height": 19 }
  107. },
  108. "houmiantoufa": {
  109. "houmiantoufa": {
  110. "type": "mesh",
  111. "uvs": [ 1, 0.51558, 1, 1, 0, 1, 0, 0, 1, 0, 0.79592, 0.48337 ],
  112. "triangles": [ 5, 3, 4, 5, 4, 0, 2, 3, 5, 5, 0, 1, 2, 5, 1 ],
  113. "vertices": [ 31.69, 14.66, 22.16, -20.91, -63.81, 2.12, -44.15, 75.53, 41.82, 52.51, 14.77, 21.72 ],
  114. "hull": 5,
  115. "edges": [ 2, 4, 4, 6, 6, 8, 2, 0, 0, 8 ],
  116. "width": 89,
  117. "height": 76
  118. }
  119. },
  120. "lian": {
  121. "lian": {
  122. "type": "mesh",
  123. "uvs": [ 1, 1, 0.41188, 1, 0, 1, 0, 0, 0.37073, 0, 1, 0, 0.37302, 0.5311, 0.36845, 0.76096 ],
  124. "triangles": [ 6, 4, 5, 3, 6, 2, 6, 3, 4, 7, 2, 6, 6, 0, 7, 0, 1, 7, 2, 7, 1, 5, 0, 6 ],
  125. "vertices": [ 7.53, -25.27, -32.23, -14.62, -60.08, -7.16, -41.71, 61.42, -16.65, 54.71, 25.9, 43.31, -26.25, 18.24, -30.78, 2.56 ],
  126. "hull": 6,
  127. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 8, 12, 12, 14, 0, 2, 2, 4, 14, 2 ],
  128. "width": 70,
  129. "height": 71
  130. }
  131. },
  132. "lingdai": {
  133. "lingdai": {
  134. "type": "mesh",
  135. "uvs": [ 1, 0.4087, 1, 0.4896, 1, 0.54966, 1, 0.64037, 1, 0.70534, 1, 0.77276, 1, 1, 0.25928, 1, 0, 1, 0, 0.77398, 0, 0.69676, 0, 0.64037, 0, 0.53741, 0, 0.48347, 0, 0.40625, 0, 0, 0.44343, 0, 1, 0, 0.35281, 0.4896, 0.29435, 0.70166, 0.36702, 0.41284, 0.33826, 0.5424, 0.34989, 0.70656, 0.3116, 0.63908, 0.286, 0.7727 ],
  136. "triangles": [ 7, 24, 6, 24, 5, 6, 24, 7, 9, 7, 8, 9, 9, 10, 24, 24, 22, 5, 22, 4, 5, 24, 19, 22, 24, 10, 19, 19, 23, 22, 4, 22, 3, 22, 23, 3, 23, 19, 11, 19, 10, 11, 23, 21, 3, 21, 2, 3, 11, 12, 23, 23, 12, 21, 21, 18, 2, 18, 1, 2, 18, 21, 13, 21, 12, 13, 18, 13, 14, 18, 20, 1, 20, 18, 14, 20, 0, 1, 20, 16, 0, 16, 20, 15, 16, 17, 0, 20, 14, 15 ],
  137. "vertices": [ 3, 44, 7.86, 8.17, 0.76431, 45, -3.35, 7.97, 0.22374, 46, -9.38, 9.07, 0.01195, 3, 44, 10.37, 8.36, 0.52214, 45, -0.87, 8.32, 0.42233, 46, -6.87, 9.14, 0.05553, 3, 44, 12.22, 8.49, 0.33197, 45, 0.98, 8.57, 0.54247, 46, -5.01, 9.19, 0.12557, 3, 44, 15.03, 8.69, 0.12359, 45, 3.76, 8.96, 0.56437, 46, -2.2, 9.26, 0.31204, 3, 44, 17.04, 8.84, 0.04717, 45, 5.76, 9.24, 0.4608, 46, -0.19, 9.31, 0.49204, 3, 44, 19.12, 8.99, 0.01172, 45, 7.83, 9.52, 0.30955, 46, 1.9, 9.37, 0.67873, 2, 45, 14.8, 10.49, 0.03837, 46, 8.94, 9.56, 0.96163, 1, 46, 9.2, -0.07, 1, 1, 46, 9.29, -3.44, 1, 2, 45, 9.65, -3.35, 0.06874, 46, 2.28, -3.62, 0.93126, 2, 45, 7.28, -3.68, 0.51566, 46, -0.11, -3.69, 0.48434, 3, 44, 15.96, -4.28, 0.00292, 45, 5.55, -3.92, 0.86045, 46, -1.86, -3.73, 0.13664, 2, 44, 12.78, -4.5, 0.15283, 45, 2.39, -4.36, 0.84717, 2, 44, 11.11, -4.63, 0.39363, 45, 0.73, -4.59, 0.60637, 2, 44, 8.72, -4.8, 0.7772, 45, -1.64, -4.92, 0.2228, 1, 44, -3.84, -5.7, 1, 1, 44, -4.25, 0.05, 1, 1, 44, -4.77, 7.26, 1, 2, 44, 10.97, -0.04, 0.12431, 45, 0.29, -0.02, 0.87569, 2, 45, 6.9, 0.13, 0.59133, 46, -0.06, 0.14, 0.40867, 1, 44, 8.58, -0.02, 1, 2, 45, 1.94, 0.02, 0.99996, 46, -5.01, 0.58, 4.0E-5, 2, 45, 6.96, 0.87, 0.52168, 46, 0.07, 0.87, 0.47832, 2, 45, 4.95, 0.09, 0.99978, 46, -2, 0.31, 2.2E-4, 1, 46, 2.15, 0.09, 1 ],
  138. "hull": 18,
  139. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 26, 36, 36, 2, 26, 28, 28, 30, 32, 40, 40, 36, 28, 40, 2, 0, 0, 34, 40, 0, 24, 26, 36, 42, 24, 42, 2, 4, 42, 4, 20, 38, 44, 8, 20, 22, 22, 24, 38, 46, 46, 42, 22, 46, 4, 6, 6, 8, 46, 6, 16, 18, 18, 20, 14, 48, 48, 38, 18, 48, 8, 10, 10, 12, 48, 10 ],
  140. "width": 13,
  141. "height": 31
  142. }
  143. },
  144. "maozi": {
  145. "maozi": { "x": 10.69, "y": -4.33, "rotation": -96.44, "width": 109, "height": 57 }
  146. },
  147. "maozi2": {
  148. "maozi": { "x": 10.69, "y": -4.33, "rotation": -96.44, "width": 109, "height": 57 }
  149. },
  150. "meimao": {
  151. "meimao": { "x": 1.54, "y": 0.36, "rotation": -90, "width": 35, "height": 8 }
  152. },
  153. "sijiaoku": {
  154. "sijiaoku": {
  155. "type": "mesh",
  156. "uvs": [ 1, 0.77125, 0.47458, 0.77286, 0, 0.77432, 0, 0, 1, 0 ],
  157. "triangles": [ 1, 3, 4, 0, 1, 4, 2, 3, 1 ],
  158. "vertices": [ -7.86, -20.14, -8.48, -2.81, -9.05, 12.84, 13.4, 13.59, 14.5, -19.39 ],
  159. "hull": 5,
  160. "edges": [ 6, 8, 4, 6, 0, 8, 0, 2, 2, 4 ],
  161. "width": 33,
  162. "height": 29
  163. }
  164. },
  165. "star": {
  166. "star": { "x": 5.68, "y": -1.79, "rotation": -86.82, "width": 64, "height": 64 }
  167. },
  168. "star2": {
  169. "star": { "x": 5.68, "y": -1.79, "rotation": -86.82, "width": 64, "height": 64 }
  170. },
  171. "star3": {
  172. "star": { "x": 5.68, "y": -1.79, "rotation": -86.82, "width": 64, "height": 64 }
  173. },
  174. "star4": {
  175. "star": { "x": 5.68, "y": -1.79, "rotation": -86.82, "width": 64, "height": 64 }
  176. },
  177. "toufa1": {
  178. "toufa1": {
  179. "type": "mesh",
  180. "uvs": [ 0.07213, 0.34471, 0.27956, 0.07339, 0.45799, 0.0992, 0.81485, 0.20532, 0.74958, 0.47444, 0.72894, 0.5595, 0.68064, 0.65608, 0.63642, 0.74448, 0.57243, 0.81331, 0.52564, 0.86365, 0.37538, 1, 0, 1, 1.0E-5, 0.81693, 1.0E-5, 0.75019, 1.0E-5, 0.65852, 1.0E-5, 0.58038, 0, 0.43905, 0.25643, 0.48494, 0.28286, 0.70146, 0.2333, 0.84486, 0.30485, 0.39227, 0.27251, 0.61673, 0.34305, 0.6166, 0.25549, 0.78066 ],
  181. "triangles": [ 11, 12, 19, 11, 19, 10, 23, 13, 14, 18, 23, 14, 8, 18, 7, 23, 18, 8, 19, 12, 13, 23, 19, 13, 9, 23, 8, 10, 23, 9, 19, 23, 10, 15, 16, 17, 22, 17, 5, 21, 17, 22, 15, 17, 21, 6, 22, 5, 14, 15, 21, 18, 21, 22, 14, 21, 18, 7, 22, 6, 18, 22, 7, 20, 1, 2, 0, 1, 20, 4, 2, 3, 20, 2, 4, 17, 0, 20, 16, 0, 17, 5, 20, 4, 17, 20, 5 ],
  182. "vertices": [ 2, 29, 11.55, -5.82, 0.99922, 30, -7.58, -4.24, 7.8E-4, 1, 29, -3.5, -4.07, 1, 1, 29, -2.99, 0.23, 1, 1, 29, 0.85, 9.41, 1, 3, 29, 15.12, 10.83, 0.70591, 30, -0.41, 11.2, 0.29404, 31, -13.66, 8.85, 6.0E-5, 3, 29, 19.63, 11.29, 0.37113, 30, 4.09, 10.64, 0.60852, 31, -9.13, 9.13, 0.02035, 3, 29, 24.87, 11.24, 0.09383, 30, 9.18, 9.44, 0.70603, 31, -3.9, 8.87, 0.20013, 4, 29, 29.66, 11.19, 0.01048, 30, 13.85, 8.33, 0.38822, 31, 0.89, 8.64, 0.60047, 32, -9.12, 6.32, 8.3E-4, 4, 29, 33.54, 10.49, 1.0E-4, 30, 17.47, 6.79, 0.11003, 31, 4.73, 7.79, 0.82423, 32, -5.19, 6.59, 0.06564, 3, 30, 20.12, 5.67, 0.01958, 31, 7.53, 7.16, 0.71253, 32, -2.32, 6.79, 0.26789, 2, 31, 15.23, 4.94, 0.03318, 32, 5.69, 6.83, 0.96682, 1, 32, 9.45, -0.94, 1, 3, 30, 17.41, -6.38, 0.0097, 31, 7.08, -5.17, 0.6063, 32, 0.72, -5.17, 0.384, 3, 30, 13.87, -6.31, 0.16223, 31, 3.59, -5.75, 0.78619, 32, -2.46, -6.72, 0.05158, 2, 30, 9.02, -6.22, 0.73906, 31, -1.2, -6.55, 0.26094, 3, 29, 24.12, -4.91, 0.02912, 30, 4.88, -6.14, 0.94595, 31, -5.29, -7.23, 0.02493, 2, 29, 16.79, -6.43, 0.78627, 30, -2.61, -6, 0.21373, 2, 29, 17.97, -0.16, 0.56989, 30, -0.07, -0.15, 0.43011, 3, 29, 29.08, 2.77, 7.0E-5, 30, 11.42, 0.24, 0.51398, 31, -0.03, 0.24, 0.48595, 2, 31, 7.66, 0.37, 0.72787, 32, -0.29, 0.3, 0.27213, 1, 29, 12.93, -0.07, 1, 2, 29, 24.73, 1.62, 3.6E-4, 30, 6.92, 0.09, 0.99964, 2, 29, 24.4, 3.21, 0.01487, 30, 6.95, 1.71, 0.98513, 1, 31, 4.22, 0.31, 1 ],
  183. "hull": 17,
  184. "edges": [ 38, 22, 22, 24, 2, 4, 4, 6, 20, 22, 18, 20, 32, 34, 34, 10, 2, 0, 0, 32, 4, 40, 40, 34, 0, 40, 6, 8, 8, 10, 40, 8, 28, 36, 36, 14, 28, 30, 30, 32, 34, 42, 42, 36, 30, 42, 10, 12, 12, 14, 44, 12, 24, 26, 26, 28, 36, 46, 46, 38, 26, 46, 14, 16, 16, 18, 46, 16 ],
  185. "width": 23,
  186. "height": 53
  187. }
  188. },
  189. "toufa2": {
  190. "toufa2": { "x": -2.77, "y": 3.89, "rotation": -15, "width": 9, "height": 13 }
  191. },
  192. "toufa3": {
  193. "toufa3": {
  194. "type": "mesh",
  195. "uvs": [ 0.3751, 0.14538, 0.46529, 0.25087, 0.523, 0.34605, 0.59881, 0.47109, 0.66696, 0.58351, 0.71144, 0.63599, 0.76771, 0.70239, 0.86496, 0.81715, 1, 0.84883, 1, 1, 0.65046, 1, 0.52908, 0.95711, 0.35713, 0.89635, 0.27293, 0.83091, 0.23226, 0.7993, 0.16096, 0.74389, 0.12661, 0.68812, 0.05677, 0.5747, 0, 0.48253, 0, 0, 0.25079, 0, 0.24597, 0.36276, 0.4882, 0.69636, 0.7882, 0.90036, 0.15806, 0.23311, 0.31765, 0.46146, 0.37488, 0.54029, 0.56137, 0.74611, 0.43207, 0.61906, 0.6785, 0.82577 ],
  196. "triangles": [ 10, 23, 9, 23, 7, 9, 7, 8, 9, 10, 29, 23, 10, 11, 29, 11, 27, 29, 11, 12, 27, 23, 29, 7, 12, 22, 27, 29, 6, 7, 29, 5, 6, 29, 27, 5, 27, 4, 5, 27, 22, 4, 12, 13, 22, 22, 13, 28, 13, 14, 28, 28, 14, 26, 14, 15, 26, 15, 16, 26, 22, 28, 4, 16, 25, 26, 16, 17, 25, 28, 3, 4, 28, 26, 3, 26, 2, 3, 26, 25, 2, 25, 1, 2, 17, 21, 25, 17, 18, 21, 18, 24, 21, 18, 19, 24, 25, 21, 1, 21, 0, 1, 21, 24, 0, 24, 20, 0, 24, 19, 20 ],
  197. "vertices": [ 2, 33, 10.62, 11.65, 0.90847, 34, -8.65, 12.62, 0.09153, 3, 33, 17.64, 13.12, 0.58357, 34, -1.5, 13.35, 0.409, 35, -10.95, 20.2, 0.00743, 3, 33, 23.33, 13.36, 0.24513, 34, 4.17, 12.99, 0.69766, 35, -6.01, 17.39, 0.05721, 3, 33, 30.79, 13.66, 0.02278, 34, 11.63, 12.51, 0.6689, 35, 0.48, 13.69, 0.30832, 2, 34, 18.34, 12.09, 0.26545, 35, 6.32, 10.36, 0.73455, 2, 34, 21.88, 12.43, 0.09468, 35, 9.65, 9.12, 0.90532, 2, 34, 26.36, 12.87, 0.012, 35, 13.87, 7.55, 0.988, 1, 35, 21.16, 4.84, 1, 1, 35, 28.37, 6.76, 1, 1, 35, 31.82, 0.03, 1, 1, 35, 15.02, -8.58, 1, 2, 34, 28.81, -5.08, 0.02367, 35, 8.21, -9.66, 0.97633, 2, 34, 20.81, -10.68, 0.52868, 35, -1.44, -11.19, 0.47132, 3, 33, 37.21, -10.67, 0.00689, 34, 15.47, -12.36, 0.85352, 35, -6.98, -10.35, 0.13959, 3, 33, 34.73, -11.75, 0.02664, 34, 12.88, -13.17, 0.92065, 35, -9.65, -9.94, 0.05271, 3, 33, 30.38, -13.63, 0.10437, 34, 8.36, -14.58, 0.89264, 35, -14.34, -9.23, 0.00299, 2, 33, 27.03, -13.79, 0.20795, 34, 5.01, -14.4, 0.79205, 2, 33, 20.23, -14.12, 0.58643, 34, -1.79, -14.01, 0.41357, 2, 33, 14.7, -14.39, 0.83464, 34, -7.31, -13.7, 0.16536, 1, 33, -6.01, -2.01, 1, 2, 33, 0.94, 9.61, 0.99994, 34, -18.49, 11.61, 6.0E-5, 2, 33, 16.37, 0.09, 0.99976, 34, -4.13, 0.52, 2.4E-4, 2, 34, 17.06, 0.98, 0.45189, 35, 0.3, 0.94, 0.54811, 1, 35, 19.37, -0.75, 1, 1, 33, 8.37, -0.66, 1, 3, 33, 22.59, 0.88, 0.02391, 34, 2.14, 0.66, 0.97586, 35, -13.25, 7.2, 2.3E-4, 3, 33, 27.56, 1.51, 4.6E-4, 34, 7.14, 0.76, 0.99654, 35, -8.7, 5.1, 0.00301, 2, 34, 21.42, 2.65, 0.00754, 35, 4.95, 0.53, 0.99246, 2, 34, 12.15, 0.87, 0.97548, 35, -4.16, 3, 0.02452, 1, 35, 12.4, -0.13, 1 ],
  198. "hull": 21,
  199. "edges": [ 46, 18, 38, 40, 18, 16, 14, 16, 36, 38, 18, 20, 38, 48, 48, 42, 36, 48, 48, 40, 34, 36, 34, 42, 2, 0, 0, 40, 42, 0, 30, 32, 32, 34, 42, 50, 32, 50, 50, 2, 52, 50, 30, 52, 2, 4, 52, 4, 44, 54, 24, 54, 24, 26, 26, 44, 44, 8, 26, 28, 28, 30, 44, 56, 56, 52, 28, 56, 4, 6, 6, 8, 56, 6, 20, 46, 46, 14, 20, 22, 22, 24, 46, 58, 58, 54, 22, 58, 12, 14, 58, 12, 8, 10, 10, 12, 54, 10 ],
  200. "width": 54,
  201. "height": 50
  202. }
  203. },
  204. "toufa4": {
  205. "toufa4": {
  206. "type": "mesh",
  207. "uvs": [ 1, 0.36267, 1, 0.46213, 1, 0.56887, 1, 0.68531, 1, 0.78478, 1, 1, 0.55396, 1, 0, 1, 0, 0.81631, 0, 0.71442, 0, 0.5907, 0, 0.46698, 0, 0.36267, 0, 0, 0.40526, 0, 1, 0, 0.36278, 0.35539, 0.38756, 0.57372, 0.44421, 0.7872, 0.3725, 0.44107, 0.4173, 0.6858 ],
  208. "triangles": [ 18, 20, 3, 4, 18, 3, 8, 9, 20, 8, 20, 18, 7, 8, 18, 6, 18, 4, 7, 18, 6, 6, 4, 5, 3, 20, 2, 9, 17, 20, 19, 0, 1, 11, 16, 19, 17, 19, 1, 2, 17, 1, 17, 10, 11, 17, 11, 19, 20, 17, 2, 9, 10, 17, 16, 13, 14, 12, 13, 16, 14, 15, 0, 16, 14, 0, 19, 16, 0, 11, 12, 16 ],
  209. "vertices": [ 4, 25, 13.27, 23.49, 0.54692, 26, 1.39, 23.52, 0.30911, 27, -7.56, 24.53, 0.11398, 28, -16.84, 25.6, 0.02999, 4, 25, 18.63, 23.72, 0.34447, 26, 6.73, 23.03, 0.36886, 27, -2.3, 23.44, 0.19919, 28, -11.65, 24.2, 0.08748, 4, 25, 24.39, 23.97, 0.17123, 26, 12.47, 22.5, 0.33607, 27, 3.35, 22.26, 0.28259, 28, -6.09, 22.7, 0.21011, 4, 25, 30.67, 24.24, 0.06134, 26, 18.73, 21.92, 0.21786, 27, 9.5, 20.98, 0.28372, 28, -0.02, 21.06, 0.43708, 4, 25, 36.04, 24.47, 0.01831, 26, 24.08, 21.42, 0.11564, 27, 14.76, 19.88, 0.19528, 28, 5.17, 19.66, 0.67077, 3, 26, 35.65, 20.35, 0.02132, 27, 26.14, 17.51, 0.03449, 28, 16.39, 16.62, 0.94419, 1, 28, 12.08, 0.69, 1, 2, 27, 18.59, -18.71, 1.4E-4, 28, 6.73, -19.09, 0.99986, 3, 26, 22.37, -15.58, 0.01684, 27, 8.88, -16.69, 0.12141, 28, -2.84, -16.51, 0.86175, 4, 25, 33.83, -12.66, 2.0E-5, 26, 16.89, -15.07, 0.1051, 27, 3.49, -15.57, 0.2837, 28, -8.15, -15.07, 0.61118, 4, 25, 27.15, -12.95, 0.02213, 26, 10.24, -14.46, 0.37614, 27, -3.05, -14.2, 0.31688, 28, -14.6, -13.33, 0.28485, 4, 25, 20.48, -13.23, 0.19126, 26, 3.58, -13.84, 0.5742, 27, -9.59, -12.84, 0.14429, 28, -21.05, -11.58, 0.09026, 4, 25, 14.85, -13.47, 0.52332, 26, -2.03, -13.32, 0.41257, 27, -15.1, -11.69, 0.04194, 28, -26.49, -10.11, 0.02218, 1, 25, -4.72, -14.31, 1, 1, 25, -5.36, 0.67, 1, 3, 25, -6.3, 22.66, 0.96218, 26, -18.12, 25.33, 0.03733, 27, -26.73, 28.52, 4.9E-4, 3, 25, 13.88, -0.08, 0.99995, 27, -12.75, 1.53, 3.0E-5, 28, -23.37, 2.95, 2.0E-5, 2, 26, 10.64, -0.09, 0.99913, 28, -11.75, 0.75, 8.7E-4, 1, 28, -0.07, -0.23, 1, 1, 26, 3.46, 0.01, 1, 2, 27, 5.13, -0.13, 0.99512, 28, -5.62, 0.24, 0.00488 ],
  210. "hull": 16,
  211. "edges": [ 26, 28, 28, 30, 28, 32, 10, 12, 12, 14, 36, 12, 24, 26, 24, 32, 0, 30, 32, 0, 22, 24, 32, 38, 38, 34, 22, 38, 0, 2, 38, 2, 20, 22, 20, 34, 2, 4, 34, 4, 18, 20, 34, 40, 40, 36, 18, 40, 4, 6, 40, 6, 14, 16, 16, 18, 16, 36, 6, 8, 8, 10, 36, 8 ],
  212. "width": 37,
  213. "height": 54
  214. }
  215. },
  216. "yaoweijing": {
  217. "yaoweijing": {
  218. "type": "mesh",
  219. "uvs": [ 1, 0.53713, 1, 1, 0.64831, 1, 0, 1, 0, 0.24635, 0, 0, 0.23032, 0, 1, 0, 0.41271, 0.43382, 0.65271, 0.65191, 0.59991, 0.29609, 0.85071, 0.4453, 0.26112, 0.54478, 0.45911, 0.79347, 0.3323, 0.63419, 0.49538, 0.50894, 0.67971, 0.34356, 0.16714, 0.43738, 0.32025, 0.33663, 0.50126, 0.21706, 0.40013, 0.71938, 0.56966, 0.57644, 0.76325, 0.39327, 0.54277, 0.88479, 0.72363, 0.72299, 0.96771, 0.51727 ],
  220. "triangles": [ 2, 24, 1, 24, 0, 1, 3, 23, 2, 24, 25, 0, 2, 23, 24, 23, 9, 24, 23, 13, 9, 24, 11, 25, 24, 9, 11, 9, 22, 11, 0, 25, 7, 25, 11, 7, 3, 13, 23, 3, 20, 13, 3, 14, 20, 3, 12, 14, 13, 21, 9, 13, 20, 21, 20, 15, 21, 20, 14, 15, 9, 21, 22, 14, 8, 15, 21, 16, 22, 21, 15, 16, 15, 10, 16, 11, 22, 7, 22, 16, 7, 3, 17, 12, 3, 4, 17, 14, 12, 8, 12, 18, 8, 12, 17, 18, 15, 8, 10, 17, 4, 18, 8, 19, 10, 8, 18, 19, 16, 10, 7, 18, 5, 6, 18, 6, 19, 10, 19, 7, 18, 4, 5, 19, 6, 7 ],
  221. "vertices": [ 3, 41, 19.57, 7.23, 0.03722, 42, 9.37, 6.63, 0.17576, 43, 3.72, 6.48, 0.78701, 1, 43, 10.67, -1.59, 1, 3, 41, 22.52, -5.18, 0.00434, 42, 11.49, -5.95, 0.13728, 43, 5.33, -6.17, 0.85838, 3, 41, 13.65, -14.64, 0.26346, 42, 2.01, -14.8, 0.60891, 43, -4.49, -14.63, 0.12763, 2, 41, 1.01, -2.77, 0.99974, 42, -9.82, -2.13, 2.6E-4, 1, 41, -3.12, 1.1, 1, 3, 41, 0.03, 4.46, 0.99363, 42, -10.32, 5.16, 0.0047, 43, -16, 5.81, 0.00167, 3, 41, 10.56, 15.69, 0.44804, 42, 0.94, 15.66, 0.34397, 43, -4.33, 15.85, 0.20799, 3, 41, 9.8, 0.29, 0.97903, 42, -0.84, 0.35, 0.02016, 43, -6.73, 0.62, 8.1E-4, 2, 42, 6.09, -0.04, 0.2208, 43, 0.18, -0.05, 0.7792, 3, 41, 10.05, 5.19, 0.54529, 42, -0.27, 5.22, 0.35356, 43, -5.96, 5.47, 0.10115, 3, 41, 15.99, 6.5, 0.10468, 42, 5.74, 6.13, 0.36211, 43, 0.08, 6.14, 0.53321, 3, 41, 9.59, -3.66, 0.68547, 42, -1.32, -3.58, 0.30883, 43, -7.36, -3.29, 0.0057, 3, 41, 16.47, -4.69, 0.05727, 42, 5.48, -5.06, 0.55725, 43, -0.63, -5.04, 0.38548, 3, 41, 12.06, -4.03, 0.30736, 42, 1.13, -4.12, 0.64977, 43, -4.94, -3.92, 0.04287, 3, 41, 12.19, 0.32, 0.00778, 42, 1.55, 0.22, 0.9907, 43, -4.35, 0.39, 0.00152, 3, 41, 11.94, 5.61, 0.33359, 42, 1.65, 5.51, 0.47419, 43, -4.04, 5.68, 0.19222, 2, 41, 6.5, -3.34, 0.9375, 42, -4.38, -3.06, 0.0625, 3, 41, 6.91, 0.48, 0.99911, 42, -3.72, 0.72, 3.5E-4, 43, -9.59, 1.11, 5.4E-4, 3, 41, 7.38, 5, 0.80904, 42, -2.95, 5.2, 0.14742, 43, -8.64, 5.56, 0.04353, 3, 41, 14.42, -4.38, 0.12184, 42, 3.46, -4.62, 0.70534, 43, -2.64, -4.52, 0.17282, 3, 41, 14.34, 0.34, 2.8E-4, 42, 3.69, 0.09, 0.99855, 43, -2.21, 0.18, 0.00117, 3, 41, 13.92, 6.05, 0.18747, 42, 3.65, 5.82, 0.4709, 43, -2.02, 5.9, 0.34163, 3, 41, 19.14, -4.91, 0.0215, 42, 8.14, -5.46, 0.31334, 43, 2.01, -5.54, 0.66515, 2, 42, 8.24, -0.27, 0.00329, 43, 2.32, -0.36, 0.99671, 3, 41, 18.8, 7.08, 0.04759, 42, 8.58, 6.52, 0.20529, 43, 2.94, 6.41, 0.74712 ],
  222. "hull": 8,
  223. "edges": [ 10, 12, 12, 14, 2, 0, 0, 14, 6, 8, 8, 10, 2, 4, 4, 6, 24, 28, 16, 30, 28, 30, 20, 32, 30, 32, 8, 34, 34, 24, 10, 36, 36, 16, 34, 36, 12, 38, 38, 20, 36, 38, 26, 18, 18, 22, 26, 40, 40, 28, 18, 42, 42, 30, 40, 42, 22, 44, 44, 32, 42, 44, 4, 46, 46, 26, 2, 48, 48, 18, 46, 48, 0, 50, 50, 22, 48, 50 ],
  224. "width": 20,
  225. "height": 23
  226. }
  227. },
  228. "yinying": {
  229. "yinying": { "x": -15.21, "y": 28.96, "rotation": -15, "width": 86, "height": 45 }
  230. },
  231. "youbianwaitao": {
  232. "youbianwaitao": {
  233. "type": "mesh",
  234. "uvs": [ 1, 0.45037, 1, 0.50506, 1, 0.591, 1, 0.64412, 1, 0.71912, 1, 0.8035, 1, 1, 0.72652, 1, 0, 1, 0, 0.87225, 0, 0.78631, 0, 0.72537, 0, 0.65975, 0, 0.566, 0, 0.51287, 0, 0, 0.20547, 0, 1, 0, 0.33573, 0.55506, 0.43836, 0.76912, 0.37171, 0.63011, 0.45415, 0.6285, 0.32227, 0.49771, 0.52915, 0.48787, 0.40142, 0.69208, 0.47784, 0.68944, 0.51973, 0.83431 ],
  235. "triangles": [ 7, 5, 6, 8, 26, 7, 7, 26, 5, 8, 9, 26, 9, 19, 26, 9, 10, 19, 5, 26, 4, 26, 19, 4, 10, 24, 19, 10, 11, 24, 11, 12, 20, 19, 25, 4, 19, 24, 25, 11, 20, 24, 25, 3, 4, 24, 21, 25, 24, 20, 21, 3, 25, 2, 25, 21, 2, 20, 18, 21, 2, 21, 1, 21, 18, 1, 12, 18, 20, 12, 13, 18, 13, 22, 18, 13, 14, 22, 18, 23, 1, 18, 22, 23, 14, 16, 22, 14, 15, 16, 23, 0, 1, 22, 16, 23, 0, 23, 17, 23, 16, 17 ],
  236. "vertices": [ 2, 13, 13.91, 13.11, 0.52934, 14, -5.47, 12.87, 0.47066, 3, 13, 16.52, 12.85, 0.3702, 14, -2.87, 12.52, 0.62942, 15, -6.44, 15.16, 3.8E-4, 3, 13, 20.63, 12.44, 0.14267, 14, 1.22, 11.97, 0.8306, 15, -2.69, 13.43, 0.02672, 3, 13, 23.16, 12.18, 0.05406, 14, 3.75, 11.63, 0.85336, 15, -0.38, 12.36, 0.09258, 3, 13, 26.75, 11.82, 0.00483, 14, 7.32, 11.15, 0.69028, 15, 2.89, 10.85, 0.30489, 2, 14, 11.33, 10.6, 0.33931, 15, 6.57, 9.16, 0.66069, 1, 15, 15.13, 5.2, 1, 2, 14, 19.98, 4.19, 0.00267, 15, 12.95, 0.49, 0.99733, 2, 14, 18.13, -9.49, 0.51897, 15, 7.17, -12.05, 0.48103, 3, 13, 32.17, -7.81, 0.02492, 14, 12.05, -8.67, 0.43511, 15, 1.6, -9.48, 0.53997, 3, 13, 28.06, -7.4, 0.12136, 14, 7.97, -8.11, 0.14881, 15, -2.14, -7.75, 0.72983, 3, 13, 25.15, -7.11, 0.27858, 14, 5.07, -7.72, 0.00903, 15, -4.8, -6.52, 0.71239, 3, 13, 22.02, -6.8, 0.55266, 14, 1.95, -7.3, 3.7E-4, 15, -7.66, -5.2, 0.44697, 2, 13, 17.54, -6.35, 0.88197, 15, -11.74, -3.32, 0.11803, 2, 13, 15, -6.1, 0.95919, 15, -14.06, -2.25, 0.04081, 1, 13, -9.49, -3.65, 1, 1, 13, -9.1, 0.24, 1, 2, 13, -7.6, 15.26, 0.9993, 14, -26.89, 15.77, 7.0E-4, 2, 13, 17.65, 0.05, 0.99846, 14, -2.18, -0.31, 0.00154, 1, 15, 0.6, 0.16, 1, 3, 13, 21.31, 0.37, 0.02318, 14, 1.48, -0.11, 0.97165, 15, -5.99, 1.81, 0.00517, 1, 14, 1.62, 1.45, 1, 2, 13, 14.89, 0.07, 0.99803, 14, -4.94, -0.19, 0.00197, 2, 13, 14.81, 4.03, 0.70683, 14, -4.88, 3.77, 0.29317, 1, 14, 4.51, 0.05, 1, 1, 14, 4.57, 1.51, 1, 1, 15, 4.09, 0.25, 1 ],
  237. "hull": 18,
  238. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 42, 4, 26, 28, 28, 30, 32, 44, 44, 36, 28, 44, 2, 0, 0, 34, 46, 0, 20, 38, 38, 8, 20, 22, 22, 24, 38, 48, 48, 40, 22, 48, 4, 6, 6, 8, 50, 6, 16, 18, 18, 20, 14, 52, 52, 38, 18, 52, 8, 10, 10, 12, 52, 10 ],
  239. "width": 19,
  240. "height": 48
  241. }
  242. },
  243. "youshou": {
  244. "youshou": {
  245. "type": "mesh",
  246. "uvs": [ 0.42785, 0.14142, 0.47376, 0.17606, 0.66542, 0.30731, 0.76345, 0.37661, 0.90808, 0.47886, 1, 0.54385, 1, 1, 0.50709, 0.89, 0.40987, 0.73711, 0.33723, 0.66007, 0.23837, 0.55523, 0.14876, 0.46019, 0.05066, 0.35652, 0, 0.30298, 0, 0, 0.24043, 0, 0.37675, 0.38199, 0.65582, 0.65276, 0.22075, 0.22382, 0.28017, 0.28407, 0.47474, 0.47706, 0.58388, 0.58296 ],
  247. "triangles": [ 7, 17, 6, 17, 5, 6, 7, 8, 17, 8, 21, 17, 8, 9, 21, 9, 20, 21, 9, 10, 20, 17, 4, 5, 17, 21, 4, 21, 3, 4, 21, 20, 3, 10, 16, 20, 10, 11, 16, 20, 2, 3, 20, 16, 2, 11, 19, 16, 11, 12, 19, 16, 1, 2, 16, 19, 1, 12, 18, 19, 12, 13, 18, 13, 14, 18, 19, 0, 1, 19, 18, 0, 18, 15, 0, 18, 14, 15 ],
  248. "vertices": [ 2, 19, 7.34, 6.88, 0.99979, 20, -10.54, 7.11, 2.1E-4, 2, 19, 9.51, 7.17, 0.98929, 20, -8.37, 7.35, 0.01071, 2, 19, 17.94, 8.7, 0.43803, 20, 0.09, 8.7, 0.56197, 3, 19, 22.35, 9.43, 0.10252, 20, 4.52, 9.33, 0.89648, 21, -12.53, 7.55, 0.001, 3, 19, 28.86, 10.5, 3.2E-4, 20, 11.04, 10.27, 0.89027, 21, -6.21, 9.45, 0.10941, 2, 20, 15.2, 10.87, 0.69094, 21, -2.2, 10.66, 0.30906, 1, 21, 20.15, 2.71, 1, 2, 20, 24.8, -9.36, 0.00288, 21, 10.3, -7.91, 0.99712, 2, 20, 16.55, -7.92, 0.35169, 21, 1.93, -7.72, 0.64831, 2, 20, 12.09, -7.76, 0.78999, 21, -2.5, -8.23, 0.21001, 3, 19, 24.21, -7.42, 0.01286, 20, 6.02, -7.55, 0.97985, 21, -8.53, -8.92, 0.00729, 2, 19, 18.71, -7.34, 0.33453, 20, 0.52, -7.35, 0.66547, 2, 19, 12.71, -7.26, 0.90841, 20, -5.48, -7.15, 0.09159, 2, 19, 9.61, -7.22, 0.98754, 20, -8.58, -7.04, 0.01246, 1, 19, -4.44, -0.09, 1, 1, 19, -1.51, 5.7, 1, 2, 19, 17.87, -0.01, 0.64079, 20, -0.16, -0.01, 0.35921, 2, 20, 15.81, 0, 0.47826, 21, 0.03, 0.01, 0.52174, 1, 19, 8.63, -0.04, 1, 2, 19, 12.15, -0.03, 0.99999, 20, -5.88, 0.09, 1.0E-5, 1, 20, 5.45, 0, 1, 1, 20, 11.69, 0, 1 ],
  249. "hull": 16,
  250. "edges": [ 34, 12, 26, 28, 16, 14, 28, 30, 2, 4, 12, 10, 12, 14, 28, 36, 26, 36, 2, 0, 0, 30, 36, 0, 22, 24, 24, 26, 32, 38, 38, 36, 24, 38, 38, 2, 22, 32, 32, 4, 20, 22, 32, 40, 20, 40, 4, 6, 40, 6, 16, 34, 34, 10, 16, 18, 18, 20, 34, 42, 42, 40, 18, 42, 6, 8, 8, 10, 42, 8 ],
  251. "width": 27,
  252. "height": 52
  253. }
  254. },
  255. "youtui": {
  256. "youtui": {
  257. "type": "mesh",
  258. "uvs": [ 1, 0.3546, 1, 0.40092, 1, 0.46711, 1, 0.67558, 1, 0.70536, 1, 0.73845, 1, 1, 0.7921, 1, 0, 1, 0, 0.816, 0.36137, 0.725, 0.36137, 0.69543, 0.36137, 0.664, 0.36137, 0.46711, 0.36137, 0.4156, 0.34408, 0.3592, 0.23397, 0, 0.63437, 0, 1, 0, 0.70414, 0.40898, 0.7375, 0.73327, 0.73083, 0.66842, 0.73466, 0.70563, 0.71005, 0.46646, 0.69601, 0.36132 ],
  259. "triangles": [ 7, 5, 6, 8, 10, 7, 10, 20, 7, 8, 9, 10, 7, 20, 5, 20, 4, 5, 10, 22, 20, 20, 22, 4, 10, 11, 22, 11, 21, 22, 4, 22, 3, 22, 21, 3, 11, 12, 21, 21, 2, 3, 12, 23, 21, 21, 23, 2, 12, 13, 23, 13, 19, 23, 13, 14, 19, 23, 1, 2, 23, 19, 1, 14, 24, 19, 14, 15, 24, 1, 19, 0, 19, 24, 0, 18, 0, 24, 24, 15, 17, 15, 16, 17, 24, 17, 18 ],
  260. "vertices": [ 2, 5, 23.8, 9.25, 0.73398, 6, -2.21, 9.18, 0.26602, 2, 5, 26.33, 9, 0.50367, 6, 0.34, 9.02, 0.49633, 2, 5, 29.96, 8.65, 0.19045, 6, 3.97, 8.78, 0.80955, 2, 6, 15.41, 8.04, 0.93367, 7, -9.42, -1.92, 0.06633, 2, 6, 17.04, 7.93, 0.85287, 7, -8.73, -0.43, 0.14713, 2, 6, 18.86, 7.82, 0.70988, 7, -7.96, 1.21, 0.29012, 1, 7, -1.86, 14.25, 1, 1, 7, 3.79, 11.6, 1, 1, 7, 25.31, 1.54, 1, 2, 6, 21.17, -22.4, 2.0E-5, 7, 21.03, -7.63, 0.99998, 2, 6, 16.88, -11.26, 0.34779, 7, 9.09, -7.57, 0.65221, 2, 6, 15.26, -11.15, 0.54771, 7, 8.4, -9.04, 0.45229, 3, 5, 38.87, -11.47, 4.9E-4, 6, 13.53, -11.04, 0.69389, 7, 7.66, -10.61, 0.30562, 3, 5, 28.1, -10.42, 0.27456, 6, 2.73, -10.34, 0.72102, 7, 3.08, -20.42, 0.00442, 3, 5, 25.28, -10.14, 0.51757, 6, -0.1, -10.15, 0.48222, 7, 1.88, -22.99, 2.0E-4, 2, 5, 22.14, -10.36, 0.77437, 6, -3.23, -10.47, 0.22563, 1, 5, 2.16, -11.73, 1, 1, 5, 3.32, 0.23, 1, 1, 5, 4.39, 11.14, 1, 2, 5, 25.91, 0.13, 0.35304, 6, 0.2, 0.13, 0.64696, 1, 6, 18.07, -0.02, 1, 2, 6, 14.49, 0.01, 0.99993, 7, -2.27, -5.69, 7.0E-5, 1, 6, 16.54, -0.01, 1, 1, 6, 3.37, 0.1, 1, 2, 5, 23.28, 0.14, 0.99914, 6, -2.43, 0.06, 8.6E-4 ],
  261. "hull": 19,
  262. "edges": [ 34, 36, 12, 14, 14, 16, 40, 14, 32, 34, 16, 18, 20, 18, 20, 40, 12, 10, 40, 10, 24, 42, 42, 6, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 28, 38, 38, 2, 24, 26, 26, 28, 38, 46, 46, 42, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 38, 30, 48, 2, 0, 0, 36, 48, 0 ],
  263. "width": 30,
  264. "height": 55
  265. }
  266. },
  267. "youyan": {
  268. "youyan": { "x": 2.84, "y": -2.33, "rotation": -88.78, "width": 23, "height": 17 }
  269. },
  270. "zuiba": {
  271. "zuiba": { "x": 1.04, "y": -0.83, "rotation": -93.81, "width": 10, "height": 7 }
  272. },
  273. "zuobianwaitao": {
  274. "zuobianwaitao": {
  275. "type": "mesh",
  276. "uvs": [ 1, 0.09424, 0.87228, 0.44323, 0.84919, 0.51386, 0.83176, 0.58406, 0.8058, 0.68859, 0.78934, 0.7549, 0.7773, 0.8034, 0.6441, 1, 0.23711, 1, 0, 1, 0, 0.77102, 0.03648, 0.71745, 0.07674, 0.65831, 0.16039, 0.53544, 0.20724, 0.46664, 0.25191, 0.40103, 0.4073, 0, 0.7329, 0, 1, 0, 0.5342, 0.50136, 0.3925, 0.79107, 0.56029, 0.42888, 0.41728, 0.74041, 0.44721, 0.67923, 0.50306, 0.56504 ],
  277. "triangles": [ 8, 20, 7, 7, 20, 6, 20, 8, 10, 8, 9, 10, 20, 22, 6, 10, 11, 20, 20, 11, 22, 6, 22, 5, 22, 23, 5, 5, 23, 4, 11, 12, 22, 22, 12, 23, 23, 24, 4, 4, 24, 3, 12, 13, 23, 23, 13, 24, 24, 19, 3, 3, 19, 2, 13, 14, 24, 24, 14, 19, 14, 15, 19, 19, 21, 2, 2, 21, 1, 19, 15, 21, 21, 17, 1, 1, 17, 0, 15, 16, 21, 21, 16, 17, 17, 18, 0 ],
  278. "vertices": [ 1, 10, -2.5, 5.75, 1, 2, 10, 14.44, 6.22, 0.95803, 11, -3, 6.28, 0.04197, 2, 10, 17.86, 6.36, 0.65482, 11, 0.42, 6.36, 0.34518, 2, 10, 21.24, 6.62, 0.24479, 11, 3.8, 6.55, 0.75521, 3, 10, 26.27, 7, 0.01943, 11, 8.84, 6.83, 0.91601, 12, -5.97, 5.81, 0.06456, 3, 10, 29.46, 7.24, 4.9E-4, 11, 12.03, 7.01, 0.69825, 12, -2.87, 6.59, 0.30125, 2, 11, 14.37, 7.14, 0.4403, 12, -0.6, 7.16, 0.5597, 1, 12, 9.18, 7.88, 1, 1, 12, 11.96, 0.23, 1, 1, 12, 13.58, -4.23, 1, 2, 11, 15.3, -8.45, 0.23926, 12, 3.25, -7.98, 0.76074, 2, 11, 12.65, -8.14, 0.47644, 12, 0.59, -8.18, 0.52356, 2, 11, 9.72, -7.8, 0.75869, 12, -2.36, -8.39, 0.24131, 3, 10, 21.32, -7.01, 0.05971, 11, 3.63, -7.08, 0.93007, 12, -8.47, -8.83, 0.01022, 3, 10, 17.91, -6.67, 0.35735, 11, 0.22, -6.68, 0.64265, 12, -11.9, -9.08, 0, 2, 10, 14.65, -6.35, 0.78924, 11, -3.03, -6.3, 0.21076, 1, 10, -4.85, -6.72, 1, 1, 10, -6, -0.31, 1, 1, 10, -6.95, 4.95, 1, 1, 11, 0.83, 0.04, 1, 2, 11, 15.01, -0.55, 0.01136, 12, 1.47, -0.28, 0.98864, 2, 10, 14.87, -0.05, 0.99983, 11, -2.69, 0.01, 1.7E-4, 1, 11, 12.53, -0.45, 1, 2, 11, 9.53, -0.32, 0.99678, 12, -3.95, -1.08, 0.00322, 1, 11, 3.94, -0.09, 1 ],
  279. "hull": 19,
  280. "edges": [ 34, 36, 16, 18, 40, 16, 32, 34, 32, 30, 18, 20, 0, 36, 14, 16, 12, 14, 34, 42, 42, 38, 30, 42, 0, 2, 42, 2, 28, 30, 28, 38, 38, 4, 2, 4, 20, 40, 40, 12, 20, 22, 44, 40, 22, 44, 10, 12, 44, 10, 22, 24, 46, 44, 24, 46, 8, 10, 46, 8, 24, 26, 26, 28, 38, 48, 48, 46, 26, 48, 4, 6, 6, 8, 48, 6 ],
  281. "width": 20,
  282. "height": 48
  283. }
  284. },
  285. "zuoshou": {
  286. "zuoshou": {
  287. "type": "mesh",
  288. "uvs": [ 1, 0.34696, 0.94905, 0.40929, 0.88917, 0.48253, 0.85747, 0.52505, 0.72031, 0.70899, 0.68477, 0.75666, 0.46334, 1, 0, 1, 0, 0.775, 0.29544, 0.58729, 0.33694, 0.54271, 0.52778, 0.33773, 0.57284, 0.28933, 0.62825, 0.23253, 0.8551, 0, 1, 0, 0.72028, 0.37365, 0.46765, 0.67459, 0.76685, 0.31145, 0.68614, 0.41433, 0.50892, 0.62542 ],
  289. "triangles": [ 6, 17, 5, 6, 7, 17, 17, 8, 9, 17, 7, 8, 17, 20, 5, 9, 10, 17, 5, 20, 4, 20, 19, 4, 4, 19, 3, 17, 10, 20, 20, 11, 19, 20, 10, 11, 19, 16, 3, 3, 16, 2, 11, 12, 19, 19, 12, 16, 16, 18, 2, 2, 18, 1, 1, 18, 0, 12, 13, 16, 16, 13, 18, 18, 15, 0, 18, 14, 15, 18, 13, 14 ],
  290. "vertices": [ 2, 16, 10.32, 7.15, 0.9197, 17, -4.92, 7.02, 0.0803, 2, 16, 13.73, 7.03, 0.66334, 17, -1.5, 6.99, 0.33666, 2, 16, 17.75, 6.89, 0.19965, 17, 2.51, 6.96, 0.80035, 2, 16, 20.03, 6.89, 0.05959, 17, 4.8, 7.03, 0.94041, 2, 17, 14.7, 7.31, 0.61512, 18, -1.43, 7.19, 0.38488, 2, 17, 17.27, 7.38, 0.32394, 18, 1.11, 7.57, 0.67606, 1, 18, 14.73, 8.54, 1, 1, 18, 22.33, -3.1, 1, 1, 18, 13.11, -9.13, 1, 2, 17, 14.97, -6.76, 0.46023, 18, 0.56, -6.74, 0.53977, 2, 17, 12.46, -6.61, 0.78344, 18, -1.95, -6.9, 0.21656, 2, 16, 15.79, -5.92, 0.35239, 17, 0.92, -5.9, 0.64761, 2, 16, 13.07, -5.68, 0.73844, 17, -1.8, -5.73, 0.26156, 2, 16, 9.85, -5.32, 0.97302, 17, -5.03, -5.47, 0.02698, 1, 16, -3.34, -3.86, 1, 1, 16, -5.15, 0.1, 1, 2, 16, 14.99, 0.06, 0.53971, 17, -0.04, 0.06, 0.46029, 2, 17, 16.53, -0.24, 0.00266, 18, 1.31, -0.08, 0.99734, 1, 16, 11.64, 0.07, 1, 1, 17, 2.2, 0.02, 1, 1, 17, 13.82, -0.19, 1 ],
  291. "hull": 16,
  292. "edges": [ 34, 14, 28, 30, 14, 16, 18, 16, 0, 30, 12, 14, 10, 12, 24, 32, 32, 4, 24, 26, 26, 28, 30, 36, 36, 32, 26, 36, 0, 2, 2, 4, 36, 2, 22, 24, 32, 38, 22, 38, 4, 6, 38, 6, 18, 34, 34, 10, 18, 20, 20, 22, 34, 40, 40, 38, 20, 40, 6, 8, 8, 10, 40, 8 ],
  293. "width": 30,
  294. "height": 49
  295. }
  296. },
  297. "zuotui": {
  298. "zuotui": {
  299. "type": "mesh",
  300. "uvs": [ 1, 0.3442, 1, 0.41297, 1, 0.4896, 1, 0.63501, 1, 0.71164, 1, 1, 0.66915, 1, 0, 1, 0, 0.80006, 0.29243, 0.69199, 0.30806, 0.62416, 0.34212, 0.47641, 0.35793, 0.40781, 0.37461, 0.33548, 0.45194, 0, 0.76758, 0, 1, 0, 0.73364, 0.41101, 0.70061, 0.7042, 0.70988, 0.62194, 0.73963, 0.33847, 0.72479, 0.48953 ],
  301. "triangles": [ 6, 18, 5, 7, 9, 6, 6, 9, 18, 7, 8, 9, 18, 4, 5, 18, 19, 4, 19, 3, 4, 9, 10, 18, 18, 10, 19, 19, 21, 3, 21, 2, 3, 10, 11, 19, 19, 11, 21, 21, 17, 2, 17, 1, 2, 11, 12, 21, 21, 12, 17, 12, 13, 17, 17, 20, 1, 20, 0, 1, 17, 13, 20, 20, 15, 0, 15, 16, 0, 13, 14, 20, 20, 14, 15 ],
  302. "vertices": [ 2, 2, 19.42, 8.8, 0.79571, 3, -3.87, 8.87, 0.20429, 2, 2, 23.34, 9.07, 0.45143, 3, 0.05, 9.07, 0.54857, 3, 2, 27.69, 9.36, 0.1229, 3, 4.41, 9.28, 0.877, 4, -14.48, -12.59, 1.0E-4, 2, 3, 12.69, 9.68, 0.91141, 4, -11.79, -4.76, 0.08859, 2, 3, 17.05, 9.9, 0.67913, 4, -10.36, -0.63, 0.32087, 2, 3, 33.47, 10.7, 0, 4, -5.02, 14.91, 1, 1, 4, 5.31, 11.36, 1, 1, 4, 26.19, 4.17, 1, 2, 3, 23.69, -22.82, 0.00278, 4, 22.48, -6.6, 0.99722, 2, 3, 17.07, -13.48, 0.38267, 4, 11.35, -9.29, 0.61733, 3, 2, 36.87, -12.92, 0.00221, 3, 13.18, -13.15, 0.71149, 4, 9.6, -12.77, 0.2863, 3, 2, 28.39, -12.36, 0.16096, 3, 4.72, -12.44, 0.81309, 4, 5.8, -20.37, 0.02595, 3, 2, 24.45, -12.1, 0.40091, 3, 0.78, -12.11, 0.59554, 4, 4.03, -23.9, 0.00354, 2, 2, 20.3, -11.82, 0.70915, 3, -3.36, -11.76, 0.29085, 1, 2, 1.05, -10.55, 1, 1, 2, 0.36, -0.15, 1, 1, 2, -0.15, 7.5, 1, 2, 2, 23.81, 0.29, 0.23337, 3, 0.36, 0.28, 0.76663, 1, 3, 17.11, 0.01, 1, 1, 3, 12.41, 0.08, 1, 2, 2, 19.67, 0.21, 0.9985, 3, -3.78, 0.28, 0.0015, 2, 2, 28.29, 0.29, 3.2E-4, 3, 4.85, 0.21, 0.99968 ],
  303. "hull": 17,
  304. "edges": [ 30, 32, 10, 12, 12, 14, 28, 30, 14, 16, 18, 16, 18, 36, 10, 8, 36, 8, 18, 20, 38, 36, 20, 38, 8, 6, 38, 6, 36, 12, 24, 34, 34, 2, 24, 26, 26, 28, 30, 40, 40, 34, 26, 40, 2, 0, 0, 32, 40, 0, 20, 22, 22, 24, 34, 42, 42, 38, 22, 42, 2, 4, 4, 6, 42, 4 ],
  305. "width": 33,
  306. "height": 57
  307. }
  308. },
  309. "zuoyan": {
  310. "zuoyan": { "x": 1.4, "y": 0.74, "rotation": -93.01, "width": 19, "height": 17 }
  311. }
  312. }
  313. },
  314. "animations": {
  315. "stand1": {
  316. "slots": {
  317. "biyan": {
  318. "attachment": [
  319. { "time": 0, "name": null },
  320. { "time": 1, "name": null },
  321. { "time": 1.2667, "name": "biyan" },
  322. { "time": 1.3333, "name": null },
  323. { "time": 2, "name": null }
  324. ]
  325. },
  326. "maozi2": {
  327. "attachment": [
  328. { "time": 0, "name": null }
  329. ]
  330. },
  331. "star": {
  332. "color": [
  333. { "time": 0, "color": "ffffff00" }
  334. ]
  335. },
  336. "star2": {
  337. "color": [
  338. { "time": 0, "color": "ffffff00" }
  339. ]
  340. },
  341. "star3": {
  342. "color": [
  343. { "time": 0, "color": "ffffff00" }
  344. ]
  345. },
  346. "star4": {
  347. "color": [
  348. { "time": 0, "color": "ffffff00" }
  349. ]
  350. },
  351. "youyan": {
  352. "attachment": [
  353. { "time": 1.2667, "name": null },
  354. { "time": 1.3333, "name": "youyan" },
  355. { "time": 1.5, "name": "youyan" }
  356. ]
  357. },
  358. "zuoyan": {
  359. "attachment": [
  360. { "time": 1.2667, "name": null },
  361. { "time": 1.3333, "name": "zuoyan" },
  362. { "time": 1.5, "name": "zuoyan" }
  363. ]
  364. }
  365. },
  366. "bones": {
  367. "root": {
  368. "rotate": [
  369. { "time": 0, "angle": 0 }
  370. ],
  371. "translate": [
  372. { "time": 0, "x": 0, "y": 0 }
  373. ],
  374. "scale": [
  375. { "time": 0, "x": 0.65, "y": 0.65 }
  376. ]
  377. },
  378. "bone": {
  379. "rotate": [
  380. { "time": 0, "angle": 0, "curve": "stepped" },
  381. { "time": 0.5, "angle": 0, "curve": "stepped" },
  382. { "time": 1, "angle": 0, "curve": "stepped" },
  383. { "time": 1.5, "angle": 0, "curve": "stepped" },
  384. { "time": 2, "angle": 0 }
  385. ],
  386. "translate": [
  387. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  388. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  389. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  390. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  391. { "time": 2, "x": 0, "y": 0 }
  392. ]
  393. },
  394. "bone2": {
  395. "rotate": [
  396. { "time": 0, "angle": 0, "curve": "stepped" },
  397. { "time": 0.5, "angle": 0, "curve": "stepped" },
  398. { "time": 1, "angle": 0, "curve": "stepped" },
  399. { "time": 1.5, "angle": 0, "curve": "stepped" },
  400. { "time": 2, "angle": 0 }
  401. ],
  402. "translate": [
  403. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  404. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  405. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  406. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  407. { "time": 2, "x": 0, "y": 0 }
  408. ]
  409. },
  410. "bone3": {
  411. "rotate": [
  412. { "time": 0, "angle": 0, "curve": "stepped" },
  413. { "time": 0.5, "angle": 0, "curve": "stepped" },
  414. { "time": 1, "angle": 0, "curve": "stepped" },
  415. { "time": 1.5, "angle": 0, "curve": "stepped" },
  416. { "time": 2, "angle": 0 }
  417. ],
  418. "translate": [
  419. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  420. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  421. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  422. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  423. { "time": 2, "x": 0, "y": 0 }
  424. ]
  425. },
  426. "bone4": {
  427. "rotate": [
  428. { "time": 0, "angle": 0, "curve": "stepped" },
  429. { "time": 0.5, "angle": 0, "curve": "stepped" },
  430. { "time": 1, "angle": 0, "curve": "stepped" },
  431. { "time": 1.5, "angle": 0, "curve": "stepped" },
  432. { "time": 2, "angle": 0 }
  433. ],
  434. "translate": [
  435. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  436. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  437. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  438. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  439. { "time": 2, "x": 0, "y": 0 }
  440. ]
  441. },
  442. "bone5": {
  443. "rotate": [
  444. { "time": 0, "angle": 0, "curve": "stepped" },
  445. { "time": 0.5, "angle": 0, "curve": "stepped" },
  446. { "time": 1, "angle": 0, "curve": "stepped" },
  447. { "time": 1.5, "angle": 0, "curve": "stepped" },
  448. { "time": 2, "angle": 0 }
  449. ],
  450. "translate": [
  451. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  452. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  453. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  454. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  455. { "time": 2, "x": 0, "y": 0 }
  456. ]
  457. },
  458. "bone6": {
  459. "rotate": [
  460. { "time": 0, "angle": 0, "curve": "stepped" },
  461. { "time": 0.5, "angle": 0, "curve": "stepped" },
  462. { "time": 1, "angle": 0, "curve": "stepped" },
  463. { "time": 1.5, "angle": 0, "curve": "stepped" },
  464. { "time": 2, "angle": 0 }
  465. ],
  466. "translate": [
  467. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  468. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  469. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  470. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  471. { "time": 2, "x": 0, "y": 0 }
  472. ]
  473. },
  474. "bone7": {
  475. "rotate": [
  476. { "time": 0, "angle": 0, "curve": "stepped" },
  477. { "time": 0.5, "angle": 0, "curve": "stepped" },
  478. { "time": 1, "angle": 0, "curve": "stepped" },
  479. { "time": 1.5, "angle": 0, "curve": "stepped" },
  480. { "time": 2, "angle": 0 }
  481. ],
  482. "translate": [
  483. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  484. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  485. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  486. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  487. { "time": 2, "x": 0, "y": 0 }
  488. ]
  489. },
  490. "bone8": {
  491. "rotate": [
  492. { "time": 0, "angle": 0, "curve": "stepped" },
  493. { "time": 0.5, "angle": 0, "curve": "stepped" },
  494. { "time": 1, "angle": 0, "curve": "stepped" },
  495. { "time": 1.5, "angle": 0, "curve": "stepped" },
  496. { "time": 2, "angle": 0 }
  497. ],
  498. "translate": [
  499. { "time": 0, "x": 0, "y": 0 },
  500. { "time": 0.5, "x": 0.06, "y": 1.05 },
  501. { "time": 1, "x": 0, "y": 0 },
  502. { "time": 1.5, "x": 0.06, "y": 1.05 },
  503. { "time": 2, "x": 0, "y": 0 }
  504. ],
  505. "scale": [
  506. { "time": 0, "x": 1, "y": 1 },
  507. { "time": 0.5, "x": 1.06, "y": 1 },
  508. { "time": 1, "x": 1, "y": 1 },
  509. { "time": 1.5, "x": 1.06, "y": 1 },
  510. { "time": 2, "x": 1, "y": 1 }
  511. ]
  512. },
  513. "bone9": {
  514. "rotate": [
  515. { "time": 0, "angle": 0, "curve": "stepped" },
  516. { "time": 0.5, "angle": 0, "curve": "stepped" },
  517. { "time": 1, "angle": 0, "curve": "stepped" },
  518. { "time": 1.5, "angle": 0, "curve": "stepped" },
  519. { "time": 2, "angle": 0 }
  520. ],
  521. "translate": [
  522. { "time": 0, "x": 0, "y": 0 },
  523. { "time": 0.5, "x": 0.03, "y": 1 },
  524. { "time": 1, "x": 0, "y": 0 },
  525. { "time": 1.5, "x": 0.03, "y": 1 },
  526. { "time": 2, "x": 0, "y": 0 }
  527. ],
  528. "scale": [
  529. { "time": 0, "x": 1, "y": 1 },
  530. { "time": 0.5, "x": 1.113, "y": 1 },
  531. { "time": 1, "x": 1, "y": 1 },
  532. { "time": 1.5, "x": 1.113, "y": 1 },
  533. { "time": 2, "x": 1, "y": 1 }
  534. ]
  535. },
  536. "bone10": {
  537. "rotate": [
  538. { "time": 0, "angle": 0, "curve": "stepped" },
  539. { "time": 0.5, "angle": 0, "curve": "stepped" },
  540. { "time": 1, "angle": 0, "curve": "stepped" },
  541. { "time": 1.5, "angle": 0, "curve": "stepped" },
  542. { "time": 2, "angle": 0 }
  543. ],
  544. "translate": [
  545. { "time": 0, "x": 0, "y": 0 },
  546. { "time": 0.5, "x": 0.66, "y": -0.31 },
  547. { "time": 1, "x": 0, "y": 0 },
  548. { "time": 1.5, "x": 0.66, "y": -0.31 },
  549. { "time": 2, "x": 0, "y": 0 }
  550. ]
  551. },
  552. "bone11": {
  553. "rotate": [
  554. { "time": 0, "angle": 2.42 },
  555. { "time": 0.5, "angle": -1.3 },
  556. { "time": 1, "angle": 2.42 },
  557. { "time": 1.5, "angle": -1.3 },
  558. { "time": 2, "angle": 2.42 }
  559. ],
  560. "translate": [
  561. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  562. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  563. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  564. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  565. { "time": 2, "x": 0, "y": 0 }
  566. ]
  567. },
  568. "bone12": {
  569. "rotate": [
  570. { "time": 0, "angle": 2.42 },
  571. { "time": 0.5, "angle": -16.28 },
  572. { "time": 1, "angle": 2.42 },
  573. { "time": 1.5, "angle": -16.28 },
  574. { "time": 2, "angle": 2.42 }
  575. ],
  576. "translate": [
  577. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  578. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  579. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  580. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  581. { "time": 2, "x": 0, "y": 0 }
  582. ]
  583. },
  584. "bone13": {
  585. "rotate": [
  586. { "time": 0, "angle": 0, "curve": "stepped" },
  587. { "time": 0.5, "angle": 0, "curve": "stepped" },
  588. { "time": 1, "angle": 0, "curve": "stepped" },
  589. { "time": 1.5, "angle": 0, "curve": "stepped" },
  590. { "time": 2, "angle": 0 }
  591. ],
  592. "translate": [
  593. { "time": 0, "x": 0, "y": 0 },
  594. { "time": 0.5, "x": 0.3, "y": -0.17 },
  595. { "time": 1, "x": 0, "y": 0 },
  596. { "time": 1.5, "x": 0.3, "y": -0.17 },
  597. { "time": 2, "x": 0, "y": 0 }
  598. ]
  599. },
  600. "bone14": {
  601. "rotate": [
  602. { "time": 0, "angle": 0 },
  603. { "time": 0.5, "angle": 4.46 },
  604. { "time": 1, "angle": 0 },
  605. { "time": 1.5, "angle": 4.46 },
  606. { "time": 2, "angle": 0 }
  607. ],
  608. "translate": [
  609. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  610. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  611. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  612. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  613. { "time": 2, "x": 0, "y": 0 }
  614. ]
  615. },
  616. "bone15": {
  617. "rotate": [
  618. { "time": 0, "angle": 0, "curve": "stepped" },
  619. { "time": 0.5, "angle": 0, "curve": "stepped" },
  620. { "time": 1, "angle": 0, "curve": "stepped" },
  621. { "time": 1.5, "angle": 0, "curve": "stepped" },
  622. { "time": 2, "angle": 0 }
  623. ],
  624. "translate": [
  625. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  626. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  627. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  628. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  629. { "time": 2, "x": 0, "y": 0 }
  630. ]
  631. },
  632. "bone16": {
  633. "rotate": [
  634. { "time": 0, "angle": 15.96 },
  635. { "time": 0.5, "angle": 5.2 },
  636. { "time": 1, "angle": 15.96 },
  637. { "time": 1.5, "angle": 5.2 },
  638. { "time": 2, "angle": 15.96 }
  639. ],
  640. "translate": [
  641. { "time": 0, "x": 0, "y": 0 },
  642. { "time": 0.5, "x": 0.85, "y": -0.25 },
  643. { "time": 1, "x": 0, "y": 0 },
  644. { "time": 1.5, "x": 0.85, "y": -0.25 },
  645. { "time": 2, "x": 0, "y": 0 }
  646. ]
  647. },
  648. "bone17": {
  649. "rotate": [
  650. { "time": 0, "angle": 0 },
  651. { "time": 0.5, "angle": 13.82 },
  652. { "time": 1, "angle": 0 },
  653. { "time": 1.5, "angle": 13.82 },
  654. { "time": 2, "angle": 0 }
  655. ],
  656. "translate": [
  657. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  658. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  659. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  660. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  661. { "time": 2, "x": 0, "y": 0 }
  662. ]
  663. },
  664. "bone18": {
  665. "rotate": [
  666. { "time": 0, "angle": 0 },
  667. { "time": 0.5, "angle": 5.36 },
  668. { "time": 1, "angle": 0 },
  669. { "time": 1.5, "angle": 5.36 },
  670. { "time": 2, "angle": 0 }
  671. ],
  672. "translate": [
  673. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  674. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  675. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  676. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  677. { "time": 2, "x": 0, "y": 0 }
  678. ]
  679. },
  680. "bone19": {
  681. "rotate": [
  682. { "time": 0, "angle": -15.4 },
  683. { "time": 0.5, "angle": -7.15 },
  684. { "time": 1, "angle": -15.4 },
  685. { "time": 1.5, "angle": -7.15 },
  686. { "time": 2, "angle": -15.4 }
  687. ],
  688. "translate": [
  689. { "time": 0, "x": 0, "y": 0 },
  690. { "time": 0.5, "x": 0.81, "y": 0.34 },
  691. { "time": 1, "x": 0, "y": 0 },
  692. { "time": 1.5, "x": 0.81, "y": 0.34 },
  693. { "time": 2, "x": 0, "y": 0 }
  694. ]
  695. },
  696. "bone20": {
  697. "rotate": [
  698. { "time": 0, "angle": 0 },
  699. { "time": 0.5, "angle": -9.66 },
  700. { "time": 1, "angle": 0 },
  701. { "time": 1.5, "angle": -9.66 },
  702. { "time": 2, "angle": 0 }
  703. ],
  704. "translate": [
  705. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  706. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  707. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  708. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  709. { "time": 2, "x": 0, "y": 0 }
  710. ]
  711. },
  712. "bone21": {
  713. "rotate": [
  714. { "time": 0, "angle": 0, "curve": "stepped" },
  715. { "time": 0.5, "angle": 0, "curve": "stepped" },
  716. { "time": 1, "angle": 0, "curve": "stepped" },
  717. { "time": 1.5, "angle": 0, "curve": "stepped" },
  718. { "time": 2, "angle": 0 }
  719. ],
  720. "translate": [
  721. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  722. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  723. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  724. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  725. { "time": 2, "x": 0, "y": 0 }
  726. ]
  727. },
  728. "bone22": {
  729. "rotate": [
  730. { "time": 0, "angle": 0, "curve": "stepped" },
  731. { "time": 0.5, "angle": 0, "curve": "stepped" },
  732. { "time": 1, "angle": 0, "curve": "stepped" },
  733. { "time": 1.5, "angle": 0, "curve": "stepped" },
  734. { "time": 2, "angle": 0 }
  735. ],
  736. "translate": [
  737. { "time": 0, "x": 0, "y": 0 }
  738. ],
  739. "scale": [
  740. { "time": 0, "x": 1, "y": 1 },
  741. { "time": 0.5, "x": 1.01, "y": 1 },
  742. { "time": 1, "x": 1, "y": 1 },
  743. { "time": 1.5, "x": 1.01, "y": 1 },
  744. { "time": 2, "x": 1, "y": 1 }
  745. ]
  746. },
  747. "bone23": {
  748. "rotate": [
  749. { "time": 0, "angle": 0, "curve": "stepped" },
  750. { "time": 0.5, "angle": 0, "curve": "stepped" },
  751. { "time": 1, "angle": 0, "curve": "stepped" },
  752. { "time": 1.5, "angle": 0, "curve": "stepped" },
  753. { "time": 2, "angle": 0 }
  754. ],
  755. "translate": [
  756. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  757. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  758. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  759. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  760. { "time": 2, "x": 0, "y": 0 }
  761. ]
  762. },
  763. "bone24": {
  764. "rotate": [
  765. { "time": 0, "angle": 0, "curve": "stepped" },
  766. { "time": 0.5, "angle": 0, "curve": "stepped" },
  767. { "time": 1, "angle": 0, "curve": "stepped" },
  768. { "time": 1.5, "angle": 0, "curve": "stepped" },
  769. { "time": 2, "angle": 0 }
  770. ],
  771. "translate": [
  772. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  773. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  774. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  775. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  776. { "time": 2, "x": 0, "y": 0 }
  777. ],
  778. "scale": [
  779. { "time": 0, "x": 1, "y": 1 },
  780. { "time": 0.5, "x": 1.047, "y": 1 },
  781. { "time": 1, "x": 1, "y": 1 },
  782. { "time": 1.5, "x": 1.047, "y": 1 },
  783. { "time": 2, "x": 1, "y": 1 }
  784. ]
  785. },
  786. "bone25": {
  787. "rotate": [
  788. { "time": 0, "angle": 0, "curve": "stepped" },
  789. { "time": 0.5, "angle": 0, "curve": "stepped" },
  790. { "time": 1, "angle": 0, "curve": "stepped" },
  791. { "time": 1.5, "angle": 0, "curve": "stepped" },
  792. { "time": 2, "angle": 0 }
  793. ],
  794. "translate": [
  795. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  796. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  797. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  798. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  799. { "time": 2, "x": 0, "y": 0 }
  800. ]
  801. },
  802. "bone26": {
  803. "rotate": [
  804. { "time": 0, "angle": 0 },
  805. { "time": 0.5, "angle": -7.59 },
  806. { "time": 1, "angle": 0 },
  807. { "time": 1.5, "angle": -7.59 },
  808. { "time": 2, "angle": 0 }
  809. ],
  810. "translate": [
  811. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  812. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  813. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  814. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  815. { "time": 2, "x": 0, "y": 0 }
  816. ]
  817. },
  818. "bone27": {
  819. "rotate": [
  820. { "time": 0, "angle": 0, "curve": "stepped" },
  821. { "time": 0.5, "angle": 0, "curve": "stepped" },
  822. { "time": 1, "angle": 0, "curve": "stepped" },
  823. { "time": 1.5, "angle": 0, "curve": "stepped" },
  824. { "time": 2, "angle": 0 }
  825. ],
  826. "translate": [
  827. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  829. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  830. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 2, "x": 0, "y": 0 }
  832. ]
  833. },
  834. "bone28": {
  835. "rotate": [
  836. { "time": 0, "angle": 0 },
  837. { "time": 0.5, "angle": 6.28 },
  838. { "time": 1, "angle": 0 },
  839. { "time": 1.5, "angle": 6.28 },
  840. { "time": 2, "angle": 0 }
  841. ],
  842. "translate": [
  843. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  844. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  845. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  846. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  847. { "time": 2, "x": 0, "y": 0 }
  848. ]
  849. },
  850. "bone29": {
  851. "rotate": [
  852. { "time": 0, "angle": 0, "curve": "stepped" },
  853. { "time": 0.5, "angle": 0, "curve": "stepped" },
  854. { "time": 1, "angle": 0, "curve": "stepped" },
  855. { "time": 1.5, "angle": 0, "curve": "stepped" },
  856. { "time": 2, "angle": 0 }
  857. ],
  858. "translate": [
  859. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  860. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  861. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  862. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  863. { "time": 2, "x": 0, "y": 0 }
  864. ]
  865. },
  866. "bone30": {
  867. "rotate": [
  868. { "time": 0, "angle": 0 },
  869. { "time": 0.5, "angle": -8.85 },
  870. { "time": 1, "angle": 0 },
  871. { "time": 1.5, "angle": -8.85 },
  872. { "time": 2, "angle": 0 }
  873. ],
  874. "translate": [
  875. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  876. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  877. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 2, "x": 0, "y": 0 }
  880. ]
  881. },
  882. "bone31": {
  883. "rotate": [
  884. { "time": 0, "angle": 0 },
  885. { "time": 0.5, "angle": -17.08 },
  886. { "time": 1, "angle": 0 },
  887. { "time": 1.5, "angle": -17.08 },
  888. { "time": 2, "angle": 0 }
  889. ],
  890. "translate": [
  891. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  892. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  893. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  894. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  895. { "time": 2, "x": 0, "y": 0 }
  896. ]
  897. },
  898. "bone32": {
  899. "rotate": [
  900. { "time": 0, "angle": 0 },
  901. { "time": 0.5, "angle": -5.83 },
  902. { "time": 1, "angle": 0 },
  903. { "time": 1.5, "angle": -5.83 },
  904. { "time": 2, "angle": 0 }
  905. ],
  906. "translate": [
  907. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  908. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  909. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  910. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  911. { "time": 2, "x": 0, "y": 0 }
  912. ]
  913. },
  914. "bone33": {
  915. "rotate": [
  916. { "time": 0, "angle": 0, "curve": "stepped" },
  917. { "time": 0.5, "angle": 0, "curve": "stepped" },
  918. { "time": 1, "angle": 0, "curve": "stepped" },
  919. { "time": 1.5, "angle": 0, "curve": "stepped" },
  920. { "time": 2, "angle": 0 }
  921. ],
  922. "translate": [
  923. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  924. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  925. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  926. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  927. { "time": 2, "x": 0, "y": 0 }
  928. ]
  929. },
  930. "bone34": {
  931. "rotate": [
  932. { "time": 0, "angle": 0 },
  933. { "time": 0.5, "angle": 6.58 },
  934. { "time": 1, "angle": 0 },
  935. { "time": 1.5, "angle": 6.58 },
  936. { "time": 2, "angle": 0 }
  937. ],
  938. "translate": [
  939. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  940. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  941. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  942. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  943. { "time": 2, "x": 0, "y": 0 }
  944. ]
  945. },
  946. "bone35": {
  947. "rotate": [
  948. { "time": 0, "angle": 0 },
  949. { "time": 0.5, "angle": 0.56 },
  950. { "time": 1, "angle": 0 },
  951. { "time": 1.5, "angle": 0.56 },
  952. { "time": 2, "angle": 0 }
  953. ],
  954. "translate": [
  955. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  956. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  957. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  958. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  959. { "time": 2, "x": 0, "y": 0 }
  960. ]
  961. },
  962. "bone36": {
  963. "rotate": [
  964. { "time": 0, "angle": 0, "curve": "stepped" },
  965. { "time": 0.5, "angle": 0, "curve": "stepped" },
  966. { "time": 1, "angle": 0, "curve": "stepped" },
  967. { "time": 1.5, "angle": 0, "curve": "stepped" },
  968. { "time": 2, "angle": 0 }
  969. ],
  970. "translate": [
  971. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  972. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  973. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  974. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  975. { "time": 2, "x": 0, "y": 0 }
  976. ]
  977. },
  978. "bone37": {
  979. "rotate": [
  980. { "time": 0, "angle": 0, "curve": "stepped" },
  981. { "time": 0.5, "angle": 0, "curve": "stepped" },
  982. { "time": 1, "angle": 0, "curve": "stepped" },
  983. { "time": 1.5, "angle": 0, "curve": "stepped" },
  984. { "time": 2, "angle": 0 }
  985. ],
  986. "translate": [
  987. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 1.1667, "x": 0, "y": 0 },
  991. { "time": 1.2667, "x": -2, "y": -0.06 },
  992. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  994. { "time": 2, "x": 0, "y": 0 }
  995. ],
  996. "scale": [
  997. { "time": 1.1667, "x": 1, "y": 1 },
  998. { "time": 1.2667, "x": 0.464, "y": 1 },
  999. { "time": 1.3667, "x": 1, "y": 1 }
  1000. ]
  1001. },
  1002. "bone38": {
  1003. "rotate": [
  1004. { "time": 0, "angle": 0, "curve": "stepped" },
  1005. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1006. { "time": 1, "angle": 0, "curve": "stepped" },
  1007. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1008. { "time": 2, "angle": 0 }
  1009. ],
  1010. "translate": [
  1011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1013. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1014. { "time": 1.1667, "x": 0, "y": 0 },
  1015. { "time": 1.2667, "x": -1.98, "y": 0.09 },
  1016. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1018. { "time": 2, "x": 0, "y": 0 }
  1019. ],
  1020. "scale": [
  1021. { "time": 1.1667, "x": 1, "y": 1 },
  1022. { "time": 1.2667, "x": 0.453, "y": 1 },
  1023. { "time": 1.3667, "x": 1, "y": 1 }
  1024. ]
  1025. },
  1026. "bone39": {
  1027. "rotate": [
  1028. { "time": 0, "angle": 0, "curve": "stepped" },
  1029. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1030. { "time": 1, "angle": 0, "curve": "stepped" },
  1031. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1032. { "time": 2, "angle": 0 }
  1033. ],
  1034. "translate": [
  1035. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1036. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1037. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1038. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1039. { "time": 2, "x": 0, "y": 0 }
  1040. ]
  1041. },
  1042. "bone40": {
  1043. "rotate": [
  1044. { "time": 0, "angle": 0, "curve": "stepped" },
  1045. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1046. { "time": 1, "angle": 0, "curve": "stepped" },
  1047. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1048. { "time": 2, "angle": 0 }
  1049. ],
  1050. "translate": [
  1051. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1052. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1053. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1054. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1055. { "time": 2, "x": 0, "y": 0 }
  1056. ]
  1057. },
  1058. "bone41": {
  1059. "rotate": [
  1060. { "time": 0, "angle": 0 },
  1061. { "time": 0.5, "angle": -14.58 },
  1062. { "time": 1, "angle": 0 },
  1063. { "time": 1.5, "angle": -14.58 },
  1064. { "time": 2, "angle": 0 }
  1065. ],
  1066. "translate": [
  1067. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1068. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1069. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1070. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1071. { "time": 2, "x": 0, "y": 0 }
  1072. ]
  1073. },
  1074. "bone42": {
  1075. "rotate": [
  1076. { "time": 0, "angle": 0 },
  1077. { "time": 0.5, "angle": -0.94 },
  1078. { "time": 1, "angle": 0 },
  1079. { "time": 1.5, "angle": -0.94 },
  1080. { "time": 2, "angle": 0 }
  1081. ],
  1082. "translate": [
  1083. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1084. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1085. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1086. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1087. { "time": 2, "x": 0, "y": 0 }
  1088. ]
  1089. },
  1090. "bone43": {
  1091. "rotate": [
  1092. { "time": 0, "angle": 0 },
  1093. { "time": 0.5, "angle": -12.06 },
  1094. { "time": 1, "angle": 0 },
  1095. { "time": 1.5, "angle": -12.06 },
  1096. { "time": 2, "angle": 0 }
  1097. ],
  1098. "translate": [
  1099. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1100. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1101. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1102. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1103. { "time": 2, "x": 0, "y": 0 }
  1104. ]
  1105. },
  1106. "bone44": {
  1107. "rotate": [
  1108. { "time": 0, "angle": 0, "curve": "stepped" },
  1109. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1110. { "time": 1, "angle": 0, "curve": "stepped" },
  1111. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1112. { "time": 2, "angle": 0 }
  1113. ],
  1114. "translate": [
  1115. { "time": 0, "x": 0, "y": 0 },
  1116. { "time": 0.5, "x": 0.6, "y": -0.01 },
  1117. { "time": 1, "x": 0, "y": 0 },
  1118. { "time": 1.5, "x": 0.6, "y": -0.01 },
  1119. { "time": 2, "x": 0, "y": 0 }
  1120. ],
  1121. "scale": [
  1122. { "time": 0, "x": 1, "y": 1 },
  1123. { "time": 0.5, "x": 1.02, "y": 1.02 },
  1124. { "time": 1, "x": 1, "y": 1 },
  1125. { "time": 1.5, "x": 1.02, "y": 1.02 },
  1126. { "time": 2, "x": 1, "y": 1 }
  1127. ]
  1128. },
  1129. "bone45": {
  1130. "rotate": [
  1131. { "time": 0, "angle": 0, "curve": "stepped" },
  1132. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1133. { "time": 1, "angle": 0, "curve": "stepped" },
  1134. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1135. { "time": 2, "angle": 0 }
  1136. ],
  1137. "translate": [
  1138. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1139. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1140. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1141. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1142. { "time": 2, "x": 0, "y": 0 }
  1143. ]
  1144. },
  1145. "bone46": {
  1146. "rotate": [
  1147. { "time": 0, "angle": 0, "curve": "stepped" },
  1148. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1149. { "time": 1, "angle": 0, "curve": "stepped" },
  1150. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1151. { "time": 2, "angle": 0 }
  1152. ],
  1153. "translate": [
  1154. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1156. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1157. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1158. { "time": 2, "x": 0, "y": 0 }
  1159. ]
  1160. },
  1161. "bone47": {
  1162. "rotate": [
  1163. { "time": 0, "angle": 0, "curve": "stepped" },
  1164. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1165. { "time": 1, "angle": 0, "curve": "stepped" },
  1166. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1167. { "time": 2, "angle": 0 }
  1168. ],
  1169. "translate": [
  1170. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1171. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1172. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1173. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1174. { "time": 2, "x": 0, "y": 0 }
  1175. ]
  1176. }
  1177. },
  1178. "deform": {
  1179. "default": {
  1180. "houmiantoufa": {
  1181. "houmiantoufa": [
  1182. {
  1183. "time": 0,
  1184. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  1185. },
  1186. {
  1187. "time": 0.5,
  1188. "vertices": [ 0.8366, 1.94949, 0, 0, 0, 0, 0, 0, 0, 0, -1.30902, 2.21617 ]
  1189. },
  1190. {
  1191. "time": 1,
  1192. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  1193. },
  1194. {
  1195. "time": 1.5,
  1196. "vertices": [ 0.8366, 1.94949, 0, 0, 0, 0, 0, 0, 0, 0, -1.30902, 2.21617 ]
  1197. },
  1198. {
  1199. "time": 2,
  1200. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  1201. }
  1202. ]
  1203. }
  1204. }
  1205. }
  1206. },
  1207. "stand2": {
  1208. "slots": {
  1209. "biyan": {
  1210. "attachment": [
  1211. { "time": 0, "name": null },
  1212. { "time": 0.4333, "name": null },
  1213. { "time": 1.1667, "name": null },
  1214. { "time": 1.5, "name": "biyan" },
  1215. { "time": 1.6333, "name": null },
  1216. { "time": 1.8667, "name": null },
  1217. { "time": 2.1667, "name": null }
  1218. ]
  1219. },
  1220. "maozi2": {
  1221. "attachment": [
  1222. { "time": 0, "name": null },
  1223. { "time": 0.4333, "name": null },
  1224. { "time": 1.1667, "name": null },
  1225. { "time": 1.8667, "name": null },
  1226. { "time": 2.1667, "name": null }
  1227. ]
  1228. },
  1229. "star": {
  1230. "color": [
  1231. { "time": 0, "color": "ffffff00" },
  1232. { "time": 0.3, "color": "ffffffff", "curve": "stepped" },
  1233. { "time": 0.6333, "color": "ffffffff" },
  1234. { "time": 1.0333, "color": "ffffff00" }
  1235. ]
  1236. },
  1237. "star2": {
  1238. "color": [
  1239. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1240. { "time": 0.6667, "color": "ffffff00" },
  1241. { "time": 0.8667, "color": "ffffffff", "curve": "stepped" },
  1242. { "time": 1.1667, "color": "ffffffff" },
  1243. { "time": 1.5, "color": "ffffff00" }
  1244. ]
  1245. },
  1246. "star3": {
  1247. "color": [
  1248. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1249. { "time": 0.4333, "color": "ffffff00" },
  1250. { "time": 0.7, "color": "ffffffff", "curve": "stepped" },
  1251. { "time": 0.9, "color": "ffffffff" },
  1252. { "time": 1.1667, "color": "ffffff00" }
  1253. ]
  1254. },
  1255. "star4": {
  1256. "color": [
  1257. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1258. { "time": 0.9667, "color": "ffffff00" },
  1259. { "time": 1.1, "color": "ffffffff", "curve": "stepped" },
  1260. { "time": 1.2667, "color": "ffffffff" },
  1261. { "time": 1.4333, "color": "ffffff00" }
  1262. ]
  1263. },
  1264. "youyan": {
  1265. "attachment": [
  1266. { "time": 1.5, "name": null },
  1267. { "time": 1.6333, "name": "youyan" }
  1268. ]
  1269. },
  1270. "zuoyan": {
  1271. "attachment": [
  1272. { "time": 1.5, "name": null },
  1273. { "time": 1.6333, "name": "zuoyan" }
  1274. ]
  1275. }
  1276. },
  1277. "bones": {
  1278. "root": {
  1279. "rotate": [
  1280. { "time": 0, "angle": 0 }
  1281. ],
  1282. "translate": [
  1283. { "time": 0, "x": 0, "y": 0 }
  1284. ],
  1285. "scale": [
  1286. { "time": 0, "x": 0.65, "y": 0.65 }
  1287. ]
  1288. },
  1289. "bone": {
  1290. "rotate": [
  1291. { "time": 0, "angle": 0, "curve": "stepped" },
  1292. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1293. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1294. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1295. { "time": 2.1667, "angle": 0 }
  1296. ],
  1297. "translate": [
  1298. { "time": 0, "x": 0, "y": 0 },
  1299. { "time": 0.3333, "x": 2.14, "y": -1.26, "curve": "stepped" },
  1300. { "time": 0.6667, "x": 2.14, "y": -1.26, "curve": "stepped" },
  1301. { "time": 1.1667, "x": 2.14, "y": -1.26, "curve": "stepped" },
  1302. { "time": 1.4667, "x": 2.14, "y": -1.26, "curve": "stepped" },
  1303. { "time": 1.8667, "x": 2.14, "y": -1.26 },
  1304. { "time": 2.1667, "x": 0, "y": 0 }
  1305. ]
  1306. },
  1307. "bone2": {
  1308. "rotate": [
  1309. { "time": 0, "angle": 0 },
  1310. { "time": 0.3333, "angle": -36.54, "curve": "stepped" },
  1311. { "time": 1.1667, "angle": -36.54, "curve": "stepped" },
  1312. { "time": 1.9333, "angle": -36.54 },
  1313. { "time": 2.1667, "angle": 0 }
  1314. ],
  1315. "translate": [
  1316. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1318. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1319. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1320. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1321. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1322. { "time": 2.1667, "x": 0, "y": 0 }
  1323. ],
  1324. "scale": [
  1325. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1326. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1327. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1328. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1329. { "time": 1.9333, "x": 1, "y": 1 }
  1330. ]
  1331. },
  1332. "bone3": {
  1333. "rotate": [
  1334. { "time": 0, "angle": 0 },
  1335. { "time": 0.3333, "angle": 71.84, "curve": "stepped" },
  1336. { "time": 1.1667, "angle": 71.84, "curve": "stepped" },
  1337. { "time": 1.9333, "angle": 71.84 },
  1338. { "time": 2.1667, "angle": 0 }
  1339. ],
  1340. "translate": [
  1341. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1342. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1343. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1344. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1345. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1346. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1347. { "time": 2.1667, "x": 0, "y": 0 }
  1348. ],
  1349. "scale": [
  1350. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1351. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1352. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1353. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1354. { "time": 1.9333, "x": 1, "y": 1 }
  1355. ]
  1356. },
  1357. "bone4": {
  1358. "rotate": [
  1359. { "time": 0, "angle": 0 },
  1360. { "time": 0.3333, "angle": 12.57, "curve": "stepped" },
  1361. { "time": 1.1667, "angle": 12.57, "curve": "stepped" },
  1362. { "time": 1.9333, "angle": 12.57 },
  1363. { "time": 2.1667, "angle": 0 }
  1364. ],
  1365. "translate": [
  1366. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1367. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1368. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1369. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1370. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1371. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1372. { "time": 2.1667, "x": 0, "y": 0 }
  1373. ],
  1374. "scale": [
  1375. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1376. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1377. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1378. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1379. { "time": 1.9333, "x": 1, "y": 1 }
  1380. ]
  1381. },
  1382. "bone5": {
  1383. "rotate": [
  1384. { "time": 0, "angle": 0 },
  1385. { "time": 0.1333, "angle": -0.43, "curve": "stepped" },
  1386. { "time": 2.0667, "angle": -0.43 },
  1387. { "time": 2.1667, "angle": 0 }
  1388. ],
  1389. "translate": [
  1390. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1391. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1392. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1393. { "time": 2.1667, "x": 0, "y": 0 }
  1394. ],
  1395. "scale": [
  1396. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1397. { "time": 2.0667, "x": 1, "y": 1 }
  1398. ]
  1399. },
  1400. "bone6": {
  1401. "rotate": [
  1402. { "time": 0, "angle": 0 },
  1403. { "time": 0.1333, "angle": 6.75, "curve": "stepped" },
  1404. { "time": 1.9333, "angle": 6.75, "curve": "stepped" },
  1405. { "time": 2.0667, "angle": 6.75 },
  1406. { "time": 2.1667, "angle": 0 }
  1407. ],
  1408. "translate": [
  1409. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1410. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1411. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1412. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1413. { "time": 2.1667, "x": 0, "y": 0 }
  1414. ],
  1415. "scale": [
  1416. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1417. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  1418. { "time": 2.0667, "x": 1, "y": 1 }
  1419. ]
  1420. },
  1421. "bone7": {
  1422. "rotate": [
  1423. { "time": 0, "angle": 0, "curve": "stepped" },
  1424. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1425. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1426. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  1427. { "time": 2.1667, "angle": 0 }
  1428. ],
  1429. "translate": [
  1430. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1431. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1432. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1433. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1434. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1435. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  1436. { "time": 2.1667, "x": 0, "y": 0 }
  1437. ],
  1438. "scale": [
  1439. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1440. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1441. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1442. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1443. { "time": 1.9333, "x": 1, "y": 1 }
  1444. ]
  1445. },
  1446. "bone8": {
  1447. "rotate": [
  1448. { "time": 0, "angle": 0, "curve": "stepped" },
  1449. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1450. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  1451. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1452. { "time": 2.1667, "angle": 0 }
  1453. ],
  1454. "translate": [
  1455. { "time": 0, "x": 0, "y": 0 },
  1456. { "time": 0.5333, "x": -0.05, "y": -0.91 },
  1457. { "time": 1.0333, "x": 0, "y": 0 },
  1458. { "time": 1.8667, "x": -0.05, "y": -0.91 },
  1459. { "time": 2.1667, "x": 0, "y": 0 }
  1460. ],
  1461. "scale": [
  1462. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1463. { "time": 0.1333, "x": 1, "y": 1 },
  1464. { "time": 0.5333, "x": 1.06, "y": 1 },
  1465. { "time": 1.0333, "x": 1, "y": 1 },
  1466. { "time": 1.5667, "x": 1.06, "y": 1 },
  1467. { "time": 2.1667, "x": 1, "y": 1 }
  1468. ]
  1469. },
  1470. "bone9": {
  1471. "rotate": [
  1472. { "time": 0, "angle": 0, "curve": "stepped" },
  1473. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1474. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1475. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1476. { "time": 2.1667, "angle": 0 }
  1477. ],
  1478. "translate": [
  1479. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1480. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1481. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1482. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1483. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1484. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1485. { "time": 2.1667, "x": 0, "y": 0 }
  1486. ],
  1487. "scale": [
  1488. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1489. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1490. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1491. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1492. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1493. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1494. { "time": 2.1667, "x": 1, "y": 1 }
  1495. ]
  1496. },
  1497. "bone10": {
  1498. "rotate": [
  1499. { "time": 0, "angle": 0 },
  1500. { "time": 0.4333, "angle": 5.26 },
  1501. { "time": 0.7667, "angle": -3.99 },
  1502. { "time": 1.1667, "angle": 0 },
  1503. { "time": 1.4667, "angle": -6.34 },
  1504. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1505. { "time": 2.1667, "angle": 0 }
  1506. ],
  1507. "translate": [
  1508. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1509. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1510. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1511. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1512. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1513. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1514. { "time": 2.1667, "x": 0, "y": 0 }
  1515. ],
  1516. "scale": [
  1517. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1518. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1519. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1520. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1521. { "time": 1.8667, "x": 1, "y": 1 }
  1522. ]
  1523. },
  1524. "bone11": {
  1525. "rotate": [
  1526. { "time": 0, "angle": 2.42 },
  1527. { "time": 0.4333, "angle": -15.5 },
  1528. { "time": 0.7667, "angle": -12.33 },
  1529. { "time": 1.1667, "angle": 2.42 },
  1530. { "time": 1.4667, "angle": -12.03 },
  1531. { "time": 1.8667, "angle": -6.11 },
  1532. { "time": 2.1667, "angle": 2.42 }
  1533. ],
  1534. "translate": [
  1535. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1536. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1537. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1538. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1539. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1540. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1541. { "time": 2.1667, "x": 0, "y": 0 }
  1542. ],
  1543. "scale": [
  1544. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1545. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1546. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1547. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1548. { "time": 1.8667, "x": 1, "y": 1 }
  1549. ]
  1550. },
  1551. "bone12": {
  1552. "rotate": [
  1553. { "time": 0, "angle": 2.42 },
  1554. { "time": 0.4333, "angle": 5.35 },
  1555. { "time": 0.7667, "angle": -4.47 },
  1556. { "time": 1.1667, "angle": 2.42 },
  1557. { "time": 1.4667, "angle": -4.47 },
  1558. { "time": 1.8667, "angle": -6.22 },
  1559. { "time": 2.1667, "angle": 2.42 }
  1560. ],
  1561. "translate": [
  1562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1564. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1565. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1566. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1567. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1568. { "time": 2.1667, "x": 0, "y": 0 }
  1569. ],
  1570. "scale": [
  1571. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1572. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 1.8667, "x": 1, "y": 1 }
  1576. ]
  1577. },
  1578. "bone13": {
  1579. "rotate": [
  1580. { "time": 0, "angle": 0, "curve": "stepped" },
  1581. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1582. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1583. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1584. { "time": 2.1667, "angle": 0 }
  1585. ],
  1586. "translate": [
  1587. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1588. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1589. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1590. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1591. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1592. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1593. { "time": 2.1667, "x": 0, "y": 0 }
  1594. ],
  1595. "scale": [
  1596. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1597. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1598. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1599. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1600. { "time": 1.8667, "x": 1, "y": 1 }
  1601. ]
  1602. },
  1603. "bone14": {
  1604. "rotate": [
  1605. { "time": 0, "angle": 0, "curve": "stepped" },
  1606. { "time": 0.4333, "angle": 0 },
  1607. { "time": 0.7667, "angle": 9.51 },
  1608. { "time": 1.1667, "angle": 0 },
  1609. { "time": 1.4667, "angle": 9.51 },
  1610. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1611. { "time": 2.1667, "angle": 0 }
  1612. ],
  1613. "translate": [
  1614. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1616. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1617. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1618. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1619. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1620. { "time": 2.1667, "x": 0, "y": 0 }
  1621. ],
  1622. "scale": [
  1623. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1624. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1625. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1626. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1627. { "time": 1.8667, "x": 1, "y": 1 }
  1628. ]
  1629. },
  1630. "bone15": {
  1631. "rotate": [
  1632. { "time": 0, "angle": 0, "curve": "stepped" },
  1633. { "time": 0.4333, "angle": 0 },
  1634. { "time": 0.7667, "angle": 16.3 },
  1635. { "time": 1.1667, "angle": 0 },
  1636. { "time": 1.4667, "angle": 16.3 },
  1637. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1638. { "time": 2.1667, "angle": 0 }
  1639. ],
  1640. "translate": [
  1641. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1642. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1643. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1644. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1645. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1646. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1647. { "time": 2.1667, "x": 0, "y": 0 }
  1648. ],
  1649. "scale": [
  1650. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1651. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1652. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1653. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1654. { "time": 1.8667, "x": 1, "y": 1 }
  1655. ]
  1656. },
  1657. "bone16": {
  1658. "rotate": [
  1659. { "time": 0, "angle": 15.96 },
  1660. { "time": 0.2, "angle": -5.27 },
  1661. { "time": 0.4333, "angle": -31.61, "curve": "stepped" },
  1662. { "time": 1.8667, "angle": -31.61 },
  1663. { "time": 2.1667, "angle": 15.96 }
  1664. ],
  1665. "translate": [
  1666. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1667. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 2.1667, "x": 0, "y": 0 }
  1673. ],
  1674. "scale": [
  1675. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 1.8667, "x": 1, "y": 1 }
  1680. ]
  1681. },
  1682. "bone17": {
  1683. "rotate": [
  1684. { "time": 0, "angle": 0 },
  1685. { "time": 0.2, "angle": -41.62 },
  1686. { "time": 0.4333, "angle": -65.54, "curve": "stepped" },
  1687. { "time": 1.8667, "angle": -65.54 },
  1688. { "time": 2.1667, "angle": 0 }
  1689. ],
  1690. "translate": [
  1691. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1692. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1693. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1694. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1695. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1696. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1697. { "time": 2.1667, "x": 0, "y": 0 }
  1698. ],
  1699. "scale": [
  1700. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1703. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1704. { "time": 1.8667, "x": 1, "y": 1 }
  1705. ]
  1706. },
  1707. "bone18": {
  1708. "rotate": [
  1709. { "time": 0, "angle": 0 },
  1710. { "time": 0.2, "angle": -3.21 },
  1711. { "time": 0.4333, "angle": -7.07, "curve": "stepped" },
  1712. { "time": 1.8667, "angle": -7.07 },
  1713. { "time": 2.1667, "angle": 0 }
  1714. ],
  1715. "translate": [
  1716. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1717. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1720. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1721. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1722. { "time": 2.1667, "x": 0, "y": 0 }
  1723. ],
  1724. "scale": [
  1725. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1727. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1729. { "time": 1.8667, "x": 1, "y": 1 }
  1730. ]
  1731. },
  1732. "bone19": {
  1733. "rotate": [
  1734. { "time": 0, "angle": -15.4 },
  1735. { "time": 0.4333, "angle": 6.97, "curve": "stepped" },
  1736. { "time": 1.1667, "angle": 6.97, "curve": "stepped" },
  1737. { "time": 1.8667, "angle": 6.97 },
  1738. { "time": 2.1667, "angle": -15.4 }
  1739. ],
  1740. "translate": [
  1741. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1742. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1743. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1744. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1745. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1746. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1747. { "time": 2.1667, "x": 0, "y": 0 }
  1748. ],
  1749. "scale": [
  1750. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1751. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1752. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1753. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1754. { "time": 1.8667, "x": 1, "y": 1 }
  1755. ]
  1756. },
  1757. "bone20": {
  1758. "rotate": [
  1759. { "time": 0, "angle": 0 },
  1760. { "time": 0.4333, "angle": -50.64, "curve": "stepped" },
  1761. { "time": 1.1667, "angle": -50.64, "curve": "stepped" },
  1762. { "time": 1.8667, "angle": -50.64 },
  1763. { "time": 2.1667, "angle": 0 }
  1764. ],
  1765. "translate": [
  1766. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1767. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1768. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1769. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1770. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1771. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1772. { "time": 2.1667, "x": 0, "y": 0 }
  1773. ],
  1774. "scale": [
  1775. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1776. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1777. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1778. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1779. { "time": 1.8667, "x": 1, "y": 1 }
  1780. ]
  1781. },
  1782. "bone21": {
  1783. "rotate": [
  1784. { "time": 0, "angle": 0, "curve": "stepped" },
  1785. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1786. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1787. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1788. { "time": 2.1667, "angle": 0 }
  1789. ],
  1790. "translate": [
  1791. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1792. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1793. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1794. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1795. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1796. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1797. { "time": 2.1667, "x": 0, "y": 0 }
  1798. ],
  1799. "scale": [
  1800. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1801. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1802. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1803. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1804. { "time": 1.8667, "x": 1, "y": 1 }
  1805. ]
  1806. },
  1807. "bone22": {
  1808. "rotate": [
  1809. { "time": 0, "angle": 0 },
  1810. { "time": 0.4333, "angle": 8.23, "curve": "stepped" },
  1811. { "time": 1.8667, "angle": 8.23 },
  1812. { "time": 2.1667, "angle": 0 }
  1813. ],
  1814. "translate": [
  1815. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1816. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 1.8667, "x": 0, "y": 0 }
  1818. ],
  1819. "scale": [
  1820. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1821. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 2.1667, "x": 1, "y": 1 }
  1825. ]
  1826. },
  1827. "bone23": {
  1828. "rotate": [
  1829. { "time": 0, "angle": 0, "curve": "stepped" },
  1830. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1831. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1832. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1833. { "time": 2.1667, "angle": 0 }
  1834. ],
  1835. "translate": [
  1836. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1837. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1838. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1839. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1840. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1841. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1842. { "time": 2.1667, "x": 0, "y": 0 }
  1843. ],
  1844. "scale": [
  1845. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1846. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1847. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1848. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1849. { "time": 1.8667, "x": 1, "y": 1 }
  1850. ]
  1851. },
  1852. "bone24": {
  1853. "rotate": [
  1854. { "time": 0, "angle": 0 }
  1855. ],
  1856. "translate": [
  1857. { "time": 0, "x": 0, "y": 0 }
  1858. ],
  1859. "scale": [
  1860. { "time": 0, "x": 1, "y": 1 },
  1861. { "time": 0.1667, "x": 1.068, "y": 1 },
  1862. { "time": 0.5333, "x": 1, "y": 1 },
  1863. { "time": 1.0333, "x": 1.068, "y": 1 },
  1864. { "time": 1.5667, "x": 1, "y": 1 },
  1865. { "time": 2, "x": 1.068, "y": 1 },
  1866. { "time": 2.1667, "x": 1, "y": 1 }
  1867. ]
  1868. },
  1869. "bone25": {
  1870. "rotate": [
  1871. { "time": 0, "angle": 0, "curve": "stepped" },
  1872. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1873. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1874. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1875. { "time": 2.1667, "angle": 0 }
  1876. ],
  1877. "translate": [
  1878. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1879. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1880. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1881. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1882. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1883. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1884. { "time": 2.1667, "x": 0, "y": 0 }
  1885. ],
  1886. "scale": [
  1887. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1888. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1890. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1891. { "time": 1.8667, "x": 1, "y": 1 }
  1892. ]
  1893. },
  1894. "bone26": {
  1895. "rotate": [
  1896. { "time": 0, "angle": 0 },
  1897. { "time": 0.5333, "angle": -11.54 },
  1898. { "time": 1, "angle": 0 },
  1899. { "time": 1.5667, "angle": -11.54 },
  1900. { "time": 2.1667, "angle": 0 }
  1901. ],
  1902. "translate": [
  1903. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1904. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1905. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1906. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1907. { "time": 2.1667, "x": 0, "y": 0 }
  1908. ],
  1909. "scale": [
  1910. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1911. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1912. { "time": 1.5667, "x": 1, "y": 1 }
  1913. ]
  1914. },
  1915. "bone27": {
  1916. "rotate": [
  1917. { "time": 0, "angle": 0 },
  1918. { "time": 0.5333, "angle": -15.43 },
  1919. { "time": 1, "angle": 0 },
  1920. { "time": 1.5667, "angle": -15.43 },
  1921. { "time": 2.1667, "angle": 0 }
  1922. ],
  1923. "translate": [
  1924. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1925. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1926. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1927. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1928. { "time": 2.1667, "x": 0, "y": 0 }
  1929. ],
  1930. "scale": [
  1931. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1932. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1933. { "time": 1.5667, "x": 1, "y": 1 }
  1934. ]
  1935. },
  1936. "bone28": {
  1937. "rotate": [
  1938. { "time": 0, "angle": 0 },
  1939. { "time": 0.5333, "angle": -11.95 },
  1940. { "time": 1, "angle": 0 },
  1941. { "time": 1.5667, "angle": -11.95 },
  1942. { "time": 2.1667, "angle": 0 }
  1943. ],
  1944. "translate": [
  1945. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1946. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1947. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1948. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1949. { "time": 2.1667, "x": 0, "y": 0 }
  1950. ],
  1951. "scale": [
  1952. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1953. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1954. { "time": 1.5667, "x": 1, "y": 1 }
  1955. ]
  1956. },
  1957. "bone29": {
  1958. "rotate": [
  1959. { "time": 0, "angle": 0, "curve": "stepped" },
  1960. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1961. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1962. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1963. { "time": 2.1667, "angle": 0 }
  1964. ],
  1965. "translate": [
  1966. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1967. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1968. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1969. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1970. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  1971. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1972. { "time": 2.1667, "x": 0, "y": 0 }
  1973. ],
  1974. "scale": [
  1975. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1976. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1977. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1978. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  1979. { "time": 1.8667, "x": 1, "y": 1 }
  1980. ]
  1981. },
  1982. "bone30": {
  1983. "rotate": [
  1984. { "time": 0, "angle": 0 },
  1985. { "time": 0.5333, "angle": -12.87 },
  1986. { "time": 1, "angle": 0 },
  1987. { "time": 1.5667, "angle": -12.87 },
  1988. { "time": 2.1667, "angle": 0 }
  1989. ],
  1990. "translate": [
  1991. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1995. { "time": 2.1667, "x": 0, "y": 0 }
  1996. ],
  1997. "scale": [
  1998. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  1999. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2000. { "time": 1.5667, "x": 1, "y": 1 }
  2001. ]
  2002. },
  2003. "bone31": {
  2004. "rotate": [
  2005. { "time": 0, "angle": 0 },
  2006. { "time": 0.5333, "angle": -8.17 },
  2007. { "time": 1, "angle": 0 },
  2008. { "time": 1.5667, "angle": -8.17 },
  2009. { "time": 2.1667, "angle": 0 }
  2010. ],
  2011. "translate": [
  2012. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2013. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2014. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2015. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2016. { "time": 2.1667, "x": 0, "y": 0 }
  2017. ],
  2018. "scale": [
  2019. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 1.5667, "x": 1, "y": 1 }
  2022. ]
  2023. },
  2024. "bone32": {
  2025. "rotate": [
  2026. { "time": 0, "angle": 0 },
  2027. { "time": 0.5333, "angle": -10.36 },
  2028. { "time": 1, "angle": 0 },
  2029. { "time": 1.5667, "angle": -10.36 },
  2030. { "time": 2.1667, "angle": 0 }
  2031. ],
  2032. "translate": [
  2033. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2034. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2035. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2036. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2037. { "time": 2.1667, "x": 0, "y": 0 }
  2038. ],
  2039. "scale": [
  2040. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2041. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2042. { "time": 1.5667, "x": 1, "y": 1 }
  2043. ]
  2044. },
  2045. "bone33": {
  2046. "rotate": [
  2047. { "time": 0, "angle": 0, "curve": "stepped" },
  2048. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2049. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2050. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2051. { "time": 2.1667, "angle": 0 }
  2052. ],
  2053. "translate": [
  2054. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2055. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2056. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2057. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2058. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2059. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2060. { "time": 2.1667, "x": 0, "y": 0 }
  2061. ],
  2062. "scale": [
  2063. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2064. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2065. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2066. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2067. { "time": 1.8667, "x": 1, "y": 1 }
  2068. ]
  2069. },
  2070. "bone34": {
  2071. "rotate": [
  2072. { "time": 0, "angle": 0 },
  2073. { "time": 0.5333, "angle": 4.73 },
  2074. { "time": 1, "angle": 0 },
  2075. { "time": 1.5667, "angle": 4.73 },
  2076. { "time": 2.1667, "angle": 0 }
  2077. ],
  2078. "translate": [
  2079. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2080. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2081. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2082. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2083. { "time": 2.1667, "x": 0, "y": 0 }
  2084. ],
  2085. "scale": [
  2086. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2087. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2088. { "time": 1.5667, "x": 1, "y": 1 }
  2089. ]
  2090. },
  2091. "bone35": {
  2092. "rotate": [
  2093. { "time": 0, "angle": 0 },
  2094. { "time": 0.5333, "angle": 4.29 },
  2095. { "time": 1, "angle": 0 },
  2096. { "time": 1.5667, "angle": 4.29 },
  2097. { "time": 2.1667, "angle": 0 }
  2098. ],
  2099. "translate": [
  2100. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2103. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2104. { "time": 2.1667, "x": 0, "y": 0 }
  2105. ],
  2106. "scale": [
  2107. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2108. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2109. { "time": 1.5667, "x": 1, "y": 1 }
  2110. ]
  2111. },
  2112. "bone36": {
  2113. "rotate": [
  2114. { "time": 0, "angle": 0, "curve": "stepped" },
  2115. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2116. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2117. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2118. { "time": 2.1667, "angle": 0 }
  2119. ],
  2120. "translate": [
  2121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2122. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2123. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2124. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2125. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2126. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2127. { "time": 2.1667, "x": 0, "y": 0 }
  2128. ],
  2129. "scale": [
  2130. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2131. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2132. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2133. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2134. { "time": 1.8667, "x": 1, "y": 1 }
  2135. ]
  2136. },
  2137. "bone37": {
  2138. "rotate": [
  2139. { "time": 0, "angle": 0, "curve": "stepped" },
  2140. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2141. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2142. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2143. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2144. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2145. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2146. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2147. { "time": 2.1667, "angle": 0 }
  2148. ],
  2149. "translate": [
  2150. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2151. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2152. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2153. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2154. { "time": 1.3667, "x": 0, "y": 0 },
  2155. { "time": 1.5, "x": -1.52, "y": -0.05, "curve": "stepped" },
  2156. { "time": 1.6, "x": -1.52, "y": -0.05 },
  2157. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2158. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2159. { "time": 2.1667, "x": 0, "y": 0 }
  2160. ],
  2161. "scale": [
  2162. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2163. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2164. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2165. { "time": 1.3667, "x": 1, "y": 1 },
  2166. { "time": 1.5, "x": 0.49, "y": 1, "curve": "stepped" },
  2167. { "time": 1.6, "x": 0.49, "y": 1 },
  2168. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2169. { "time": 1.8667, "x": 1, "y": 1 }
  2170. ]
  2171. },
  2172. "bone38": {
  2173. "rotate": [
  2174. { "time": 0, "angle": 0, "curve": "stepped" },
  2175. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2176. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2177. { "time": 1.3667, "angle": 0, "curve": "stepped" },
  2178. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2179. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2180. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2181. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2182. { "time": 2.1667, "angle": 0 }
  2183. ],
  2184. "translate": [
  2185. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2186. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2187. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2188. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2189. { "time": 1.3667, "x": 0, "y": 0 },
  2190. { "time": 1.5, "x": -1.27, "y": 0.06, "curve": "stepped" },
  2191. { "time": 1.6, "x": -1.27, "y": 0.06 },
  2192. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2193. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2194. { "time": 2.1667, "x": 0, "y": 0 }
  2195. ],
  2196. "scale": [
  2197. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2198. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2199. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2200. { "time": 1.3667, "x": 1, "y": 1 },
  2201. { "time": 1.5, "x": 0.431, "y": 1, "curve": "stepped" },
  2202. { "time": 1.6, "x": 0.431, "y": 1 },
  2203. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2204. { "time": 1.8667, "x": 1, "y": 1 }
  2205. ]
  2206. },
  2207. "bone39": {
  2208. "rotate": [
  2209. { "time": 0, "angle": 0, "curve": "stepped" },
  2210. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2211. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2212. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  2213. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2214. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2215. { "time": 2.1667, "angle": 0 }
  2216. ],
  2217. "translate": [
  2218. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2219. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2220. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2221. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2222. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2223. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2224. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2225. { "time": 2.1667, "x": 0, "y": 0 }
  2226. ],
  2227. "scale": [
  2228. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2229. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2230. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2231. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2232. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2233. { "time": 1.8667, "x": 1, "y": 1 }
  2234. ]
  2235. },
  2236. "bone40": {
  2237. "rotate": [
  2238. { "time": 0, "angle": 0, "curve": "stepped" },
  2239. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2240. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2241. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2242. { "time": 2.1667, "angle": 0 }
  2243. ],
  2244. "translate": [
  2245. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2248. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2249. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2250. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2251. { "time": 2.1667, "x": 0, "y": 0 }
  2252. ],
  2253. "scale": [
  2254. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 1.8667, "x": 1, "y": 1 }
  2259. ]
  2260. },
  2261. "bone41": {
  2262. "rotate": [
  2263. { "time": 0, "angle": 0, "curve": "stepped" },
  2264. { "time": 0.4333, "angle": 0 },
  2265. { "time": 0.7667, "angle": 11.32 },
  2266. { "time": 1.1667, "angle": 0 },
  2267. { "time": 1.4667, "angle": 11.32 },
  2268. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2269. { "time": 2.1667, "angle": 0 }
  2270. ],
  2271. "translate": [
  2272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2276. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2277. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2278. { "time": 2.1667, "x": 0, "y": 0 }
  2279. ],
  2280. "scale": [
  2281. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2285. { "time": 1.8667, "x": 1, "y": 1 }
  2286. ]
  2287. },
  2288. "bone42": {
  2289. "rotate": [
  2290. { "time": 0, "angle": 0, "curve": "stepped" },
  2291. { "time": 0.4333, "angle": 0 },
  2292. { "time": 0.7667, "angle": 8.36 },
  2293. { "time": 1.1667, "angle": 0 },
  2294. { "time": 1.4667, "angle": 8.36 },
  2295. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2296. { "time": 2.1667, "angle": 0 }
  2297. ],
  2298. "translate": [
  2299. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2300. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2301. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2302. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2304. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2305. { "time": 2.1667, "x": 0, "y": 0 }
  2306. ],
  2307. "scale": [
  2308. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2309. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2310. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2311. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2312. { "time": 1.8667, "x": 1, "y": 1 }
  2313. ]
  2314. },
  2315. "bone43": {
  2316. "rotate": [
  2317. { "time": 0, "angle": 0, "curve": "stepped" },
  2318. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2319. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2320. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2321. { "time": 2.1667, "angle": 0 }
  2322. ],
  2323. "translate": [
  2324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2325. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2326. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2327. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2330. { "time": 2.1667, "x": 0, "y": 0 }
  2331. ],
  2332. "scale": [
  2333. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2336. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2337. { "time": 1.8667, "x": 1, "y": 1 }
  2338. ]
  2339. },
  2340. "bone44": {
  2341. "rotate": [
  2342. { "time": 0, "angle": 0, "curve": "stepped" },
  2343. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2344. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2345. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2346. { "time": 2.1667, "angle": 0 }
  2347. ],
  2348. "translate": [
  2349. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2350. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2351. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2352. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2353. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2354. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2355. { "time": 2.1667, "x": 0, "y": 0 }
  2356. ],
  2357. "scale": [
  2358. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2359. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2360. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2361. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2362. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2363. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2364. { "time": 2.1667, "x": 1, "y": 1 }
  2365. ]
  2366. },
  2367. "bone45": {
  2368. "rotate": [
  2369. { "time": 0, "angle": 0, "curve": "stepped" },
  2370. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2371. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2372. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2373. { "time": 2.1667, "angle": 0 }
  2374. ],
  2375. "translate": [
  2376. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2379. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2380. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2381. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2382. { "time": 2.1667, "x": 0, "y": 0 }
  2383. ],
  2384. "scale": [
  2385. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2386. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 1.8667, "x": 1, "y": 1 }
  2390. ]
  2391. },
  2392. "bone46": {
  2393. "rotate": [
  2394. { "time": 0, "angle": 0, "curve": "stepped" },
  2395. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2396. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2397. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2398. { "time": 2.1667, "angle": 0 }
  2399. ],
  2400. "translate": [
  2401. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2402. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2403. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2404. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2405. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2406. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2407. { "time": 2.1667, "x": 0, "y": 0 }
  2408. ],
  2409. "scale": [
  2410. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2411. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2412. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2413. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2414. { "time": 1.8667, "x": 1, "y": 1 }
  2415. ]
  2416. },
  2417. "bone47": {
  2418. "rotate": [
  2419. { "time": 0, "angle": 0, "curve": "stepped" },
  2420. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2421. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2422. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2423. { "time": 2.1667, "angle": 0 }
  2424. ],
  2425. "translate": [
  2426. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2427. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2428. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2429. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2430. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  2431. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2432. { "time": 2.1667, "x": 0, "y": 0 }
  2433. ],
  2434. "scale": [
  2435. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2436. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2437. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 1.8667, "x": 1, "y": 1 }
  2441. ]
  2442. },
  2443. "bone48": {
  2444. "rotate": [
  2445. { "time": 0, "angle": 0, "curve": "stepped" },
  2446. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2447. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  2448. { "time": 1.0333, "angle": 0 }
  2449. ],
  2450. "translate": [
  2451. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2452. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2453. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  2454. { "time": 1.0333, "x": 0, "y": 0 }
  2455. ],
  2456. "scale": [
  2457. { "time": 0, "x": 0, "y": 0 },
  2458. { "time": 0.3, "x": 0.7, "y": 0.7 },
  2459. { "time": 0.6333, "x": 0.4, "y": 0.4 },
  2460. { "time": 1.0333, "x": 0, "y": 0 }
  2461. ]
  2462. },
  2463. "bone49": {
  2464. "rotate": [
  2465. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2466. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  2467. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2468. { "time": 1.5, "angle": 0 }
  2469. ],
  2470. "translate": [
  2471. { "time": 0, "x": 97.77, "y": -21.12 }
  2472. ],
  2473. "scale": [
  2474. { "time": 0.6667, "x": 0, "y": 0 },
  2475. { "time": 0.8667, "x": 0.7, "y": 0.7 },
  2476. { "time": 1.1667, "x": 0.4, "y": 0.4 },
  2477. { "time": 1.5, "x": 0, "y": 0 }
  2478. ]
  2479. },
  2480. "bone50": {
  2481. "rotate": [
  2482. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  2483. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2484. { "time": 0.9, "angle": 0, "curve": "stepped" },
  2485. { "time": 1.1667, "angle": 0 }
  2486. ],
  2487. "translate": [
  2488. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2489. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2490. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  2491. { "time": 1.1667, "x": 0, "y": 0 }
  2492. ],
  2493. "scale": [
  2494. { "time": 0.4333, "x": 0, "y": 0 },
  2495. { "time": 0.7, "x": 0.7, "y": 0.7 },
  2496. { "time": 0.9, "x": 0.4, "y": 0.4 },
  2497. { "time": 1.1667, "x": 0, "y": 0 }
  2498. ]
  2499. },
  2500. "bone51": {
  2501. "rotate": [
  2502. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2503. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  2504. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2505. { "time": 2.1667, "angle": 0 }
  2506. ],
  2507. "translate": [
  2508. { "time": 0, "x": 12.73, "y": -27.03 }
  2509. ],
  2510. "scale": [
  2511. { "time": 0.9667, "x": 0, "y": 0 },
  2512. { "time": 1.1, "x": 0.7, "y": 0.7 },
  2513. { "time": 1.2667, "x": 0.4, "y": 0.4 },
  2514. { "time": 1.4333, "x": 0, "y": 0 }
  2515. ]
  2516. }
  2517. },
  2518. "deform": {
  2519. "default": {
  2520. "houmiantoufa": {
  2521. "houmiantoufa": [
  2522. {
  2523. "time": 0,
  2524. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  2525. "curve": "stepped"
  2526. },
  2527. {
  2528. "time": 0.4333,
  2529. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  2530. "curve": "stepped"
  2531. },
  2532. {
  2533. "time": 1.1667,
  2534. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  2535. "curve": "stepped"
  2536. },
  2537. {
  2538. "time": 1.8667,
  2539. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  2540. "curve": "stepped"
  2541. },
  2542. {
  2543. "time": 2.1667,
  2544. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  2545. }
  2546. ]
  2547. }
  2548. }
  2549. }
  2550. },
  2551. "walk1": {
  2552. "slots": {
  2553. "biyan": {
  2554. "attachment": [
  2555. { "time": 0, "name": null },
  2556. { "time": 1, "name": null }
  2557. ]
  2558. },
  2559. "maozi2": {
  2560. "attachment": [
  2561. { "time": 0, "name": null }
  2562. ]
  2563. },
  2564. "star": {
  2565. "color": [
  2566. { "time": 0, "color": "ffffff00" }
  2567. ]
  2568. },
  2569. "star2": {
  2570. "color": [
  2571. { "time": 0, "color": "ffffff00" }
  2572. ]
  2573. },
  2574. "star3": {
  2575. "color": [
  2576. { "time": 0, "color": "ffffff00" }
  2577. ]
  2578. },
  2579. "star4": {
  2580. "color": [
  2581. { "time": 0, "color": "ffffff00" }
  2582. ]
  2583. }
  2584. },
  2585. "bones": {
  2586. "root": {
  2587. "rotate": [
  2588. { "time": 0, "angle": 0 }
  2589. ],
  2590. "translate": [
  2591. { "time": 0, "x": 0, "y": 0 }
  2592. ],
  2593. "scale": [
  2594. { "time": 0, "x": 0.65, "y": 0.65 }
  2595. ]
  2596. },
  2597. "bone": {
  2598. "rotate": [
  2599. { "time": 0, "angle": 0, "curve": "stepped" },
  2600. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2601. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2602. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2603. { "time": 1, "angle": 0 }
  2604. ],
  2605. "translate": [
  2606. { "time": 0, "x": 0, "y": 3.13 },
  2607. { "time": 0.1667, "x": 0, "y": 1.1 },
  2608. { "time": 0.5, "x": 0, "y": 3.13 },
  2609. { "time": 0.6667, "x": 0, "y": 1.1 },
  2610. { "time": 1, "x": 0, "y": 3.13 }
  2611. ],
  2612. "scale": [
  2613. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2614. { "time": 1, "x": 1, "y": 1 }
  2615. ]
  2616. },
  2617. "bone2": {
  2618. "rotate": [
  2619. { "time": 0, "angle": -8.69 },
  2620. { "time": 0.1667, "angle": 1.52 },
  2621. { "time": 0.3333, "angle": 11.72 },
  2622. { "time": 0.5, "angle": 15.59 },
  2623. { "time": 0.6667, "angle": 7.5 },
  2624. { "time": 0.8333, "angle": -0.59 },
  2625. { "time": 1, "angle": -8.69 }
  2626. ],
  2627. "translate": [
  2628. { "time": 0, "x": 0, "y": 0 },
  2629. { "time": 0.1667, "x": 4.86, "y": 1.24 },
  2630. { "time": 0.3333, "x": 9.72, "y": 2.49 },
  2631. { "time": 0.5, "x": 14.59, "y": 3.73 },
  2632. { "time": 0.6667, "x": 3.34, "y": 1.82 },
  2633. { "time": 0.8333, "x": 1.67, "y": 0.91 },
  2634. { "time": 1, "x": 0, "y": 0 }
  2635. ],
  2636. "scale": [
  2637. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2638. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2639. { "time": 1, "x": 1, "y": 1 }
  2640. ]
  2641. },
  2642. "bone3": {
  2643. "rotate": [
  2644. { "time": 0, "angle": 0 },
  2645. { "time": 0.1667, "angle": 4.35 },
  2646. { "time": 0.3333, "angle": 8.69 },
  2647. { "time": 0.5, "angle": 21.87 },
  2648. { "time": 0.6667, "angle": 52.67 },
  2649. { "time": 0.8333, "angle": 37.41 },
  2650. { "time": 1, "angle": 0 }
  2651. ],
  2652. "translate": [
  2653. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2654. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2655. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2656. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2657. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2658. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2659. { "time": 1, "x": 0, "y": 0 }
  2660. ],
  2661. "scale": [
  2662. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2663. { "time": 1, "x": 1, "y": 1 }
  2664. ]
  2665. },
  2666. "bone4": {
  2667. "rotate": [
  2668. { "time": 0, "angle": 0 },
  2669. { "time": 0.1667, "angle": -8.17 },
  2670. { "time": 0.3333, "angle": -16.35 },
  2671. { "time": 0.5, "angle": 0 },
  2672. { "time": 0.6667, "angle": -6.15 },
  2673. { "time": 0.8333, "angle": -16.29 },
  2674. { "time": 1, "angle": 0 }
  2675. ],
  2676. "translate": [
  2677. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2678. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2679. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2680. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2681. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2682. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2683. { "time": 1, "x": 0, "y": 0 }
  2684. ],
  2685. "scale": [
  2686. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2687. { "time": 1, "x": 1, "y": 1 }
  2688. ]
  2689. },
  2690. "bone5": {
  2691. "rotate": [
  2692. { "time": 0, "angle": 17.71 },
  2693. { "time": 0.1667, "angle": -5.19 },
  2694. { "time": 0.3333, "angle": -21.78 },
  2695. { "time": 0.5, "angle": -24.21 },
  2696. { "time": 0.6667, "angle": -10.24 },
  2697. { "time": 0.8333, "angle": 3.74 },
  2698. { "time": 1, "angle": 17.71 }
  2699. ],
  2700. "translate": [
  2701. { "time": 0, "x": 0, "y": 0 },
  2702. { "time": 0.1667, "x": -8.45, "y": 1.02 },
  2703. { "time": 0.3333, "x": -10.25, "y": 0.56 },
  2704. { "time": 0.5, "x": -12.05, "y": 0.1 },
  2705. { "time": 0.6667, "x": -8.03, "y": 0.06 },
  2706. { "time": 0.8333, "x": -4.02, "y": 0.03 },
  2707. { "time": 1, "x": 0, "y": 0 }
  2708. ],
  2709. "scale": [
  2710. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 1, "x": 1, "y": 1 }
  2712. ]
  2713. },
  2714. "bone6": {
  2715. "rotate": [
  2716. { "time": 0, "angle": 15.82 },
  2717. { "time": 0.1667, "angle": 63.38 },
  2718. { "time": 0.3333, "angle": 40.64 },
  2719. { "time": 0.5, "angle": 6.8 },
  2720. { "time": 0.6667, "angle": 3.84 },
  2721. { "time": 0.8333, "angle": 5.46 },
  2722. { "time": 1, "angle": 15.82 }
  2723. ],
  2724. "translate": [
  2725. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2726. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2727. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2728. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2729. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2730. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2731. { "time": 1, "x": 0, "y": 0 }
  2732. ],
  2733. "scale": [
  2734. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2735. { "time": 1, "x": 1, "y": 1 }
  2736. ]
  2737. },
  2738. "bone7": {
  2739. "rotate": [
  2740. { "time": 0, "angle": 0 },
  2741. { "time": 0.1667, "angle": 4.29 },
  2742. { "time": 0.3333, "angle": 8.59 },
  2743. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2744. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2745. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2746. { "time": 1, "angle": 0 }
  2747. ],
  2748. "translate": [
  2749. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2750. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2751. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2752. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2753. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2754. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2755. { "time": 1, "x": 0, "y": 0 }
  2756. ],
  2757. "scale": [
  2758. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2759. { "time": 1, "x": 1, "y": 1 }
  2760. ]
  2761. },
  2762. "bone8": {
  2763. "rotate": [
  2764. { "time": 0, "angle": 0, "curve": "stepped" },
  2765. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2766. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2767. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2768. { "time": 1, "angle": 0 }
  2769. ],
  2770. "translate": [
  2771. { "time": 0, "x": 0.07, "y": 1.31 },
  2772. { "time": 0.1667, "x": -0.04, "y": -0.77 },
  2773. { "time": 0.5, "x": 0.07, "y": 1.31 },
  2774. { "time": 0.6667, "x": -0.04, "y": -0.77 },
  2775. { "time": 1, "x": 0.07, "y": 1.31 }
  2776. ],
  2777. "scale": [
  2778. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2779. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2780. { "time": 1, "x": 1, "y": 1 }
  2781. ]
  2782. },
  2783. "bone9": {
  2784. "rotate": [
  2785. { "time": 0, "angle": 0, "curve": "stepped" },
  2786. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2787. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2788. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2789. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2790. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2791. { "time": 1, "angle": 0 }
  2792. ],
  2793. "translate": [
  2794. { "time": 0, "x": 0.05, "y": 1.62 },
  2795. { "time": 0.1667, "x": 0, "y": 0 },
  2796. { "time": 0.5, "x": 0.05, "y": 1.62 },
  2797. { "time": 0.6667, "x": 0, "y": 0 },
  2798. { "time": 1, "x": 0.05, "y": 1.62 }
  2799. ],
  2800. "scale": [
  2801. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2802. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2803. { "time": 1, "x": 1, "y": 1 }
  2804. ]
  2805. },
  2806. "bone10": {
  2807. "rotate": [
  2808. { "time": 0, "angle": 4.63 },
  2809. { "time": 0.1667, "angle": 1.35 },
  2810. { "time": 0.5, "angle": 4.63 },
  2811. { "time": 0.6667, "angle": 0.67 },
  2812. { "time": 1, "angle": 4.63 }
  2813. ],
  2814. "translate": [
  2815. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2816. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2817. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2818. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2819. { "time": 1, "x": 0, "y": 0 }
  2820. ],
  2821. "scale": [
  2822. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2823. { "time": 1, "x": 1, "y": 1 }
  2824. ]
  2825. },
  2826. "bone11": {
  2827. "rotate": [
  2828. { "time": 0, "angle": 1.27 },
  2829. { "time": 0.1667, "angle": 0.4 },
  2830. { "time": 0.3333, "angle": -0.48 },
  2831. { "time": 0.5, "angle": -1.35 },
  2832. { "time": 0.6667, "angle": -0.48 },
  2833. { "time": 0.8333, "angle": 0.4 },
  2834. { "time": 1, "angle": 1.27 }
  2835. ],
  2836. "translate": [
  2837. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2838. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2839. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2840. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2841. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2842. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2843. { "time": 1, "x": 0, "y": 0 }
  2844. ],
  2845. "scale": [
  2846. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2847. { "time": 1, "x": 1, "y": 1 }
  2848. ]
  2849. },
  2850. "bone12": {
  2851. "rotate": [
  2852. { "time": 0, "angle": -9.86 },
  2853. { "time": 0.1667, "angle": -9 },
  2854. { "time": 0.3333, "angle": -8.15 },
  2855. { "time": 0.5, "angle": -7.3 },
  2856. { "time": 0.6667, "angle": -8.15 },
  2857. { "time": 0.8333, "angle": -9 },
  2858. { "time": 1, "angle": -9.86 }
  2859. ],
  2860. "translate": [
  2861. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2862. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2863. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2864. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2865. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2866. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2867. { "time": 1, "x": 0, "y": 0 }
  2868. ],
  2869. "scale": [
  2870. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 1, "x": 1, "y": 1 }
  2872. ]
  2873. },
  2874. "bone13": {
  2875. "rotate": [
  2876. { "time": 0, "angle": 347.99 },
  2877. { "time": 0.1667, "angle": 348.94 },
  2878. { "time": 0.5, "angle": 347.99 },
  2879. { "time": 0.6667, "angle": 348.94 },
  2880. { "time": 1, "angle": 347.99 }
  2881. ],
  2882. "translate": [
  2883. { "time": 0, "x": 0.76, "y": 1.03 },
  2884. { "time": 0.1667, "x": 0.8, "y": 1.02 },
  2885. { "time": 0.5, "x": 0.76, "y": 1.03 },
  2886. { "time": 0.6667, "x": 0.8, "y": 1.02 },
  2887. { "time": 1, "x": 0.76, "y": 1.03 }
  2888. ],
  2889. "scale": [
  2890. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2891. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2892. { "time": 1, "x": 1, "y": 1 }
  2893. ]
  2894. },
  2895. "bone14": {
  2896. "rotate": [
  2897. { "time": 0, "angle": 10.95 },
  2898. { "time": 0.1667, "angle": 7.3 },
  2899. { "time": 0.3333, "angle": 3.65 },
  2900. { "time": 0.5, "angle": 0 },
  2901. { "time": 0.6667, "angle": 3.65 },
  2902. { "time": 0.8333, "angle": 7.3 },
  2903. { "time": 1, "angle": 10.95 }
  2904. ],
  2905. "translate": [
  2906. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2907. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2908. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2909. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2910. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2911. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2912. { "time": 1, "x": 0, "y": 0 }
  2913. ],
  2914. "scale": [
  2915. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2916. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2917. { "time": 1, "x": 1, "y": 1 }
  2918. ]
  2919. },
  2920. "bone15": {
  2921. "rotate": [
  2922. { "time": 0, "angle": 0, "curve": "stepped" },
  2923. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2924. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2925. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2926. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2927. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2928. { "time": 1, "angle": 0 }
  2929. ],
  2930. "translate": [
  2931. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2936. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2937. { "time": 1, "x": 0, "y": 0 }
  2938. ],
  2939. "scale": [
  2940. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2941. { "time": 1, "x": 1, "y": 1 }
  2942. ]
  2943. },
  2944. "bone16": {
  2945. "rotate": [
  2946. { "time": 0, "angle": -320.21 },
  2947. { "time": 0.1667, "angle": 29.35 },
  2948. { "time": 0.3333, "angle": 18.92 },
  2949. { "time": 0.5, "angle": 18 },
  2950. { "time": 0.6667, "angle": 18.92 },
  2951. { "time": 0.8333, "angle": 29.35 },
  2952. { "time": 1, "angle": -320.21 }
  2953. ],
  2954. "translate": [
  2955. { "time": 0, "x": 0.62, "y": -3.97 },
  2956. { "time": 0.1667, "x": 0.41, "y": -2.65 },
  2957. { "time": 0.3333, "x": 0.21, "y": -1.32 },
  2958. { "time": 0.5, "x": 0, "y": 0 },
  2959. { "time": 0.6667, "x": 0.21, "y": -1.32 },
  2960. { "time": 0.8333, "x": 0.41, "y": -2.65 },
  2961. { "time": 1, "x": 0.62, "y": -3.97 }
  2962. ],
  2963. "scale": [
  2964. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2965. { "time": 1, "x": 1, "y": 1 }
  2966. ]
  2967. },
  2968. "bone17": {
  2969. "rotate": [
  2970. { "time": 0, "angle": 2.33 },
  2971. { "time": 0.1667, "angle": -3.39 },
  2972. { "time": 0.3333, "angle": -9.11 },
  2973. { "time": 0.5, "angle": -23.55 },
  2974. { "time": 0.6667, "angle": -9.11 },
  2975. { "time": 0.8333, "angle": -3.39 },
  2976. { "time": 1, "angle": 2.33 }
  2977. ],
  2978. "translate": [
  2979. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2980. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2981. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2982. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2983. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2984. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2985. { "time": 1, "x": 0, "y": 0 }
  2986. ],
  2987. "scale": [
  2988. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2989. { "time": 1, "x": 1, "y": 1 }
  2990. ]
  2991. },
  2992. "bone18": {
  2993. "rotate": [
  2994. { "time": 0, "angle": 0 },
  2995. { "time": 0.1667, "angle": -2.1 },
  2996. { "time": 0.3333, "angle": -4.2 },
  2997. { "time": 0.5, "angle": -6.3 },
  2998. { "time": 0.6667, "angle": -4.2 },
  2999. { "time": 0.8333, "angle": -2.1 },
  3000. { "time": 1, "angle": 0 }
  3001. ],
  3002. "translate": [
  3003. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3004. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3005. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3006. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3008. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3009. { "time": 1, "x": 0, "y": 0 }
  3010. ],
  3011. "scale": [
  3012. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3013. { "time": 1, "x": 1, "y": 1 }
  3014. ]
  3015. },
  3016. "bone19": {
  3017. "rotate": [
  3018. { "time": 0, "angle": 323.94 },
  3019. { "time": 0.1667, "angle": -25.46 },
  3020. { "time": 0.3333, "angle": -14.87 },
  3021. { "time": 0.5, "angle": -4.28 },
  3022. { "time": 0.6667, "angle": -14.87 },
  3023. { "time": 0.8333, "angle": -25.46 },
  3024. { "time": 1, "angle": 323.94 }
  3025. ],
  3026. "translate": [
  3027. { "time": 0, "x": 1.21, "y": 1.1 },
  3028. { "time": 0.1667, "x": 0.8, "y": 0.73 },
  3029. { "time": 0.3333, "x": 0.4, "y": 0.37 },
  3030. { "time": 0.5, "x": 0, "y": 0 },
  3031. { "time": 0.6667, "x": 0.4, "y": 0.37 },
  3032. { "time": 0.8333, "x": 0.8, "y": 0.73 },
  3033. { "time": 1, "x": 1.21, "y": 1.1 }
  3034. ],
  3035. "scale": [
  3036. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 1, "x": 1, "y": 1 }
  3038. ]
  3039. },
  3040. "bone20": {
  3041. "rotate": [
  3042. { "time": 0, "angle": -18.15 },
  3043. { "time": 0.1667, "angle": -18.26 },
  3044. { "time": 0.3333, "angle": -18.37 },
  3045. { "time": 0.5, "angle": -18.48 },
  3046. { "time": 0.6667, "angle": -18.37 },
  3047. { "time": 0.8333, "angle": -18.26 },
  3048. { "time": 1, "angle": -18.15 }
  3049. ],
  3050. "translate": [
  3051. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3052. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3053. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3054. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3055. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3056. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3057. { "time": 1, "x": 0, "y": 0 }
  3058. ],
  3059. "scale": [
  3060. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3061. { "time": 1, "x": 1, "y": 1 }
  3062. ]
  3063. },
  3064. "bone21": {
  3065. "rotate": [
  3066. { "time": 0, "angle": -6.48, "curve": "stepped" },
  3067. { "time": 0.1667, "angle": -6.48, "curve": "stepped" },
  3068. { "time": 0.3333, "angle": -6.48, "curve": "stepped" },
  3069. { "time": 0.5, "angle": -6.48, "curve": "stepped" },
  3070. { "time": 0.6667, "angle": -6.48, "curve": "stepped" },
  3071. { "time": 0.8333, "angle": -6.48, "curve": "stepped" },
  3072. { "time": 1, "angle": -6.48 }
  3073. ],
  3074. "translate": [
  3075. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3076. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3077. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3078. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3079. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3080. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3081. { "time": 1, "x": 0, "y": 0 }
  3082. ],
  3083. "scale": [
  3084. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3085. { "time": 1, "x": 1, "y": 1 }
  3086. ]
  3087. },
  3088. "bone22": {
  3089. "rotate": [
  3090. { "time": 0, "angle": 0, "curve": "stepped" },
  3091. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3092. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3093. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3094. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3095. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3096. { "time": 1, "angle": 0 }
  3097. ],
  3098. "translate": [
  3099. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3100. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3101. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3102. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3103. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3104. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3105. { "time": 1, "x": 0, "y": 0 }
  3106. ],
  3107. "scale": [
  3108. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3109. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3110. { "time": 1, "x": 1, "y": 1 }
  3111. ]
  3112. },
  3113. "bone23": {
  3114. "rotate": [
  3115. { "time": 0, "angle": 0, "curve": "stepped" },
  3116. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3117. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3118. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3119. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3120. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3121. { "time": 1, "angle": 0 }
  3122. ],
  3123. "translate": [
  3124. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3125. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3126. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3127. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3128. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3129. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3130. { "time": 1, "x": 0, "y": 0 }
  3131. ],
  3132. "scale": [
  3133. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3134. { "time": 1, "x": 1, "y": 1 }
  3135. ]
  3136. },
  3137. "bone24": {
  3138. "rotate": [
  3139. { "time": 0, "angle": 0, "curve": "stepped" },
  3140. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3141. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3142. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3143. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3144. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3145. { "time": 1, "angle": 0 }
  3146. ],
  3147. "translate": [
  3148. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3149. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3150. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3151. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3152. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3153. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3154. { "time": 1, "x": 0, "y": 0 }
  3155. ],
  3156. "scale": [
  3157. { "time": 0, "x": 1.1, "y": 1 },
  3158. { "time": 0.1667, "x": 1, "y": 1 },
  3159. { "time": 0.5, "x": 1.1, "y": 1 },
  3160. { "time": 0.6667, "x": 1, "y": 1 },
  3161. { "time": 1, "x": 1.1, "y": 1 }
  3162. ]
  3163. },
  3164. "bone25": {
  3165. "rotate": [
  3166. { "time": 0, "angle": 0, "curve": "stepped" },
  3167. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3168. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3169. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3170. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3171. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3172. { "time": 1, "angle": 0 }
  3173. ],
  3174. "translate": [
  3175. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3176. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3177. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3178. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3179. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3180. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3181. { "time": 1, "x": 0, "y": 0 }
  3182. ],
  3183. "scale": [
  3184. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3185. { "time": 1, "x": 1, "y": 1 }
  3186. ]
  3187. },
  3188. "bone26": {
  3189. "rotate": [
  3190. {
  3191. "time": 0,
  3192. "angle": 0,
  3193. "curve": [ 0.25, 0, 0.75, 1 ]
  3194. },
  3195. {
  3196. "time": 0.5,
  3197. "angle": -3.57,
  3198. "curve": [ 0.25, 0, 0.75, 1 ]
  3199. },
  3200. { "time": 1, "angle": 0 }
  3201. ],
  3202. "translate": [
  3203. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3204. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3205. { "time": 1, "x": 0, "y": 0 }
  3206. ],
  3207. "scale": [
  3208. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3209. { "time": 1, "x": 1, "y": 1 }
  3210. ]
  3211. },
  3212. "bone27": {
  3213. "rotate": [
  3214. {
  3215. "time": 0,
  3216. "angle": 0,
  3217. "curve": [ 0.25, 0, 0.75, 1 ]
  3218. },
  3219. {
  3220. "time": 0.5,
  3221. "angle": -7.71,
  3222. "curve": [ 0.25, 0, 0.75, 1 ]
  3223. },
  3224. { "time": 1, "angle": 0 }
  3225. ],
  3226. "translate": [
  3227. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3228. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3229. { "time": 1, "x": 0, "y": 0 }
  3230. ],
  3231. "scale": [
  3232. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3233. { "time": 1, "x": 1, "y": 1 }
  3234. ]
  3235. },
  3236. "bone28": {
  3237. "rotate": [
  3238. { "time": 0, "angle": 0 },
  3239. { "time": 0.5, "angle": -11.04 },
  3240. { "time": 1, "angle": 0 }
  3241. ],
  3242. "translate": [
  3243. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3244. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3245. { "time": 1, "x": 0, "y": 0 }
  3246. ],
  3247. "scale": [
  3248. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3249. { "time": 1, "x": 1, "y": 1 }
  3250. ]
  3251. },
  3252. "bone29": {
  3253. "rotate": [
  3254. { "time": 0, "angle": -2.64 },
  3255. { "time": 0.5, "angle": 0 },
  3256. { "time": 1, "angle": -2.64 }
  3257. ],
  3258. "translate": [
  3259. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3260. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3261. { "time": 1, "x": 0, "y": 0 }
  3262. ],
  3263. "scale": [
  3264. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3265. { "time": 1, "x": 1, "y": 1 }
  3266. ]
  3267. },
  3268. "bone30": {
  3269. "rotate": [
  3270. { "time": 0, "angle": 0 },
  3271. { "time": 0.5, "angle": -7.04 },
  3272. { "time": 1, "angle": 0 }
  3273. ],
  3274. "translate": [
  3275. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3276. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3277. { "time": 1, "x": 0, "y": 0 }
  3278. ],
  3279. "scale": [
  3280. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3281. { "time": 1, "x": 1, "y": 1 }
  3282. ]
  3283. },
  3284. "bone31": {
  3285. "rotate": [
  3286. { "time": 0, "angle": 18.14 },
  3287. { "time": 0.5, "angle": 13.5 },
  3288. { "time": 1, "angle": 18.14 }
  3289. ],
  3290. "translate": [
  3291. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3292. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3293. { "time": 1, "x": 0, "y": 0 }
  3294. ],
  3295. "scale": [
  3296. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3297. { "time": 1, "x": 1, "y": 1 }
  3298. ]
  3299. },
  3300. "bone32": {
  3301. "rotate": [
  3302. { "time": 0, "angle": 18.75 },
  3303. { "time": 0.5, "angle": 0 },
  3304. { "time": 1, "angle": 18.75 }
  3305. ],
  3306. "translate": [
  3307. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3308. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3309. { "time": 1, "x": 0, "y": 0 }
  3310. ],
  3311. "scale": [
  3312. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3313. { "time": 1, "x": 1, "y": 1 }
  3314. ]
  3315. },
  3316. "bone33": {
  3317. "rotate": [
  3318. { "time": 0, "angle": 0, "curve": "stepped" },
  3319. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3320. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3321. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3322. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3323. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3324. { "time": 1, "angle": 0 }
  3325. ],
  3326. "translate": [
  3327. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3328. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3329. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3330. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3331. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3332. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3333. { "time": 1, "x": 0, "y": 0 }
  3334. ],
  3335. "scale": [
  3336. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3337. { "time": 1, "x": 1, "y": 1 }
  3338. ]
  3339. },
  3340. "bone34": {
  3341. "rotate": [
  3342. { "time": 0, "angle": 0 },
  3343. { "time": 0.5, "angle": 14.25 },
  3344. { "time": 1, "angle": 0 }
  3345. ],
  3346. "translate": [
  3347. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3349. { "time": 1, "x": 0, "y": 0 }
  3350. ],
  3351. "scale": [
  3352. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 1, "x": 1, "y": 1 }
  3354. ]
  3355. },
  3356. "bone35": {
  3357. "rotate": [
  3358. { "time": 0, "angle": 0 },
  3359. { "time": 0.5, "angle": 3.87 },
  3360. { "time": 1, "angle": 0 }
  3361. ],
  3362. "translate": [
  3363. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3364. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3365. { "time": 1, "x": 0, "y": 0 }
  3366. ],
  3367. "scale": [
  3368. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3369. { "time": 1, "x": 1, "y": 1 }
  3370. ]
  3371. },
  3372. "bone36": {
  3373. "rotate": [
  3374. { "time": 0, "angle": 0, "curve": "stepped" },
  3375. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3376. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3377. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3378. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3379. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3380. { "time": 1, "angle": 0 }
  3381. ],
  3382. "translate": [
  3383. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3384. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3385. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3387. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3388. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3389. { "time": 1, "x": 0, "y": 0 }
  3390. ],
  3391. "scale": [
  3392. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3393. { "time": 1, "x": 1, "y": 1 }
  3394. ]
  3395. },
  3396. "bone37": {
  3397. "rotate": [
  3398. { "time": 0, "angle": 0, "curve": "stepped" },
  3399. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3400. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3401. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3402. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3403. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3404. { "time": 1, "angle": 0 }
  3405. ],
  3406. "translate": [
  3407. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3408. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3409. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3410. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3411. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3412. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3413. { "time": 1, "x": 0, "y": 0 }
  3414. ],
  3415. "scale": [
  3416. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3417. { "time": 1, "x": 1, "y": 1 }
  3418. ]
  3419. },
  3420. "bone38": {
  3421. "rotate": [
  3422. { "time": 0, "angle": 0, "curve": "stepped" },
  3423. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3424. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3425. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3426. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3427. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3428. { "time": 1, "angle": 0 }
  3429. ],
  3430. "translate": [
  3431. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3432. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3433. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3434. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3435. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3436. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3437. { "time": 1, "x": 0, "y": 0 }
  3438. ],
  3439. "scale": [
  3440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3441. { "time": 1, "x": 1, "y": 1 }
  3442. ]
  3443. },
  3444. "bone39": {
  3445. "rotate": [
  3446. { "time": 0, "angle": 0, "curve": "stepped" },
  3447. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3448. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3449. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3450. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3451. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3452. { "time": 1, "angle": 0 }
  3453. ],
  3454. "translate": [
  3455. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3456. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3457. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3458. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3459. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3460. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3461. { "time": 1, "x": 0, "y": 0 }
  3462. ],
  3463. "scale": [
  3464. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3465. { "time": 1, "x": 1, "y": 1 }
  3466. ]
  3467. },
  3468. "bone40": {
  3469. "rotate": [
  3470. { "time": 0, "angle": 0, "curve": "stepped" },
  3471. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3472. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3473. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3474. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3475. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3476. { "time": 1, "angle": 0 }
  3477. ],
  3478. "translate": [
  3479. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3480. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3481. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3482. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3483. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3484. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3485. { "time": 1, "x": 0, "y": 0 }
  3486. ],
  3487. "scale": [
  3488. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3489. { "time": 1, "x": 1, "y": 1 }
  3490. ]
  3491. },
  3492. "bone41": {
  3493. "rotate": [
  3494. { "time": 0, "angle": 0 },
  3495. { "time": 0.1667, "angle": -12.34 },
  3496. { "time": 0.3333, "angle": -24.69 },
  3497. { "time": 0.5, "angle": -37.03 },
  3498. { "time": 0.6667, "angle": -24.69 },
  3499. { "time": 0.8333, "angle": -12.34 },
  3500. { "time": 1, "angle": 0 }
  3501. ],
  3502. "translate": [
  3503. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3504. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3505. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3506. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3507. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3508. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3509. { "time": 1, "x": 0, "y": 0 }
  3510. ],
  3511. "scale": [
  3512. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3513. { "time": 1, "x": 1, "y": 1 }
  3514. ]
  3515. },
  3516. "bone42": {
  3517. "rotate": [
  3518. { "time": 0, "angle": 9.19 },
  3519. { "time": 0.1667, "angle": 3.2 },
  3520. { "time": 0.3333, "angle": -2.8 },
  3521. { "time": 0.5, "angle": -8.79 },
  3522. { "time": 0.6667, "angle": -2.8 },
  3523. { "time": 0.8333, "angle": 3.2 },
  3524. { "time": 1, "angle": 9.19 }
  3525. ],
  3526. "translate": [
  3527. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3528. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3529. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3530. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 1, "x": 0, "y": 0 }
  3534. ],
  3535. "scale": [
  3536. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 1, "x": 1, "y": 1 }
  3538. ]
  3539. },
  3540. "bone43": {
  3541. "rotate": [
  3542. { "time": 0, "angle": 6.12 },
  3543. { "time": 0.1667, "angle": 4.08 },
  3544. { "time": 0.3333, "angle": 2.04 },
  3545. { "time": 0.5, "angle": 0 },
  3546. { "time": 0.6667, "angle": 2.04 },
  3547. { "time": 0.8333, "angle": 4.08 },
  3548. { "time": 1, "angle": 6.12 }
  3549. ],
  3550. "translate": [
  3551. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3552. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3553. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3554. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3555. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3556. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3557. { "time": 1, "x": 0, "y": 0 }
  3558. ],
  3559. "scale": [
  3560. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3561. { "time": 1, "x": 1, "y": 1 }
  3562. ]
  3563. },
  3564. "bone44": {
  3565. "rotate": [
  3566. { "time": 0, "angle": -6.47 },
  3567. { "time": 0.5, "angle": -356.73 },
  3568. { "time": 1, "angle": -6.47 }
  3569. ],
  3570. "translate": [
  3571. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3572. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3573. { "time": 1, "x": 0, "y": 0 }
  3574. ],
  3575. "scale": [
  3576. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3577. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3578. { "time": 1, "x": 1, "y": 1 }
  3579. ]
  3580. },
  3581. "bone45": {
  3582. "rotate": [
  3583. { "time": 0, "angle": -10.91 },
  3584. { "time": 0.1667, "angle": -7.27 },
  3585. { "time": 0.3333, "angle": -3.64 },
  3586. { "time": 0.5, "angle": 0 },
  3587. { "time": 0.6667, "angle": -3.64 },
  3588. { "time": 0.8333, "angle": -7.27 },
  3589. { "time": 1, "angle": -10.91 }
  3590. ],
  3591. "translate": [
  3592. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3593. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3594. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3595. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3596. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3597. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3598. { "time": 1, "x": 0, "y": 0 }
  3599. ],
  3600. "scale": [
  3601. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 1, "x": 1, "y": 1 }
  3603. ]
  3604. },
  3605. "bone46": {
  3606. "rotate": [
  3607. { "time": 0, "angle": -12.25 },
  3608. { "time": 0.1667, "angle": -8.17 },
  3609. { "time": 0.3333, "angle": -4.08 },
  3610. { "time": 0.5, "angle": 0 },
  3611. { "time": 0.6667, "angle": -4.08 },
  3612. { "time": 0.8333, "angle": -8.17 },
  3613. { "time": 1, "angle": -12.25 }
  3614. ],
  3615. "translate": [
  3616. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3617. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3621. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3622. { "time": 1, "x": 0, "y": 0 }
  3623. ],
  3624. "scale": [
  3625. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 1, "x": 1, "y": 1 }
  3627. ]
  3628. },
  3629. "bone47": {
  3630. "rotate": [
  3631. { "time": 0, "angle": 0, "curve": "stepped" },
  3632. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3633. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3634. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3635. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3636. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3637. { "time": 1, "angle": 0 }
  3638. ],
  3639. "translate": [
  3640. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3641. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3642. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3645. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3646. { "time": 1, "x": 0, "y": 0 }
  3647. ],
  3648. "scale": [
  3649. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3650. { "time": 1, "x": 1, "y": 1 }
  3651. ]
  3652. }
  3653. },
  3654. "deform": {
  3655. "default": {
  3656. "chenshanhebozi": {
  3657. "chenshanhebozi": [
  3658. { "time": 0 },
  3659. {
  3660. "time": 0.1667,
  3661. "offset": 2,
  3662. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  3663. },
  3664. { "time": 0.5 },
  3665. {
  3666. "time": 0.6667,
  3667. "offset": 2,
  3668. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  3669. },
  3670. { "time": 1 }
  3671. ]
  3672. },
  3673. "houmiantoufa": {
  3674. "houmiantoufa": [
  3675. {
  3676. "time": 0,
  3677. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ],
  3678. "curve": "stepped"
  3679. },
  3680. {
  3681. "time": 1,
  3682. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  3683. }
  3684. ]
  3685. },
  3686. "sijiaoku": {
  3687. "sijiaoku": [
  3688. { "time": 0 },
  3689. {
  3690. "time": 0.1667,
  3691. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  3692. },
  3693. {
  3694. "time": 0.5,
  3695. "offset": 2,
  3696. "vertices": [ -0.18699, -1.71517 ]
  3697. },
  3698. {
  3699. "time": 0.6667,
  3700. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  3701. },
  3702. { "time": 1 }
  3703. ]
  3704. }
  3705. }
  3706. },
  3707. "drawOrder": [
  3708. {
  3709. "time": 0,
  3710. "offsets": [
  3711. { "slot": "zuoshou", "offset": -5 }
  3712. ]
  3713. },
  3714. {
  3715. "time": 0.5,
  3716. "offsets": [
  3717. { "slot": "zuoshou", "offset": -5 }
  3718. ]
  3719. },
  3720. {
  3721. "time": 1,
  3722. "offsets": [
  3723. { "slot": "zuoshou", "offset": -5 }
  3724. ]
  3725. }
  3726. ]
  3727. },
  3728. "walk2": {
  3729. "slots": {
  3730. "biyan": {
  3731. "attachment": [
  3732. { "time": 0, "name": null },
  3733. { "time": 1, "name": null },
  3734. { "time": 2, "name": null },
  3735. { "time": 3, "name": null },
  3736. { "time": 4, "name": null },
  3737. { "time": 5, "name": null }
  3738. ]
  3739. },
  3740. "maozi": {
  3741. "attachment": [
  3742. { "time": 0, "name": null },
  3743. { "time": 1, "name": null },
  3744. { "time": 2, "name": null },
  3745. { "time": 3, "name": null },
  3746. { "time": 4, "name": null },
  3747. { "time": 5, "name": null }
  3748. ]
  3749. },
  3750. "star": {
  3751. "color": [
  3752. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3753. { "time": 1, "color": "ffffff00", "curve": "stepped" },
  3754. { "time": 2, "color": "ffffff00", "curve": "stepped" },
  3755. { "time": 3, "color": "ffffff00", "curve": "stepped" },
  3756. { "time": 4, "color": "ffffff00" }
  3757. ]
  3758. },
  3759. "star2": {
  3760. "color": [
  3761. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3762. { "time": 1, "color": "ffffff00", "curve": "stepped" },
  3763. { "time": 2, "color": "ffffff00", "curve": "stepped" },
  3764. { "time": 3, "color": "ffffff00", "curve": "stepped" },
  3765. { "time": 4, "color": "ffffff00" }
  3766. ]
  3767. },
  3768. "star3": {
  3769. "color": [
  3770. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3771. { "time": 1, "color": "ffffff00", "curve": "stepped" },
  3772. { "time": 2, "color": "ffffff00", "curve": "stepped" },
  3773. { "time": 3, "color": "ffffff00", "curve": "stepped" },
  3774. { "time": 4, "color": "ffffff00" }
  3775. ]
  3776. },
  3777. "star4": {
  3778. "color": [
  3779. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3780. { "time": 1, "color": "ffffff00", "curve": "stepped" },
  3781. { "time": 2, "color": "ffffff00", "curve": "stepped" },
  3782. { "time": 3, "color": "ffffff00", "curve": "stepped" },
  3783. { "time": 4, "color": "ffffff00" }
  3784. ]
  3785. },
  3786. "yinying": {
  3787. "attachment": [
  3788. { "time": 0, "name": null },
  3789. { "time": 1, "name": null },
  3790. { "time": 2, "name": null },
  3791. { "time": 3, "name": null },
  3792. { "time": 4, "name": null },
  3793. { "time": 5, "name": null }
  3794. ]
  3795. }
  3796. },
  3797. "bones": {
  3798. "root": {
  3799. "rotate": [
  3800. { "time": 0, "angle": 0 }
  3801. ],
  3802. "translate": [
  3803. { "time": 0, "x": 0, "y": 0 }
  3804. ],
  3805. "scale": [
  3806. { "time": 0, "x": 0.65, "y": 0.65 }
  3807. ]
  3808. },
  3809. "bone": {
  3810. "rotate": [
  3811. { "time": 0, "angle": 0, "curve": "stepped" },
  3812. { "time": 1, "angle": 0, "curve": "stepped" },
  3813. { "time": 2, "angle": 0, "curve": "stepped" },
  3814. { "time": 3, "angle": 0, "curve": "stepped" },
  3815. { "time": 4, "angle": 0, "curve": "stepped" },
  3816. { "time": 5, "angle": 0 }
  3817. ],
  3818. "translate": [
  3819. { "time": 0, "x": 0, "y": 0 },
  3820. { "time": 0.4667, "x": 1.31, "y": 0 },
  3821. { "time": 1, "x": 0, "y": 0 },
  3822. { "time": 1.4667, "x": 1.31, "y": 0 },
  3823. { "time": 2, "x": 0, "y": 0 },
  3824. { "time": 2.4667, "x": 1.31, "y": 0 },
  3825. { "time": 3, "x": 0, "y": 0 },
  3826. { "time": 3.4667, "x": 1.31, "y": 0 },
  3827. { "time": 4, "x": 0, "y": 0 },
  3828. { "time": 4.4667, "x": 1.31, "y": 0 },
  3829. { "time": 5, "x": 0, "y": 0 }
  3830. ],
  3831. "scale": [
  3832. { "time": 0, "x": -1, "y": 1, "curve": "stepped" },
  3833. { "time": 1, "x": -1, "y": 1, "curve": "stepped" },
  3834. { "time": 2, "x": -1, "y": 1, "curve": "stepped" },
  3835. { "time": 3, "x": -1, "y": 1, "curve": "stepped" },
  3836. { "time": 4, "x": -1, "y": 1 }
  3837. ]
  3838. },
  3839. "bone2": {
  3840. "rotate": [
  3841. { "time": 0, "angle": -24.24 },
  3842. { "time": 0.1333, "angle": -17.37 },
  3843. { "time": 0.3, "angle": 13.83 },
  3844. { "time": 0.4667, "angle": 20.98 },
  3845. { "time": 0.6333, "angle": 18.66 },
  3846. { "time": 0.8333, "angle": 1.52 },
  3847. { "time": 1, "angle": -24.24 },
  3848. { "time": 1.1333, "angle": -17.37 },
  3849. { "time": 1.3, "angle": 13.83 },
  3850. { "time": 1.4667, "angle": 20.98 },
  3851. { "time": 1.6333, "angle": 18.66 },
  3852. { "time": 1.8333, "angle": 1.52 },
  3853. { "time": 2, "angle": -24.24 },
  3854. { "time": 2.1333, "angle": -17.37 },
  3855. { "time": 2.3, "angle": 13.83 },
  3856. { "time": 2.4667, "angle": 20.98 },
  3857. { "time": 2.6333, "angle": 18.66 },
  3858. { "time": 2.8333, "angle": 1.52 },
  3859. { "time": 3, "angle": -24.24 },
  3860. { "time": 3.1333, "angle": -17.37 },
  3861. { "time": 3.3, "angle": 13.83 },
  3862. { "time": 3.4667, "angle": 20.98 },
  3863. { "time": 3.6333, "angle": 18.66 },
  3864. { "time": 3.8333, "angle": 1.52 },
  3865. { "time": 4, "angle": -24.24 },
  3866. { "time": 4.1333, "angle": -17.37 },
  3867. { "time": 4.3, "angle": 13.83 },
  3868. { "time": 4.4667, "angle": 20.98 },
  3869. { "time": 4.6333, "angle": 18.66 },
  3870. { "time": 4.8333, "angle": 1.52 },
  3871. { "time": 5, "angle": -24.24 }
  3872. ],
  3873. "translate": [
  3874. { "time": 0, "x": 0.87, "y": 3.42 },
  3875. { "time": 0.1333, "x": 3.79, "y": -0.77 },
  3876. { "time": 0.3, "x": 8.1, "y": 2.59 },
  3877. { "time": 0.4667, "x": 14.59, "y": 3.73 },
  3878. { "time": 0.6333, "x": 9.72, "y": 2.49 },
  3879. { "time": 0.8333, "x": 4.86, "y": 1.24 },
  3880. { "time": 1, "x": 0.87, "y": 3.42 },
  3881. { "time": 1.1333, "x": 3.79, "y": -0.77 },
  3882. { "time": 1.3, "x": 8.1, "y": 2.59 },
  3883. { "time": 1.4667, "x": 14.59, "y": 3.73 },
  3884. { "time": 1.6333, "x": 9.72, "y": 2.49 },
  3885. { "time": 1.8333, "x": 4.86, "y": 1.24 },
  3886. { "time": 2, "x": 0.87, "y": 3.42 },
  3887. { "time": 2.1333, "x": 3.79, "y": -0.77 },
  3888. { "time": 2.3, "x": 8.1, "y": 2.59 },
  3889. { "time": 2.4667, "x": 14.59, "y": 3.73 },
  3890. { "time": 2.6333, "x": 9.72, "y": 2.49 },
  3891. { "time": 2.8333, "x": 4.86, "y": 1.24 },
  3892. { "time": 3, "x": 0.87, "y": 3.42 },
  3893. { "time": 3.1333, "x": 3.79, "y": -0.77 },
  3894. { "time": 3.3, "x": 8.1, "y": 2.59 },
  3895. { "time": 3.4667, "x": 14.59, "y": 3.73 },
  3896. { "time": 3.6333, "x": 9.72, "y": 2.49 },
  3897. { "time": 3.8333, "x": 4.86, "y": 1.24 },
  3898. { "time": 4, "x": 0.87, "y": 3.42 },
  3899. { "time": 4.1333, "x": 3.79, "y": -0.77 },
  3900. { "time": 4.3, "x": 8.1, "y": 2.59 },
  3901. { "time": 4.4667, "x": 14.59, "y": 3.73 },
  3902. { "time": 4.6333, "x": 9.72, "y": 2.49 },
  3903. { "time": 4.8333, "x": 4.86, "y": 1.24 },
  3904. { "time": 5, "x": 0.87, "y": 3.42 }
  3905. ],
  3906. "scale": [
  3907. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3908. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3909. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3911. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3912. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  3913. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3914. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3915. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3916. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3917. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  3918. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  3919. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3920. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  3921. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  3922. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  3923. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3924. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  3926. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  3927. { "time": 5, "x": 1, "y": 1 }
  3928. ]
  3929. },
  3930. "bone3": {
  3931. "rotate": [
  3932. { "time": 0, "angle": 39.85 },
  3933. { "time": 0.1333, "angle": 50.61 },
  3934. { "time": 0.3, "angle": 35.53 },
  3935. { "time": 0.4667, "angle": 0.91 },
  3936. { "time": 0.6333, "angle": 7.51 },
  3937. { "time": 0.8333, "angle": 4.35 },
  3938. { "time": 1, "angle": 39.85 },
  3939. { "time": 1.1333, "angle": 50.61 },
  3940. { "time": 1.3, "angle": 35.53 },
  3941. { "time": 1.4667, "angle": 0.91 },
  3942. { "time": 1.6333, "angle": 7.51 },
  3943. { "time": 1.8333, "angle": 4.35 },
  3944. { "time": 2, "angle": 39.85 },
  3945. { "time": 2.1333, "angle": 50.61 },
  3946. { "time": 2.3, "angle": 35.53 },
  3947. { "time": 2.4667, "angle": 0.91 },
  3948. { "time": 2.6333, "angle": 7.51 },
  3949. { "time": 2.8333, "angle": 4.35 },
  3950. { "time": 3, "angle": 39.85 },
  3951. { "time": 3.1333, "angle": 50.61 },
  3952. { "time": 3.3, "angle": 35.53 },
  3953. { "time": 3.4667, "angle": 0.91 },
  3954. { "time": 3.6333, "angle": 7.51 },
  3955. { "time": 3.8333, "angle": 4.35 },
  3956. { "time": 4, "angle": 39.85 },
  3957. { "time": 4.1333, "angle": 50.61 },
  3958. { "time": 4.3, "angle": 35.53 },
  3959. { "time": 4.4667, "angle": 0.91 },
  3960. { "time": 4.6333, "angle": 7.51 },
  3961. { "time": 4.8333, "angle": 4.35 },
  3962. { "time": 5, "angle": 39.85 }
  3963. ],
  3964. "translate": [
  3965. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3966. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3967. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3968. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3969. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  3970. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3971. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3972. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3973. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3974. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  3975. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3976. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3977. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3978. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  3979. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  3980. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3981. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  3982. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  3983. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3984. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  3985. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  3986. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  3987. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  3988. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  3989. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3990. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  3991. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  3992. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  3993. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  3994. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  3995. { "time": 5, "x": 0, "y": 0 }
  3996. ],
  3997. "scale": [
  3998. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3999. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4000. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4001. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4002. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4003. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4004. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4005. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4006. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4007. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4008. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4009. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4010. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4011. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4012. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4013. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4014. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4015. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 5, "x": 1, "y": 1 }
  4019. ]
  4020. },
  4021. "bone4": {
  4022. "rotate": [
  4023. { "time": 0, "angle": 10.12 },
  4024. { "time": 0.1333, "angle": -22.95 },
  4025. { "time": 0.3, "angle": -18.83 },
  4026. { "time": 0.4667, "angle": -17.58 },
  4027. { "time": 0.6333, "angle": -16.35 },
  4028. { "time": 0.8333, "angle": -8.17 },
  4029. { "time": 1, "angle": 10.12 },
  4030. { "time": 1.1333, "angle": -22.95 },
  4031. { "time": 1.3, "angle": -18.83 },
  4032. { "time": 1.4667, "angle": -17.58 },
  4033. { "time": 1.6333, "angle": -16.35 },
  4034. { "time": 1.8333, "angle": -8.17 },
  4035. { "time": 2, "angle": 10.12 },
  4036. { "time": 2.1333, "angle": -22.95 },
  4037. { "time": 2.3, "angle": -18.83 },
  4038. { "time": 2.4667, "angle": -17.58 },
  4039. { "time": 2.6333, "angle": -16.35 },
  4040. { "time": 2.8333, "angle": -8.17 },
  4041. { "time": 3, "angle": 10.12 },
  4042. { "time": 3.1333, "angle": -22.95 },
  4043. { "time": 3.3, "angle": -18.83 },
  4044. { "time": 3.4667, "angle": -17.58 },
  4045. { "time": 3.6333, "angle": -16.35 },
  4046. { "time": 3.8333, "angle": -8.17 },
  4047. { "time": 4, "angle": 10.12 },
  4048. { "time": 4.1333, "angle": -22.95 },
  4049. { "time": 4.3, "angle": -18.83 },
  4050. { "time": 4.4667, "angle": -17.58 },
  4051. { "time": 4.6333, "angle": -16.35 },
  4052. { "time": 4.8333, "angle": -8.17 },
  4053. { "time": 5, "angle": 10.12 }
  4054. ],
  4055. "translate": [
  4056. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4057. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4058. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4059. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4060. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4061. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4062. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4063. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4064. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4065. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4066. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4067. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4068. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4069. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4070. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4071. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4072. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4073. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4074. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4075. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4076. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4077. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4078. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4079. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4080. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4081. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4082. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4083. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4084. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4085. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4086. { "time": 5, "x": 0, "y": 0 }
  4087. ],
  4088. "scale": [
  4089. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4090. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4091. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4092. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4093. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4094. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4095. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4096. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4097. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4098. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4099. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4100. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4101. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4102. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4103. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4104. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4105. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4107. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4108. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4109. { "time": 5, "x": 1, "y": 1 }
  4110. ]
  4111. },
  4112. "bone5": {
  4113. "rotate": [
  4114. { "time": 0, "angle": 16.36 },
  4115. { "time": 0.1333, "angle": 5.83 },
  4116. { "time": 0.3, "angle": -10.24 },
  4117. { "time": 0.4667, "angle": -33.02 },
  4118. { "time": 0.6333, "angle": -17.79 },
  4119. { "time": 0.8333, "angle": 13.57 },
  4120. { "time": 1, "angle": 16.36 },
  4121. { "time": 1.1333, "angle": 5.83 },
  4122. { "time": 1.3, "angle": -10.24 },
  4123. { "time": 1.4667, "angle": -33.02 },
  4124. { "time": 1.6333, "angle": -17.79 },
  4125. { "time": 1.8333, "angle": 13.57 },
  4126. { "time": 2, "angle": 16.36 },
  4127. { "time": 2.1333, "angle": 5.83 },
  4128. { "time": 2.3, "angle": -10.24 },
  4129. { "time": 2.4667, "angle": -33.02 },
  4130. { "time": 2.6333, "angle": -17.79 },
  4131. { "time": 2.8333, "angle": 13.57 },
  4132. { "time": 3, "angle": 16.36 },
  4133. { "time": 3.1333, "angle": 5.83 },
  4134. { "time": 3.3, "angle": -10.24 },
  4135. { "time": 3.4667, "angle": -33.02 },
  4136. { "time": 3.6333, "angle": -17.79 },
  4137. { "time": 3.8333, "angle": 13.57 },
  4138. { "time": 4, "angle": 16.36 },
  4139. { "time": 4.1333, "angle": 5.83 },
  4140. { "time": 4.3, "angle": -10.24 },
  4141. { "time": 4.4667, "angle": -33.02 },
  4142. { "time": 4.6333, "angle": -17.79 },
  4143. { "time": 4.8333, "angle": 13.57 },
  4144. { "time": 5, "angle": 16.36 }
  4145. ],
  4146. "translate": [
  4147. { "time": 0, "x": 0, "y": 0 },
  4148. { "time": 0.1333, "x": -4.02, "y": 0.03 },
  4149. { "time": 0.3, "x": -8.03, "y": 0.06 },
  4150. { "time": 0.4667, "x": -12.05, "y": 0.1 },
  4151. { "time": 0.6333, "x": -10.25, "y": 0.56 },
  4152. { "time": 0.8333, "x": -8.45, "y": 1.02 },
  4153. { "time": 1, "x": 0, "y": 0 },
  4154. { "time": 1.1333, "x": -4.02, "y": 0.03 },
  4155. { "time": 1.3, "x": -8.03, "y": 0.06 },
  4156. { "time": 1.4667, "x": -12.05, "y": 0.1 },
  4157. { "time": 1.6333, "x": -10.25, "y": 0.56 },
  4158. { "time": 1.8333, "x": -8.45, "y": 1.02 },
  4159. { "time": 2, "x": 0, "y": 0 },
  4160. { "time": 2.1333, "x": -4.02, "y": 0.03 },
  4161. { "time": 2.3, "x": -8.03, "y": 0.06 },
  4162. { "time": 2.4667, "x": -12.05, "y": 0.1 },
  4163. { "time": 2.6333, "x": -10.25, "y": 0.56 },
  4164. { "time": 2.8333, "x": -8.45, "y": 1.02 },
  4165. { "time": 3, "x": 0, "y": 0 },
  4166. { "time": 3.1333, "x": -4.02, "y": 0.03 },
  4167. { "time": 3.3, "x": -8.03, "y": 0.06 },
  4168. { "time": 3.4667, "x": -12.05, "y": 0.1 },
  4169. { "time": 3.6333, "x": -10.25, "y": 0.56 },
  4170. { "time": 3.8333, "x": -8.45, "y": 1.02 },
  4171. { "time": 4, "x": 0, "y": 0 },
  4172. { "time": 4.1333, "x": -4.02, "y": 0.03 },
  4173. { "time": 4.3, "x": -8.03, "y": 0.06 },
  4174. { "time": 4.4667, "x": -12.05, "y": 0.1 },
  4175. { "time": 4.6333, "x": -10.25, "y": 0.56 },
  4176. { "time": 4.8333, "x": -8.45, "y": 1.02 },
  4177. { "time": 5, "x": 0, "y": 0 }
  4178. ],
  4179. "scale": [
  4180. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4181. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4182. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4183. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4184. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4185. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4186. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4187. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4188. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4189. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4190. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4191. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4192. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4193. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4194. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4195. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4196. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4197. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4198. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4199. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 5, "x": 1, "y": 1 }
  4201. ]
  4202. },
  4203. "bone6": {
  4204. "rotate": [
  4205. { "time": 0, "angle": -1.17 },
  4206. { "time": 0.1333, "angle": 12.08 },
  4207. { "time": 0.3, "angle": 3.84 },
  4208. { "time": 0.4667, "angle": 32.15 },
  4209. { "time": 0.6333, "angle": 35.18 },
  4210. { "time": 0.8333, "angle": 26.47 },
  4211. { "time": 1, "angle": -1.17 },
  4212. { "time": 1.1333, "angle": 12.08 },
  4213. { "time": 1.3, "angle": 3.84 },
  4214. { "time": 1.4667, "angle": 32.15 },
  4215. { "time": 1.6333, "angle": 35.18 },
  4216. { "time": 1.8333, "angle": 26.47 },
  4217. { "time": 2, "angle": -1.17 },
  4218. { "time": 2.1333, "angle": 12.08 },
  4219. { "time": 2.3, "angle": 3.84 },
  4220. { "time": 2.4667, "angle": 32.15 },
  4221. { "time": 2.6333, "angle": 35.18 },
  4222. { "time": 2.8333, "angle": 26.47 },
  4223. { "time": 3, "angle": -1.17 },
  4224. { "time": 3.1333, "angle": 12.08 },
  4225. { "time": 3.3, "angle": 3.84 },
  4226. { "time": 3.4667, "angle": 32.15 },
  4227. { "time": 3.6333, "angle": 35.18 },
  4228. { "time": 3.8333, "angle": 26.47 },
  4229. { "time": 4, "angle": -1.17 },
  4230. { "time": 4.1333, "angle": 12.08 },
  4231. { "time": 4.3, "angle": 3.84 },
  4232. { "time": 4.4667, "angle": 32.15 },
  4233. { "time": 4.6333, "angle": 35.18 },
  4234. { "time": 4.8333, "angle": 26.47 },
  4235. { "time": 5, "angle": -1.17 }
  4236. ],
  4237. "translate": [
  4238. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4239. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4240. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4241. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4242. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4243. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4244. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4245. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4246. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4247. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4248. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4249. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4250. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4251. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4252. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4253. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4254. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4255. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4256. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4257. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4258. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4259. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4260. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4261. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4262. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4263. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4264. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4265. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4266. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4267. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4268. { "time": 5, "x": 0, "y": 0 }
  4269. ],
  4270. "scale": [
  4271. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4272. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4273. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4274. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4275. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4276. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4277. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4278. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4279. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4280. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4281. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4282. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4283. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4284. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4285. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4286. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4287. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4288. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4289. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4290. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4291. { "time": 5, "x": 1, "y": 1 }
  4292. ]
  4293. },
  4294. "bone7": {
  4295. "rotate": [
  4296. { "time": 0, "angle": -11.14 },
  4297. { "time": 0.1333, "angle": -11.39 },
  4298. { "time": 0.3, "angle": 11.3 },
  4299. { "time": 0.4667, "angle": 12.02 },
  4300. { "time": 0.6333, "angle": -11.71 },
  4301. { "time": 0.8333, "angle": -8.71 },
  4302. { "time": 1, "angle": -11.14 },
  4303. { "time": 1.1333, "angle": -11.39 },
  4304. { "time": 1.3, "angle": 11.3 },
  4305. { "time": 1.4667, "angle": 12.02 },
  4306. { "time": 1.6333, "angle": -11.71 },
  4307. { "time": 1.8333, "angle": -8.71 },
  4308. { "time": 2, "angle": -11.14 },
  4309. { "time": 2.1333, "angle": -11.39 },
  4310. { "time": 2.3, "angle": 11.3 },
  4311. { "time": 2.4667, "angle": 12.02 },
  4312. { "time": 2.6333, "angle": -11.71 },
  4313. { "time": 2.8333, "angle": -8.71 },
  4314. { "time": 3, "angle": -11.14 },
  4315. { "time": 3.1333, "angle": -11.39 },
  4316. { "time": 3.3, "angle": 11.3 },
  4317. { "time": 3.4667, "angle": 12.02 },
  4318. { "time": 3.6333, "angle": -11.71 },
  4319. { "time": 3.8333, "angle": -8.71 },
  4320. { "time": 4, "angle": -11.14 },
  4321. { "time": 4.1333, "angle": -11.39 },
  4322. { "time": 4.3, "angle": 11.3 },
  4323. { "time": 4.4667, "angle": 12.02 },
  4324. { "time": 4.6333, "angle": -11.71 },
  4325. { "time": 4.8333, "angle": -8.71 },
  4326. { "time": 5, "angle": -11.14 }
  4327. ],
  4328. "translate": [
  4329. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4330. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4331. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4332. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4333. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4334. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4335. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4336. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4337. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4338. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4339. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4340. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4341. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4342. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4343. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4344. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4345. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4346. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4347. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4348. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4349. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4350. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4351. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4352. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4353. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4354. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4355. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4356. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4357. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4358. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4359. { "time": 5, "x": 0, "y": 0 }
  4360. ],
  4361. "scale": [
  4362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4363. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4364. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4365. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4366. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4367. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4368. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4369. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4370. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4372. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4374. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4375. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4376. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4377. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4378. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4379. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4380. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4381. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4382. { "time": 5, "x": 1, "y": 1 }
  4383. ]
  4384. },
  4385. "bone8": {
  4386. "rotate": [
  4387. { "time": 0, "angle": -0.06 },
  4388. { "time": 0.4667, "angle": -1.97 },
  4389. { "time": 1, "angle": -0.06 },
  4390. { "time": 1.4667, "angle": -1.97 },
  4391. { "time": 2, "angle": -0.06 },
  4392. { "time": 2.4667, "angle": -1.97 },
  4393. { "time": 3, "angle": -0.06 },
  4394. { "time": 3.4667, "angle": -1.97 },
  4395. { "time": 4, "angle": -0.06 },
  4396. { "time": 4.4667, "angle": -1.97 },
  4397. { "time": 5, "angle": -0.06 }
  4398. ],
  4399. "translate": [
  4400. { "time": 0, "x": 0, "y": 0 },
  4401. { "time": 0.1333, "x": -0.02, "y": -0.39 },
  4402. { "time": 0.4667, "x": 0, "y": 0 },
  4403. { "time": 0.6333, "x": -0.02, "y": -0.39 },
  4404. { "time": 1, "x": 0, "y": 0 },
  4405. { "time": 1.1333, "x": -0.02, "y": -0.39 },
  4406. { "time": 1.4667, "x": 0, "y": 0 },
  4407. { "time": 1.6333, "x": -0.02, "y": -0.39 },
  4408. { "time": 2, "x": 0, "y": 0 },
  4409. { "time": 2.1333, "x": -0.02, "y": -0.39 },
  4410. { "time": 2.4667, "x": 0, "y": 0 },
  4411. { "time": 2.6333, "x": -0.02, "y": -0.39 },
  4412. { "time": 3, "x": 0, "y": 0 },
  4413. { "time": 3.1333, "x": -0.02, "y": -0.39 },
  4414. { "time": 3.4667, "x": 0, "y": 0 },
  4415. { "time": 3.6333, "x": -0.02, "y": -0.39 },
  4416. { "time": 4, "x": 0, "y": 0 },
  4417. { "time": 4.1333, "x": -0.02, "y": -0.39 },
  4418. { "time": 4.4667, "x": 0, "y": 0 },
  4419. { "time": 4.6333, "x": -0.02, "y": -0.39 },
  4420. { "time": 5, "x": 0, "y": 0 }
  4421. ],
  4422. "scale": [
  4423. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4424. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4425. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4426. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4427. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4428. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4429. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4430. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4431. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4434. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4435. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4436. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4437. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4438. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4440. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4442. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4443. { "time": 5, "x": 1, "y": 1 }
  4444. ]
  4445. },
  4446. "bone9": {
  4447. "rotate": [
  4448. { "time": 0, "angle": 0, "curve": "stepped" },
  4449. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4450. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4451. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  4452. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  4453. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4454. { "time": 1, "angle": 0, "curve": "stepped" },
  4455. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4456. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4457. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4458. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4459. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4460. { "time": 2, "angle": 0, "curve": "stepped" },
  4461. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  4462. { "time": 2.3, "angle": 0, "curve": "stepped" },
  4463. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  4464. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  4465. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4466. { "time": 3, "angle": 0, "curve": "stepped" },
  4467. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  4468. { "time": 3.3, "angle": 0, "curve": "stepped" },
  4469. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  4470. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  4471. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4472. { "time": 4, "angle": 0, "curve": "stepped" },
  4473. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  4474. { "time": 4.3, "angle": 0, "curve": "stepped" },
  4475. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  4476. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  4477. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  4478. { "time": 5, "angle": 0 }
  4479. ],
  4480. "translate": [
  4481. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4482. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4483. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4484. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4485. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4486. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4487. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4488. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4489. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4490. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4491. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4492. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4493. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4494. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4495. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4496. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4497. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4498. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4499. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4500. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4501. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4502. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4503. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4504. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4505. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4506. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4507. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4508. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4509. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4510. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4511. { "time": 5, "x": 0, "y": 0 }
  4512. ],
  4513. "scale": [
  4514. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4515. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4516. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4517. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4518. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4519. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4520. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4521. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4522. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4523. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4524. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4525. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4526. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4527. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4528. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4529. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4530. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4531. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4532. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4534. { "time": 5, "x": 1, "y": 1 }
  4535. ]
  4536. },
  4537. "bone10": {
  4538. "rotate": [
  4539. { "time": 0, "angle": 4.63 },
  4540. { "time": 0.1333, "angle": 2.65 },
  4541. { "time": 0.4667, "angle": -1.57 },
  4542. { "time": 0.6333, "angle": 2.99 },
  4543. { "time": 1, "angle": 4.63 },
  4544. { "time": 1.1333, "angle": 2.65 },
  4545. { "time": 1.4667, "angle": -1.57 },
  4546. { "time": 1.6333, "angle": 2.99 },
  4547. { "time": 2, "angle": 4.63 },
  4548. { "time": 2.1333, "angle": 2.65 },
  4549. { "time": 2.4667, "angle": -1.57 },
  4550. { "time": 2.6333, "angle": 2.99 },
  4551. { "time": 3, "angle": 4.63 },
  4552. { "time": 3.1333, "angle": 2.65 },
  4553. { "time": 3.4667, "angle": -1.57 },
  4554. { "time": 3.6333, "angle": 2.99 },
  4555. { "time": 4, "angle": 4.63 },
  4556. { "time": 4.1333, "angle": 2.65 },
  4557. { "time": 4.4667, "angle": -1.57 },
  4558. { "time": 4.6333, "angle": 2.99 },
  4559. { "time": 5, "angle": 4.63 }
  4560. ],
  4561. "translate": [
  4562. { "time": 0, "x": -0.91, "y": -1.18 },
  4563. { "time": 0.4667, "x": 0, "y": 0 },
  4564. { "time": 1, "x": -0.91, "y": -1.18 },
  4565. { "time": 1.4667, "x": 0, "y": 0 },
  4566. { "time": 2, "x": -0.91, "y": -1.18 },
  4567. { "time": 2.4667, "x": 0, "y": 0 },
  4568. { "time": 3, "x": -0.91, "y": -1.18 },
  4569. { "time": 3.4667, "x": 0, "y": 0 },
  4570. { "time": 4, "x": -0.91, "y": -1.18 },
  4571. { "time": 4.4667, "x": 0, "y": 0 },
  4572. { "time": 5, "x": -0.91, "y": -1.18 }
  4573. ],
  4574. "scale": [
  4575. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4576. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4577. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4578. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4579. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4580. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4581. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4582. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4583. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4584. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4585. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4586. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4587. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4588. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4589. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4590. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4591. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4592. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 5, "x": 1, "y": 1 }
  4596. ]
  4597. },
  4598. "bone11": {
  4599. "rotate": [
  4600. { "time": 0, "angle": 1.27 },
  4601. { "time": 0.1333, "angle": 0.4 },
  4602. { "time": 0.3, "angle": -0.48 },
  4603. { "time": 0.4667, "angle": -1.35 },
  4604. { "time": 0.6333, "angle": -0.48 },
  4605. { "time": 0.8333, "angle": 0.4 },
  4606. { "time": 1, "angle": 1.27 },
  4607. { "time": 1.1333, "angle": 0.4 },
  4608. { "time": 1.3, "angle": -0.48 },
  4609. { "time": 1.4667, "angle": -1.35 },
  4610. { "time": 1.6333, "angle": -0.48 },
  4611. { "time": 1.8333, "angle": 0.4 },
  4612. { "time": 2, "angle": 1.27 },
  4613. { "time": 2.1333, "angle": 0.4 },
  4614. { "time": 2.3, "angle": -0.48 },
  4615. { "time": 2.4667, "angle": -1.35 },
  4616. { "time": 2.6333, "angle": -0.48 },
  4617. { "time": 2.8333, "angle": 0.4 },
  4618. { "time": 3, "angle": 1.27 },
  4619. { "time": 3.1333, "angle": 0.4 },
  4620. { "time": 3.3, "angle": -0.48 },
  4621. { "time": 3.4667, "angle": -1.35 },
  4622. { "time": 3.6333, "angle": -0.48 },
  4623. { "time": 3.8333, "angle": 0.4 },
  4624. { "time": 4, "angle": 1.27 },
  4625. { "time": 4.1333, "angle": 0.4 },
  4626. { "time": 4.3, "angle": -0.48 },
  4627. { "time": 4.4667, "angle": -1.35 },
  4628. { "time": 4.6333, "angle": -0.48 },
  4629. { "time": 4.8333, "angle": 0.4 },
  4630. { "time": 5, "angle": 1.27 }
  4631. ],
  4632. "translate": [
  4633. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4634. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4635. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4636. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4637. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4638. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4639. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4640. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4641. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4642. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4643. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4644. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4645. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4646. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4647. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4648. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4649. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4650. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4651. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4652. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4653. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4654. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4655. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4656. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4657. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4658. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4659. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4660. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4661. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4662. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4663. { "time": 5, "x": 0, "y": 0 }
  4664. ],
  4665. "scale": [
  4666. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4667. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4668. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4669. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4670. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4671. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4672. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4673. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4674. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4675. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4676. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4677. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4678. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4679. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4680. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4681. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4682. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4683. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4684. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4685. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 5, "x": 1, "y": 1 }
  4687. ]
  4688. },
  4689. "bone12": {
  4690. "rotate": [
  4691. { "time": 0, "angle": -9.86 },
  4692. { "time": 0.1333, "angle": -9 },
  4693. { "time": 0.3, "angle": -8.15 },
  4694. { "time": 0.4667, "angle": -7.3 },
  4695. { "time": 0.6333, "angle": -8.15 },
  4696. { "time": 0.8333, "angle": -9 },
  4697. { "time": 1, "angle": -9.86 },
  4698. { "time": 1.1333, "angle": -9 },
  4699. { "time": 1.3, "angle": -8.15 },
  4700. { "time": 1.4667, "angle": -7.3 },
  4701. { "time": 1.6333, "angle": -8.15 },
  4702. { "time": 1.8333, "angle": -9 },
  4703. { "time": 2, "angle": -9.86 },
  4704. { "time": 2.1333, "angle": -9 },
  4705. { "time": 2.3, "angle": -8.15 },
  4706. { "time": 2.4667, "angle": -7.3 },
  4707. { "time": 2.6333, "angle": -8.15 },
  4708. { "time": 2.8333, "angle": -9 },
  4709. { "time": 3, "angle": -9.86 },
  4710. { "time": 3.1333, "angle": -9 },
  4711. { "time": 3.3, "angle": -8.15 },
  4712. { "time": 3.4667, "angle": -7.3 },
  4713. { "time": 3.6333, "angle": -8.15 },
  4714. { "time": 3.8333, "angle": -9 },
  4715. { "time": 4, "angle": -9.86 },
  4716. { "time": 4.1333, "angle": -9 },
  4717. { "time": 4.3, "angle": -8.15 },
  4718. { "time": 4.4667, "angle": -7.3 },
  4719. { "time": 4.6333, "angle": -8.15 },
  4720. { "time": 4.8333, "angle": -9 },
  4721. { "time": 5, "angle": -9.86 }
  4722. ],
  4723. "translate": [
  4724. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4725. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4726. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4727. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4728. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4729. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4730. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4731. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4732. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4733. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4734. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4735. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4736. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4737. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4738. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4739. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4740. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4741. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4742. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4743. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4744. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4745. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4746. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4747. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4748. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4749. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4750. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4751. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4752. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4753. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4754. { "time": 5, "x": 0, "y": 0 }
  4755. ],
  4756. "scale": [
  4757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4761. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4762. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4763. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4764. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4765. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4766. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4767. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4768. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4769. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4770. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4771. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4772. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4773. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4774. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4775. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4776. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4777. { "time": 5, "x": 1, "y": 1 }
  4778. ]
  4779. },
  4780. "bone13": {
  4781. "rotate": [
  4782. { "time": 0, "angle": 347.99 },
  4783. { "time": 0.4667, "angle": -6.54 },
  4784. { "time": 1, "angle": 347.99 },
  4785. { "time": 1.4667, "angle": -6.54 },
  4786. { "time": 2, "angle": 347.99 },
  4787. { "time": 2.4667, "angle": -6.54 },
  4788. { "time": 3, "angle": 347.99 },
  4789. { "time": 3.4667, "angle": -6.54 },
  4790. { "time": 4, "angle": 347.99 },
  4791. { "time": 4.4667, "angle": -6.54 },
  4792. { "time": 5, "angle": 347.99 }
  4793. ],
  4794. "translate": [
  4795. { "time": 0, "x": 1, "y": 5.5 },
  4796. { "time": 0.4667, "x": 0.76, "y": 1.03 },
  4797. { "time": 1, "x": 1, "y": 5.5 },
  4798. { "time": 1.4667, "x": 0.76, "y": 1.03 },
  4799. { "time": 2, "x": 1, "y": 5.5 },
  4800. { "time": 2.4667, "x": 0.76, "y": 1.03 },
  4801. { "time": 3, "x": 1, "y": 5.5 },
  4802. { "time": 3.4667, "x": 0.76, "y": 1.03 },
  4803. { "time": 4, "x": 1, "y": 5.5 },
  4804. { "time": 4.4667, "x": 0.76, "y": 1.03 },
  4805. { "time": 5, "x": 1, "y": 5.5 }
  4806. ],
  4807. "scale": [
  4808. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4809. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4810. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4811. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4812. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4813. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4814. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4815. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4816. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4817. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4818. { "time": 5, "x": 1, "y": 1 }
  4819. ]
  4820. },
  4821. "bone14": {
  4822. "rotate": [
  4823. { "time": 0, "angle": 29.36 },
  4824. { "time": 0.1333, "angle": 0.05 },
  4825. { "time": 0.3, "angle": 3.65 },
  4826. { "time": 0.4667, "angle": 0 },
  4827. { "time": 0.6333, "angle": 0.05 },
  4828. { "time": 0.8333, "angle": 7.3 },
  4829. { "time": 1, "angle": 29.36 },
  4830. { "time": 1.1333, "angle": 0.05 },
  4831. { "time": 1.3, "angle": 3.65 },
  4832. { "time": 1.4667, "angle": 0 },
  4833. { "time": 1.6333, "angle": 0.05 },
  4834. { "time": 1.8333, "angle": 7.3 },
  4835. { "time": 2, "angle": 29.36 },
  4836. { "time": 2.1333, "angle": 0.05 },
  4837. { "time": 2.3, "angle": 3.65 },
  4838. { "time": 2.4667, "angle": 0 },
  4839. { "time": 2.6333, "angle": 0.05 },
  4840. { "time": 2.8333, "angle": 7.3 },
  4841. { "time": 3, "angle": 29.36 },
  4842. { "time": 3.1333, "angle": 0.05 },
  4843. { "time": 3.3, "angle": 3.65 },
  4844. { "time": 3.4667, "angle": 0 },
  4845. { "time": 3.6333, "angle": 0.05 },
  4846. { "time": 3.8333, "angle": 7.3 },
  4847. { "time": 4, "angle": 29.36 },
  4848. { "time": 4.1333, "angle": 0.05 },
  4849. { "time": 4.3, "angle": 3.65 },
  4850. { "time": 4.4667, "angle": 0 },
  4851. { "time": 4.6333, "angle": 0.05 },
  4852. { "time": 4.8333, "angle": 7.3 },
  4853. { "time": 5, "angle": 29.36 }
  4854. ],
  4855. "translate": [
  4856. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4857. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4858. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4859. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4860. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4861. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4862. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4863. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4864. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4865. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4866. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4867. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4868. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4869. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4870. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4871. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4872. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4873. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4874. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4875. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4876. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4877. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4878. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4879. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4880. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4881. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4882. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4883. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4884. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4885. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4886. { "time": 5, "x": 0, "y": 0 }
  4887. ],
  4888. "scale": [
  4889. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4890. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4891. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4892. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4893. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4896. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4897. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4898. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4899. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4900. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4901. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4902. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4903. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4904. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4905. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4906. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4907. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4908. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  4909. { "time": 5, "x": 1, "y": 1 }
  4910. ]
  4911. },
  4912. "bone15": {
  4913. "rotate": [
  4914. { "time": 0, "angle": 0, "curve": "stepped" },
  4915. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  4916. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4917. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  4918. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  4919. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4920. { "time": 1, "angle": 0, "curve": "stepped" },
  4921. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  4922. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4923. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  4924. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  4925. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4926. { "time": 2, "angle": 0, "curve": "stepped" },
  4927. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  4928. { "time": 2.3, "angle": 0, "curve": "stepped" },
  4929. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  4930. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  4931. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  4932. { "time": 3, "angle": 0, "curve": "stepped" },
  4933. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  4934. { "time": 3.3, "angle": 0, "curve": "stepped" },
  4935. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  4936. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  4937. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  4938. { "time": 4, "angle": 0, "curve": "stepped" },
  4939. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  4940. { "time": 4.3, "angle": 0, "curve": "stepped" },
  4941. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  4942. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  4943. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  4944. { "time": 5, "angle": 0 }
  4945. ],
  4946. "translate": [
  4947. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4948. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  4949. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4950. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4951. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  4952. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4953. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4954. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  4955. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4956. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  4957. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4958. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4959. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4960. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  4961. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  4962. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4963. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4964. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  4965. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4966. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  4967. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  4968. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  4969. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  4970. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  4971. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4972. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  4973. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  4974. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  4975. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  4976. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  4977. { "time": 5, "x": 0, "y": 0 }
  4978. ],
  4979. "scale": [
  4980. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4981. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4982. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  4983. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4984. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4985. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  4986. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4987. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4988. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4989. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4990. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4991. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4992. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4993. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  4994. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  4995. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  4996. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4997. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  4998. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  4999. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5000. { "time": 5, "x": 1, "y": 1 }
  5001. ]
  5002. },
  5003. "bone16": {
  5004. "rotate": [
  5005. { "time": 0, "angle": -42.11 },
  5006. { "time": 0.4667, "angle": -49.29 },
  5007. { "time": 1, "angle": -42.11 },
  5008. { "time": 1.4667, "angle": -49.29 },
  5009. { "time": 2, "angle": -42.11 },
  5010. { "time": 2.4667, "angle": -49.29 },
  5011. { "time": 3, "angle": -42.11 },
  5012. { "time": 3.4667, "angle": -49.29 },
  5013. { "time": 4, "angle": -42.11 },
  5014. { "time": 4.4667, "angle": -49.29 },
  5015. { "time": 5, "angle": -42.11 }
  5016. ],
  5017. "translate": [
  5018. { "time": 0, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5019. { "time": 1, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5020. { "time": 2, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5021. { "time": 3, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5022. { "time": 4, "x": 0.62, "y": -3.97, "curve": "stepped" },
  5023. { "time": 5, "x": 0.62, "y": -3.97 }
  5024. ],
  5025. "scale": [
  5026. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5027. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5028. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5029. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5030. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5031. { "time": 5, "x": 1, "y": 1 }
  5032. ]
  5033. },
  5034. "bone17": {
  5035. "rotate": [
  5036. { "time": 0, "angle": -44.22 },
  5037. { "time": 0.4667, "angle": -42.89 },
  5038. { "time": 1, "angle": -44.22 },
  5039. { "time": 1.4667, "angle": -42.89 },
  5040. { "time": 2, "angle": -44.22 },
  5041. { "time": 2.4667, "angle": -42.89 },
  5042. { "time": 3, "angle": -44.22 },
  5043. { "time": 3.4667, "angle": -42.89 },
  5044. { "time": 4, "angle": -44.22 },
  5045. { "time": 4.4667, "angle": -42.89 },
  5046. { "time": 5, "angle": -44.22 }
  5047. ],
  5048. "translate": [
  5049. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5050. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5051. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5052. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5053. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5054. { "time": 5, "x": 0, "y": 0 }
  5055. ],
  5056. "scale": [
  5057. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5058. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5059. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5060. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5061. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5062. { "time": 5, "x": 1, "y": 1 }
  5063. ]
  5064. },
  5065. "bone18": {
  5066. "rotate": [
  5067. { "time": 0, "angle": -18.78, "curve": "stepped" },
  5068. { "time": 1, "angle": -18.78, "curve": "stepped" },
  5069. { "time": 2, "angle": -18.78, "curve": "stepped" },
  5070. { "time": 3, "angle": -18.78, "curve": "stepped" },
  5071. { "time": 4, "angle": -18.78, "curve": "stepped" },
  5072. { "time": 5, "angle": -18.78 }
  5073. ],
  5074. "translate": [
  5075. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5076. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5077. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5078. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5079. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5080. { "time": 5, "x": 0, "y": 0 }
  5081. ],
  5082. "scale": [
  5083. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5084. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5085. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5086. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5087. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5088. { "time": 5, "x": 1, "y": 1 }
  5089. ]
  5090. },
  5091. "bone19": {
  5092. "rotate": [
  5093. {
  5094. "time": 0,
  5095. "angle": 323.94,
  5096. "curve": [ 0.25, 0, 0.75, 1 ]
  5097. },
  5098. {
  5099. "time": 0.4667,
  5100. "angle": -4.28,
  5101. "curve": [ 0.25, 0, 0.75, 1 ]
  5102. },
  5103. {
  5104. "time": 1,
  5105. "angle": 323.94,
  5106. "curve": [ 0.25, 0, 0.75, 1 ]
  5107. },
  5108. {
  5109. "time": 1.4667,
  5110. "angle": -4.28,
  5111. "curve": [ 0.25, 0, 0.75, 1 ]
  5112. },
  5113. {
  5114. "time": 2,
  5115. "angle": 323.94,
  5116. "curve": [ 0.25, 0, 0.75, 1 ]
  5117. },
  5118. {
  5119. "time": 2.4667,
  5120. "angle": -4.28,
  5121. "curve": [ 0.25, 0, 0.75, 1 ]
  5122. },
  5123. {
  5124. "time": 3,
  5125. "angle": 323.94,
  5126. "curve": [ 0.25, 0, 0.75, 1 ]
  5127. },
  5128. {
  5129. "time": 3.4667,
  5130. "angle": -4.28,
  5131. "curve": [ 0.25, 0, 0.75, 1 ]
  5132. },
  5133. {
  5134. "time": 4,
  5135. "angle": 323.94,
  5136. "curve": [ 0.25, 0, 0.75, 1 ]
  5137. },
  5138. {
  5139. "time": 4.4667,
  5140. "angle": -4.28,
  5141. "curve": [ 0.25, 0, 0.75, 1 ]
  5142. },
  5143. { "time": 5, "angle": 323.94 }
  5144. ],
  5145. "translate": [
  5146. {
  5147. "time": 0,
  5148. "x": 1.67,
  5149. "y": 5.57,
  5150. "curve": [ 0.25, 0, 0.75, 1 ]
  5151. },
  5152. {
  5153. "time": 0.4667,
  5154. "x": 0,
  5155. "y": 0,
  5156. "curve": [ 0.25, 0, 0.75, 1 ]
  5157. },
  5158. {
  5159. "time": 1,
  5160. "x": 1.67,
  5161. "y": 5.57,
  5162. "curve": [ 0.25, 0, 0.75, 1 ]
  5163. },
  5164. {
  5165. "time": 1.4667,
  5166. "x": 0,
  5167. "y": 0,
  5168. "curve": [ 0.25, 0, 0.75, 1 ]
  5169. },
  5170. {
  5171. "time": 2,
  5172. "x": 1.67,
  5173. "y": 5.57,
  5174. "curve": [ 0.25, 0, 0.75, 1 ]
  5175. },
  5176. {
  5177. "time": 2.4667,
  5178. "x": 0,
  5179. "y": 0,
  5180. "curve": [ 0.25, 0, 0.75, 1 ]
  5181. },
  5182. {
  5183. "time": 3,
  5184. "x": 1.67,
  5185. "y": 5.57,
  5186. "curve": [ 0.25, 0, 0.75, 1 ]
  5187. },
  5188. {
  5189. "time": 3.4667,
  5190. "x": 0,
  5191. "y": 0,
  5192. "curve": [ 0.25, 0, 0.75, 1 ]
  5193. },
  5194. {
  5195. "time": 4,
  5196. "x": 1.67,
  5197. "y": 5.57,
  5198. "curve": [ 0.25, 0, 0.75, 1 ]
  5199. },
  5200. {
  5201. "time": 4.4667,
  5202. "x": 0,
  5203. "y": 0,
  5204. "curve": [ 0.25, 0, 0.75, 1 ]
  5205. },
  5206. { "time": 5, "x": 1.67, "y": 5.57 }
  5207. ],
  5208. "scale": [
  5209. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5210. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5211. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5212. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5213. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5214. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5215. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5216. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5217. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5218. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5219. { "time": 5, "x": 1, "y": 1 }
  5220. ]
  5221. },
  5222. "bone20": {
  5223. "rotate": [
  5224. { "time": 0, "angle": -18.15 },
  5225. { "time": 0.1333, "angle": -18.26 },
  5226. { "time": 0.3, "angle": -18.37 },
  5227. { "time": 0.4667, "angle": -18.48 },
  5228. { "time": 0.6333, "angle": -18.37 },
  5229. { "time": 0.8333, "angle": -18.26 },
  5230. { "time": 1, "angle": -18.15 },
  5231. { "time": 1.1333, "angle": -18.26 },
  5232. { "time": 1.3, "angle": -18.37 },
  5233. { "time": 1.4667, "angle": -18.48 },
  5234. { "time": 1.6333, "angle": -18.37 },
  5235. { "time": 1.8333, "angle": -18.26 },
  5236. { "time": 2, "angle": -18.15 },
  5237. { "time": 2.1333, "angle": -18.26 },
  5238. { "time": 2.3, "angle": -18.37 },
  5239. { "time": 2.4667, "angle": -18.48 },
  5240. { "time": 2.6333, "angle": -18.37 },
  5241. { "time": 2.8333, "angle": -18.26 },
  5242. { "time": 3, "angle": -18.15 },
  5243. { "time": 3.1333, "angle": -18.26 },
  5244. { "time": 3.3, "angle": -18.37 },
  5245. { "time": 3.4667, "angle": -18.48 },
  5246. { "time": 3.6333, "angle": -18.37 },
  5247. { "time": 3.8333, "angle": -18.26 },
  5248. { "time": 4, "angle": -18.15 },
  5249. { "time": 4.1333, "angle": -18.26 },
  5250. { "time": 4.3, "angle": -18.37 },
  5251. { "time": 4.4667, "angle": -18.48 },
  5252. { "time": 4.6333, "angle": -18.37 },
  5253. { "time": 4.8333, "angle": -18.26 },
  5254. { "time": 5, "angle": -18.15 }
  5255. ],
  5256. "translate": [
  5257. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5258. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5259. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5260. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5261. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5262. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5263. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5264. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5265. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5266. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5267. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5268. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5269. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5270. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5271. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5272. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5273. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5274. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5275. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5276. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5277. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5278. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5279. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5280. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5281. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5282. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5283. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5284. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5285. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5286. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5287. { "time": 5, "x": 0, "y": 0 }
  5288. ],
  5289. "scale": [
  5290. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5291. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5292. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5293. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5294. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5295. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5296. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5297. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5298. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5299. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5300. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5301. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5302. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5303. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5304. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5305. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5306. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5307. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5308. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5309. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5310. { "time": 5, "x": 1, "y": 1 }
  5311. ]
  5312. },
  5313. "bone21": {
  5314. "rotate": [
  5315. { "time": 0, "angle": -6.48, "curve": "stepped" },
  5316. { "time": 0.1333, "angle": -6.48, "curve": "stepped" },
  5317. { "time": 0.3, "angle": -6.48, "curve": "stepped" },
  5318. { "time": 0.4667, "angle": -6.48, "curve": "stepped" },
  5319. { "time": 0.6333, "angle": -6.48, "curve": "stepped" },
  5320. { "time": 0.8333, "angle": -6.48, "curve": "stepped" },
  5321. { "time": 1, "angle": -6.48, "curve": "stepped" },
  5322. { "time": 1.1333, "angle": -6.48, "curve": "stepped" },
  5323. { "time": 1.3, "angle": -6.48, "curve": "stepped" },
  5324. { "time": 1.4667, "angle": -6.48, "curve": "stepped" },
  5325. { "time": 1.6333, "angle": -6.48, "curve": "stepped" },
  5326. { "time": 1.8333, "angle": -6.48, "curve": "stepped" },
  5327. { "time": 2, "angle": -6.48, "curve": "stepped" },
  5328. { "time": 2.1333, "angle": -6.48, "curve": "stepped" },
  5329. { "time": 2.3, "angle": -6.48, "curve": "stepped" },
  5330. { "time": 2.4667, "angle": -6.48, "curve": "stepped" },
  5331. { "time": 2.6333, "angle": -6.48, "curve": "stepped" },
  5332. { "time": 2.8333, "angle": -6.48, "curve": "stepped" },
  5333. { "time": 3, "angle": -6.48, "curve": "stepped" },
  5334. { "time": 3.1333, "angle": -6.48, "curve": "stepped" },
  5335. { "time": 3.3, "angle": -6.48, "curve": "stepped" },
  5336. { "time": 3.4667, "angle": -6.48, "curve": "stepped" },
  5337. { "time": 3.6333, "angle": -6.48, "curve": "stepped" },
  5338. { "time": 3.8333, "angle": -6.48, "curve": "stepped" },
  5339. { "time": 4, "angle": -6.48, "curve": "stepped" },
  5340. { "time": 4.1333, "angle": -6.48, "curve": "stepped" },
  5341. { "time": 4.3, "angle": -6.48, "curve": "stepped" },
  5342. { "time": 4.4667, "angle": -6.48, "curve": "stepped" },
  5343. { "time": 4.6333, "angle": -6.48, "curve": "stepped" },
  5344. { "time": 4.8333, "angle": -6.48, "curve": "stepped" },
  5345. { "time": 5, "angle": -6.48 }
  5346. ],
  5347. "translate": [
  5348. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5349. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5350. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5351. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5352. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5353. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5354. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5355. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5356. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5357. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5358. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5359. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5360. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5361. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5362. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5363. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5364. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5365. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5366. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5367. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5368. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5369. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5370. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5371. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5372. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5373. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5374. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5375. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5376. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5377. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5378. { "time": 5, "x": 0, "y": 0 }
  5379. ],
  5380. "scale": [
  5381. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5382. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5383. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5384. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5385. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5386. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5387. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5388. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5389. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5390. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5391. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5392. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5393. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5394. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5395. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5396. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5397. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5398. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5399. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5401. { "time": 5, "x": 1, "y": 1 }
  5402. ]
  5403. },
  5404. "bone22": {
  5405. "rotate": [
  5406. { "time": 0, "angle": 9.27 },
  5407. { "time": 0.4667, "angle": 5.51 },
  5408. { "time": 1, "angle": 9.27 },
  5409. { "time": 1.4667, "angle": 5.51 },
  5410. { "time": 2, "angle": 9.27 },
  5411. { "time": 2.4667, "angle": 5.51 },
  5412. { "time": 3, "angle": 9.27 },
  5413. { "time": 3.4667, "angle": 5.51 },
  5414. { "time": 4, "angle": 9.27 },
  5415. { "time": 4.4667, "angle": 5.51 },
  5416. { "time": 5, "angle": 9.27 }
  5417. ],
  5418. "translate": [
  5419. { "time": 0, "x": -0.37, "y": 1.52 },
  5420. { "time": 0.1667, "x": -1.3, "y": 0.75 },
  5421. { "time": 0.4667, "x": -0.67, "y": -0.12 },
  5422. { "time": 0.6667, "x": -1.3, "y": 0.75 },
  5423. { "time": 1, "x": -0.37, "y": 1.52 },
  5424. { "time": 1.1667, "x": -1.3, "y": 0.75 },
  5425. { "time": 1.4667, "x": -0.67, "y": -0.12 },
  5426. { "time": 1.6667, "x": -1.3, "y": 0.75 },
  5427. { "time": 2, "x": -0.37, "y": 1.52 },
  5428. { "time": 2.1667, "x": -1.3, "y": 0.75 },
  5429. { "time": 2.4667, "x": -0.67, "y": -0.12 },
  5430. { "time": 2.6667, "x": -1.3, "y": 0.75 },
  5431. { "time": 3, "x": -0.37, "y": 1.52 },
  5432. { "time": 3.1667, "x": -1.3, "y": 0.75 },
  5433. { "time": 3.4667, "x": -0.67, "y": -0.12 },
  5434. { "time": 3.6667, "x": -1.3, "y": 0.75 },
  5435. { "time": 4, "x": -0.37, "y": 1.52 },
  5436. { "time": 4.1667, "x": -1.3, "y": 0.75 },
  5437. { "time": 4.4667, "x": -0.67, "y": -0.12 },
  5438. { "time": 4.6667, "x": -1.3, "y": 0.75 },
  5439. { "time": 5, "x": -0.37, "y": 1.52 }
  5440. ],
  5441. "scale": [
  5442. { "time": 0, "x": 1.05, "y": 1 },
  5443. { "time": 0.1667, "x": 1, "y": 1 },
  5444. { "time": 0.4667, "x": 1.05, "y": 1 },
  5445. { "time": 0.6667, "x": 1, "y": 1 },
  5446. { "time": 1, "x": 1.05, "y": 1 },
  5447. { "time": 1.1667, "x": 1, "y": 1 },
  5448. { "time": 1.4667, "x": 1.05, "y": 1 },
  5449. { "time": 1.6667, "x": 1, "y": 1 },
  5450. { "time": 2, "x": 1.05, "y": 1 },
  5451. { "time": 2.1667, "x": 1, "y": 1 },
  5452. { "time": 2.4667, "x": 1.05, "y": 1 },
  5453. { "time": 2.6667, "x": 1, "y": 1 },
  5454. { "time": 3, "x": 1.05, "y": 1 },
  5455. { "time": 3.1667, "x": 1, "y": 1 },
  5456. { "time": 3.4667, "x": 1.05, "y": 1 },
  5457. { "time": 3.6667, "x": 1, "y": 1 },
  5458. { "time": 4, "x": 1.05, "y": 1 },
  5459. { "time": 4.1667, "x": 1, "y": 1 },
  5460. { "time": 4.4667, "x": 1.05, "y": 1 },
  5461. { "time": 4.6667, "x": 1, "y": 1 },
  5462. { "time": 5, "x": 1.05, "y": 1 }
  5463. ]
  5464. },
  5465. "bone23": {
  5466. "rotate": [
  5467. { "time": 0, "angle": 0, "curve": "stepped" },
  5468. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  5469. { "time": 0.3, "angle": 0, "curve": "stepped" },
  5470. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  5471. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  5472. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5473. { "time": 1, "angle": 0, "curve": "stepped" },
  5474. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  5475. { "time": 1.3, "angle": 0, "curve": "stepped" },
  5476. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  5477. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5478. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5479. { "time": 2, "angle": 0, "curve": "stepped" },
  5480. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  5481. { "time": 2.3, "angle": 0, "curve": "stepped" },
  5482. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  5483. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  5484. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  5485. { "time": 3, "angle": 0, "curve": "stepped" },
  5486. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  5487. { "time": 3.3, "angle": 0, "curve": "stepped" },
  5488. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  5489. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  5490. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  5491. { "time": 4, "angle": 0, "curve": "stepped" },
  5492. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  5493. { "time": 4.3, "angle": 0, "curve": "stepped" },
  5494. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  5495. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  5496. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  5497. { "time": 5, "angle": 0 }
  5498. ],
  5499. "translate": [
  5500. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5501. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5502. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5503. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5504. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5505. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5506. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5507. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5508. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5509. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5510. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5511. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5512. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5513. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5514. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5515. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5516. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5517. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5518. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5519. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5520. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5521. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5522. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5523. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5524. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5525. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5526. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5527. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5528. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5529. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5530. { "time": 5, "x": 0, "y": 0 }
  5531. ],
  5532. "scale": [
  5533. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5534. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5535. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5536. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5537. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5538. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5539. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5540. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5541. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5542. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5543. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5544. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5545. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5546. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5547. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5548. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5549. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5550. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5551. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5552. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5553. { "time": 5, "x": 1, "y": 1 }
  5554. ]
  5555. },
  5556. "bone24": {
  5557. "rotate": [
  5558. { "time": 0, "angle": 58.06, "curve": "stepped" },
  5559. { "time": 1, "angle": 58.06, "curve": "stepped" },
  5560. { "time": 2, "angle": 58.06, "curve": "stepped" },
  5561. { "time": 3, "angle": 58.06, "curve": "stepped" },
  5562. { "time": 4, "angle": 58.06, "curve": "stepped" },
  5563. { "time": 5, "angle": 58.06 }
  5564. ],
  5565. "translate": [
  5566. { "time": 0, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5567. { "time": 1, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5568. { "time": 2, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5569. { "time": 3, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5570. { "time": 4, "x": -12.17, "y": 28.11, "curve": "stepped" },
  5571. { "time": 5, "x": -12.17, "y": 28.11 }
  5572. ],
  5573. "scale": [
  5574. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5575. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5576. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5577. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5578. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5579. { "time": 5, "x": 1, "y": 1 }
  5580. ]
  5581. },
  5582. "bone25": {
  5583. "rotate": [
  5584. { "time": 0, "angle": 0, "curve": "stepped" },
  5585. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  5586. { "time": 0.3, "angle": 0, "curve": "stepped" },
  5587. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  5588. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  5589. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5590. { "time": 1, "angle": 0, "curve": "stepped" },
  5591. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  5592. { "time": 1.3, "angle": 0, "curve": "stepped" },
  5593. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  5594. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5595. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5596. { "time": 2, "angle": 0, "curve": "stepped" },
  5597. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  5598. { "time": 2.3, "angle": 0, "curve": "stepped" },
  5599. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  5600. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  5601. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  5602. { "time": 3, "angle": 0, "curve": "stepped" },
  5603. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  5604. { "time": 3.3, "angle": 0, "curve": "stepped" },
  5605. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  5606. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  5607. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  5608. { "time": 4, "angle": 0, "curve": "stepped" },
  5609. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  5610. { "time": 4.3, "angle": 0, "curve": "stepped" },
  5611. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  5612. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  5613. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  5614. { "time": 5, "angle": 0 }
  5615. ],
  5616. "translate": [
  5617. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5618. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5619. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5620. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5621. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5622. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5623. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5624. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5625. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5626. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5627. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5628. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5629. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5630. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5631. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5632. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5633. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5634. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5635. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5636. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5637. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5638. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5639. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5640. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5641. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5642. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5643. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5644. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5645. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5646. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5647. { "time": 5, "x": 0, "y": 0 }
  5648. ],
  5649. "scale": [
  5650. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5651. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5652. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5653. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5654. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5655. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5656. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5657. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5658. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5659. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5660. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5661. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5662. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5663. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5664. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5665. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5666. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5667. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5668. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5669. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5670. { "time": 5, "x": 1, "y": 1 }
  5671. ]
  5672. },
  5673. "bone26": {
  5674. "rotate": [
  5675. {
  5676. "time": 0,
  5677. "angle": 0,
  5678. "curve": [ 0.25, 0, 0.75, 1 ]
  5679. },
  5680. {
  5681. "time": 0.1333,
  5682. "angle": -1.01,
  5683. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5684. },
  5685. {
  5686. "time": 0.3,
  5687. "angle": -2.55,
  5688. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5689. },
  5690. {
  5691. "time": 0.4667,
  5692. "angle": -3.57,
  5693. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5694. },
  5695. {
  5696. "time": 0.6333,
  5697. "angle": -2.56,
  5698. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5699. },
  5700. {
  5701. "time": 0.8333,
  5702. "angle": -1.02,
  5703. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5704. },
  5705. {
  5706. "time": 1,
  5707. "angle": 0,
  5708. "curve": [ 0.25, 0, 0.75, 1 ]
  5709. },
  5710. {
  5711. "time": 1.1333,
  5712. "angle": -1.01,
  5713. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5714. },
  5715. {
  5716. "time": 1.3,
  5717. "angle": -2.55,
  5718. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5719. },
  5720. {
  5721. "time": 1.4667,
  5722. "angle": -3.57,
  5723. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5724. },
  5725. {
  5726. "time": 1.6333,
  5727. "angle": -2.56,
  5728. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5729. },
  5730. {
  5731. "time": 1.8333,
  5732. "angle": -1.02,
  5733. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5734. },
  5735. {
  5736. "time": 2,
  5737. "angle": 0,
  5738. "curve": [ 0.25, 0, 0.75, 1 ]
  5739. },
  5740. {
  5741. "time": 2.1333,
  5742. "angle": -1.01,
  5743. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5744. },
  5745. {
  5746. "time": 2.3,
  5747. "angle": -2.55,
  5748. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5749. },
  5750. {
  5751. "time": 2.4667,
  5752. "angle": -3.57,
  5753. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5754. },
  5755. {
  5756. "time": 2.6333,
  5757. "angle": -2.56,
  5758. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5759. },
  5760. {
  5761. "time": 2.8333,
  5762. "angle": -1.02,
  5763. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5764. },
  5765. {
  5766. "time": 3,
  5767. "angle": 0,
  5768. "curve": [ 0.25, 0, 0.75, 1 ]
  5769. },
  5770. {
  5771. "time": 3.1333,
  5772. "angle": -1.01,
  5773. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5774. },
  5775. {
  5776. "time": 3.3,
  5777. "angle": -2.55,
  5778. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5779. },
  5780. {
  5781. "time": 3.4667,
  5782. "angle": -3.57,
  5783. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5784. },
  5785. {
  5786. "time": 3.6333,
  5787. "angle": -2.56,
  5788. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5789. },
  5790. {
  5791. "time": 3.8333,
  5792. "angle": -1.02,
  5793. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5794. },
  5795. {
  5796. "time": 4,
  5797. "angle": 0,
  5798. "curve": [ 0.25, 0, 0.75, 1 ]
  5799. },
  5800. {
  5801. "time": 4.1333,
  5802. "angle": -1.01,
  5803. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5804. },
  5805. {
  5806. "time": 4.3,
  5807. "angle": -2.55,
  5808. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5809. },
  5810. {
  5811. "time": 4.4667,
  5812. "angle": -3.57,
  5813. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5814. },
  5815. {
  5816. "time": 4.6333,
  5817. "angle": -2.56,
  5818. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5819. },
  5820. {
  5821. "time": 4.8333,
  5822. "angle": -1.02,
  5823. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5824. },
  5825. { "time": 5, "angle": 0 }
  5826. ],
  5827. "translate": [
  5828. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5829. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  5830. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5831. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  5832. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  5833. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5834. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5835. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  5836. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5837. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  5838. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5839. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5840. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  5841. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  5842. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  5843. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5844. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5845. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  5846. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5847. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  5848. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  5849. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  5850. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  5851. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  5852. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  5853. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  5854. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  5855. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  5856. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  5857. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  5858. { "time": 5, "x": 0, "y": 0 }
  5859. ],
  5860. "scale": [
  5861. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5862. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  5863. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  5864. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5865. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5866. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  5867. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5868. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5869. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  5870. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5871. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5872. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  5873. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5874. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  5875. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  5876. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  5877. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  5878. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  5879. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  5880. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  5881. { "time": 5, "x": 1, "y": 1 }
  5882. ]
  5883. },
  5884. "bone27": {
  5885. "rotate": [
  5886. {
  5887. "time": 0,
  5888. "angle": 0,
  5889. "curve": [ 0.25, 0, 0.75, 1 ]
  5890. },
  5891. {
  5892. "time": 0.1333,
  5893. "angle": -2.19,
  5894. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5895. },
  5896. {
  5897. "time": 0.3,
  5898. "angle": -5.52,
  5899. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5900. },
  5901. {
  5902. "time": 0.4667,
  5903. "angle": -7.71,
  5904. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5905. },
  5906. {
  5907. "time": 0.6333,
  5908. "angle": -5.52,
  5909. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5910. },
  5911. {
  5912. "time": 0.8333,
  5913. "angle": -2.2,
  5914. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5915. },
  5916. {
  5917. "time": 1,
  5918. "angle": 0,
  5919. "curve": [ 0.25, 0, 0.75, 1 ]
  5920. },
  5921. {
  5922. "time": 1.1333,
  5923. "angle": -2.19,
  5924. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5925. },
  5926. {
  5927. "time": 1.3,
  5928. "angle": -5.52,
  5929. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5930. },
  5931. {
  5932. "time": 1.4667,
  5933. "angle": -7.71,
  5934. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5935. },
  5936. {
  5937. "time": 1.6333,
  5938. "angle": -5.52,
  5939. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5940. },
  5941. {
  5942. "time": 1.8333,
  5943. "angle": -2.2,
  5944. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5945. },
  5946. {
  5947. "time": 2,
  5948. "angle": 0,
  5949. "curve": [ 0.25, 0, 0.75, 1 ]
  5950. },
  5951. {
  5952. "time": 2.1333,
  5953. "angle": -2.19,
  5954. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5955. },
  5956. {
  5957. "time": 2.3,
  5958. "angle": -5.52,
  5959. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5960. },
  5961. {
  5962. "time": 2.4667,
  5963. "angle": -7.71,
  5964. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5965. },
  5966. {
  5967. "time": 2.6333,
  5968. "angle": -5.52,
  5969. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5970. },
  5971. {
  5972. "time": 2.8333,
  5973. "angle": -2.2,
  5974. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5975. },
  5976. {
  5977. "time": 3,
  5978. "angle": 0,
  5979. "curve": [ 0.25, 0, 0.75, 1 ]
  5980. },
  5981. {
  5982. "time": 3.1333,
  5983. "angle": -2.19,
  5984. "curve": [ 0.382, 0.57, 0.735, 1 ]
  5985. },
  5986. {
  5987. "time": 3.3,
  5988. "angle": -5.52,
  5989. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  5990. },
  5991. {
  5992. "time": 3.4667,
  5993. "angle": -7.71,
  5994. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5995. },
  5996. {
  5997. "time": 3.6333,
  5998. "angle": -5.52,
  5999. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6000. },
  6001. {
  6002. "time": 3.8333,
  6003. "angle": -2.2,
  6004. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6005. },
  6006. {
  6007. "time": 4,
  6008. "angle": 0,
  6009. "curve": [ 0.25, 0, 0.75, 1 ]
  6010. },
  6011. {
  6012. "time": 4.1333,
  6013. "angle": -2.19,
  6014. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6015. },
  6016. {
  6017. "time": 4.3,
  6018. "angle": -5.52,
  6019. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6020. },
  6021. {
  6022. "time": 4.4667,
  6023. "angle": -7.71,
  6024. "curve": [ 0.265, 0, 0.618, 0.43 ]
  6025. },
  6026. {
  6027. "time": 4.6333,
  6028. "angle": -5.52,
  6029. "curve": [ 0.382, 0.57, 0.735, 1 ]
  6030. },
  6031. {
  6032. "time": 4.8333,
  6033. "angle": -2.2,
  6034. "curve": [ 0.325, 0.31, 0.675, 0.69 ]
  6035. },
  6036. { "time": 5, "angle": 0 }
  6037. ],
  6038. "translate": [
  6039. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6040. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6041. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6042. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6043. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6044. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6045. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6046. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6047. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6048. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6049. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6050. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6051. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6052. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6053. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6054. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6055. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6056. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6057. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6058. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6059. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6060. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6061. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6062. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6063. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6064. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6065. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6066. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6067. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6068. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6069. { "time": 5, "x": 0, "y": 0 }
  6070. ],
  6071. "scale": [
  6072. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6073. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6074. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6075. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6076. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6077. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6078. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6079. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6080. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6081. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6082. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6083. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6084. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6085. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6086. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6087. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6088. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6089. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6090. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6091. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6092. { "time": 5, "x": 1, "y": 1 }
  6093. ]
  6094. },
  6095. "bone28": {
  6096. "rotate": [
  6097. { "time": 0, "angle": 0 },
  6098. { "time": 0.1333, "angle": -3.68 },
  6099. { "time": 0.3, "angle": -7.36 },
  6100. { "time": 0.4667, "angle": -11.04 },
  6101. { "time": 0.6333, "angle": -7.36 },
  6102. { "time": 0.8333, "angle": -3.68 },
  6103. { "time": 1, "angle": 0 },
  6104. { "time": 1.1333, "angle": -3.68 },
  6105. { "time": 1.3, "angle": -7.36 },
  6106. { "time": 1.4667, "angle": -11.04 },
  6107. { "time": 1.6333, "angle": -7.36 },
  6108. { "time": 1.8333, "angle": -3.68 },
  6109. { "time": 2, "angle": 0 },
  6110. { "time": 2.1333, "angle": -3.68 },
  6111. { "time": 2.3, "angle": -7.36 },
  6112. { "time": 2.4667, "angle": -11.04 },
  6113. { "time": 2.6333, "angle": -7.36 },
  6114. { "time": 2.8333, "angle": -3.68 },
  6115. { "time": 3, "angle": 0 },
  6116. { "time": 3.1333, "angle": -3.68 },
  6117. { "time": 3.3, "angle": -7.36 },
  6118. { "time": 3.4667, "angle": -11.04 },
  6119. { "time": 3.6333, "angle": -7.36 },
  6120. { "time": 3.8333, "angle": -3.68 },
  6121. { "time": 4, "angle": 0 },
  6122. { "time": 4.1333, "angle": -3.68 },
  6123. { "time": 4.3, "angle": -7.36 },
  6124. { "time": 4.4667, "angle": -11.04 },
  6125. { "time": 4.6333, "angle": -7.36 },
  6126. { "time": 4.8333, "angle": -3.68 },
  6127. { "time": 5, "angle": 0 }
  6128. ],
  6129. "translate": [
  6130. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6131. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6132. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6133. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6134. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6135. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6136. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6137. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6138. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6139. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6140. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6141. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6142. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6143. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6144. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6145. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6146. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6147. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6148. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6149. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6150. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6151. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6152. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6153. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6154. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6155. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6156. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6157. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6158. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6159. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6160. { "time": 5, "x": 0, "y": 0 }
  6161. ],
  6162. "scale": [
  6163. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6164. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6165. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6166. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6167. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6168. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6169. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6170. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6171. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6172. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6173. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6174. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6175. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6176. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6177. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6178. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6179. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6180. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6181. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6182. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6183. { "time": 5, "x": 1, "y": 1 }
  6184. ]
  6185. },
  6186. "bone29": {
  6187. "rotate": [
  6188. { "time": 0, "angle": 0, "curve": "stepped" },
  6189. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  6190. { "time": 0.3, "angle": 0, "curve": "stepped" },
  6191. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6192. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  6193. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6194. { "time": 1, "angle": 0, "curve": "stepped" },
  6195. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6196. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6197. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  6198. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  6199. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6200. { "time": 2, "angle": 0, "curve": "stepped" },
  6201. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  6202. { "time": 2.3, "angle": 0, "curve": "stepped" },
  6203. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6204. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  6205. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  6206. { "time": 3, "angle": 0, "curve": "stepped" },
  6207. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6208. { "time": 3.3, "angle": 0, "curve": "stepped" },
  6209. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  6210. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  6211. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  6212. { "time": 4, "angle": 0, "curve": "stepped" },
  6213. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  6214. { "time": 4.3, "angle": 0, "curve": "stepped" },
  6215. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  6216. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  6217. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  6218. { "time": 5, "angle": 0 }
  6219. ],
  6220. "translate": [
  6221. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6222. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6223. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6224. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6225. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6226. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6227. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6228. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6229. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6230. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6231. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6232. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6233. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6234. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6235. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6236. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6237. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6238. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6239. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6240. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6241. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6242. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6243. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6244. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6245. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6246. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6247. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6248. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6249. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6250. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6251. { "time": 5, "x": 0, "y": 0 }
  6252. ],
  6253. "scale": [
  6254. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6255. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6256. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6257. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6258. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6259. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6260. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6261. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6262. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6263. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6264. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6265. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6266. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6267. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6268. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6269. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6270. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6271. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6272. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6273. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6274. { "time": 5, "x": 1, "y": 1 }
  6275. ]
  6276. },
  6277. "bone30": {
  6278. "rotate": [
  6279. { "time": 0, "angle": 0 },
  6280. { "time": 0.1333, "angle": -2.35 },
  6281. { "time": 0.3, "angle": -4.7 },
  6282. { "time": 0.4667, "angle": -7.04 },
  6283. { "time": 0.6333, "angle": -4.7 },
  6284. { "time": 0.8333, "angle": -2.35 },
  6285. { "time": 1, "angle": 0 },
  6286. { "time": 1.1333, "angle": -2.35 },
  6287. { "time": 1.3, "angle": -4.7 },
  6288. { "time": 1.4667, "angle": -7.04 },
  6289. { "time": 1.6333, "angle": -4.7 },
  6290. { "time": 1.8333, "angle": -2.35 },
  6291. { "time": 2, "angle": 0 },
  6292. { "time": 2.1333, "angle": -2.35 },
  6293. { "time": 2.3, "angle": -4.7 },
  6294. { "time": 2.4667, "angle": -7.04 },
  6295. { "time": 2.6333, "angle": -4.7 },
  6296. { "time": 2.8333, "angle": -2.35 },
  6297. { "time": 3, "angle": 0 },
  6298. { "time": 3.1333, "angle": -2.35 },
  6299. { "time": 3.3, "angle": -4.7 },
  6300. { "time": 3.4667, "angle": -7.04 },
  6301. { "time": 3.6333, "angle": -4.7 },
  6302. { "time": 3.8333, "angle": -2.35 },
  6303. { "time": 4, "angle": 0 },
  6304. { "time": 4.1333, "angle": -2.35 },
  6305. { "time": 4.3, "angle": -4.7 },
  6306. { "time": 4.4667, "angle": -7.04 },
  6307. { "time": 4.6333, "angle": -4.7 },
  6308. { "time": 4.8333, "angle": -2.35 },
  6309. { "time": 5, "angle": 0 }
  6310. ],
  6311. "translate": [
  6312. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6313. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6314. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6315. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6316. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6317. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6318. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6319. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6320. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6321. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6322. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6323. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6324. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6325. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6326. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6327. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6328. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6329. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6330. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6331. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6332. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6333. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6334. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6335. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6336. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6337. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6338. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6339. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6340. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6341. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6342. { "time": 5, "x": 0, "y": 0 }
  6343. ],
  6344. "scale": [
  6345. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6346. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6347. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6348. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6349. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6350. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6351. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6352. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6353. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6354. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6355. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6356. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6357. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6358. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6359. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6360. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6361. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6362. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6363. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6364. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6365. { "time": 5, "x": 1, "y": 1 }
  6366. ]
  6367. },
  6368. "bone31": {
  6369. "rotate": [
  6370. { "time": 0, "angle": 18.14 },
  6371. { "time": 0.1333, "angle": 16.6 },
  6372. { "time": 0.3, "angle": 15.05 },
  6373. { "time": 0.4667, "angle": 13.5 },
  6374. { "time": 0.6333, "angle": 15.05 },
  6375. { "time": 0.8333, "angle": 16.6 },
  6376. { "time": 1, "angle": 18.14 },
  6377. { "time": 1.1333, "angle": 16.6 },
  6378. { "time": 1.3, "angle": 15.05 },
  6379. { "time": 1.4667, "angle": 13.5 },
  6380. { "time": 1.6333, "angle": 15.05 },
  6381. { "time": 1.8333, "angle": 16.6 },
  6382. { "time": 2, "angle": 18.14 },
  6383. { "time": 2.1333, "angle": 16.6 },
  6384. { "time": 2.3, "angle": 15.05 },
  6385. { "time": 2.4667, "angle": 13.5 },
  6386. { "time": 2.6333, "angle": 15.05 },
  6387. { "time": 2.8333, "angle": 16.6 },
  6388. { "time": 3, "angle": 18.14 },
  6389. { "time": 3.1333, "angle": 16.6 },
  6390. { "time": 3.3, "angle": 15.05 },
  6391. { "time": 3.4667, "angle": 13.5 },
  6392. { "time": 3.6333, "angle": 15.05 },
  6393. { "time": 3.8333, "angle": 16.6 },
  6394. { "time": 4, "angle": 18.14 },
  6395. { "time": 4.1333, "angle": 16.6 },
  6396. { "time": 4.3, "angle": 15.05 },
  6397. { "time": 4.4667, "angle": 13.5 },
  6398. { "time": 4.6333, "angle": 15.05 },
  6399. { "time": 4.8333, "angle": 16.6 },
  6400. { "time": 5, "angle": 18.14 }
  6401. ],
  6402. "translate": [
  6403. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6404. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6405. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6406. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6407. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6408. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6409. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6410. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6411. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6412. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6413. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6414. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6415. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6416. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6417. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6418. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6419. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6420. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6421. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6422. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6423. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6424. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6425. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6426. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6427. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6428. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6429. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6430. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6431. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6432. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6433. { "time": 5, "x": 0, "y": 0 }
  6434. ],
  6435. "scale": [
  6436. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6437. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6438. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6439. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6440. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6441. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6442. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6443. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6444. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6445. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6446. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6447. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6448. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6449. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6450. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6451. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6452. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6453. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6454. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6455. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6456. { "time": 5, "x": 1, "y": 1 }
  6457. ]
  6458. },
  6459. "bone32": {
  6460. "rotate": [
  6461. { "time": 0, "angle": 18.75 },
  6462. { "time": 0.1333, "angle": 12.5 },
  6463. { "time": 0.3, "angle": 6.25 },
  6464. { "time": 0.4667, "angle": 0 },
  6465. { "time": 0.6333, "angle": 6.25 },
  6466. { "time": 0.8333, "angle": 12.5 },
  6467. { "time": 1, "angle": 18.75 },
  6468. { "time": 1.1333, "angle": 12.5 },
  6469. { "time": 1.3, "angle": 6.25 },
  6470. { "time": 1.4667, "angle": 0 },
  6471. { "time": 1.6333, "angle": 6.25 },
  6472. { "time": 1.8333, "angle": 12.5 },
  6473. { "time": 2, "angle": 18.75 },
  6474. { "time": 2.1333, "angle": 12.5 },
  6475. { "time": 2.3, "angle": 6.25 },
  6476. { "time": 2.4667, "angle": 0 },
  6477. { "time": 2.6333, "angle": 6.25 },
  6478. { "time": 2.8333, "angle": 12.5 },
  6479. { "time": 3, "angle": 18.75 },
  6480. { "time": 3.1333, "angle": 12.5 },
  6481. { "time": 3.3, "angle": 6.25 },
  6482. { "time": 3.4667, "angle": 0 },
  6483. { "time": 3.6333, "angle": 6.25 },
  6484. { "time": 3.8333, "angle": 12.5 },
  6485. { "time": 4, "angle": 18.75 },
  6486. { "time": 4.1333, "angle": 12.5 },
  6487. { "time": 4.3, "angle": 6.25 },
  6488. { "time": 4.4667, "angle": 0 },
  6489. { "time": 4.6333, "angle": 6.25 },
  6490. { "time": 4.8333, "angle": 12.5 },
  6491. { "time": 5, "angle": 18.75 }
  6492. ],
  6493. "translate": [
  6494. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6495. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6496. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6497. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6498. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6499. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6500. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6501. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6502. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6503. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6504. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6505. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6506. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6507. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6508. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6509. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6510. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6511. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6512. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6513. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6514. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6515. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6516. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6517. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6518. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6519. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6520. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6521. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6522. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6523. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6524. { "time": 5, "x": 0, "y": 0 }
  6525. ],
  6526. "scale": [
  6527. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6528. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6529. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6530. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6531. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6532. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6533. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6534. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6535. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6536. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6537. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6538. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6539. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6540. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6541. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6542. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6543. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6544. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6545. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6546. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6547. { "time": 5, "x": 1, "y": 1 }
  6548. ]
  6549. },
  6550. "bone33": {
  6551. "rotate": [
  6552. { "time": 0, "angle": 0, "curve": "stepped" },
  6553. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  6554. { "time": 0.3, "angle": 0, "curve": "stepped" },
  6555. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6556. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  6557. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6558. { "time": 1, "angle": 0, "curve": "stepped" },
  6559. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6560. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6561. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  6562. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  6563. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6564. { "time": 2, "angle": 0, "curve": "stepped" },
  6565. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  6566. { "time": 2.3, "angle": 0, "curve": "stepped" },
  6567. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6568. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  6569. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  6570. { "time": 3, "angle": 0, "curve": "stepped" },
  6571. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6572. { "time": 3.3, "angle": 0, "curve": "stepped" },
  6573. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  6574. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  6575. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  6576. { "time": 4, "angle": 0, "curve": "stepped" },
  6577. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  6578. { "time": 4.3, "angle": 0, "curve": "stepped" },
  6579. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  6580. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  6581. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  6582. { "time": 5, "angle": 0 }
  6583. ],
  6584. "translate": [
  6585. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6586. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6587. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6588. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6589. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6590. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6591. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6592. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6593. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6594. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6595. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6596. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6597. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6598. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6599. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6600. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6601. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6602. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6603. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6604. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6605. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6606. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6607. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6608. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6609. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6610. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6611. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6612. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6613. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6614. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6615. { "time": 5, "x": 0, "y": 0 }
  6616. ],
  6617. "scale": [
  6618. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6619. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6620. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6621. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6622. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6623. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6624. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6625. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6626. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6627. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6628. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6629. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6630. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6631. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6632. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6633. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6634. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6635. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6636. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6637. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6638. { "time": 5, "x": 1, "y": 1 }
  6639. ]
  6640. },
  6641. "bone34": {
  6642. "rotate": [
  6643. { "time": 0, "angle": 0 },
  6644. { "time": 0.1333, "angle": 2.24 },
  6645. { "time": 0.3, "angle": 4.48 },
  6646. { "time": 0.4667, "angle": 6.72 },
  6647. { "time": 0.6333, "angle": 4.48 },
  6648. { "time": 0.8333, "angle": 2.24 },
  6649. { "time": 1, "angle": 0 },
  6650. { "time": 1.1333, "angle": 2.24 },
  6651. { "time": 1.3, "angle": 4.48 },
  6652. { "time": 1.4667, "angle": 6.72 },
  6653. { "time": 1.6333, "angle": 4.48 },
  6654. { "time": 1.8333, "angle": 2.24 },
  6655. { "time": 2, "angle": 0 },
  6656. { "time": 2.1333, "angle": 2.24 },
  6657. { "time": 2.3, "angle": 4.48 },
  6658. { "time": 2.4667, "angle": 6.72 },
  6659. { "time": 2.6333, "angle": 4.48 },
  6660. { "time": 2.8333, "angle": 2.24 },
  6661. { "time": 3, "angle": 0 },
  6662. { "time": 3.1333, "angle": 2.24 },
  6663. { "time": 3.3, "angle": 4.48 },
  6664. { "time": 3.4667, "angle": 6.72 },
  6665. { "time": 3.6333, "angle": 4.48 },
  6666. { "time": 3.8333, "angle": 2.24 },
  6667. { "time": 4, "angle": 0 },
  6668. { "time": 4.1333, "angle": 2.24 },
  6669. { "time": 4.3, "angle": 4.48 },
  6670. { "time": 4.4667, "angle": 6.72 },
  6671. { "time": 4.6333, "angle": 4.48 },
  6672. { "time": 4.8333, "angle": 2.24 },
  6673. { "time": 5, "angle": 0 }
  6674. ],
  6675. "translate": [
  6676. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6677. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6678. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6679. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6680. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6681. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6682. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6683. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6684. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6685. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6686. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6687. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6688. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6689. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6690. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6691. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6692. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6693. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6694. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6695. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6696. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6697. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6698. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6699. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6700. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6701. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6702. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6703. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6704. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6705. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6706. { "time": 5, "x": 0, "y": 0 }
  6707. ],
  6708. "scale": [
  6709. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6710. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6711. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6712. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6713. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6714. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6715. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6716. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6717. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6718. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6719. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6720. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6721. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6722. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6723. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6724. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6725. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6726. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6727. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6728. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6729. { "time": 5, "x": 1, "y": 1 }
  6730. ]
  6731. },
  6732. "bone35": {
  6733. "rotate": [
  6734. { "time": 0, "angle": 0 },
  6735. { "time": 0.1333, "angle": 1.29 },
  6736. { "time": 0.3, "angle": 2.58 },
  6737. { "time": 0.4667, "angle": 3.87 },
  6738. { "time": 0.6333, "angle": 2.58 },
  6739. { "time": 0.8333, "angle": 1.29 },
  6740. { "time": 1, "angle": 0 },
  6741. { "time": 1.1333, "angle": 1.29 },
  6742. { "time": 1.3, "angle": 2.58 },
  6743. { "time": 1.4667, "angle": 3.87 },
  6744. { "time": 1.6333, "angle": 2.58 },
  6745. { "time": 1.8333, "angle": 1.29 },
  6746. { "time": 2, "angle": 0 },
  6747. { "time": 2.1333, "angle": 1.29 },
  6748. { "time": 2.3, "angle": 2.58 },
  6749. { "time": 2.4667, "angle": 3.87 },
  6750. { "time": 2.6333, "angle": 2.58 },
  6751. { "time": 2.8333, "angle": 1.29 },
  6752. { "time": 3, "angle": 0 },
  6753. { "time": 3.1333, "angle": 1.29 },
  6754. { "time": 3.3, "angle": 2.58 },
  6755. { "time": 3.4667, "angle": 3.87 },
  6756. { "time": 3.6333, "angle": 2.58 },
  6757. { "time": 3.8333, "angle": 1.29 },
  6758. { "time": 4, "angle": 0 },
  6759. { "time": 4.1333, "angle": 1.29 },
  6760. { "time": 4.3, "angle": 2.58 },
  6761. { "time": 4.4667, "angle": 3.87 },
  6762. { "time": 4.6333, "angle": 2.58 },
  6763. { "time": 4.8333, "angle": 1.29 },
  6764. { "time": 5, "angle": 0 }
  6765. ],
  6766. "translate": [
  6767. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6768. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6769. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6770. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6771. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6772. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6773. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6774. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6775. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6776. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6777. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6778. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6779. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6780. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6781. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6782. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6783. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6784. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6785. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6786. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6787. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6788. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6789. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6790. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6791. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6792. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6793. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6794. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6795. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6796. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6797. { "time": 5, "x": 0, "y": 0 }
  6798. ],
  6799. "scale": [
  6800. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6801. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6802. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6803. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6804. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6805. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6806. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6807. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6808. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6809. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6810. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6811. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6812. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6813. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6814. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6815. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6816. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6817. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6818. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6819. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6820. { "time": 5, "x": 1, "y": 1 }
  6821. ]
  6822. },
  6823. "bone36": {
  6824. "rotate": [
  6825. { "time": 0, "angle": 0, "curve": "stepped" },
  6826. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  6827. { "time": 0.3, "angle": 0, "curve": "stepped" },
  6828. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6829. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  6830. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6831. { "time": 1, "angle": 0, "curve": "stepped" },
  6832. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6833. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6834. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  6835. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  6836. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6837. { "time": 2, "angle": 0, "curve": "stepped" },
  6838. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  6839. { "time": 2.3, "angle": 0, "curve": "stepped" },
  6840. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6841. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  6842. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  6843. { "time": 3, "angle": 0, "curve": "stepped" },
  6844. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6845. { "time": 3.3, "angle": 0, "curve": "stepped" },
  6846. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  6847. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  6848. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  6849. { "time": 4, "angle": 0, "curve": "stepped" },
  6850. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  6851. { "time": 4.3, "angle": 0, "curve": "stepped" },
  6852. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  6853. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  6854. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  6855. { "time": 5, "angle": 0 }
  6856. ],
  6857. "translate": [
  6858. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6859. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6860. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6861. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6862. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6863. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6864. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6865. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6866. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6867. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6868. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6869. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6870. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6871. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6872. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6873. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6874. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6875. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6876. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6877. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6878. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6879. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6880. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6881. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6882. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6883. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6884. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6885. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6886. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6887. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6888. { "time": 5, "x": 0, "y": 0 }
  6889. ],
  6890. "scale": [
  6891. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6892. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6893. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6894. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6895. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6896. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6897. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6898. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6899. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6900. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6901. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6902. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6903. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6904. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6905. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6906. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6907. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6908. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  6909. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  6910. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6911. { "time": 5, "x": 1, "y": 1 }
  6912. ]
  6913. },
  6914. "bone37": {
  6915. "rotate": [
  6916. { "time": 0, "angle": 0, "curve": "stepped" },
  6917. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  6918. { "time": 0.3, "angle": 0, "curve": "stepped" },
  6919. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  6920. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  6921. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6922. { "time": 1, "angle": 0, "curve": "stepped" },
  6923. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6924. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6925. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  6926. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  6927. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6928. { "time": 2, "angle": 0, "curve": "stepped" },
  6929. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  6930. { "time": 2.3, "angle": 0, "curve": "stepped" },
  6931. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6932. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  6933. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  6934. { "time": 3, "angle": 0, "curve": "stepped" },
  6935. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  6936. { "time": 3.3, "angle": 0, "curve": "stepped" },
  6937. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  6938. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  6939. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  6940. { "time": 4, "angle": 0, "curve": "stepped" },
  6941. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  6942. { "time": 4.3, "angle": 0, "curve": "stepped" },
  6943. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  6944. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  6945. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  6946. { "time": 5, "angle": 0 }
  6947. ],
  6948. "translate": [
  6949. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6950. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  6951. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6952. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  6953. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  6954. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6955. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6956. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6957. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6958. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  6959. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6960. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6961. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6962. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6963. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  6964. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6965. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6966. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6967. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6968. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  6969. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  6970. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  6971. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  6972. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6973. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6974. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  6975. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  6976. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  6977. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  6978. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6979. { "time": 5, "x": 0, "y": 0 }
  6980. ],
  6981. "scale": [
  6982. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6983. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6984. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  6985. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6986. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6987. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  6988. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6989. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6990. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6991. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6992. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6993. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6994. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6995. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  6996. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  6997. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6998. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6999. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7000. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7001. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7002. { "time": 5, "x": 1, "y": 1 }
  7003. ]
  7004. },
  7005. "bone38": {
  7006. "rotate": [
  7007. { "time": 0, "angle": 0, "curve": "stepped" },
  7008. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  7009. { "time": 0.3, "angle": 0, "curve": "stepped" },
  7010. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  7011. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  7012. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7013. { "time": 1, "angle": 0, "curve": "stepped" },
  7014. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  7015. { "time": 1.3, "angle": 0, "curve": "stepped" },
  7016. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  7017. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  7018. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7019. { "time": 2, "angle": 0, "curve": "stepped" },
  7020. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  7021. { "time": 2.3, "angle": 0, "curve": "stepped" },
  7022. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  7023. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  7024. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  7025. { "time": 3, "angle": 0, "curve": "stepped" },
  7026. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  7027. { "time": 3.3, "angle": 0, "curve": "stepped" },
  7028. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  7029. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  7030. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  7031. { "time": 4, "angle": 0, "curve": "stepped" },
  7032. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  7033. { "time": 4.3, "angle": 0, "curve": "stepped" },
  7034. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  7035. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  7036. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  7037. { "time": 5, "angle": 0 }
  7038. ],
  7039. "translate": [
  7040. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7041. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7042. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7043. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7044. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7045. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7046. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7047. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7048. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7049. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7050. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7051. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7052. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7053. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7054. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7055. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7056. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7057. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7058. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7059. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7060. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7061. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7062. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7063. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7064. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7065. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7066. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7067. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7068. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7069. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7070. { "time": 5, "x": 0, "y": 0 }
  7071. ],
  7072. "scale": [
  7073. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7074. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7075. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7076. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7077. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7078. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7079. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7080. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7081. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7082. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7083. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7084. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7085. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7086. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7087. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7088. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7089. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7090. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7091. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7092. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7093. { "time": 5, "x": 1, "y": 1 }
  7094. ]
  7095. },
  7096. "bone39": {
  7097. "rotate": [
  7098. { "time": 0, "angle": 0, "curve": "stepped" },
  7099. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  7100. { "time": 0.3, "angle": 0, "curve": "stepped" },
  7101. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  7102. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  7103. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7104. { "time": 1, "angle": 0, "curve": "stepped" },
  7105. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  7106. { "time": 1.3, "angle": 0, "curve": "stepped" },
  7107. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  7108. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  7109. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7110. { "time": 2, "angle": 0, "curve": "stepped" },
  7111. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  7112. { "time": 2.3, "angle": 0, "curve": "stepped" },
  7113. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  7114. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  7115. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  7116. { "time": 3, "angle": 0, "curve": "stepped" },
  7117. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  7118. { "time": 3.3, "angle": 0, "curve": "stepped" },
  7119. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  7120. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  7121. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  7122. { "time": 4, "angle": 0, "curve": "stepped" },
  7123. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  7124. { "time": 4.3, "angle": 0, "curve": "stepped" },
  7125. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  7126. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  7127. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  7128. { "time": 5, "angle": 0 }
  7129. ],
  7130. "translate": [
  7131. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7132. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7133. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7134. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7135. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7136. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7137. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7138. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7139. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7140. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7141. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7142. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7143. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7144. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7145. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7146. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7147. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7148. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7149. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7150. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7151. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7152. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7153. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7154. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7155. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7156. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7157. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7158. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7159. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7160. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7161. { "time": 5, "x": 0, "y": 0 }
  7162. ],
  7163. "scale": [
  7164. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7165. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7166. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7167. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7168. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7169. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7170. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7171. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7172. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7173. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7174. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7175. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7176. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7177. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7178. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7179. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7180. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7181. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7182. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7183. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7184. { "time": 5, "x": 1, "y": 1 }
  7185. ]
  7186. },
  7187. "bone40": {
  7188. "rotate": [
  7189. { "time": 0, "angle": 0, "curve": "stepped" },
  7190. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  7191. { "time": 0.3, "angle": 0, "curve": "stepped" },
  7192. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  7193. { "time": 0.6333, "angle": 0, "curve": "stepped" },
  7194. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7195. { "time": 1, "angle": 0, "curve": "stepped" },
  7196. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  7197. { "time": 1.3, "angle": 0, "curve": "stepped" },
  7198. { "time": 1.4667, "angle": 0, "curve": "stepped" },
  7199. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  7200. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7201. { "time": 2, "angle": 0, "curve": "stepped" },
  7202. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  7203. { "time": 2.3, "angle": 0, "curve": "stepped" },
  7204. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  7205. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  7206. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  7207. { "time": 3, "angle": 0, "curve": "stepped" },
  7208. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  7209. { "time": 3.3, "angle": 0, "curve": "stepped" },
  7210. { "time": 3.4667, "angle": 0, "curve": "stepped" },
  7211. { "time": 3.6333, "angle": 0, "curve": "stepped" },
  7212. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  7213. { "time": 4, "angle": 0, "curve": "stepped" },
  7214. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  7215. { "time": 4.3, "angle": 0, "curve": "stepped" },
  7216. { "time": 4.4667, "angle": 0, "curve": "stepped" },
  7217. { "time": 4.6333, "angle": 0, "curve": "stepped" },
  7218. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  7219. { "time": 5, "angle": 0 }
  7220. ],
  7221. "translate": [
  7222. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7223. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7224. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7225. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7226. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7227. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7228. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7229. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7230. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7231. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7232. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7233. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7234. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7235. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7236. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7237. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7238. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7239. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7240. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7241. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7242. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7243. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7244. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7245. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7246. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7247. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7248. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7249. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7250. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7251. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7252. { "time": 5, "x": 0, "y": 0 }
  7253. ],
  7254. "scale": [
  7255. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7256. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7257. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7258. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7259. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7260. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7261. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7262. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7263. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7264. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7265. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7266. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7267. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7268. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7269. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7270. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7271. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7272. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7273. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7274. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7275. { "time": 5, "x": 1, "y": 1 }
  7276. ]
  7277. },
  7278. "bone41": {
  7279. "rotate": [
  7280. { "time": 0, "angle": 0 },
  7281. { "time": 0.1333, "angle": -12.34 },
  7282. { "time": 0.3, "angle": -24.69 },
  7283. { "time": 0.4667, "angle": -37.03 },
  7284. { "time": 0.6333, "angle": -24.69 },
  7285. { "time": 0.8333, "angle": -12.34 },
  7286. { "time": 1, "angle": 0 },
  7287. { "time": 1.1333, "angle": -12.34 },
  7288. { "time": 1.3, "angle": -24.69 },
  7289. { "time": 1.4667, "angle": -37.03 },
  7290. { "time": 1.6333, "angle": -24.69 },
  7291. { "time": 1.8333, "angle": -12.34 },
  7292. { "time": 2, "angle": 0 },
  7293. { "time": 2.1333, "angle": -12.34 },
  7294. { "time": 2.3, "angle": -24.69 },
  7295. { "time": 2.4667, "angle": -37.03 },
  7296. { "time": 2.6333, "angle": -24.69 },
  7297. { "time": 2.8333, "angle": -12.34 },
  7298. { "time": 3, "angle": 0 },
  7299. { "time": 3.1333, "angle": -12.34 },
  7300. { "time": 3.3, "angle": -24.69 },
  7301. { "time": 3.4667, "angle": -37.03 },
  7302. { "time": 3.6333, "angle": -24.69 },
  7303. { "time": 3.8333, "angle": -12.34 },
  7304. { "time": 4, "angle": 0 },
  7305. { "time": 4.1333, "angle": -12.34 },
  7306. { "time": 4.3, "angle": -24.69 },
  7307. { "time": 4.4667, "angle": -37.03 },
  7308. { "time": 4.6333, "angle": -24.69 },
  7309. { "time": 4.8333, "angle": -12.34 },
  7310. { "time": 5, "angle": 0 }
  7311. ],
  7312. "translate": [
  7313. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7314. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7315. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7316. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7317. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7318. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7319. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7320. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7321. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7322. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7323. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7324. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7325. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7326. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7327. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7328. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7329. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7330. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7331. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7332. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7333. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7334. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7335. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7336. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7337. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7338. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7339. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7340. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7341. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7342. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7343. { "time": 5, "x": 0, "y": 0 }
  7344. ],
  7345. "scale": [
  7346. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7347. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7348. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7349. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7350. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7351. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7352. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7353. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7354. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7355. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7356. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7357. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7358. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7359. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7360. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7361. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7362. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7363. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7364. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7365. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7366. { "time": 5, "x": 1, "y": 1 }
  7367. ]
  7368. },
  7369. "bone42": {
  7370. "rotate": [
  7371. { "time": 0, "angle": 9.19 },
  7372. { "time": 0.1333, "angle": 3.2 },
  7373. { "time": 0.3, "angle": -2.8 },
  7374. { "time": 0.4667, "angle": -8.79 },
  7375. { "time": 0.6333, "angle": -2.8 },
  7376. { "time": 0.8333, "angle": 3.2 },
  7377. { "time": 1, "angle": 9.19 },
  7378. { "time": 1.1333, "angle": 3.2 },
  7379. { "time": 1.3, "angle": -2.8 },
  7380. { "time": 1.4667, "angle": -8.79 },
  7381. { "time": 1.6333, "angle": -2.8 },
  7382. { "time": 1.8333, "angle": 3.2 },
  7383. { "time": 2, "angle": 9.19 },
  7384. { "time": 2.1333, "angle": 3.2 },
  7385. { "time": 2.3, "angle": -2.8 },
  7386. { "time": 2.4667, "angle": -8.79 },
  7387. { "time": 2.6333, "angle": -2.8 },
  7388. { "time": 2.8333, "angle": 3.2 },
  7389. { "time": 3, "angle": 9.19 },
  7390. { "time": 3.1333, "angle": 3.2 },
  7391. { "time": 3.3, "angle": -2.8 },
  7392. { "time": 3.4667, "angle": -8.79 },
  7393. { "time": 3.6333, "angle": -2.8 },
  7394. { "time": 3.8333, "angle": 3.2 },
  7395. { "time": 4, "angle": 9.19 },
  7396. { "time": 4.1333, "angle": 3.2 },
  7397. { "time": 4.3, "angle": -2.8 },
  7398. { "time": 4.4667, "angle": -8.79 },
  7399. { "time": 4.6333, "angle": -2.8 },
  7400. { "time": 4.8333, "angle": 3.2 },
  7401. { "time": 5, "angle": 9.19 }
  7402. ],
  7403. "translate": [
  7404. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7405. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7406. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7407. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7408. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7409. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7410. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7411. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7412. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7413. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7414. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7415. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7416. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7417. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7418. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7419. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7420. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7421. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7422. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7423. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7424. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7425. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7426. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7427. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7428. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7429. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7430. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7431. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7432. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7433. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7434. { "time": 5, "x": 0, "y": 0 }
  7435. ],
  7436. "scale": [
  7437. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7438. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7439. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7440. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7441. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7442. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7443. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7444. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7445. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7446. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7447. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7448. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7449. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7450. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7451. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7452. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7453. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7454. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7455. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7456. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7457. { "time": 5, "x": 1, "y": 1 }
  7458. ]
  7459. },
  7460. "bone43": {
  7461. "rotate": [
  7462. { "time": 0, "angle": 6.12 },
  7463. { "time": 0.1333, "angle": 4.08 },
  7464. { "time": 0.3, "angle": 2.04 },
  7465. { "time": 0.4667, "angle": 0 },
  7466. { "time": 0.6333, "angle": 2.04 },
  7467. { "time": 0.8333, "angle": 4.08 },
  7468. { "time": 1, "angle": 6.12 },
  7469. { "time": 1.1333, "angle": 4.08 },
  7470. { "time": 1.3, "angle": 2.04 },
  7471. { "time": 1.4667, "angle": 0 },
  7472. { "time": 1.6333, "angle": 2.04 },
  7473. { "time": 1.8333, "angle": 4.08 },
  7474. { "time": 2, "angle": 6.12 },
  7475. { "time": 2.1333, "angle": 4.08 },
  7476. { "time": 2.3, "angle": 2.04 },
  7477. { "time": 2.4667, "angle": 0 },
  7478. { "time": 2.6333, "angle": 2.04 },
  7479. { "time": 2.8333, "angle": 4.08 },
  7480. { "time": 3, "angle": 6.12 },
  7481. { "time": 3.1333, "angle": 4.08 },
  7482. { "time": 3.3, "angle": 2.04 },
  7483. { "time": 3.4667, "angle": 0 },
  7484. { "time": 3.6333, "angle": 2.04 },
  7485. { "time": 3.8333, "angle": 4.08 },
  7486. { "time": 4, "angle": 6.12 },
  7487. { "time": 4.1333, "angle": 4.08 },
  7488. { "time": 4.3, "angle": 2.04 },
  7489. { "time": 4.4667, "angle": 0 },
  7490. { "time": 4.6333, "angle": 2.04 },
  7491. { "time": 4.8333, "angle": 4.08 },
  7492. { "time": 5, "angle": 6.12 }
  7493. ],
  7494. "translate": [
  7495. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7496. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7497. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7498. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7499. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7500. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7501. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7502. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7503. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7504. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7505. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7506. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7507. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7508. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7509. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7510. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7511. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7512. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7513. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7514. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7515. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7516. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7517. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7518. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7519. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7520. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7521. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7522. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7523. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7524. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7525. { "time": 5, "x": 0, "y": 0 }
  7526. ],
  7527. "scale": [
  7528. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7529. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7530. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7531. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7532. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7533. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7534. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7535. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7536. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7537. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7538. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7539. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7540. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7541. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7542. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7543. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7544. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7545. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7546. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7547. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7548. { "time": 5, "x": 1, "y": 1 }
  7549. ]
  7550. },
  7551. "bone44": {
  7552. "rotate": [
  7553. { "time": 0, "angle": -12.46 },
  7554. { "time": 0.4667, "angle": -355.52 },
  7555. { "time": 1, "angle": -12.46 },
  7556. { "time": 1.4667, "angle": -355.52 },
  7557. { "time": 2, "angle": -12.46 },
  7558. { "time": 2.4667, "angle": -355.52 },
  7559. { "time": 3, "angle": -12.46 },
  7560. { "time": 3.4667, "angle": -355.52 },
  7561. { "time": 4, "angle": -12.46 },
  7562. { "time": 4.4667, "angle": -355.52 },
  7563. { "time": 5, "angle": -12.46 }
  7564. ],
  7565. "translate": [
  7566. { "time": 0, "x": 0.12, "y": 0.51 },
  7567. { "time": 0.1333, "x": -0.81, "y": 0.38 },
  7568. { "time": 0.4667, "x": 0.05, "y": -0.77 },
  7569. { "time": 0.6, "x": -0.81, "y": 0.38 },
  7570. { "time": 1, "x": 0.12, "y": 0.51 },
  7571. { "time": 1.1333, "x": -0.81, "y": 0.38 },
  7572. { "time": 1.4667, "x": 0.05, "y": -0.77 },
  7573. { "time": 1.6, "x": -0.81, "y": 0.38 },
  7574. { "time": 2, "x": 0.12, "y": 0.51 },
  7575. { "time": 2.1333, "x": -0.81, "y": 0.38 },
  7576. { "time": 2.4667, "x": 0.05, "y": -0.77 },
  7577. { "time": 2.6, "x": -0.81, "y": 0.38 },
  7578. { "time": 3, "x": 0.12, "y": 0.51 },
  7579. { "time": 3.1333, "x": -0.81, "y": 0.38 },
  7580. { "time": 3.4667, "x": 0.05, "y": -0.77 },
  7581. { "time": 3.6, "x": -0.81, "y": 0.38 },
  7582. { "time": 4, "x": 0.12, "y": 0.51 },
  7583. { "time": 4.1333, "x": -0.81, "y": 0.38 },
  7584. { "time": 4.4667, "x": 0.05, "y": -0.77 },
  7585. { "time": 4.6, "x": -0.81, "y": 0.38 },
  7586. { "time": 5, "x": 0.12, "y": 0.51 }
  7587. ],
  7588. "scale": [
  7589. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7590. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7591. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7592. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7593. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7594. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7595. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7596. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7597. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7598. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7599. { "time": 5, "x": 1, "y": 1 }
  7600. ]
  7601. },
  7602. "bone45": {
  7603. "rotate": [
  7604. { "time": 0, "angle": -10.91 },
  7605. { "time": 0.1333, "angle": -7.27 },
  7606. { "time": 0.3, "angle": -3.64 },
  7607. { "time": 0.4667, "angle": 0 },
  7608. { "time": 0.6333, "angle": -3.64 },
  7609. { "time": 0.8333, "angle": -7.27 },
  7610. { "time": 1, "angle": -10.91 },
  7611. { "time": 1.1333, "angle": -7.27 },
  7612. { "time": 1.3, "angle": -3.64 },
  7613. { "time": 1.4667, "angle": 0 },
  7614. { "time": 1.6333, "angle": -3.64 },
  7615. { "time": 1.8333, "angle": -7.27 },
  7616. { "time": 2, "angle": -10.91 },
  7617. { "time": 2.1333, "angle": -7.27 },
  7618. { "time": 2.3, "angle": -3.64 },
  7619. { "time": 2.4667, "angle": 0 },
  7620. { "time": 2.6333, "angle": -3.64 },
  7621. { "time": 2.8333, "angle": -7.27 },
  7622. { "time": 3, "angle": -10.91 },
  7623. { "time": 3.1333, "angle": -7.27 },
  7624. { "time": 3.3, "angle": -3.64 },
  7625. { "time": 3.4667, "angle": 0 },
  7626. { "time": 3.6333, "angle": -3.64 },
  7627. { "time": 3.8333, "angle": -7.27 },
  7628. { "time": 4, "angle": -10.91 },
  7629. { "time": 4.1333, "angle": -7.27 },
  7630. { "time": 4.3, "angle": -3.64 },
  7631. { "time": 4.4667, "angle": 0 },
  7632. { "time": 4.6333, "angle": -3.64 },
  7633. { "time": 4.8333, "angle": -7.27 },
  7634. { "time": 5, "angle": -10.91 }
  7635. ],
  7636. "translate": [
  7637. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7638. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7639. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7640. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7641. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7642. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7643. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7644. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7645. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7646. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7647. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7648. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7649. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7650. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7651. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7652. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7653. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7654. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7655. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7656. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7657. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7658. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7659. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7660. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7661. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7662. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7663. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7664. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7665. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7666. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7667. { "time": 5, "x": 0, "y": 0 }
  7668. ],
  7669. "scale": [
  7670. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7671. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7672. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7673. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7674. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7675. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7676. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7677. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7678. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7679. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7680. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7681. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7682. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7683. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7684. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7685. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7686. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7687. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7688. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7689. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7690. { "time": 5, "x": 1, "y": 1 }
  7691. ]
  7692. },
  7693. "bone46": {
  7694. "rotate": [
  7695. { "time": 0, "angle": -12.25 },
  7696. { "time": 0.1333, "angle": -8.17 },
  7697. { "time": 0.3, "angle": -4.08 },
  7698. { "time": 0.4667, "angle": 0 },
  7699. { "time": 0.6333, "angle": -4.08 },
  7700. { "time": 0.8333, "angle": -8.17 },
  7701. { "time": 1, "angle": -12.25 },
  7702. { "time": 1.1333, "angle": -8.17 },
  7703. { "time": 1.3, "angle": -4.08 },
  7704. { "time": 1.4667, "angle": 0 },
  7705. { "time": 1.6333, "angle": -4.08 },
  7706. { "time": 1.8333, "angle": -8.17 },
  7707. { "time": 2, "angle": -12.25 },
  7708. { "time": 2.1333, "angle": -8.17 },
  7709. { "time": 2.3, "angle": -4.08 },
  7710. { "time": 2.4667, "angle": 0 },
  7711. { "time": 2.6333, "angle": -4.08 },
  7712. { "time": 2.8333, "angle": -8.17 },
  7713. { "time": 3, "angle": -12.25 },
  7714. { "time": 3.1333, "angle": -8.17 },
  7715. { "time": 3.3, "angle": -4.08 },
  7716. { "time": 3.4667, "angle": 0 },
  7717. { "time": 3.6333, "angle": -4.08 },
  7718. { "time": 3.8333, "angle": -8.17 },
  7719. { "time": 4, "angle": -12.25 },
  7720. { "time": 4.1333, "angle": -8.17 },
  7721. { "time": 4.3, "angle": -4.08 },
  7722. { "time": 4.4667, "angle": 0 },
  7723. { "time": 4.6333, "angle": -4.08 },
  7724. { "time": 4.8333, "angle": -8.17 },
  7725. { "time": 5, "angle": -12.25 }
  7726. ],
  7727. "translate": [
  7728. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7729. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  7730. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  7731. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7732. { "time": 0.6333, "x": 0, "y": 0, "curve": "stepped" },
  7733. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7734. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7735. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  7736. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  7737. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7738. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  7739. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7740. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7741. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  7742. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  7743. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  7744. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  7745. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7746. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7747. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  7748. { "time": 3.3, "x": 0, "y": 0, "curve": "stepped" },
  7749. { "time": 3.4667, "x": 0, "y": 0, "curve": "stepped" },
  7750. { "time": 3.6333, "x": 0, "y": 0, "curve": "stepped" },
  7751. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7752. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7753. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  7754. { "time": 4.3, "x": 0, "y": 0, "curve": "stepped" },
  7755. { "time": 4.4667, "x": 0, "y": 0, "curve": "stepped" },
  7756. { "time": 4.6333, "x": 0, "y": 0, "curve": "stepped" },
  7757. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7758. { "time": 5, "x": 0, "y": 0 }
  7759. ],
  7760. "scale": [
  7761. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7762. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7763. { "time": 0.6333, "x": 1, "y": 1, "curve": "stepped" },
  7764. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7765. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7766. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7767. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  7768. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7769. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7770. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  7771. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  7772. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7773. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7774. { "time": 3.4667, "x": 1, "y": 1, "curve": "stepped" },
  7775. { "time": 3.6333, "x": 1, "y": 1, "curve": "stepped" },
  7776. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7777. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7778. { "time": 4.4667, "x": 1, "y": 1, "curve": "stepped" },
  7779. { "time": 4.6333, "x": 1, "y": 1, "curve": "stepped" },
  7780. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7781. { "time": 5, "x": 1, "y": 1 }
  7782. ]
  7783. },
  7784. "bone47": {
  7785. "rotate": [
  7786. { "time": 0, "angle": 63.15 },
  7787. { "time": 0.4667, "angle": 62.6 },
  7788. { "time": 1, "angle": 63.15 },
  7789. { "time": 1.4667, "angle": 62.6 },
  7790. { "time": 2, "angle": 63.15 },
  7791. { "time": 2.4667, "angle": 62.6 },
  7792. { "time": 3, "angle": 63.15 },
  7793. { "time": 3.4667, "angle": 62.6 },
  7794. { "time": 4, "angle": 63.15 },
  7795. { "time": 4.4667, "angle": 62.6 },
  7796. { "time": 5, "angle": 63.15 }
  7797. ],
  7798. "translate": [
  7799. { "time": 0, "x": -12.88, "y": 27.96 },
  7800. { "time": 0.4667, "x": -10.41, "y": 24.25 },
  7801. { "time": 1, "x": -12.88, "y": 27.96 },
  7802. { "time": 1.4667, "x": -10.41, "y": 24.25 },
  7803. { "time": 2, "x": -12.88, "y": 27.96 },
  7804. { "time": 2.4667, "x": -10.41, "y": 24.25 },
  7805. { "time": 3, "x": -12.88, "y": 27.96 },
  7806. { "time": 3.4667, "x": -10.41, "y": 24.25 },
  7807. { "time": 4, "x": -12.88, "y": 27.96 },
  7808. { "time": 4.4667, "x": -10.41, "y": 24.25 },
  7809. { "time": 5, "x": -12.88, "y": 27.96 }
  7810. ],
  7811. "scale": [
  7812. { "time": 0, "x": 1, "y": 1 },
  7813. { "time": 0.4667, "x": 1.13, "y": 1 },
  7814. { "time": 1, "x": 1, "y": 1 },
  7815. { "time": 1.4667, "x": 1.13, "y": 1 },
  7816. { "time": 2, "x": 1, "y": 1 },
  7817. { "time": 2.4667, "x": 1.13, "y": 1 },
  7818. { "time": 3, "x": 1, "y": 1 },
  7819. { "time": 3.4667, "x": 1.13, "y": 1 },
  7820. { "time": 4, "x": 1, "y": 1 },
  7821. { "time": 4.4667, "x": 1.13, "y": 1 },
  7822. { "time": 5, "x": 1, "y": 1 }
  7823. ]
  7824. }
  7825. },
  7826. "deform": {
  7827. "default": {
  7828. "chenshanhebozi": {
  7829. "chenshanhebozi": [
  7830. { "time": 0 },
  7831. {
  7832. "time": 0.3,
  7833. "offset": 2,
  7834. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7835. },
  7836. { "time": 0.4667 },
  7837. {
  7838. "time": 0.8333,
  7839. "offset": 2,
  7840. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7841. },
  7842. { "time": 1 },
  7843. {
  7844. "time": 1.3,
  7845. "offset": 2,
  7846. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7847. },
  7848. { "time": 1.4667 },
  7849. {
  7850. "time": 1.8333,
  7851. "offset": 2,
  7852. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7853. },
  7854. { "time": 2 },
  7855. {
  7856. "time": 2.3,
  7857. "offset": 2,
  7858. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7859. },
  7860. { "time": 2.4667 },
  7861. {
  7862. "time": 2.8333,
  7863. "offset": 2,
  7864. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7865. },
  7866. { "time": 3 },
  7867. {
  7868. "time": 3.3,
  7869. "offset": 2,
  7870. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7871. },
  7872. { "time": 3.4667 },
  7873. {
  7874. "time": 3.8333,
  7875. "offset": 2,
  7876. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7877. },
  7878. { "time": 4 },
  7879. {
  7880. "time": 4.3,
  7881. "offset": 2,
  7882. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7883. },
  7884. { "time": 4.4667 },
  7885. {
  7886. "time": 4.8333,
  7887. "offset": 2,
  7888. "vertices": [ -0.03179, 0.5741, 0, 0, 0, 0, -0.06068, 1.09331 ]
  7889. },
  7890. { "time": 5 }
  7891. ]
  7892. },
  7893. "houmiantoufa": {
  7894. "houmiantoufa": [
  7895. {
  7896. "time": 0,
  7897. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  7898. },
  7899. {
  7900. "time": 0.4667,
  7901. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  7902. },
  7903. {
  7904. "time": 1,
  7905. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  7906. },
  7907. {
  7908. "time": 1.4667,
  7909. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  7910. },
  7911. {
  7912. "time": 2,
  7913. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  7914. },
  7915. {
  7916. "time": 2.4667,
  7917. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  7918. },
  7919. {
  7920. "time": 3,
  7921. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  7922. },
  7923. {
  7924. "time": 3.4667,
  7925. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  7926. },
  7927. {
  7928. "time": 4,
  7929. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  7930. },
  7931. {
  7932. "time": 4.4667,
  7933. "vertices": [ -2.70268, -7.2263, -4.33129, -1.84835, 0, 0, 0, 0, -0.36943, -1.78879, -0.26545, -0.99104 ]
  7934. },
  7935. {
  7936. "time": 5,
  7937. "vertices": [ -0.97336, -3.63391, 0, 0, 0, 0, 0, 0, 0, 0, -0.26545, -0.99104 ]
  7938. }
  7939. ]
  7940. },
  7941. "sijiaoku": {
  7942. "sijiaoku": [
  7943. { "time": 0 },
  7944. {
  7945. "time": 0.3,
  7946. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  7947. },
  7948. {
  7949. "time": 0.4667,
  7950. "offset": 2,
  7951. "vertices": [ -0.18699, -1.71517 ]
  7952. },
  7953. {
  7954. "time": 0.8333,
  7955. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  7956. },
  7957. { "time": 1 },
  7958. {
  7959. "time": 1.3,
  7960. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  7961. },
  7962. {
  7963. "time": 1.4667,
  7964. "offset": 2,
  7965. "vertices": [ -0.18699, -1.71517 ]
  7966. },
  7967. {
  7968. "time": 1.8333,
  7969. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  7970. },
  7971. { "time": 2 },
  7972. {
  7973. "time": 2.3,
  7974. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  7975. },
  7976. {
  7977. "time": 2.4667,
  7978. "offset": 2,
  7979. "vertices": [ -0.18699, -1.71517 ]
  7980. },
  7981. {
  7982. "time": 2.8333,
  7983. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  7984. },
  7985. { "time": 3 },
  7986. {
  7987. "time": 3.3,
  7988. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  7989. },
  7990. {
  7991. "time": 3.4667,
  7992. "offset": 2,
  7993. "vertices": [ -0.18699, -1.71517 ]
  7994. },
  7995. {
  7996. "time": 3.8333,
  7997. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  7998. },
  7999. { "time": 4 },
  8000. {
  8001. "time": 4.3,
  8002. "vertices": [ -0.22771, 10.49018, -0.18699, -1.71517, -0.19918, -5.0114 ]
  8003. },
  8004. {
  8005. "time": 4.4667,
  8006. "offset": 2,
  8007. "vertices": [ -0.18699, -1.71517 ]
  8008. },
  8009. {
  8010. "time": 4.8333,
  8011. "vertices": [ -0.57722, 6.32824, 0, 0, 1.35747, -4.10502 ]
  8012. },
  8013. { "time": 5 }
  8014. ]
  8015. }
  8016. }
  8017. },
  8018. "drawOrder": [
  8019. {
  8020. "time": 0,
  8021. "offsets": [
  8022. { "slot": "zuoshou", "offset": -5 }
  8023. ]
  8024. },
  8025. {
  8026. "time": 1,
  8027. "offsets": [
  8028. { "slot": "zuoshou", "offset": -5 }
  8029. ]
  8030. },
  8031. {
  8032. "time": 2,
  8033. "offsets": [
  8034. { "slot": "zuoshou", "offset": -5 }
  8035. ]
  8036. },
  8037. {
  8038. "time": 3,
  8039. "offsets": [
  8040. { "slot": "zuoshou", "offset": -5 }
  8041. ]
  8042. },
  8043. {
  8044. "time": 4,
  8045. "offsets": [
  8046. { "slot": "zuoshou", "offset": -5 }
  8047. ]
  8048. },
  8049. {
  8050. "time": 5,
  8051. "offsets": [
  8052. { "slot": "zuoshou", "offset": -5 }
  8053. ]
  8054. }
  8055. ]
  8056. }
  8057. }
  8058. }