60003.json 231 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016
  1. {
  2. "skeleton": { "hash": "oVaC38VwsjbCTQx18YKFrUyn1SA", "spine": "3.6.53", "width": 101, "height": 210, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -0.7, "y": 62.98 },
  6. { "name": "bone2", "parent": "bone", "length": 15.29, "rotation": 93.96, "x": 0.51, "y": -0.08 },
  7. { "name": "bone3", "parent": "bone2", "length": 28.54, "rotation": -4.57, "x": 15.15, "y": 0.16 },
  8. { "name": "bone4", "parent": "bone3", "length": 9.37, "rotation": -1.24, "x": 28.69, "y": -0.15 },
  9. { "name": "bone5", "parent": "bone3", "length": 22.29, "rotation": 154.91, "x": 27.23, "y": 9.35, "color": "f1f662ff" },
  10. { "name": "bone6", "parent": "bone5", "length": 18.78, "rotation": -0.04, "x": 22.29, "color": "f1f662ff" },
  11. { "name": "bone7", "parent": "bone6", "length": 10, "rotation": 2.54, "x": 18.78, "color": "f1f662ff" },
  12. { "name": "bone8", "parent": "bone3", "length": 20.87, "rotation": -153.2, "x": 27.63, "y": -13.45, "color": "1d21d9ff" },
  13. { "name": "bone9", "parent": "bone8", "length": 18.28, "rotation": 4.61, "x": 20.87, "color": "1d21d9ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 15.94, "rotation": -3.75, "x": 18.28, "color": "1d21d9ff" },
  15. { "name": "bone11", "parent": "bone", "length": 10.74, "rotation": -86.78, "x": 0.21, "y": -0.47 },
  16. { "name": "bone12", "parent": "bone", "length": 27.1, "rotation": -94.15, "x": -8.34, "y": -1.41, "color": "3ca844ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 23.21, "rotation": -1.45, "x": 27.1, "color": "3ca844ff" },
  18. { "name": "bone14", "parent": "bone13", "length": 15.34, "rotation": -78.19, "x": 27.23, "y": -0.21, "color": "3ca844ff" },
  19. { "name": "bone15", "parent": "bone", "length": 27.09, "rotation": -86.16, "x": 12.84, "y": -1.18, "color": "9704c1ff" },
  20. { "name": "bone16", "parent": "bone15", "length": 26.78, "rotation": -0.28, "x": 27.09, "color": "9704c1ff" },
  21. { "name": "bone17", "parent": "bone16", "length": 15.31, "rotation": -81.03, "x": 26.78, "color": "9704c1ff" },
  22. { "name": "bone18", "parent": "bone3", "length": 11.17, "rotation": 167.32, "x": 27.79, "y": 8.8, "color": "1998c9ff" },
  23. { "name": "bone19", "parent": "bone18", "length": 11.35, "rotation": 3.32, "x": 11.17, "color": "1998c9ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 12.39, "rotation": 0.85, "x": 11.35, "color": "1998c9ff" },
  25. { "name": "bone21", "parent": "bone20", "length": 8.97, "rotation": 2.35, "x": 12.39, "color": "1998c9ff" },
  26. { "name": "bone22", "parent": "bone21", "length": 5.98, "rotation": -3.41, "x": 8.97, "color": "1998c9ff" },
  27. { "name": "bone23", "parent": "bone3", "length": 14.26, "rotation": -173.92, "x": 26.04, "y": -10.85, "color": "f9b068ff" },
  28. { "name": "bone24", "parent": "bone23", "length": 12.47, "rotation": 1.48, "x": 14.26, "color": "f9b068ff" },
  29. { "name": "bone25", "parent": "bone24", "length": 9.39, "rotation": 4.18, "x": 12.47, "color": "f9b068ff" },
  30. { "name": "bone26", "parent": "bone25", "length": 8.53, "rotation": 11.8, "x": 9.39, "color": "f9b068ff" },
  31. { "name": "bone27", "parent": "bone4", "length": 54.57, "rotation": 6.93, "x": 4.1, "y": 0.03 },
  32. { "name": "bone28", "parent": "bone27", "length": 9.53, "rotation": 178.55, "x": 35.92, "y": 25.31, "color": "9b6eeaff" },
  33. { "name": "bone29", "parent": "bone28", "length": 7.44, "rotation": 2.19, "x": 9.83, "y": -0.02, "color": "9b6eeaff" },
  34. { "name": "bone30", "parent": "bone29", "length": 6.06, "rotation": -1.54, "x": 7.44, "color": "9b6eeaff" },
  35. { "name": "bone31", "parent": "bone30", "length": 5.44, "rotation": -1.11, "x": 6.06, "color": "9b6eeaff" },
  36. { "name": "bone32", "parent": "bone31", "length": 6.67, "rotation": 2.01, "x": 5.44, "color": "9b6eeaff" },
  37. { "name": "bone33", "parent": "bone27", "length": 12.31, "rotation": -170.87, "x": 56.2, "y": -24.55, "color": "f66363ff" },
  38. { "name": "bone34", "parent": "bone33", "length": 11.51, "rotation": -9.69, "x": 12.31, "color": "f66363ff" },
  39. { "name": "bone35", "parent": "bone34", "length": 14.4, "rotation": 0.3, "x": 11.51, "color": "f66363ff" },
  40. { "name": "bone36", "parent": "bone35", "length": 9.52, "rotation": -3, "x": 14.4, "color": "f66363ff" },
  41. { "name": "bone37", "parent": "bone36", "length": 8.05, "rotation": -8.28, "x": 9.52, "color": "f66363ff" },
  42. { "name": "bone38", "parent": "bone37", "length": 6.39, "rotation": -0.33, "x": 8.05, "color": "f66363ff" },
  43. { "name": "bone39", "parent": "bone27", "length": 11.94, "rotation": -60.38, "x": 79.57, "y": -30.12 },
  44. { "name": "bone40", "parent": "bone27", "length": 6.28, "rotation": 139.7, "x": 65.19, "y": 11.03, "color": "75dc93ff" },
  45. { "name": "bone41", "parent": "bone40", "length": 7.01, "rotation": -1.9, "x": 6.28, "color": "75dc93ff" },
  46. { "name": "bone42", "parent": "bone41", "length": 8.51, "rotation": 9.64, "x": 7.01, "color": "75dc93ff" },
  47. { "name": "bone43", "parent": "bone42", "length": 8.19, "rotation": 4.69, "x": 8.51, "color": "75dc93ff" },
  48. { "name": "bone44", "parent": "bone43", "length": 8.9, "rotation": 8.04, "x": 8.19, "color": "75dc93ff" },
  49. { "name": "bone45", "parent": "bone27", "length": 5.78, "rotation": -114.94, "x": 62.25, "y": -3.26, "color": "938bf9ff" },
  50. { "name": "bone46", "parent": "bone45", "length": 8.44, "rotation": -24.42, "x": 5.78, "color": "938bf9ff" },
  51. { "name": "bone47", "parent": "bone46", "length": 8.08, "rotation": -12.93, "x": 8.44, "color": "938bf9ff" },
  52. { "name": "bone48", "parent": "bone47", "length": 8.07, "rotation": -15.38, "x": 8.08, "color": "938bf9ff" },
  53. { "name": "bone49", "parent": "bone27", "length": 12.31, "rotation": -5.08, "x": 19.54, "y": -10.96 },
  54. { "name": "bone50", "parent": "bone27", "length": 13, "rotation": -5.08, "x": 21.97, "y": 20.24 },
  55. { "name": "bone51", "parent": "bone27", "x": 36.56, "y": 4.69 },
  56. { "name": "bone52", "parent": "bone27", "x": 25.93, "y": 5.67 },
  57. { "name": "bone53", "parent": "bone27", "x": 8.34, "y": 3.75 },
  58. { "name": "bone54", "parent": "bone7", "length": 12.91, "rotation": -98.07, "x": 6.96, "y": -0.72, "color": "f1f662ff" },
  59. { "name": "bone55", "parent": "bone3", "length": 7.91, "rotation": 175.17, "x": 31.89, "y": 2.85, "color": "ea057eff" },
  60. { "name": "bone56", "parent": "bone55", "length": 5.67, "rotation": -2.15, "x": 7.91, "color": "ea057eff" },
  61. { "name": "bone57", "parent": "bone56", "length": 6.15, "rotation": 2.93, "x": 5.67, "color": "ea057eff" },
  62. { "name": "bone58", "parent": "bone57", "length": 14.08, "rotation": -1.45, "x": 6.15, "color": "ea057eff" },
  63. { "name": "bone59", "parent": "bone49", "x": 7.35, "y": 4.16 },
  64. { "name": "bone60", "parent": "bone50", "x": 5.97, "y": 1.61 },
  65. { "name": "bone61", "parent": "bone3", "length": 22.47, "rotation": -139.35, "x": 27.44, "y": -13.49, "color": "edf5b5ff" },
  66. { "name": "bone62", "parent": "bone61", "length": 19.45, "rotation": -118.1, "x": 22.61, "y": -0.12, "color": "edf5b5ff" },
  67. { "name": "bone63", "parent": "bone62", "length": 14.13, "rotation": -7.49, "x": 22.71, "y": -0.43, "color": "edf5b5ff" },
  68. { "name": "bone64", "parent": "bone3", "length": 23.32, "rotation": 128.92, "x": 27.66, "y": 8.59, "color": "d53636ff" },
  69. { "name": "bone65", "parent": "bone64", "length": 10.2, "rotation": 132.4, "x": 23.21, "y": -0.14, "color": "d53636ff" },
  70. { "name": "bone66", "parent": "bone65", "length": 7.34, "rotation": 5, "x": 10.02, "y": -0.03, "color": "d53636ff" },
  71. { "name": "bone67", "parent": "bone66", "length": 19.58, "rotation": 4.29, "x": 5.66, "y": 0.42 },
  72. { "name": "bone68", "parent": "bone59", "x": 0.97, "y": 1.98 },
  73. { "name": "bone69", "parent": "bone60", "x": 0.9, "y": 2.74 }
  74. ],
  75. "slots": [
  76. { "name": "zuoshou", "bone": "bone5", "attachment": "zuoshou" },
  77. { "name": "yueguangbaohe", "bone": "bone54", "attachment": "yueguangbaohe" },
  78. { "name": "zuotui", "bone": "bone12", "attachment": "zuotui" },
  79. { "name": "kudang", "bone": "bone11", "attachment": "kudang" },
  80. { "name": "youtui", "bone": "bone15", "attachment": "youtui" },
  81. { "name": "teshuzuoshou2", "bone": "bone64", "attachment": "teshuzuoshou2" },
  82. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  83. { "name": "guashi", "bone": "bone55", "attachment": "guashi" },
  84. { "name": "youwaitao", "bone": "bone23", "attachment": "youwaitao" },
  85. { "name": "zuowaitao", "bone": "bone18", "attachment": "zuowaitao" },
  86. { "name": "youshou", "bone": "bone8", "attachment": "youshou" },
  87. { "name": "bozi", "bone": "bone4", "attachment": "bozi" },
  88. { "name": "toufa7", "bone": "bone27", "attachment": "toufa7" },
  89. { "name": "toufa6", "bone": "bone28", "attachment": "toufa6" },
  90. { "name": "lian", "bone": "bone27", "attachment": "lian" },
  91. { "name": "zuiba", "bone": "bone53", "attachment": "zuiba" },
  92. { "name": "zuoyan", "bone": "bone50", "attachment": "zuoyan" },
  93. { "name": "youyan", "bone": "bone49", "attachment": "youyan" },
  94. { "name": "meimao", "bone": "bone51", "attachment": "meimao" },
  95. { "name": "toufa5", "bone": "bone39", "attachment": "toufa5" },
  96. { "name": "toufa4", "bone": "bone27", "attachment": "toufa4" },
  97. { "name": "erduo", "bone": "bone27", "attachment": "erduo" },
  98. { "name": "toufa3", "bone": "bone33", "attachment": "toufa3" },
  99. { "name": "toufa2", "bone": "bone40", "attachment": "toufa2" },
  100. { "name": "toufa1", "bone": "bone45", "attachment": "toufa1" },
  101. { "name": "biyan", "bone": "bone52" },
  102. { "name": "youyantongkong", "bone": "bone60", "attachment": "youyantongkong" },
  103. { "name": "youyangaoguang", "bone": "bone69", "attachment": "youyangaoguang" },
  104. { "name": "zuoyantongkong", "bone": "bone59", "attachment": "zuoyantongkong" },
  105. { "name": "zuoyangaoguang", "bone": "bone68", "attachment": "zuoyangaoguang" },
  106. { "name": "teshuyoushou3", "bone": "bone61", "attachment": "teshuyoushou3" },
  107. { "name": "teshuzuoshou1", "bone": "bone65", "attachment": "teshuzuoshou1" },
  108. { "name": "teshuzuoshou3", "bone": "bone66", "attachment": "teshuzuoshou3" },
  109. { "name": "teshudongzuoyueguangbaohe", "bone": "bone67", "attachment": "teshudongzuoyueguangbaohe" },
  110. { "name": "teshuyoushou2", "bone": "bone62", "attachment": "teshuyoushou2" },
  111. { "name": "teshuyoushou1", "bone": "bone63", "attachment": "teshuyoushou1" }
  112. ],
  113. "skins": {
  114. "default": {
  115. "biyan": {
  116. "biyan": { "x": -2.39, "y": -3.23, "rotation": -95.08, "width": 49, "height": 7 }
  117. },
  118. "bozi": {
  119. "bozi": {
  120. "type": "mesh",
  121. "uvs": [ 1, 0.58892, 0.55908, 1, 0.13309, 1, 0.17509, 0, 1, 0 ],
  122. "triangles": [ 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
  123. "vertices": [ 0.09, -10.28, -9.64, -1.77, -9.92, 6.75, 13.1, 6.65, 13.63, -9.84 ],
  124. "hull": 5,
  125. "edges": [ 6, 8, 4, 6, 2, 4, 0, 8, 2, 0 ],
  126. "width": 20,
  127. "height": 23
  128. }
  129. },
  130. "erduo": {
  131. "erduo": { "x": 21.37, "y": -38.72, "rotation": -95.08, "width": 17, "height": 21 }
  132. },
  133. "guashi": {
  134. "guashi": {
  135. "type": "mesh",
  136. "uvs": [ 1, 0.16474, 0.99999, 0.23815, 0.99999, 0.29843, 0.99999, 0.36617, 0.99999, 0.42664, 1, 0.4814, 1, 0.54247, 1, 1, 0.33764, 1, 0, 1, 0, 0.54474, 0, 0.48819, 1.0E-5, 0.42724, 0.00437, 0.37129, 1.0E-5, 0.30057, 1.0E-5, 0.23565, 0, 0.167, 0, 0, 0.39306, 0, 1, 0, 0.3751, 0.29559, 0.3723, 0.42329, 0.36285, 0.54512, 0.36612, 0.48616, 0.37415, 0.36959, 0.38348, 0.1729, 0.382, 0.2366 ],
  137. "triangles": [ 8, 22, 7, 22, 8, 10, 8, 9, 10, 22, 6, 7, 22, 23, 6, 23, 22, 11, 22, 10, 11, 23, 5, 6, 11, 12, 23, 5, 21, 4, 5, 23, 21, 23, 12, 21, 12, 13, 21, 21, 24, 4, 4, 24, 3, 21, 13, 24, 24, 13, 20, 24, 20, 3, 20, 13, 14, 3, 20, 2, 14, 15, 20, 20, 26, 2, 26, 1, 2, 20, 15, 26, 26, 25, 1, 1, 25, 0, 25, 26, 16, 26, 15, 16, 25, 18, 0, 18, 25, 17, 25, 16, 17, 18, 19, 0 ],
  138. "vertices": [ 4, 55, 1.93, 14.99, 0.82085, 56, -6.54, 14.76, 0.08444, 57, -11.45, 15.36, 0.09308, 58, -17.98, 14.91, 0.00163, 4, 55, 5, 15.29, 0.67906, 56, -3.49, 15.17, 0.14171, 57, -8.38, 15.61, 0.16759, 58, -14.91, 15.24, 0.01164, 4, 55, 7.52, 15.53, 0.53873, 56, -0.98, 15.5, 0.1818, 57, -5.85, 15.82, 0.24676, 58, -12.39, 15.51, 0.03272, 4, 55, 10.35, 15.8, 0.38053, 56, 1.84, 15.88, 0.19946, 57, -3.02, 16.05, 0.34084, 58, -9.56, 15.81, 0.07917, 4, 55, 12.88, 16.04, 0.25705, 56, 4.36, 16.21, 0.18616, 57, -0.49, 16.26, 0.4103, 58, -7.04, 16.08, 0.14649, 4, 55, 15.17, 16.25, 0.16753, 56, 6.64, 16.52, 0.15665, 57, 1.81, 16.44, 0.4465, 58, -4.75, 16.33, 0.22933, 4, 55, 17.72, 16.5, 0.0962, 56, 9.18, 16.85, 0.11474, 57, 4.36, 16.65, 0.44486, 58, -2.2, 16.6, 0.3442, 2, 57, 23.52, 18.22, 0.09277, 58, 16.9, 18.65, 0.90723, 2, 57, 24.81, 2.37, 0.00342, 58, 18.6, 2.84, 0.99658, 1, 58, 19.46, -5.21, 1, 4, 55, 20.09, -7.39, 1.2E-4, 56, 12.45, -6.92, 0.01366, 57, 6.41, -7.26, 0.54366, 58, 0.45, -7.25, 0.44255, 4, 55, 17.73, -7.61, 0.00726, 56, 10.09, -7.24, 0.07206, 57, 4.04, -7.45, 0.72139, 58, -1.91, -7.5, 0.19928, 4, 55, 15.18, -7.85, 0.04468, 56, 7.56, -7.57, 0.20971, 57, 1.49, -7.66, 0.68958, 58, -4.46, -7.78, 0.05604, 4, 55, 12.83, -7.97, 0.13377, 56, 5.21, -7.78, 0.35286, 57, -0.86, -7.75, 0.50593, 58, -6.81, -7.92, 0.00743, 3, 55, 9.88, -8.36, 0.35176, 56, 2.28, -8.28, 0.39983, 57, -3.81, -8.09, 0.24842, 3, 55, 7.17, -8.62, 0.60409, 56, -0.42, -8.64, 0.29477, 57, -6.53, -8.32, 0.10114, 3, 55, 4.3, -8.89, 0.82318, 56, -3.28, -9.02, 0.14819, 57, -9.4, -8.55, 0.02863, 2, 55, -2.69, -9.55, 0.99361, 56, -10.23, -9.95, 0.00639, 1, 55, -3.58, -0.16, 1, 3, 55, -4.96, 14.34, 0.95512, 56, -13.4, 13.84, 0.01813, 57, -18.34, 14.8, 0.02675, 3, 55, 8.82, 0.58, 0.00574, 56, 0.89, 0.62, 0.99151, 57, -4.75, 0.86, 0.00276, 3, 56, 6.21, 1.26, 0.16876, 57, 0.6, 1.23, 0.83098, 58, -5.57, 1.09, 2.6E-4, 2, 57, 5.72, 1.42, 0.74842, 58, -0.46, 1.41, 0.25158, 4, 55, 16.81, 1.13, 2.1E-4, 56, 8.85, 1.46, 0.00293, 57, 3.24, 1.3, 0.97995, 58, -2.93, 1.22, 0.01692, 2, 56, 3.97, 1.01, 0.93783, 57, -1.65, 1.09, 0.06217, 2, 55, 3.67, 0.3, 0.99973, 57, -9.9, 0.64, 2.7E-4, 3, 55, 6.34, 0.51, 0.99822, 56, -1.59, 0.46, 6.1E-4, 57, -7.23, 0.83, 0.00117 ],
  139. "hull": 20,
  140. "edges": [ 34, 36, 36, 38, 14, 16, 16, 18, 28, 40, 40, 4, 24, 42, 42, 8, 18, 20, 16, 44, 20, 44, 12, 14, 44, 12, 20, 22, 22, 24, 42, 46, 46, 44, 22, 46, 8, 10, 10, 12, 46, 10, 24, 26, 26, 28, 40, 48, 48, 42, 26, 48, 4, 6, 6, 8, 48, 6, 32, 34, 36, 50, 32, 50, 0, 38, 50, 0, 28, 30, 30, 32, 40, 52, 52, 50, 30, 52, 0, 2, 2, 4, 52, 2 ],
  141. "width": 24,
  142. "height": 42
  143. }
  144. },
  145. "kudang": {
  146. "kudang": {
  147. "type": "mesh",
  148. "uvs": [ 1, 0.41067, 0.83133, 1, 0.33723, 1, 0, 0.68161, 0, 0, 1, 0 ],
  149. "triangles": [ 4, 5, 0, 3, 4, 0, 2, 3, 0, 1, 2, 0 ],
  150. "vertices": [ 5.65, 20.54, 15.28, 13.41, 14.2, -5.83, 8.06, -18.66, -3.51, -18.01, -1.32, 20.93 ],
  151. "hull": 6,
  152. "edges": [ 8, 10, 6, 8, 4, 6, 2, 4, 0, 10, 2, 0 ],
  153. "width": 39,
  154. "height": 17
  155. }
  156. },
  157. "lian": {
  158. "lian": { "x": 42.48, "y": -4.46, "rotation": -95.08, "width": 75, "height": 91 }
  159. },
  160. "meimao": {
  161. "meimao": { "x": 1.07, "y": -1.69, "rotation": -95.08, "width": 57, "height": 8 }
  162. },
  163. "shenti": {
  164. "shenti": {
  165. "type": "mesh",
  166. "uvs": [ 0.86872, 0.0411, 0.95943, 0.57176, 0.97483, 0.66184, 0.98526, 0.72286, 1, 0.80906, 1, 1, 0.47123, 1, 0, 1, 0, 0.82328, 1.0E-5, 0.74228, 0, 0.6567, 0, 0.57723, 0.17548, 0.04538, 0.313, 0, 0.45616, 0, 0.8617, 0, 0.45695, 0.05289, 0.46492, 0.58167, 0.46607, 0.65811, 0.46847, 0.81729, 0.46725, 0.73621 ],
  167. "triangles": [ 5, 19, 4, 7, 19, 6, 5, 6, 19, 7, 8, 19, 19, 9, 20, 19, 8, 9, 19, 3, 4, 19, 20, 3, 9, 18, 20, 9, 10, 18, 20, 2, 3, 20, 18, 2, 18, 1, 2, 10, 17, 18, 18, 17, 1, 10, 11, 17, 17, 12, 16, 17, 0, 1, 17, 16, 0, 17, 11, 12, 16, 15, 0, 12, 13, 16, 13, 14, 16, 16, 14, 15 ],
  168. "vertices": [ 2, 3, 30.01, -17.77, 0.95949, 2, 43.65, -19.94, 0.04051, 2, 3, 1.93, -21.97, 0.15339, 2, 15.32, -21.89, 0.84661, 2, 3, -2.84, -22.68, 0.05151, 2, 10.51, -22.22, 0.94849, 2, 3, -6.07, -23.16, 0.01711, 2, 7.25, -22.44, 0.98289, 2, 3, -10.63, -23.84, 0.00123, 2, 2.65, -22.76, 0.99877, 1, 2, -7.45, -22.06, 1, 2, 3, -20.99, -1.21, 0.00686, 2, -5.87, 0.62, 0.99314, 2, 3, -21.21, 19.05, 0.31731, 2, -4.47, 20.84, 0.68269, 2, 3, -11.84, 19.15, 0.48125, 2, 4.87, 20.19, 0.51875, 2, 3, -7.55, 19.19, 0.63731, 2, 9.15, 19.89, 0.36269, 2, 3, -3.01, 19.24, 0.80422, 2, 13.68, 19.58, 0.19578, 2, 3, 1.2, 19.28, 0.91467, 2, 17.88, 19.29, 0.08533, 1, 3, 29.47, 12.04, 1, 1, 3, 31.93, 6.15, 1, 2, 3, 32, -0.01, 0.99999, 2, 47.04, -2.39, 1.0E-5, 2, 3, 32.18, -17.44, 0.96495, 2, 45.84, -19.79, 0.03505, 2, 3, 29.2, -0.07, 0.99997, 2, 44.25, -2.23, 4.0E-5, 2, 3, 1.18, -0.71, 0.51941, 2, 16.26, -0.64, 0.48059, 1, 2, 12.22, -0.41, 1, 2, 3, -11.31, -0.99, 7.2E-4, 2, 3.8, 0.07, 0.99928, 1, 2, 8.09, -0.17, 1 ],
  169. "hull": 16,
  170. "edges": [ 10, 8, 22, 24, 24, 26, 10, 12, 12, 14, 26, 28, 28, 30, 32, 28, 24, 32, 0, 30, 32, 0, 34, 32, 22, 34, 0, 2, 34, 2, 20, 22, 36, 34, 20, 36, 2, 4, 36, 4, 12, 38, 8, 38, 14, 16, 38, 16, 4, 6, 6, 8, 36, 40, 40, 38, 6, 40, 16, 18, 18, 20, 40, 18 ],
  171. "width": 43,
  172. "height": 53
  173. }
  174. },
  175. "teshudongzuoyueguangbaohe": {
  176. "teshudongzuoyueguangbaohe": { "x": 12.55, "y": -1.39, "width": 35, "height": 12 }
  177. },
  178. "teshuyoushou1": {
  179. "teshuyoushou1": { "x": 6.83, "y": -1.4, "rotation": 175.54, "width": 15, "height": 10 }
  180. },
  181. "teshuyoushou2": {
  182. "teshuyoushou2": { "x": 12.98, "y": 2.23, "rotation": 168.06, "width": 30, "height": 23 }
  183. },
  184. "teshuyoushou3": {
  185. "teshuyoushou3": { "x": 14.86, "y": -2.17, "rotation": 49.96, "width": 24, "height": 31 }
  186. },
  187. "teshuzuoshou1": {
  188. "teshuzuoshou1": { "x": 8.21, "y": -1.12, "rotation": 9.29, "width": 23, "height": 24 }
  189. },
  190. "teshuzuoshou2": {
  191. "teshuzuoshou2": { "x": 13.92, "y": 2.13, "rotation": 141.69, "width": 27, "height": 26 }
  192. },
  193. "teshuzuoshou3": {
  194. "teshuzuoshou3": { "x": 6.34, "y": -0.92, "rotation": 4.29, "width": 18, "height": 14 }
  195. },
  196. "toufa1": {
  197. "toufa1": {
  198. "type": "mesh",
  199. "uvs": [ 0.51058, 0.06492, 0.67159, 0.13493, 0.74017, 0.19505, 0.87231, 0.33789, 0.9682, 0.55926, 0.99999, 0.73519, 1, 1, 0.8042, 1, 0.4882, 1, 0.46913, 0.94536, 0.44097, 0.86473, 0.39792, 0.75974, 0.35162, 0.6533, 0.29353, 0.58259, 0.21078, 0.51589, 0.12424, 0.44614, 0, 0.37192, 0, 0.1038, 0, 0, 0.14681, 0, 0.36124, 0, 0.28224, 0.18999, 0.50231, 0.36235, 0.65727, 0.55001, 0.09983, 0.13429, 0.58271, 0.43677, 0.38533, 0.27073, 0.71682, 0.69903, 0.76158, 0.85318 ],
  200. "triangles": [ 6, 28, 5, 8, 28, 7, 6, 7, 28, 8, 9, 28, 9, 10, 28, 10, 27, 28, 10, 11, 27, 28, 27, 5, 11, 23, 27, 27, 4, 5, 27, 23, 4, 11, 12, 23, 12, 25, 23, 25, 13, 22, 25, 12, 13, 23, 3, 4, 23, 25, 3, 25, 2, 3, 25, 22, 2, 22, 13, 26, 13, 14, 26, 14, 15, 26, 15, 21, 26, 22, 1, 2, 22, 0, 1, 22, 26, 0, 26, 21, 0, 21, 20, 0, 16, 24, 15, 15, 24, 21, 16, 17, 24, 24, 19, 21, 21, 19, 20, 19, 24, 18, 24, 17, 18 ],
  201. "vertices": [ 3, 45, 10.44, 5.66, 0.1014, 46, 1.9, 7.08, 0.8745, 47, -7.95, 5.43, 0.0241, 3, 45, 15.46, 5.01, 2.3E-4, 46, 6.74, 8.57, 0.73175, 47, -3.57, 7.97, 0.26802, 3, 46, 9.5, 8.49, 0.50764, 47, -0.86, 8.51, 0.48904, 48, -10.88, 5.84, 0.00332, 3, 46, 15.44, 7.7, 0.08403, 47, 5.11, 9.07, 0.76105, 48, -5.28, 7.95, 0.15492, 2, 47, 12.7, 7.37, 0.18288, 48, 2.5, 8.33, 0.81712, 2, 47, 18.06, 4.97, 0.00276, 48, 8.3, 7.44, 0.99724, 1, 48, 16.64, 4.83, 1, 1, 48, 15, -0.41, 1, 2, 47, 17.65, -11.81, 0.00188, 48, 12.35, -8.85, 0.99812, 2, 47, 15.84, -11.28, 0.00922, 48, 10.47, -8.82, 0.99078, 3, 46, 18.93, -13.18, 7.2E-4, 47, 13.18, -10.5, 0.05142, 48, 7.7, -8.77, 0.94785, 3, 46, 15.65, -11.54, 0.0178, 47, 9.61, -9.64, 0.20624, 48, 4.03, -8.89, 0.77597, 4, 45, 12.85, -14.12, 9.1E-4, 46, 12.27, -9.93, 0.11216, 47, 5.96, -8.82, 0.46382, 48, 0.29, -9.07, 0.42311, 4, 45, 10.52, -12.48, 0.01595, 46, 9.48, -9.4, 0.29721, 47, 3.12, -8.93, 0.51591, 48, -2.42, -9.93, 0.17092, 4, 45, 7.6, -11.19, 0.08653, 46, 6.28, -9.44, 0.52374, 47, 0.01, -9.68, 0.34627, 48, -5.22, -11.48, 0.04346, 4, 45, 4.54, -9.85, 0.27121, 46, 2.94, -9.48, 0.57454, 47, -3.24, -10.47, 0.14898, 48, -8.14, -13.1, 0.00527, 3, 45, 0.43, -8.73, 0.54122, 46, -1.26, -10.16, 0.41672, 47, -7.18, -12.07, 0.04205, 2, 45, -2.57, -0.41, 0.99605, 46, -7.44, -3.82, 0.00395, 1, 45, -3.74, 2.82, 1, 2, 45, 0.13, 4.21, 0.99823, 46, -6.89, 1.5, 0.00177, 2, 45, 5.78, 6.25, 0.58517, 46, -2.59, 5.69, 0.41483, 3, 45, 5.83, -0.4, 0.25974, 46, 0.21, -0.34, 0.73995, 47, -7.95, -2.17, 3.1E-4, 3, 46, 8.59, -0.11, 0.29921, 47, 0.17, -0.08, 0.70075, 48, -7.61, -2.17, 5.0E-5, 2, 47, 7.73, 0.22, 0.89393, 48, -0.4, 0.11, 0.10607, 3, 45, 0.4, -0.4, 0.99308, 46, -4.73, -2.59, 0.00686, 47, -12.26, -5.47, 6.0E-5, 1, 47, 3.46, 0.49, 1, 3, 45, 9.44, -1.92, 5.1E-4, 46, 4.13, -0.24, 0.99782, 47, -4.14, -1.19, 0.00167, 1, 48, 4.79, 0.23, 1, 1, 48, 10.02, -0.09, 1 ],
  202. "hull": 21,
  203. "edges": [ 6, 8, 12, 10, 8, 10, 32, 30, 32, 34, 34, 36, 12, 14, 14, 16, 30, 42, 42, 40, 34, 48, 48, 42, 32, 48, 36, 38, 38, 40, 48, 38, 26, 44, 44, 2, 22, 46, 46, 6, 22, 24, 24, 26, 44, 50, 50, 46, 24, 50, 2, 4, 4, 6, 50, 4, 26, 28, 28, 30, 42, 52, 52, 44, 28, 52, 2, 0, 0, 40, 52, 0, 20, 22, 54, 46, 20, 54, 54, 8, 16, 18, 18, 20, 14, 56, 56, 54, 18, 56, 56, 10 ],
  204. "width": 28,
  205. "height": 33
  206. }
  207. },
  208. "toufa2": {
  209. "toufa2": {
  210. "type": "mesh",
  211. "uvs": [ 1, 0.29947, 0.91403, 0.38269, 0.84544, 0.44907, 0.78141, 0.5295, 0.73159, 0.59207, 0.69142, 0.67466, 0.65239, 0.75487, 0.62861, 0.83898, 0.61215, 0.89723, 0.58309, 1, 0.22174, 1, 0, 0.87079, 0, 0.76194, 0, 0.68294, 0, 0.58639, 0, 0.47403, 0, 0.31047, 0.07876, 0.23682, 0.16234, 0.15867, 0.38262, 0.06627, 0.61032, 0, 1, 0, 0.65487, 0.17187, 0.55834, 0.30387, 0.44697, 0.49087, 0.36777, 0.64487, 0.78177, 0.10868, 0.29708, 0.81679, 0.50332, 0.39626, 0.40442, 0.57361, 0.32379, 0.75184 ],
  212. "triangles": [ 25, 14, 15, 30, 13, 14, 25, 30, 14, 12, 13, 30, 27, 12, 30, 7, 25, 6, 30, 25, 7, 11, 12, 27, 8, 30, 7, 27, 30, 8, 10, 11, 27, 9, 27, 8, 10, 27, 9, 24, 15, 16, 17, 24, 16, 29, 15, 24, 29, 25, 15, 5, 24, 4, 29, 24, 5, 6, 29, 5, 25, 29, 6, 28, 18, 23, 17, 18, 28, 28, 24, 17, 3, 23, 2, 28, 23, 3, 4, 28, 3, 24, 28, 4, 23, 19, 22, 18, 19, 23, 2, 23, 22, 26, 20, 21, 22, 20, 26, 19, 20, 22, 26, 21, 0, 1, 26, 0, 22, 26, 1, 1, 2, 22 ],
  213. "vertices": [ 4, 40, 2.62, 14.01, 0.68871, 41, -4.13, 13.88, 0.16293, 42, -8.65, 15.55, 0.14834, 43, -15.83, 16.9, 2.0E-5, 4, 40, 7.66, 13.36, 0.44209, 41, 0.93, 13.4, 0.2562, 42, -3.74, 14.23, 0.29339, 43, -11.05, 15.18, 0.00832, 5, 40, 11.68, 12.84, 0.20552, 41, 4.97, 13.02, 0.25985, 42, 0.17, 13.17, 0.48514, 43, -7.23, 13.81, 0.04948, 44, -13.34, 15.83, 1.0E-5, 5, 40, 16.12, 12.84, 0.05579, 41, 9.4, 13.16, 0.14675, 42, 4.57, 12.57, 0.60749, 43, -2.9, 12.85, 0.18144, 44, -9.19, 14.28, 0.00854, 5, 40, 19.57, 12.83, 0.0121, 41, 12.85, 13.27, 0.06031, 42, 7.98, 12.1, 0.51787, 43, 0.46, 12.1, 0.35578, 44, -5.96, 13.06, 0.05393, 5, 40, 23.53, 13.66, 3.2E-4, 41, 16.78, 14.23, 0.01193, 42, 12.02, 12.39, 0.28837, 43, 4.51, 12.06, 0.48568, 44, -1.95, 12.46, 0.21371, 4, 41, 20.6, 15.16, 7.4E-4, 42, 15.94, 12.67, 0.11505, 43, 8.45, 12.02, 0.39537, 44, 1.94, 11.87, 0.48884, 3, 42, 19.74, 13.57, 0.03266, 43, 12.3, 12.61, 0.21155, 44, 5.84, 11.91, 0.75579, 3, 42, 22.37, 14.2, 0.01057, 43, 14.98, 13.02, 0.11763, 44, 8.54, 11.94, 0.8718, 3, 42, 27.01, 15.3, 1.2E-4, 43, 19.69, 13.74, 0.04698, 44, 13.31, 11.99, 0.9529, 1, 44, 16.99, -1.99, 1, 3, 42, 32.61, -8.08, 6.6E-4, 43, 23.36, -10.02, 0.03146, 44, 13.62, -12.04, 0.96788, 3, 42, 28.27, -10.34, 0.01349, 43, 18.84, -11.92, 0.10874, 44, 8.88, -13.29, 0.87777, 3, 42, 25.11, -11.98, 0.04517, 43, 15.57, -13.29, 0.22465, 44, 5.45, -14.2, 0.73018, 4, 41, 30.3, -10.22, 5.5E-4, 42, 21.26, -13.98, 0.12593, 43, 11.56, -14.98, 0.38417, 44, 1.24, -15.3, 0.48935, 4, 41, 26.27, -13.27, 0.00985, 42, 16.77, -16.31, 0.27363, 43, 6.9, -16.93, 0.47764, 44, -3.65, -16.59, 0.23887, 4, 41, 20.4, -17.71, 0.04856, 42, 10.24, -19.71, 0.45895, 43, 0.11, -19.78, 0.42522, 44, -10.76, -18.46, 0.06727, 5, 40, 21.57, -17.72, 8.6E-4, 41, 15.86, -17.2, 0.09575, 42, 5.85, -18.44, 0.52881, 43, -4.16, -18.16, 0.34663, 44, -14.77, -16.26, 0.02796, 5, 40, 16.76, -17.02, 0.01267, 41, 11.04, -16.66, 0.18777, 42, 1.18, -17.1, 0.56398, 43, -8.7, -16.44, 0.23126, 44, -19.02, -13.92, 0.00432, 4, 40, 8.29, -12.22, 0.20814, 41, 2.41, -12.14, 0.45489, 42, -6.57, -11.2, 0.29819, 43, -15.94, -9.93, 0.03878, 3, 40, 0.6, -6.49, 0.87957, 41, -5.47, -6.68, 0.11196, 42, -13.42, -4.5, 0.00847, 2, 40, -8.39, 6.24, 0.99994, 42, -20.61, 9.33, 6.0E-5, 2, 40, 5.89, -0.58, 0.84712, 41, -0.38, -0.59, 0.15288, 4, 40, 12.97, -0.31, 1.0E-4, 41, 6.69, -0.09, 0.75385, 42, -0.33, -0.03, 0.24599, 43, -8.81, 0.69, 6.0E-5, 2, 43, 0.67, -0.16, 1, 44, -7.46, 0.9, 0, 2, 43, 8.29, -0.39, 0.39078, 44, 0.05, -0.4, 0.60922, 2, 40, 0.64, 1.93, 0.99503, 42, -12.24, 3.85, 0.00497, 1, 44, 8.25, -1.17, 1, 2, 42, 4.38, -0.07, 0.99948, 43, -4.12, 0.27, 5.2E-4, 1, 43, 4.77, -0.28, 1, 1, 44, 5.15, -0.88, 1 ],
  214. "hull": 22,
  215. "edges": [ 0, 42, 40, 42, 40, 38, 38, 36, 44, 46, 18, 20, 42, 52, 52, 44, 40, 52, 52, 0, 38, 44, 0, 2, 2, 4, 44, 2, 36, 46, 46, 4, 32, 48, 48, 8, 28, 50, 50, 12, 20, 54, 24, 54, 16, 18, 54, 16, 32, 34, 34, 36, 46, 56, 56, 48, 34, 56, 4, 6, 6, 8, 56, 6, 28, 30, 30, 32, 48, 58, 58, 50, 30, 58, 8, 10, 10, 12, 58, 10, 24, 26, 26, 28, 50, 60, 60, 54, 26, 60, 12, 14, 14, 16, 60, 14, 22, 24, 22, 20 ],
  216. "width": 40,
  217. "height": 45
  218. }
  219. },
  220. "toufa3": {
  221. "toufa3": {
  222. "type": "mesh",
  223. "uvs": [ 0.78492, 0.09813, 0.8898, 0.19907, 0.94592, 0.28561, 0.99031, 0.37956, 0.99999, 0.46488, 1, 0.55968, 1, 0.64675, 0.99999, 0.73472, 0.99999, 0.80884, 0.99999, 0.87904, 1, 0.93915, 1, 1, 0.6612, 1, 0.44936, 1, 0.47567, 0.94351, 0.49436, 0.87275, 0.50084, 0.79945, 0.50084, 0.72547, 0.50084, 0.65614, 0.50084, 0.5804, 0.49512, 0.50962, 0.4894, 0.43421, 0.46603, 0.35269, 0.42648, 0.27368, 0.37459, 0.19403, 0.31858, 0.12579, 0.26576, 0.10159, 0, 0.09959, 0, 0.03963, 0, 0, 0.307, 0, 0.661, 0, 0.51908, 0.06805, 0.63216, 0.2364, 0.67336, 0.40705, 0.7016, 0.57474, 0.7016, 0.7311, 0.6814, 0.87544, 0.29718, 0.05133, 0.56818, 0.15192, 0.66163, 0.3262, 0.68005, 0.499, 0.7016, 0.65379, 0.69449, 0.8079, 0.67108, 0.9391 ],
  224. "triangles": [ 12, 44, 11, 44, 10, 11, 13, 14, 12, 12, 14, 44, 14, 15, 44, 44, 37, 10, 37, 9, 10, 44, 15, 37, 37, 43, 9, 15, 16, 37, 9, 43, 8, 37, 16, 43, 43, 36, 8, 43, 16, 17, 36, 7, 8, 36, 43, 17, 6, 7, 42, 17, 42, 36, 7, 36, 42, 17, 18, 42, 18, 19, 42, 42, 35, 6, 19, 35, 42, 35, 5, 6, 19, 41, 35, 19, 20, 41, 5, 35, 4, 35, 41, 4, 20, 21, 41, 21, 34, 41, 4, 34, 3, 4, 41, 34, 21, 40, 34, 34, 2, 3, 21, 22, 40, 34, 40, 2, 22, 33, 40, 22, 23, 33, 40, 1, 2, 40, 33, 1, 23, 39, 33, 23, 24, 39, 33, 0, 1, 33, 39, 0, 24, 32, 39, 24, 25, 32, 39, 31, 0, 39, 32, 31, 26, 38, 25, 25, 38, 32, 38, 26, 28, 26, 27, 28, 38, 30, 32, 32, 30, 31, 30, 38, 29, 38, 28, 29 ],
  225. "vertices": [ 2, 33, 4.42, 6.43, 0.9982, 34, -8.85, 5.01, 0.0018, 2, 33, 11.82, 7.26, 0.59629, 34, -1.7, 7.08, 0.40371, 3, 33, 17.95, 7.16, 0.06791, 34, 4.36, 8.01, 0.86931, 35, -7.11, 8.04, 0.06278, 2, 34, 10.91, 8.6, 0.48728, 35, -0.56, 8.61, 0.51272, 3, 34, 16.8, 8.38, 0.06459, 35, 5.33, 8.35, 0.93376, 36, -9.49, 7.87, 0.00164, 2, 35, 11.85, 7.8, 0.79025, 36, -2.95, 7.66, 0.20975, 3, 35, 17.84, 7.3, 0.1863, 36, 3.05, 7.47, 0.79181, 37, -7.47, 6.46, 0.02189, 4, 35, 23.88, 6.79, 0.00103, 36, 9.12, 7.28, 0.58391, 37, -1.44, 7.14, 0.41146, 38, -9.54, 7.09, 0.0036, 3, 36, 14.23, 7.12, 0.10189, 37, 3.64, 7.72, 0.75763, 38, -4.46, 7.69, 0.14047, 3, 36, 19.07, 6.96, 0.00139, 37, 8.45, 8.26, 0.42013, 38, 0.35, 8.27, 0.57848, 2, 37, 12.58, 8.73, 0.10374, 38, 4.47, 8.76, 0.89626, 2, 37, 16.75, 9.2, 0.01088, 38, 8.64, 9.25, 0.98912, 1, 38, 9.64, 0.84, 1, 1, 38, 10.27, -4.42, 1, 1, 38, 6.32, -4.22, 1, 2, 37, 9.44, -4.34, 0.29474, 38, 1.42, -4.34, 0.70526, 3, 36, 13.19, -5.34, 0.04737, 37, 4.4, -4.75, 0.91538, 38, -3.63, -4.77, 0.03725, 2, 36, 8.09, -5.17, 0.66349, 37, -0.67, -5.33, 0.33651, 3, 35, 17.43, -5.19, 0.07354, 36, 3.31, -5.02, 0.91785, 37, -5.42, -5.87, 0.00862, 2, 35, 12.23, -4.75, 0.79492, 36, -1.92, -4.86, 0.20508, 1, 35, 7.35, -4.48, 1, 2, 34, 13.68, -4.18, 0.13099, 35, 2.15, -4.19, 0.86901, 2, 34, 8.03, -4.32, 0.97428, 35, -3.5, -4.3, 0.02572, 2, 33, 13.97, -5.23, 0.1994, 34, 2.52, -4.87, 0.8006, 2, 33, 8.32, -5.14, 0.93774, 34, -3.06, -5.73, 0.06226, 1, 33, 3.41, -5.34, 1, 1, 33, 1.47, -6.21, 1, 1, 33, -0.29, -12.62, 1, 1, 33, -4.3, -11.6, 1, 1, 33, -6.96, -10.93, 1, 1, 33, -5.07, -3.49, 1, 1, 33, -2.9, 5.09, 1, 1, 33, 0.78, 0.5, 1, 2, 33, 12.74, 0.39, 0.28499, 34, 0.36, 0.45, 0.71501, 2, 34, 12.18, 0.55, 0.09845, 35, 0.67, 0.55, 0.90155, 1, 35, 12.26, 0.28, 1, 2, 36, 8.63, -0.17, 0.98976, 37, -0.85, -0.3, 0.01024, 2, 37, 9.1, 0.32, 0.00134, 38, 1.05, 0.33, 0.99866, 1, 33, -1.7, -4.6, 1, 1, 33, 6.69, 0.27, 1, 2, 34, 6.59, 0.7, 0.99557, 35, -4.91, 0.73, 0.00443, 1, 35, 7.01, 0.19, 1, 1, 36, 3.3, 0, 1, 2, 37, 4.44, 0.12, 0.99965, 38, -3.62, 0.1, 3.5E-4, 1, 38, 5.44, 0.59, 1 ],
  226. "hull": 32,
  227. "edges": [ 54, 52, 62, 0, 0, 2, 54, 56, 56, 58, 22, 24, 24, 26, 56, 76, 76, 64, 52, 76, 58, 60, 60, 62, 76, 60, 50, 52, 50, 64, 64, 62, 46, 48, 48, 50, 64, 78, 78, 66, 48, 78, 78, 0, 46, 66, 66, 2, 42, 68, 68, 6, 42, 44, 44, 46, 66, 80, 80, 68, 44, 80, 2, 4, 4, 6, 80, 4, 38, 40, 40, 42, 68, 82, 82, 70, 40, 82, 6, 8, 8, 10, 82, 8, 38, 70, 70, 10, 34, 72, 72, 14, 34, 36, 36, 38, 70, 84, 84, 72, 36, 84, 10, 12, 12, 14, 84, 12, 30, 74, 74, 18, 30, 32, 32, 34, 72, 86, 86, 74, 32, 86, 14, 16, 16, 18, 86, 16, 26, 28, 28, 30, 24, 88, 88, 74, 28, 88, 18, 20, 20, 22, 88, 20 ],
  228. "width": 25,
  229. "height": 69
  230. }
  231. },
  232. "toufa4": {
  233. "toufa4": {
  234. "type": "mesh",
  235. "uvs": [ 0.8546, 0.15213, 1, 0.39264, 1, 0.77448, 0.90631, 1, 0.73526, 1, 0.72332, 0.73728, 0.68156, 0.6753, 0.60796, 0.51165, 0.30563, 0.54885, 0.09679, 0.56868, 0.06894, 0.73728, 0, 0.67034, 0, 0.30586, 0.12662, 0.10502, 0.30961, 0, 0.67559, 0 ],
  236. "triangles": [ 7, 14, 15, 7, 15, 0, 7, 0, 1, 8, 13, 14, 8, 14, 7, 12, 13, 8, 9, 12, 8, 11, 12, 9, 6, 7, 1, 5, 6, 1, 10, 11, 9, 5, 1, 2, 3, 4, 5, 2, 3, 5 ],
  237. "vertices": [ 74.53, -43.72, 55.87, -55.34, 28.1, -52.87, 12.46, -42.92, 13.84, -27.42, 33.04, -28.03, 37.88, -24.65, 50.37, -19.04, 50.11, 8.61, 50.35, 27.67, 38.31, 31.28, 43.73, 37.1, 70.24, 34.74, 83.82, 21.97, 89.98, 4.7, 87.03, -28.47 ],
  238. "hull": 16,
  239. "edges": [ 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 30, 28, 30, 28, 26, 22, 24, 26, 24 ],
  240. "width": 91,
  241. "height": 73
  242. }
  243. },
  244. "toufa5": {
  245. "toufa5": {
  246. "type": "mesh",
  247. "uvs": [ 0.38749, 0.14892, 0.68631, 0.20692, 0.87544, 0.30508, 1, 0.46569, 1, 0.80923, 0.84518, 1, 0.50853, 1, 0.18701, 0.87169, 0, 0.76462, 0, 0, 0.25131, 0 ],
  248. "triangles": [ 0, 8, 9, 0, 9, 10, 6, 2, 3, 7, 8, 0, 1, 7, 0, 6, 1, 2, 4, 6, 3, 6, 7, 1, 5, 6, 4 ],
  249. "vertices": [ 3.86, 12.51, 13.87, 2.83, 18.84, -5.27, 19.99, -13.69, 12.36, -24.7, 2.27, -26.76, -10.46, -17.95, -19.77, -5.42, -24.47, 2.91, -7.49, 27.43, 2.01, 20.85 ],
  250. "hull": 11,
  251. "edges": [ 18, 20, 20, 0, 0, 2, 2, 4, 4, 6, 6, 8, 10, 8, 10, 12, 12, 14, 16, 18, 14, 16 ],
  252. "width": 46,
  253. "height": 39
  254. }
  255. },
  256. "toufa6": {
  257. "toufa6": {
  258. "type": "mesh",
  259. "uvs": [ 1, 0.27862, 1, 0.34964, 1, 0.42486, 1, 0.50901, 1, 0.59139, 1, 0.64983, 1, 0.71228, 1, 0.75881, 1, 0.81513, 1, 0.91187, 1, 1, 0.63687, 1, 0, 1, 0, 0.92044, 0, 0.82248, 0, 0.76493, 0, 0.71105, 0, 0.6535, 0, 0.59752, 0, 0.50779, 0, 0.42609, 0, 0.35087, 0, 0.27862, 0, 0, 0.39142, 0, 1, 0, 0.4959, 0.42567, 0.5368, 0.5923, 0.56617, 0.71194, 0.59174, 0.8161, 0.61521, 0.91173, 0.5787, 0.763, 0.55098, 0.65008, 0.51619, 0.50835, 0.45927, 0.27641, 0.47735, 0.35007 ],
  260. "triangles": [ 30, 29, 8, 30, 8, 9, 13, 14, 29, 13, 29, 30, 12, 13, 30, 11, 30, 9, 12, 30, 11, 11, 9, 10, 31, 28, 6, 7, 31, 6, 15, 16, 28, 15, 28, 31, 29, 31, 7, 8, 29, 7, 14, 15, 31, 14, 31, 29, 32, 27, 4, 5, 32, 4, 17, 18, 27, 17, 27, 32, 16, 17, 32, 28, 32, 5, 16, 32, 28, 28, 5, 6, 19, 26, 33, 33, 2, 3, 27, 33, 3, 4, 27, 3, 18, 19, 33, 18, 33, 27, 34, 24, 25, 34, 25, 0, 22, 23, 24, 22, 24, 34, 35, 34, 0, 1, 35, 0, 21, 22, 34, 21, 34, 35, 26, 35, 1, 2, 26, 1, 20, 21, 35, 20, 35, 26, 19, 20, 26, 33, 26, 2 ],
  261. "vertices": [ 2, 28, 2.39, 6.43, 0.99843, 29, -7.19, 6.72, 0.00157, 2, 28, 5.86, 6.21, 0.93411, 29, -3.73, 6.37, 0.06589, 3, 28, 9.54, 5.97, 0.5603, 29, -0.06, 6, 0.43969, 30, -7.66, 5.79, 1.0E-5, 3, 28, 13.66, 5.71, 0.08645, 29, 4.04, 5.58, 0.83506, 30, -3.55, 5.49, 0.07849, 4, 28, 17.69, 5.45, 2.7E-4, 29, 8.06, 5.17, 0.4312, 30, 0.48, 5.18, 0.56754, 31, -5.68, 5.07, 9.9E-4, 3, 29, 10.9, 4.88, 0.08921, 30, 3.34, 4.97, 0.83391, 31, -2.82, 4.92, 0.07688, 4, 29, 13.95, 4.57, 0.0013, 30, 6.39, 4.74, 0.51714, 31, 0.24, 4.75, 0.4784, 32, -5.04, 4.93, 0.00316, 3, 30, 8.66, 4.57, 0.16053, 31, 2.51, 4.62, 0.76497, 32, -2.77, 4.72, 0.0745, 3, 30, 11.41, 4.36, 0.0094, 31, 5.27, 4.47, 0.5431, 32, -0.02, 4.47, 0.4475, 2, 31, 10, 4.2, 0.0134, 32, 4.7, 4.04, 0.9866, 1, 32, 9, 3.65, 1, 1, 32, 8.64, -0.33, 1, 2, 31, 13.7, -7.02, 5.0E-4, 32, 8.01, -7.3, 0.9995, 2, 31, 9.81, -6.8, 0.07291, 32, 4.13, -6.95, 0.92709, 3, 30, 10.95, -6.63, 0.04363, 31, 5.02, -6.54, 0.50832, 32, -0.65, -6.52, 0.44805, 4, 29, 15.4, -6.64, 2.6E-4, 30, 8.14, -6.42, 0.21799, 31, 2.2, -6.38, 0.64588, 32, -3.46, -6.26, 0.13587, 4, 29, 12.77, -6.37, 0.022, 30, 5.5, -6.22, 0.52316, 31, -0.43, -6.23, 0.43558, 32, -6.09, -6.02, 0.01926, 3, 29, 9.97, -6.08, 0.16186, 30, 2.69, -6.01, 0.69965, 31, -3.25, -6.08, 0.13849, 3, 29, 7.24, -5.8, 0.49577, 30, -0.04, -5.81, 0.48523, 31, -5.99, -5.92, 0.019, 3, 28, 12.9, -5.26, 0.03037, 29, 2.86, -5.36, 0.91161, 30, -4.43, -5.48, 0.05802, 2, 28, 8.91, -5.01, 0.49703, 29, -1.12, -4.95, 0.50297, 2, 28, 5.23, -4.78, 0.94145, 29, -4.79, -4.58, 0.05855, 1, 28, 1.69, -4.55, 1, 1, 28, -11.93, -3.69, 1, 1, 28, -11.66, 0.61, 1, 1, 28, -11.23, 7.29, 1, 2, 28, 9.23, 0.44, 0.9608, 29, -0.59, 0.48, 0.0392, 2, 29, 7.58, 0.1, 0.36654, 30, 0.14, 0.1, 0.63346, 2, 30, 6.01, -0.02, 0.53933, 31, -0.04, -0.02, 0.46067, 2, 31, 5.07, -0.02, 0.87231, 32, -0.38, -0.01, 0.12769, 1, 32, 4.31, -0.17, 1, 1, 31, 2.46, -0.02, 1, 1, 30, 2.98, 0.04, 1, 2, 28, 13.29, 0.4, 8.9E-4, 29, 3.47, 0.29, 0.99911, 1, 28, 1.91, 0.5, 1, 1, 28, 5.52, 0.47, 1 ],
  262. "hull": 26,
  263. "edges": [ 46, 48, 48, 50, 20, 22, 22, 24, 40, 52, 52, 4, 36, 54, 54, 8, 32, 56, 56, 12, 28, 58, 58, 16, 24, 26, 26, 28, 22, 60, 60, 58, 26, 60, 16, 18, 18, 20, 60, 18, 28, 30, 30, 32, 56, 62, 62, 58, 30, 62, 12, 14, 14, 16, 62, 14, 32, 34, 34, 36, 54, 64, 64, 56, 34, 64, 8, 10, 10, 12, 64, 10, 36, 38, 38, 40, 52, 66, 66, 54, 38, 66, 4, 6, 6, 8, 66, 6, 44, 46, 48, 68, 44, 68, 0, 50, 68, 0, 40, 42, 42, 44, 52, 70, 70, 68, 42, 70, 0, 2, 2, 4, 70, 2 ],
  264. "width": 11,
  265. "height": 49
  266. }
  267. },
  268. "toufa7": {
  269. "toufa7": {
  270. "type": "mesh",
  271. "uvs": [ 1, 0.57693, 0.24677, 1, 0, 1, 0, 0.43926, 0.79744, 0, 1, 0 ],
  272. "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
  273. "vertices": [ 5.31, -34.78, -3.21, -15.88, -2.68, -9.98, 10.72, -11.17, 19.53, -31.17, 19.1, -36.01 ],
  274. "hull": 6,
  275. "edges": [ 4, 6, 8, 10, 6, 8, 2, 4, 0, 10, 2, 0 ],
  276. "width": 24,
  277. "height": 24
  278. }
  279. },
  280. "youshou": {
  281. "youshou": {
  282. "type": "mesh",
  283. "uvs": [ 0.62479, 0.2642, 0.65091, 0.28615, 0.68297, 0.31311, 0.96229, 0.54795, 1, 0.57966, 1, 0.65832, 1, 1, 0.49606, 1, 0.43132, 0.89746, 0.41229, 0.86732, 0.38626, 0.82608, 0.20165, 0.53369, 0.18234, 0.50311, 0.15859, 0.46549, 0, 0.21431, 0, 0, 0.31056, 0, 0.40113, 0.40113, 0.72016, 0.72016, 0.68908, 0.68908, 0.75415, 0.75415, 0.4317, 0.4317, 0.37728, 0.37728 ],
  284. "triangles": [ 18, 3, 4, 19, 2, 3, 18, 19, 3, 4, 5, 18, 20, 18, 5, 10, 21, 19, 9, 10, 19, 9, 19, 18, 8, 9, 18, 8, 18, 20, 7, 8, 20, 20, 5, 6, 7, 20, 6, 17, 0, 1, 21, 17, 1, 21, 1, 2, 12, 22, 17, 11, 12, 17, 11, 17, 21, 21, 2, 19, 10, 11, 21, 22, 14, 15, 22, 16, 0, 22, 15, 16, 17, 22, 0, 13, 14, 22, 12, 13, 22 ],
  285. "vertices": [ 2, 8, 17.52, 9.47, 0.68538, 9, -2.57, 9.71, 0.31462, 2, 8, 19.04, 9.71, 0.55821, 9, -1.04, 9.83, 0.44179, 2, 8, 20.9, 10.01, 0.39562, 9, 0.84, 9.98, 0.60438, 2, 9, 17.2, 11.28, 0.60411, 10, -1.82, 11.19, 0.39589, 2, 9, 19.4, 11.46, 0.49363, 10, 0.37, 11.51, 0.50637, 2, 9, 23.26, 9.16, 0.24091, 10, 4.36, 9.47, 0.75909, 1, 10, 21.71, 0.61, 1, 2, 9, 31.21, -15.53, 0.01819, 10, 13.92, -14.65, 0.98181, 2, 9, 25.06, -14.43, 0.11641, 10, 7.71, -13.95, 0.88359, 2, 9, 23.26, -14.1, 0.18731, 10, 5.89, -13.75, 0.81269, 2, 9, 20.78, -13.66, 0.31924, 10, 3.39, -13.47, 0.68076, 3, 8, 24.96, -10.22, 0.13877, 9, 3.25, -10.52, 0.86081, 10, -14.31, -11.48, 4.2E-4, 2, 8, 23.1, -10.04, 0.25006, 9, 1.42, -10.19, 0.74994, 2, 8, 20.82, -9.82, 0.43566, 9, -0.83, -9.78, 0.56434, 1, 8, 5.59, -8.34, 1, 1, 8, -5.37, -2.95, 1, 1, 8, -0.71, 6.53, 1, 2, 8, 21.17, -0.8, 0.24839, 9, 0.24, -0.82, 0.75161, 1, 10, 3.18, -0.61, 1, 1, 10, 1.12, -0.75, 1, 1, 10, 5.43, -0.46, 1, 2, 8, 23.19, -0.64, 0.0081, 9, 2.27, -0.82, 0.9919, 2, 8, 19.59, -0.93, 0.94747, 9, -1.35, -0.82, 0.05253 ],
  286. "hull": 17,
  287. "edges": [ 30, 32, 28, 30, 12, 14, 24, 34, 34, 2, 18, 36, 36, 8, 18, 20, 38, 36, 20, 38, 6, 8, 38, 6, 14, 16, 16, 18, 12, 40, 40, 36, 16, 40, 8, 10, 10, 12, 40, 10, 20, 22, 22, 24, 34, 42, 42, 38, 22, 42, 2, 4, 4, 6, 42, 4, 24, 26, 26, 28, 30, 44, 44, 34, 26, 44, 2, 0, 0, 32, 44, 0 ],
  288. "width": 34,
  289. "height": 57
  290. }
  291. },
  292. "youtui": {
  293. "youtui": {
  294. "type": "mesh",
  295. "uvs": [ 0.91367, 0.42067, 0.92684, 0.4504, 0.94698, 0.49587, 1, 0.61557, 0.99999, 0.81146, 1, 0.84397, 1, 0.8763, 1, 1, 0, 1, 0, 0.96438, 0, 0.90142, 0.13895, 0.86739, 0.13694, 0.84108, 0.13405, 0.80321, 0.1143, 0.54433, 0.11156, 0.50847, 0.1082, 0.46446, 0.07276, 0, 0.45888, 0, 0.72734, 0, 0.59972, 0.87235, 0.53364, 0.4878, 0.53902, 0.52287, 0.52772, 0.44911, 0.58828, 0.84431, 0.58319, 0.81106 ],
  296. "triangles": [ 11, 12, 24, 9, 10, 11, 9, 11, 20, 8, 9, 20, 22, 21, 1, 22, 1, 2, 14, 21, 22, 13, 14, 22, 25, 22, 2, 25, 2, 3, 13, 22, 25, 4, 25, 3, 12, 13, 25, 24, 25, 4, 24, 4, 5, 12, 25, 24, 20, 24, 5, 11, 24, 20, 20, 5, 6, 20, 6, 7, 8, 20, 7, 23, 18, 19, 23, 19, 0, 16, 17, 18, 16, 18, 23, 21, 23, 0, 21, 0, 1, 15, 16, 23, 15, 23, 21, 14, 15, 21 ],
  297. "vertices": [ 2, 15, 22.84, 12.01, 0.7516, 16, -4.31, 11.99, 0.2484, 2, 15, 24.85, 12.29, 0.62479, 16, -2.3, 12.28, 0.37521, 2, 15, 27.94, 12.71, 0.41154, 16, 0.78, 12.71, 0.58846, 1, 16, 8.89, 13.85, 1, 2, 16, 21.99, 13.04, 0.99882, 17, -13.63, -2.7, 0.00118, 2, 16, 24.16, 12.9, 0.9898, 17, -13.15, -0.57, 0.0102, 2, 16, 26.33, 12.77, 0.96682, 17, -12.68, 1.54, 0.03318, 2, 16, 34.6, 12.26, 0.85647, 17, -10.89, 9.63, 0.14353, 1, 17, 19.38, 2.91, 1, 1, 17, 18.86, 0.58, 1, 2, 16, 26.08, -18.27, 0.00563, 17, 17.94, -3.54, 0.99437, 2, 16, 24.07, -13.83, 0.1282, 17, 13.24, -4.83, 0.8718, 2, 16, 22.31, -13.79, 0.27078, 17, 12.92, -6.56, 0.72922, 2, 16, 19.77, -13.72, 0.45759, 17, 12.46, -9.06, 0.54241, 3, 15, 29.45, -13.27, 0.35391, 16, 2.42, -13.25, 0.6347, 17, 9.29, -26.12, 0.01139, 3, 15, 27.05, -13.19, 0.51292, 16, 0.02, -13.19, 0.48309, 17, 8.86, -28.49, 0.00398, 3, 15, 24.1, -13.1, 0.70244, 16, -2.93, -13.11, 0.29698, 17, 8.32, -31.39, 5.8E-4, 1, 15, -7.03, -12.11, 1, 1, 15, -6.23, -0.17, 1, 1, 15, -5.67, 8.14, 1, 1, 16, 25.29, 0.4, 1, 2, 15, 26.54, -0.04, 0.83969, 16, -0.55, -0.04, 0.16031, 2, 16, 1.8, -0.02, 1, 17, -3.87, -24.67, 0, 1, 15, 23.94, -0.05, 1, 1, 16, 23.39, 0.16, 1, 1, 16, 21.16, 0.14, 1 ],
  298. "hull": 20,
  299. "edges": [ 14, 16, 22, 20, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 30, 42, 42, 2, 28, 30, 44, 42, 28, 44, 2, 4, 4, 6, 44, 4, 30, 32, 32, 34, 36, 46, 46, 42, 32, 46, 2, 0, 0, 38, 46, 0, 22, 40, 12, 14, 40, 12, 22, 24, 40, 48, 24, 48, 10, 12, 48, 10, 24, 26, 26, 28, 44, 50, 50, 48, 26, 50, 6, 8, 8, 10, 50, 8 ],
  300. "width": 31,
  301. "height": 67
  302. }
  303. },
  304. "youwaitao": {
  305. "youwaitao": {
  306. "type": "mesh",
  307. "uvs": [ 0.74764, 0.24463, 0.823, 0.37414, 0.88212, 0.47574, 0.94427, 0.58255, 0.97585, 0.67458, 0.99999, 0.74489, 0.99999, 0.82687, 0.99999, 0.87797, 1, 1, 0.55272, 1, 0, 1, 0, 0.94218, 0, 0.87797, 0, 0.81812, 0, 0.73514, 0, 0.62648, 0, 0.51239, 0, 0.41265, 0, 0.28047, 0, 0, 0.20443, 0, 0.60529, 0, 0.34392, 0.4005, 0.41732, 0.61125, 0.4755, 0.78623, 0.44828, 0.70438, 0.37863, 0.50015, 0.52011, 0.90973, 0.49929, 0.8521, 0.29731, 0.26668 ],
  308. "triangles": [ 9, 7, 8, 10, 27, 9, 9, 27, 7, 10, 11, 27, 11, 28, 27, 11, 12, 28, 7, 27, 6, 27, 28, 6, 12, 24, 28, 12, 13, 24, 6, 28, 5, 28, 24, 5, 24, 4, 5, 13, 25, 24, 13, 14, 25, 24, 25, 4, 14, 23, 25, 14, 15, 23, 25, 3, 4, 25, 23, 3, 15, 26, 23, 15, 16, 26, 23, 2, 3, 23, 26, 2, 16, 22, 26, 16, 17, 22, 26, 1, 2, 26, 22, 1, 17, 29, 22, 17, 18, 29, 22, 0, 1, 22, 29, 0, 18, 20, 29, 18, 19, 20, 29, 21, 0, 29, 20, 21 ],
  309. "vertices": [ 2, 23, 6.17, 10.77, 0.92318, 24, -7.81, 10.97, 0.07682, 3, 23, 13.8, 11.63, 0.49134, 24, -0.16, 11.64, 0.49534, 25, -11.76, 12.52, 0.01332, 4, 23, 19.78, 12.3, 0.13327, 24, 5.84, 12.15, 0.73659, 25, -5.73, 12.61, 0.12629, 26, -12.22, 15.43, 0.00385, 4, 23, 26.07, 13.01, 0.01089, 24, 12.14, 12.7, 0.50746, 25, 0.6, 12.69, 0.41064, 26, -6.01, 14.22, 0.07102, 3, 24, 17.52, 12.71, 0.20044, 25, 5.96, 12.31, 0.52001, 26, -0.84, 12.75, 0.27955, 3, 24, 21.63, 12.72, 0.06587, 25, 10.06, 12.02, 0.39006, 26, 3.12, 11.63, 0.54407, 3, 24, 26.35, 12.15, 0.00872, 25, 14.73, 11.1, 0.15751, 26, 7.5, 9.78, 0.83377, 3, 24, 29.29, 11.79, 6.8E-4, 25, 17.63, 10.53, 0.05941, 26, 10.23, 8.62, 0.93991, 1, 26, 16.75, 5.86, 1, 1, 26, 13.09, -2.79, 1, 2, 25, 20.53, -11.44, 0.0246, 26, 8.56, -13.48, 0.9754, 2, 25, 17.23, -10.79, 0.06452, 26, 5.47, -12.17, 0.93548, 2, 25, 13.58, -10.07, 0.21672, 26, 2.04, -10.72, 0.78328, 2, 25, 10.17, -9.4, 0.48383, 26, -1.15, -9.37, 0.51617, 3, 24, 18.53, -8.05, 0.03124, 25, 5.45, -8.47, 0.84537, 26, -5.58, -7.49, 0.12339, 2, 24, 12.27, -7.29, 0.49314, 25, -0.73, -7.26, 0.50686, 3, 23, 20.13, -6.34, 0.01613, 24, 5.7, -6.49, 0.96849, 25, -7.22, -5.98, 0.01538, 2, 23, 14.37, -5.79, 0.46469, 24, -0.04, -5.79, 0.53531, 2, 23, 6.74, -5.06, 0.99977, 24, -7.65, -4.86, 2.3E-4, 1, 23, -9.45, -3.51, 1, 1, 23, -9.04, 0.76, 1, 1, 23, -8.24, 9.14, 1, 2, 23, 14.36, 1.47, 0.45226, 24, 0.14, 1.46, 0.54774, 3, 24, 12.46, 1.51, 0.51865, 25, 0.09, 1.51, 0.48028, 26, -8.79, 3.38, 0.00107, 3, 24, 22.68, 1.5, 1.4E-4, 25, 10.29, 0.75, 0.03991, 26, 1.03, 0.55, 0.95996, 3, 24, 17.9, 1.51, 0.00461, 25, 5.52, 1.11, 0.97793, 26, -3.56, 1.87, 0.01746, 3, 23, 20.18, 1.64, 0.00344, 24, 5.96, 1.49, 0.99569, 25, -6.39, 1.96, 8.7E-4, 1, 26, 8, -1.38, 1, 1, 26, 4.75, -0.48, 1, 2, 23, 6.54, 1.23, 0.99951, 24, -7.69, 1.43, 4.9E-4 ],
  310. "hull": 22,
  311. "edges": [ 38, 40, 40, 42, 16, 18, 18, 20, 34, 44, 44, 2, 30, 46, 46, 6, 26, 48, 48, 10, 26, 28, 28, 30, 46, 50, 50, 48, 28, 50, 6, 8, 8, 10, 50, 8, 30, 32, 32, 34, 44, 52, 52, 46, 32, 52, 2, 4, 4, 6, 52, 4, 20, 22, 18, 54, 22, 54, 14, 16, 54, 14, 22, 24, 24, 26, 48, 56, 56, 54, 24, 56, 10, 12, 12, 14, 56, 12, 34, 36, 36, 38, 40, 58, 58, 44, 36, 58, 2, 0, 0, 42, 58, 0 ],
  312. "width": 21,
  313. "height": 58
  314. }
  315. },
  316. "youyan": {
  317. "youyan": { "x": 6.28, "y": 0.01, "rotation": -90, "width": 22, "height": 19 }
  318. },
  319. "youyangaoguang": {
  320. "youyangaoguang": { "x": 0.1, "y": 0.69, "rotation": -90, "width": 4, "height": 5 }
  321. },
  322. "youyantongkong": {
  323. "youyantongkong": { "x": -0.29, "y": 0.57, "rotation": -90, "width": 12, "height": 12 }
  324. },
  325. "yueguangbaohe": {
  326. "yueguangbaohe": {
  327. "type": "mesh",
  328. "uvs": [ 1, 0.53989, 1, 1, 0.78429, 1, 0, 0.47605, 0, 0, 0.22099, 0 ],
  329. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  330. "vertices": [ -12.87, -5.8, -18.84, 4.03, -12.57, 7.84, 17.02, 10.48, 23.2, 0.31, 16.77, -3.59 ],
  331. "hull": 6,
  332. "edges": [ 8, 10, 2, 0, 10, 0, 2, 4, 6, 8, 4, 6 ],
  333. "width": 34,
  334. "height": 25
  335. }
  336. },
  337. "zuiba": {
  338. "zuiba": { "x": 0.77, "y": 0.28, "rotation": -95.08, "width": 14, "height": 5 }
  339. },
  340. "zuoshou": {
  341. "zuoshou": {
  342. "type": "mesh",
  343. "uvs": [ 1, 0.15105, 0.84687, 0.46876, 0.83542, 0.4925, 0.82663, 0.51075, 0.68566, 0.80323, 0.67418, 0.82705, 0.66724, 0.84145, 0.59082, 1, 0, 1, 0, 0.57433, 0.01687, 0.55936, 0.03423, 0.54395, 0.28402, 0.32232, 0.31041, 0.29891, 0.32926, 0.28218, 0.64729, 0, 1, 0, 0.58575, 0.41425, 0.28466, 0.71534, 0.61201, 0.38799, 0.56585, 0.43415, 0.30054, 0.69946, 0.32044, 0.67956 ],
  344. "triangles": [ 8, 9, 18, 7, 18, 6, 8, 18, 7, 20, 13, 17, 12, 13, 20, 20, 17, 3, 22, 12, 20, 11, 12, 22, 21, 11, 22, 10, 11, 21, 18, 10, 21, 9, 10, 18, 4, 20, 3, 22, 20, 4, 5, 22, 4, 21, 22, 5, 6, 21, 5, 18, 21, 6, 19, 15, 16, 19, 14, 15, 0, 19, 16, 17, 14, 19, 13, 14, 17, 1, 19, 0, 2, 19, 1, 17, 19, 2, 3, 17, 2 ],
  345. "vertices": [ 1, 5, 2.57, 7.66, 1, 2, 5, 20.58, 10.55, 0.5519, 6, -1.72, 10.55, 0.4481, 3, 5, 21.92, 10.76, 0.43954, 6, -0.37, 10.76, 0.56045, 7, -18.65, 11.6, 1.0E-5, 3, 5, 22.96, 10.93, 0.35703, 6, 0.66, 10.93, 0.6427, 7, -17.61, 11.72, 2.6E-4, 2, 6, 17.23, 13.6, 0.52363, 7, -0.94, 13.65, 0.47637, 2, 6, 18.58, 13.82, 0.43556, 7, 0.42, 13.81, 0.56444, 2, 6, 19.4, 13.95, 0.38366, 7, 1.24, 13.91, 0.61634, 2, 6, 28.38, 15.39, 0.07044, 7, 10.28, 14.95, 0.92956, 1, 7, 18.19, -3.51, 1, 2, 6, 16.02, -12.87, 0.76433, 7, -3.33, -12.73, 0.23567, 2, 6, 15.03, -12.71, 0.79416, 7, -4.31, -12.53, 0.20584, 2, 6, 14.01, -12.55, 0.83179, 7, -5.32, -12.32, 0.16821, 2, 5, 21.62, -10.19, 0.41522, 6, -0.66, -10.19, 0.58478, 2, 5, 20.07, -9.94, 0.54643, 6, -2.21, -9.94, 0.45357, 2, 5, 18.96, -9.76, 0.63872, 6, -3.32, -9.76, 0.36128, 1, 5, 0.29, -6.75, 1, 1, 5, -4.91, 4.06, 1, 2, 5, 21.72, 1.25, 0.7292, 6, -0.56, 1.25, 0.2708, 2, 6, 18.8, -0.78, 0.49354, 7, -0.01, -0.78, 0.50646, 2, 5, 20.04, 1.43, 0.94336, 6, -2.25, 1.42, 0.05664, 2, 5, 23, 1.11, 0.16125, 6, 0.72, 1.11, 0.83875, 2, 6, 17.78, -0.67, 0.94073, 7, -1.03, -0.63, 0.05927, 1, 6, 16.5, -0.54, 1 ],
  346. "hull": 17,
  347. "edges": [ 30, 32, 16, 18, 0, 32, 14, 16, 26, 34, 34, 4, 16, 36, 18, 36, 12, 14, 36, 12, 26, 28, 28, 30, 32, 38, 38, 34, 28, 38, 0, 2, 2, 4, 38, 2, 24, 26, 34, 40, 24, 40, 4, 6, 40, 6, 18, 20, 36, 42, 20, 42, 10, 12, 42, 10, 20, 22, 22, 24, 40, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8 ],
  348. "width": 34,
  349. "height": 55
  350. }
  351. },
  352. "zuotui": {
  353. "zuotui": {
  354. "type": "mesh",
  355. "uvs": [ 1, 0.42759, 1, 0.45099, 1, 0.46809, 1, 0.82508, 1, 0.84586, 1, 0.87573, 1, 1, 0, 1, 0, 0.95363, 0, 0.88143, 0.18449, 0.82253, 0.19311, 0.79738, 0.19946, 0.77882, 0.31841, 0.43144, 0.32607, 0.40906, 0.33265, 0.38983, 0.46614, 0, 0.73102, 0, 1, 0, 0.5902, 0.89283, 0.59579, 0.85736, 0.60018, 0.82954, 0.60338, 0.80922, 0.66243, 0.43486, 0.65956, 0.45304, 0.66619, 0.41101 ],
  356. "triangles": [ 10, 11, 20, 19, 10, 20, 8, 9, 10, 8, 10, 19, 7, 8, 19, 19, 20, 5, 6, 19, 5, 7, 19, 6, 24, 14, 23, 13, 14, 24, 24, 23, 2, 22, 13, 24, 12, 13, 22, 24, 2, 3, 22, 24, 3, 21, 12, 22, 11, 12, 21, 22, 3, 4, 21, 22, 4, 20, 11, 21, 21, 4, 5, 20, 21, 5, 25, 16, 17, 15, 16, 25, 17, 18, 0, 25, 17, 0, 23, 15, 25, 14, 15, 23, 25, 0, 1, 23, 25, 1, 23, 1, 2 ],
  357. "vertices": [ 2, 12, 25.48, 11.24, 0.72646, 13, -1.9, 11.2, 0.27354, 2, 12, 26.88, 11.35, 0.6289, 13, -0.51, 11.34, 0.3711, 2, 12, 27.9, 11.42, 0.55322, 13, 0.52, 11.44, 0.44678, 2, 13, 21.83, 13.53, 0.71315, 14, -14.55, -2.47, 0.28685, 2, 13, 23.07, 13.65, 0.64722, 14, -14.42, -1.23, 0.35278, 2, 13, 24.86, 13.82, 0.54906, 14, -14.22, 0.55, 0.45094, 2, 13, 32.28, 14.55, 0.30438, 14, -13.42, 7.96, 0.69562, 1, 14, 20.38, 4.28, 1, 1, 14, 20.08, 1.52, 1, 2, 13, 28.51, -19.98, 3.2E-4, 14, 19.61, -2.79, 0.99968, 2, 13, 24.39, -14.08, 0.16558, 14, 12.99, -5.62, 0.83442, 2, 13, 22.85, -13.94, 0.29652, 14, 12.54, -7.09, 0.70348, 2, 13, 21.73, -13.83, 0.38745, 14, 12.2, -8.18, 0.61255, 3, 12, 27.39, -11.85, 0.48093, 13, 0.59, -11.84, 0.51847, 14, 5.93, -28.46, 6.0E-4, 3, 12, 26.03, -11.69, 0.58028, 13, -0.77, -11.71, 0.41964, 14, 5.52, -29.77, 8.0E-5, 2, 12, 24.86, -11.55, 0.66402, 13, -1.94, -11.6, 0.33598, 1, 12, 1.21, -8.72, 1, 1, 12, 0.55, 0.26, 1, 1, 12, -0.11, 9.39, 1, 1, 14, -0.26, 0.06, 1, 2, 13, 25.1, 0.04, 0.55982, 14, -0.68, -2.03, 0.44018, 2, 13, 23.43, 0.02, 0.98935, 14, -1.01, -3.68, 0.01065, 2, 13, 22.2, 0.01, 0.99989, 14, -1.25, -4.88, 1.1E-4, 2, 12, 26.75, -0.17, 0.70585, 13, -0.35, -0.18, 0.29415, 2, 12, 27.84, -0.19, 0.02377, 13, 0.75, -0.17, 0.97623, 1, 12, 25.31, -0.15, 1 ],
  358. "hull": 19,
  359. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 40, 38, 20, 40, 12, 10, 40, 10, 20, 22, 42, 40, 22, 42, 10, 8, 42, 8, 22, 24, 44, 42, 24, 44, 8, 6, 44, 6, 28, 46, 46, 2, 24, 26, 26, 28, 44, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 34, 50, 50, 46, 30, 50, 2, 0, 0, 36, 50, 0 ],
  360. "width": 34,
  361. "height": 60
  362. }
  363. },
  364. "zuowaitao": {
  365. "zuowaitao": {
  366. "type": "mesh",
  367. "uvs": [ 0.80196, 0.17414, 0.74694, 0.29748, 0.69892, 0.40515, 0.64949, 0.51597, 0.61911, 0.58409, 0.58313, 0.66475, 0.53807, 0.76576, 0.4979, 0.85583, 0.43359, 1, 0.20031, 1, 0, 1, 0, 0.82273, 0, 0.71891, 0, 0.60576, 0.04831, 0.5251, 0.09588, 0.44566, 0.15726, 0.34318, 0.2163, 0.24461, 0.29277, 0.11692, 0.36279, 0, 0.58371, 0, 0.87963, 0, 0.47758, 0.27681, 0.39978, 0.47972, 0.3373, 0.64268, 0.2584, 0.84847, 0.29826, 0.74451, 0.36982, 0.55787, 0.4414, 0.37118, 0.52511, 0.15284 ],
  368. "triangles": [ 9, 10, 11, 9, 25, 8, 26, 12, 13, 26, 24, 6, 25, 11, 12, 26, 25, 12, 7, 26, 6, 25, 26, 7, 25, 9, 11, 8, 25, 7, 27, 15, 23, 14, 15, 27, 4, 23, 3, 27, 23, 4, 24, 14, 27, 13, 14, 24, 5, 27, 4, 24, 27, 5, 24, 26, 13, 6, 24, 5, 16, 17, 28, 28, 22, 2, 23, 16, 28, 15, 16, 23, 3, 28, 2, 23, 28, 3, 29, 19, 20, 18, 19, 29, 0, 20, 21, 29, 20, 0, 22, 18, 29, 17, 18, 22, 1, 29, 0, 22, 29, 1, 28, 17, 22, 2, 22, 1 ],
  369. "vertices": [ 2, 18, 3.07, 7.18, 0.99465, 19, -7.67, 7.64, 0.00535, 2, 18, 10.11, 7.43, 0.60359, 19, -0.63, 7.48, 0.39641, 3, 18, 16.25, 7.65, 0.0614, 19, 5.52, 7.34, 0.89433, 20, -5.72, 7.43, 0.04427, 2, 19, 11.84, 7.2, 0.43026, 20, 0.6, 7.19, 0.56974, 3, 19, 15.73, 7.11, 0.09025, 20, 4.49, 7.04, 0.90198, 21, -7.6, 7.36, 0.00777, 3, 19, 20.34, 7.01, 7.5E-4, 20, 9.09, 6.87, 0.83236, 21, -3.01, 7, 0.16689, 3, 20, 14.86, 6.66, 0.2018, 21, 2.74, 6.55, 0.74294, 22, -6.61, 6.17, 0.05525, 3, 20, 20, 6.46, 0.00242, 21, 7.87, 6.15, 0.5191, 22, -1.47, 6.07, 0.47848, 1, 22, 6.76, 5.91, 1, 1, 22, 7.79, 0.17, 1, 1, 22, 8.68, -4.76, 1, 3, 20, 20.14, -6.12, 0.00573, 21, 7.49, -6.43, 0.78645, 22, -1.09, -6.51, 0.20782, 3, 20, 14.4, -7.04, 0.30557, 21, 1.72, -7.12, 0.6943, 22, -6.82, -7.54, 1.3E-4, 3, 19, 19.6, -7.92, 0.00403, 20, 8.14, -8.05, 0.88928, 21, -4.57, -7.86, 0.10669, 3, 19, 14.95, -7.52, 0.12822, 20, 3.49, -7.57, 0.86791, 21, -9.2, -7.2, 0.00387, 2, 19, 10.36, -7.11, 0.58247, 20, -1.09, -7.1, 0.41753, 3, 18, 15.99, -6.33, 0.04462, 19, 4.44, -6.6, 0.93475, 20, -7, -6.49, 0.02063, 2, 18, 10.28, -6.16, 0.63128, 19, -1.25, -6.1, 0.36872, 1, 18, 2.88, -5.94, 1, 1, 18, -3.9, -5.74, 1, 1, 18, -5.17, -0.37, 1, 1, 18, -6.87, 6.83, 1, 2, 18, 10.53, 0.61, 0.89391, 19, -0.6, 0.65, 0.10609, 2, 19, 10.92, 0.7, 0.73694, 20, -0.41, 0.7, 0.26306, 2, 20, 8.85, 0.61, 0.99701, 21, -3.51, 0.75, 0.00299, 1, 21, 8.16, 0.15, 1, 3, 20, 14.63, 0.55, 0.00426, 21, 2.26, 0.46, 0.99497, 22, -6.72, 0.06, 7.7E-4, 1, 20, 4.03, 0.66, 1, 2, 18, 15.88, 0.95, 9.2E-4, 19, 4.76, 0.67, 0.99908, 1, 18, 3.5, 0.17, 1 ],
  370. "hull": 22,
  371. "edges": [ 38, 40, 40, 42, 16, 18, 18, 20, 34, 44, 44, 2, 30, 46, 46, 6, 26, 48, 48, 10, 20, 22, 18, 50, 22, 50, 14, 16, 50, 14, 22, 24, 24, 26, 48, 52, 52, 50, 24, 52, 10, 12, 12, 14, 52, 12, 26, 28, 28, 30, 46, 54, 54, 48, 28, 54, 6, 8, 8, 10, 54, 8, 30, 32, 32, 34, 44, 56, 56, 46, 32, 56, 2, 4, 4, 6, 56, 4, 34, 36, 36, 38, 40, 58, 58, 44, 36, 58, 2, 0, 0, 42, 58, 0 ],
  372. "width": 25,
  373. "height": 56
  374. }
  375. },
  376. "zuoyan": {
  377. "zuoyan": { "x": 5.12, "y": -0.78, "rotation": -90, "width": 21, "height": 19 }
  378. },
  379. "zuoyangaoguang": {
  380. "zuoyangaoguang": {
  381. "type": "mesh",
  382. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  383. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  384. "vertices": [ -1.68, -1.97, -1.68, 2.03, 2.32, 2.03, 2.32, -1.97 ],
  385. "hull": 4,
  386. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  387. "width": 4,
  388. "height": 4
  389. }
  390. },
  391. "zuoyantongkong": {
  392. "zuoyantongkong": { "x": -0.43, "y": -1.14, "rotation": -90, "width": 11, "height": 11 }
  393. }
  394. }
  395. },
  396. "animations": {
  397. "stand1": {
  398. "slots": {
  399. "biyan": {
  400. "attachment": [
  401. { "time": 0.1, "name": "biyan" },
  402. { "time": 0.2, "name": null },
  403. { "time": 1.8, "name": "biyan" },
  404. { "time": 1.9333, "name": null }
  405. ]
  406. },
  407. "teshudongzuoyueguangbaohe": {
  408. "attachment": [
  409. { "time": 0, "name": null },
  410. { "time": 0.1667, "name": "teshudongzuoyueguangbaohe" }
  411. ]
  412. },
  413. "teshuyoushou1": {
  414. "attachment": [
  415. { "time": 0, "name": null },
  416. { "time": 0.1667, "name": "teshuyoushou1" },
  417. { "time": 0.4667, "name": "teshuyoushou1" }
  418. ]
  419. },
  420. "teshuyoushou2": {
  421. "attachment": [
  422. { "time": 0, "name": null },
  423. { "time": 0.1667, "name": "teshuyoushou2" },
  424. { "time": 0.4667, "name": "teshuyoushou2" }
  425. ]
  426. },
  427. "teshuyoushou3": {
  428. "attachment": [
  429. { "time": 0, "name": null },
  430. { "time": 0.1667, "name": "teshuyoushou3" },
  431. { "time": 0.4667, "name": "teshuyoushou3" }
  432. ]
  433. },
  434. "teshuzuoshou1": {
  435. "attachment": [
  436. { "time": 0, "name": null },
  437. { "time": 0.1667, "name": "teshuzuoshou1" }
  438. ]
  439. },
  440. "teshuzuoshou2": {
  441. "attachment": [
  442. { "time": 0, "name": null },
  443. { "time": 0.1667, "name": "teshuzuoshou2" }
  444. ]
  445. },
  446. "teshuzuoshou3": {
  447. "attachment": [
  448. { "time": 0, "name": null },
  449. { "time": 0.1667, "name": "teshuzuoshou3" }
  450. ]
  451. },
  452. "youshou": {
  453. "attachment": [
  454. { "time": 0, "name": "youshou" },
  455. { "time": 0.1667, "name": null }
  456. ]
  457. },
  458. "youyan": {
  459. "attachment": [
  460. { "time": 0.1, "name": null },
  461. { "time": 0.2, "name": "youyan" },
  462. { "time": 1.8, "name": null },
  463. { "time": 1.9333, "name": "youyan" }
  464. ]
  465. },
  466. "youyangaoguang": {
  467. "attachment": [
  468. { "time": 0.1, "name": null },
  469. { "time": 0.2, "name": "youyangaoguang" },
  470. { "time": 1.8, "name": null },
  471. { "time": 1.9333, "name": "youyangaoguang" }
  472. ]
  473. },
  474. "youyantongkong": {
  475. "attachment": [
  476. { "time": 0.1, "name": null },
  477. { "time": 0.2, "name": "youyantongkong" },
  478. { "time": 1.8, "name": null },
  479. { "time": 1.9333, "name": "youyantongkong" }
  480. ]
  481. },
  482. "yueguangbaohe": {
  483. "attachment": [
  484. { "time": 0, "name": "yueguangbaohe" },
  485. { "time": 0.1667, "name": null }
  486. ]
  487. },
  488. "zuoshou": {
  489. "attachment": [
  490. { "time": 0, "name": "zuoshou" },
  491. { "time": 0.1667, "name": null }
  492. ]
  493. },
  494. "zuoyan": {
  495. "attachment": [
  496. { "time": 0.1, "name": null },
  497. { "time": 0.2, "name": "zuoyan" },
  498. { "time": 1.8, "name": null },
  499. { "time": 1.9333, "name": "zuoyan" }
  500. ]
  501. },
  502. "zuoyangaoguang": {
  503. "attachment": [
  504. { "time": 0.1, "name": null },
  505. { "time": 0.2, "name": "zuoyangaoguang" },
  506. { "time": 1.8, "name": null },
  507. { "time": 1.9333, "name": "zuoyangaoguang" }
  508. ]
  509. },
  510. "zuoyantongkong": {
  511. "attachment": [
  512. { "time": 0.1, "name": null },
  513. { "time": 0.2, "name": "zuoyantongkong" },
  514. { "time": 1.8, "name": null },
  515. { "time": 1.9333, "name": "zuoyantongkong" }
  516. ]
  517. }
  518. },
  519. "bones": {
  520. "root": {
  521. "rotate": [
  522. { "time": 0, "angle": 0 }
  523. ],
  524. "translate": [
  525. { "time": 0, "x": 0, "y": 0 }
  526. ],
  527. "scale": [
  528. { "time": 0, "x": 0.65, "y": 0.65 }
  529. ]
  530. },
  531. "bone": {
  532. "rotate": [
  533. { "time": 0, "angle": 0, "curve": "stepped" },
  534. { "time": 0.7, "angle": 0, "curve": "stepped" },
  535. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  536. { "time": 1.7, "angle": 0, "curve": "stepped" },
  537. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  538. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  539. { "time": 3.1, "angle": 0, "curve": "stepped" },
  540. { "time": 3.6667, "angle": 0 }
  541. ],
  542. "translate": [
  543. { "time": 0, "x": 0, "y": -2.24, "curve": "stepped" },
  544. { "time": 0.7, "x": 0, "y": -2.24, "curve": "stepped" },
  545. { "time": 1.1333, "x": 0, "y": -2.24, "curve": "stepped" },
  546. { "time": 1.7, "x": 0, "y": -2.24, "curve": "stepped" },
  547. { "time": 2.1667, "x": 0, "y": -2.24, "curve": "stepped" },
  548. { "time": 2.6667, "x": 0, "y": -2.24, "curve": "stepped" },
  549. { "time": 3.1, "x": 0, "y": -2.24, "curve": "stepped" },
  550. { "time": 3.6667, "x": 0, "y": -2.24 }
  551. ],
  552. "scale": [
  553. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  554. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  555. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  556. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  557. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  558. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  559. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  560. { "time": 3.6667, "x": 1, "y": 1 }
  561. ]
  562. },
  563. "bone2": {
  564. "rotate": [
  565. { "time": 0, "angle": 0, "curve": "stepped" },
  566. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  567. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  568. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  569. { "time": 0.7, "angle": 0, "curve": "stepped" },
  570. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  571. { "time": 1.7, "angle": 0, "curve": "stepped" },
  572. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  573. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  574. { "time": 3.1, "angle": 0, "curve": "stepped" },
  575. { "time": 3.6667, "angle": 0 }
  576. ],
  577. "translate": [
  578. { "time": 0, "x": 0, "y": 0 },
  579. { "time": 0.1333, "x": 0.04, "y": -0.65 },
  580. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  581. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  582. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  583. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  584. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  585. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  586. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  587. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  588. { "time": 3.6667, "x": 0, "y": 0 }
  589. ],
  590. "scale": [
  591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  592. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  593. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  594. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  595. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  596. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  597. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  598. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  599. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  600. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  601. { "time": 3.6667, "x": 1, "y": 1 }
  602. ]
  603. },
  604. "bone3": {
  605. "rotate": [
  606. { "time": 0, "angle": 0, "curve": "stepped" },
  607. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  608. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  609. { "time": 0.7, "angle": 0, "curve": "stepped" },
  610. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  611. { "time": 1.7, "angle": 0, "curve": "stepped" },
  612. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  613. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  614. { "time": 3.1, "angle": 0, "curve": "stepped" },
  615. { "time": 3.6667, "angle": 0 }
  616. ],
  617. "translate": [
  618. { "time": 0, "x": 0, "y": 0 },
  619. { "time": 0.1333, "x": -1.08, "y": 0.09 },
  620. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  621. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  622. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  623. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  624. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  625. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  626. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  627. { "time": 3.6667, "x": 0, "y": 0 }
  628. ],
  629. "scale": [
  630. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  631. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  632. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  633. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  634. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  635. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  636. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  637. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  638. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  639. { "time": 3.6667, "x": 1, "y": 1 }
  640. ]
  641. },
  642. "bone4": {
  643. "rotate": [
  644. { "time": 0, "angle": 0, "curve": "stepped" },
  645. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  646. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  647. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  648. { "time": 0.7, "angle": 0, "curve": "stepped" },
  649. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  650. { "time": 1.7, "angle": 0, "curve": "stepped" },
  651. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  652. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  653. { "time": 3.1, "angle": 0, "curve": "stepped" },
  654. { "time": 3.6667, "angle": 0 }
  655. ],
  656. "translate": [
  657. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  658. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  659. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  660. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  661. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  662. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  663. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  664. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  665. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  666. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  667. { "time": 3.6667, "x": 0, "y": 0 }
  668. ],
  669. "scale": [
  670. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  671. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  672. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  673. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  674. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  675. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  676. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  677. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  678. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  679. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  680. { "time": 3.6667, "x": 1, "y": 1 }
  681. ]
  682. },
  683. "bone5": {
  684. "rotate": [
  685. { "time": 0, "angle": 0 },
  686. { "time": 0.1333, "angle": 10.1 },
  687. { "time": 0.1667, "angle": 0 },
  688. { "time": 0.4667, "angle": -13.7, "curve": "stepped" },
  689. { "time": 0.7, "angle": -13.7, "curve": "stepped" },
  690. { "time": 1.1333, "angle": -13.7, "curve": "stepped" },
  691. { "time": 1.7, "angle": -13.7, "curve": "stepped" },
  692. { "time": 2.1667, "angle": -13.7, "curve": "stepped" },
  693. { "time": 2.6667, "angle": -13.7, "curve": "stepped" },
  694. { "time": 3.1, "angle": -13.7, "curve": "stepped" },
  695. { "time": 3.6667, "angle": -13.7 }
  696. ],
  697. "translate": [
  698. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  699. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  700. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  701. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  702. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  703. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  704. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  705. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  706. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  707. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  708. { "time": 3.6667, "x": 0, "y": 0 }
  709. ],
  710. "scale": [
  711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  712. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  713. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  714. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  715. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  716. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  717. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  718. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  719. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  720. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  721. { "time": 3.6667, "x": 1, "y": 1 }
  722. ]
  723. },
  724. "bone6": {
  725. "rotate": [
  726. { "time": 0, "angle": 0 },
  727. { "time": 0.1333, "angle": -4.86 },
  728. { "time": 0.1667, "angle": 0 },
  729. { "time": 0.4667, "angle": 62.81, "curve": "stepped" },
  730. { "time": 0.7, "angle": 62.81, "curve": "stepped" },
  731. { "time": 1.1333, "angle": 62.81, "curve": "stepped" },
  732. { "time": 1.7, "angle": 62.81, "curve": "stepped" },
  733. { "time": 2.1667, "angle": 62.81, "curve": "stepped" },
  734. { "time": 2.6667, "angle": 62.81, "curve": "stepped" },
  735. { "time": 3.1, "angle": 62.81, "curve": "stepped" },
  736. { "time": 3.6667, "angle": 62.81 }
  737. ],
  738. "translate": [
  739. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  741. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  742. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  743. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  744. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  745. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  746. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  747. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  748. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  749. { "time": 3.6667, "x": 0, "y": 0 }
  750. ],
  751. "scale": [
  752. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  753. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  754. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  755. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  756. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  757. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  758. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  759. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  760. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  761. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  762. { "time": 3.6667, "x": 1, "y": 1 }
  763. ]
  764. },
  765. "bone7": {
  766. "rotate": [
  767. { "time": 0, "angle": 0, "curve": "stepped" },
  768. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  769. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  770. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  771. { "time": 0.7, "angle": 0, "curve": "stepped" },
  772. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  773. { "time": 1.7, "angle": 0, "curve": "stepped" },
  774. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  775. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  776. { "time": 3.1, "angle": 0, "curve": "stepped" },
  777. { "time": 3.6667, "angle": 0 }
  778. ],
  779. "translate": [
  780. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  781. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  782. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  783. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  784. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  785. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  786. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  787. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  788. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  789. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  790. { "time": 3.6667, "x": 0, "y": 0 }
  791. ],
  792. "scale": [
  793. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  794. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  795. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  796. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  797. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  798. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  799. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  800. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  801. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  802. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 3.6667, "x": 1, "y": 1 }
  804. ]
  805. },
  806. "bone8": {
  807. "rotate": [
  808. { "time": 0, "angle": 0 },
  809. { "time": 0.1333, "angle": -5.96 },
  810. { "time": 0.1667, "angle": 0 },
  811. { "time": 0.4667, "angle": 28.52, "curve": "stepped" },
  812. { "time": 0.7, "angle": 28.52, "curve": "stepped" },
  813. { "time": 1.1333, "angle": 28.52, "curve": "stepped" },
  814. { "time": 1.7, "angle": 28.52, "curve": "stepped" },
  815. { "time": 2.1667, "angle": 28.52, "curve": "stepped" },
  816. { "time": 2.6667, "angle": 28.52, "curve": "stepped" },
  817. { "time": 3.1, "angle": 28.52, "curve": "stepped" },
  818. { "time": 3.6667, "angle": 28.52 }
  819. ],
  820. "translate": [
  821. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  822. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  823. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  824. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  825. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  829. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  830. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 3.6667, "x": 0, "y": 0 }
  832. ],
  833. "scale": [
  834. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  835. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  836. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  837. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  838. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  839. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  840. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  841. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  842. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  843. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  844. { "time": 3.6667, "x": 1, "y": 1 }
  845. ]
  846. },
  847. "bone9": {
  848. "rotate": [
  849. { "time": 0, "angle": 0 },
  850. { "time": 0.1333, "angle": -4.37 },
  851. { "time": 0.1667, "angle": 0 },
  852. { "time": 0.4667, "angle": -102.54, "curve": "stepped" },
  853. { "time": 0.7, "angle": -102.54, "curve": "stepped" },
  854. { "time": 1.1333, "angle": -102.54, "curve": "stepped" },
  855. { "time": 1.7, "angle": -102.54, "curve": "stepped" },
  856. { "time": 2.1667, "angle": -102.54, "curve": "stepped" },
  857. { "time": 2.6667, "angle": -102.54, "curve": "stepped" },
  858. { "time": 3.1, "angle": -102.54, "curve": "stepped" },
  859. { "time": 3.6667, "angle": -102.54 }
  860. ],
  861. "translate": [
  862. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  863. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  864. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  865. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  866. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  867. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  868. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  869. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  870. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  871. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  872. { "time": 3.6667, "x": 0, "y": 0 }
  873. ],
  874. "scale": [
  875. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  876. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  877. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  878. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  879. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  880. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  881. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  882. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  883. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  884. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 3.6667, "x": 1, "y": 1 }
  886. ]
  887. },
  888. "bone10": {
  889. "rotate": [
  890. { "time": 0, "angle": 0, "curve": "stepped" },
  891. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  892. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  893. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  894. { "time": 0.7, "angle": 0, "curve": "stepped" },
  895. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  896. { "time": 1.7, "angle": 0, "curve": "stepped" },
  897. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  898. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  899. { "time": 3.1, "angle": 0, "curve": "stepped" },
  900. { "time": 3.6667, "angle": 0 }
  901. ],
  902. "translate": [
  903. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  904. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  905. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  906. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  907. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  908. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  909. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  910. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  911. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  912. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  913. { "time": 3.6667, "x": 0, "y": 0 }
  914. ],
  915. "scale": [
  916. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  917. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  918. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  919. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  920. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  921. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  922. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  923. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  924. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  925. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  926. { "time": 3.6667, "x": 1, "y": 1 }
  927. ]
  928. },
  929. "bone11": {
  930. "rotate": [
  931. { "time": 0, "angle": 0, "curve": "stepped" },
  932. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  933. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  934. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  935. { "time": 0.7, "angle": 0, "curve": "stepped" },
  936. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  937. { "time": 1.7, "angle": 0, "curve": "stepped" },
  938. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  939. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  940. { "time": 3.1, "angle": 0, "curve": "stepped" },
  941. { "time": 3.6667, "angle": 0 }
  942. ],
  943. "translate": [
  944. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  945. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  946. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  947. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  948. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  949. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  950. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  951. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  952. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  953. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  954. { "time": 3.6667, "x": 0, "y": 0 }
  955. ],
  956. "scale": [
  957. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  958. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  959. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  960. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  961. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  962. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  963. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  964. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  965. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  966. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  967. { "time": 3.6667, "x": 1, "y": 1 }
  968. ]
  969. },
  970. "bone12": {
  971. "rotate": [
  972. { "time": 0, "angle": 0 },
  973. { "time": 0.1333, "angle": -5.33 },
  974. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  975. { "time": 0.7, "angle": 0, "curve": "stepped" },
  976. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  977. { "time": 1.7, "angle": 0, "curve": "stepped" },
  978. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  979. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  980. { "time": 3.1, "angle": 0, "curve": "stepped" },
  981. { "time": 3.6667, "angle": 0 }
  982. ],
  983. "translate": [
  984. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  985. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  986. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  987. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  991. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  992. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 3.6667, "x": 0, "y": 0 }
  994. ],
  995. "scale": [
  996. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  997. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  998. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  999. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1001. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1002. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1003. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1004. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1005. { "time": 3.6667, "x": 1, "y": 1 }
  1006. ]
  1007. },
  1008. "bone13": {
  1009. "rotate": [
  1010. { "time": 0, "angle": 0 },
  1011. { "time": 0.1333, "angle": 10.7 },
  1012. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1013. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1014. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1015. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1016. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1017. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1018. { "time": 3.1, "angle": 0, "curve": "stepped" },
  1019. { "time": 3.6667, "angle": 0 }
  1020. ],
  1021. "translate": [
  1022. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1023. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1024. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1030. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1031. { "time": 3.6667, "x": 0, "y": 0 }
  1032. ],
  1033. "scale": [
  1034. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1036. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 3.6667, "x": 1, "y": 1 }
  1044. ]
  1045. },
  1046. "bone14": {
  1047. "rotate": [
  1048. { "time": 0, "angle": 0 },
  1049. { "time": 0.1333, "angle": -5.19 },
  1050. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1051. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1052. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1053. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1054. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1055. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1056. { "time": 3.1, "angle": 0, "curve": "stepped" },
  1057. { "time": 3.6667, "angle": 0 }
  1058. ],
  1059. "translate": [
  1060. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1061. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1062. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1063. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1064. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1065. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1066. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1067. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1068. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1069. { "time": 3.6667, "x": 0, "y": 0 }
  1070. ],
  1071. "scale": [
  1072. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1073. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1074. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1075. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1076. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1077. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1078. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 3.6667, "x": 1, "y": 1 }
  1082. ]
  1083. },
  1084. "bone15": {
  1085. "rotate": [
  1086. { "time": 0, "angle": 0 },
  1087. { "time": 0.1333, "angle": 3.6 },
  1088. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1089. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1090. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1091. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1092. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1093. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1094. { "time": 3.1, "angle": 0, "curve": "stepped" },
  1095. { "time": 3.6667, "angle": 0 }
  1096. ],
  1097. "translate": [
  1098. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1099. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1100. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1101. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1102. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1103. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1104. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1105. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1106. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1107. { "time": 3.6667, "x": 0, "y": 0 }
  1108. ],
  1109. "scale": [
  1110. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1111. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1112. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1113. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1114. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1115. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1116. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1117. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1118. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1119. { "time": 3.6667, "x": 1, "y": 1 }
  1120. ]
  1121. },
  1122. "bone16": {
  1123. "rotate": [
  1124. { "time": 0, "angle": 0 },
  1125. { "time": 0.1333, "angle": -4.68 },
  1126. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1127. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1128. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1129. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1130. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1131. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1132. { "time": 3.1, "angle": 0, "curve": "stepped" },
  1133. { "time": 3.6667, "angle": 0 }
  1134. ],
  1135. "translate": [
  1136. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1137. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1138. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1139. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1140. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1141. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1142. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1143. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1144. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1145. { "time": 3.6667, "x": 0, "y": 0 }
  1146. ],
  1147. "scale": [
  1148. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1149. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1150. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1151. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1152. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1153. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1154. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1155. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1156. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1157. { "time": 3.6667, "x": 1, "y": 1 }
  1158. ]
  1159. },
  1160. "bone17": {
  1161. "rotate": [
  1162. { "time": 0, "angle": 0, "curve": "stepped" },
  1163. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1164. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1165. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1166. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1167. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1168. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1169. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1170. { "time": 3.1, "angle": 0, "curve": "stepped" },
  1171. { "time": 3.6667, "angle": 0 }
  1172. ],
  1173. "translate": [
  1174. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1175. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1176. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1177. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1178. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1179. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1180. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1181. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1182. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1183. { "time": 3.6667, "x": 0, "y": 0 }
  1184. ],
  1185. "scale": [
  1186. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1187. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1188. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1189. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1190. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1191. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1192. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1193. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1194. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1195. { "time": 3.6667, "x": 1, "y": 1 }
  1196. ]
  1197. },
  1198. "bone18": {
  1199. "rotate": [
  1200. { "time": 0, "angle": 0, "curve": "stepped" },
  1201. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1202. {
  1203. "time": 0.7,
  1204. "angle": 0,
  1205. "curve": [ 0.25, 0, 0.75, 1 ]
  1206. },
  1207. { "time": 1.7, "angle": -2.29 },
  1208. { "time": 2.6667, "angle": 0 },
  1209. { "time": 3.6667, "angle": -2.29 }
  1210. ],
  1211. "translate": [
  1212. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1213. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1214. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1215. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1216. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1217. { "time": 3.6667, "x": 0, "y": 0 }
  1218. ],
  1219. "scale": [
  1220. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1221. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1222. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1223. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1224. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1225. { "time": 3.6667, "x": 1, "y": 1 }
  1226. ]
  1227. },
  1228. "bone19": {
  1229. "rotate": [
  1230. {
  1231. "time": 0,
  1232. "angle": 0,
  1233. "curve": [ 0.25, 0, 0.75, 1 ]
  1234. },
  1235. {
  1236. "time": 0.1333,
  1237. "angle": -1.91,
  1238. "curve": [ 0.25, 0, 0.75, 1 ]
  1239. },
  1240. {
  1241. "time": 0.7,
  1242. "angle": 0,
  1243. "curve": [ 0.25, 0, 0.75, 1 ]
  1244. },
  1245. { "time": 1.7, "angle": -2.29 },
  1246. { "time": 2.6667, "angle": 0 },
  1247. { "time": 3.6667, "angle": -2.29 }
  1248. ],
  1249. "translate": [
  1250. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1251. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1252. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1253. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1254. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1255. { "time": 3.6667, "x": 0, "y": 0 }
  1256. ],
  1257. "scale": [
  1258. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1259. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1260. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1261. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1262. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1263. { "time": 3.6667, "x": 1, "y": 1 }
  1264. ]
  1265. },
  1266. "bone20": {
  1267. "rotate": [
  1268. {
  1269. "time": 0,
  1270. "angle": 0,
  1271. "curve": [ 0.25, 0, 0.75, 1 ]
  1272. },
  1273. {
  1274. "time": 0.1333,
  1275. "angle": -1.71,
  1276. "curve": [ 0.25, 0, 0.75, 1 ]
  1277. },
  1278. {
  1279. "time": 0.7,
  1280. "angle": 0,
  1281. "curve": [ 0.25, 0, 0.75, 1 ]
  1282. },
  1283. { "time": 1.7, "angle": -2.29 },
  1284. { "time": 2.6667, "angle": 0 },
  1285. { "time": 3.6667, "angle": -2.29 }
  1286. ],
  1287. "translate": [
  1288. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1289. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1290. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1291. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1292. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1293. { "time": 3.6667, "x": 0, "y": 0 }
  1294. ],
  1295. "scale": [
  1296. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1301. { "time": 3.6667, "x": 1, "y": 1 }
  1302. ]
  1303. },
  1304. "bone21": {
  1305. "rotate": [
  1306. {
  1307. "time": 0,
  1308. "angle": 0,
  1309. "curve": [ 0.25, 0, 0.75, 1 ]
  1310. },
  1311. {
  1312. "time": 0.1333,
  1313. "angle": -8.38,
  1314. "curve": [ 0.25, 0, 0.75, 1 ]
  1315. },
  1316. {
  1317. "time": 0.7,
  1318. "angle": 0,
  1319. "curve": [ 0.25, 0, 0.75, 1 ]
  1320. },
  1321. { "time": 1.7, "angle": -2.29 },
  1322. { "time": 2.6667, "angle": 0 },
  1323. { "time": 3.6667, "angle": -2.29 }
  1324. ],
  1325. "translate": [
  1326. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1327. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1328. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1329. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1330. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1331. { "time": 3.6667, "x": 0, "y": 0 }
  1332. ],
  1333. "scale": [
  1334. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1335. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1337. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1338. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1339. { "time": 3.6667, "x": 1, "y": 1 }
  1340. ]
  1341. },
  1342. "bone22": {
  1343. "rotate": [
  1344. { "time": 0, "angle": 0 },
  1345. { "time": 0.1333, "angle": -8.38 },
  1346. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1347. { "time": 0.7, "angle": 0 },
  1348. { "time": 1.7, "angle": -2.29 },
  1349. { "time": 2.6667, "angle": 0 },
  1350. { "time": 3.6667, "angle": -2.29 }
  1351. ],
  1352. "translate": [
  1353. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1354. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1355. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1356. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1357. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1358. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1359. { "time": 3.6667, "x": 0, "y": 0 }
  1360. ],
  1361. "scale": [
  1362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1363. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1364. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1365. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1366. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1367. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1368. { "time": 3.6667, "x": 1, "y": 1 }
  1369. ]
  1370. },
  1371. "bone23": {
  1372. "rotate": [
  1373. { "time": 0, "angle": 0, "curve": "stepped" },
  1374. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1375. {
  1376. "time": 0.7,
  1377. "angle": 0,
  1378. "curve": [ 0.25, 0, 0.75, 1 ]
  1379. },
  1380. { "time": 1.7, "angle": 2.67 },
  1381. { "time": 2.6667, "angle": 0 },
  1382. { "time": 3.6667, "angle": 2.67 }
  1383. ],
  1384. "translate": [
  1385. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1386. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1387. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1388. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1389. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1390. { "time": 3.6667, "x": 0, "y": 0 }
  1391. ],
  1392. "scale": [
  1393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1394. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1395. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1396. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1397. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1398. { "time": 3.6667, "x": 1, "y": 1 }
  1399. ]
  1400. },
  1401. "bone24": {
  1402. "rotate": [
  1403. {
  1404. "time": 0,
  1405. "angle": 0,
  1406. "curve": [ 0.25, 0, 0.75, 1 ]
  1407. },
  1408. {
  1409. "time": 0.1333,
  1410. "angle": 3.98,
  1411. "curve": [ 0.25, 0, 0.75, 1 ]
  1412. },
  1413. {
  1414. "time": 0.7,
  1415. "angle": 0,
  1416. "curve": [ 0.25, 0, 0.75, 1 ]
  1417. },
  1418. { "time": 1.7, "angle": 2.67 },
  1419. { "time": 2.6667, "angle": 0 },
  1420. { "time": 3.6667, "angle": 2.67 }
  1421. ],
  1422. "translate": [
  1423. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1424. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1425. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1426. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1427. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1428. { "time": 3.6667, "x": 0, "y": 0 }
  1429. ],
  1430. "scale": [
  1431. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1432. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1433. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1434. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1435. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1436. { "time": 3.6667, "x": 1, "y": 1 }
  1437. ]
  1438. },
  1439. "bone25": {
  1440. "rotate": [
  1441. {
  1442. "time": 0,
  1443. "angle": 0,
  1444. "curve": [ 0.25, 0, 0.75, 1 ]
  1445. },
  1446. {
  1447. "time": 0.1333,
  1448. "angle": 6.04,
  1449. "curve": [ 0.25, 0, 0.75, 1 ]
  1450. },
  1451. {
  1452. "time": 0.7,
  1453. "angle": 0,
  1454. "curve": [ 0.25, 0, 0.75, 1 ]
  1455. },
  1456. { "time": 1.7, "angle": 2.67 },
  1457. { "time": 2.6667, "angle": 0 },
  1458. { "time": 3.6667, "angle": 2.67 }
  1459. ],
  1460. "translate": [
  1461. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1462. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1463. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1464. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1465. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1466. { "time": 3.6667, "x": 0, "y": 0 }
  1467. ],
  1468. "scale": [
  1469. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1470. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1471. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1472. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1473. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1474. { "time": 3.6667, "x": 1, "y": 1 }
  1475. ]
  1476. },
  1477. "bone26": {
  1478. "rotate": [
  1479. { "time": 0, "angle": 0, "curve": "stepped" },
  1480. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1481. {
  1482. "time": 0.7,
  1483. "angle": 0,
  1484. "curve": [ 0.25, 0, 0.75, 1 ]
  1485. },
  1486. { "time": 1.7, "angle": 2.67 },
  1487. { "time": 2.6667, "angle": 0 },
  1488. { "time": 3.6667, "angle": 2.67 }
  1489. ],
  1490. "translate": [
  1491. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1492. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1493. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1494. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1495. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1496. { "time": 3.6667, "x": 0, "y": 0 }
  1497. ],
  1498. "scale": [
  1499. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1500. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1501. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1502. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1503. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1504. { "time": 3.6667, "x": 1, "y": 1 }
  1505. ]
  1506. },
  1507. "bone27": {
  1508. "rotate": [
  1509. { "time": 0, "angle": -4.63 },
  1510. { "time": 0.1333, "angle": -3.76 },
  1511. { "time": 0.4667, "angle": -2.36, "curve": "stepped" },
  1512. { "time": 0.7, "angle": -2.36, "curve": "stepped" },
  1513. { "time": 1.1333, "angle": -2.36, "curve": "stepped" },
  1514. { "time": 1.7, "angle": -2.36, "curve": "stepped" },
  1515. { "time": 2.1667, "angle": -2.36, "curve": "stepped" },
  1516. { "time": 2.6667, "angle": -2.36, "curve": "stepped" },
  1517. { "time": 3.1, "angle": -2.36, "curve": "stepped" },
  1518. { "time": 3.6667, "angle": -2.36 }
  1519. ],
  1520. "translate": [
  1521. { "time": 0, "x": 0, "y": 0 },
  1522. { "time": 0.1333, "x": -1.75, "y": -0.1 },
  1523. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1524. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1525. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1526. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1527. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1528. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1529. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1530. { "time": 3.6667, "x": 0, "y": 0 }
  1531. ],
  1532. "scale": [
  1533. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1534. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1535. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1536. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1537. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1538. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1539. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1540. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1541. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1542. { "time": 3.6667, "x": 1, "y": 1 }
  1543. ]
  1544. },
  1545. "bone28": {
  1546. "rotate": [
  1547. { "time": 0, "angle": 0, "curve": "stepped" },
  1548. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1549. { "time": 0.7, "angle": 0 },
  1550. { "time": 1.1333, "angle": -2.26 },
  1551. { "time": 1.7, "angle": 0 },
  1552. { "time": 2.1667, "angle": -2.26 },
  1553. { "time": 2.6667, "angle": 0 },
  1554. { "time": 3.1, "angle": -2.26 },
  1555. { "time": 3.6667, "angle": 0 }
  1556. ],
  1557. "translate": [
  1558. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1559. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1560. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1561. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1562. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1564. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1565. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1566. { "time": 3.6667, "x": 0, "y": 0 }
  1567. ],
  1568. "scale": [
  1569. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1570. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1571. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1572. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1576. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1577. { "time": 3.6667, "x": 1, "y": 1 }
  1578. ]
  1579. },
  1580. "bone29": {
  1581. "rotate": [
  1582. { "time": 0, "angle": 0 },
  1583. { "time": 0.1333, "angle": -5.34 },
  1584. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1585. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1586. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1587. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1588. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1589. { "time": 3.1, "angle": 0, "curve": "stepped" },
  1590. { "time": 3.6667, "angle": 0 }
  1591. ],
  1592. "translate": [
  1593. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1594. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1595. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1596. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1597. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1598. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1599. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1600. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1601. { "time": 3.6667, "x": 0, "y": 0 }
  1602. ],
  1603. "scale": [
  1604. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1605. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1606. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1607. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1608. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1609. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1610. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1611. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1612. { "time": 3.6667, "x": 1, "y": 1 }
  1613. ]
  1614. },
  1615. "bone30": {
  1616. "rotate": [
  1617. { "time": 0, "angle": 0 },
  1618. { "time": 0.1333, "angle": -1.29 },
  1619. { "time": 0.7, "angle": 0 },
  1620. { "time": 1.1333, "angle": -2.81 },
  1621. { "time": 1.7, "angle": 0 },
  1622. { "time": 2.1667, "angle": -2.81 },
  1623. { "time": 2.6667, "angle": 0 },
  1624. { "time": 3.1, "angle": -2.81 },
  1625. { "time": 3.6667, "angle": 0 }
  1626. ],
  1627. "translate": [
  1628. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1629. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1630. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1631. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1632. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1633. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1634. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1635. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1636. { "time": 3.6667, "x": 0, "y": 0 }
  1637. ],
  1638. "scale": [
  1639. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1640. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1641. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1642. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1644. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1645. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1646. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1647. { "time": 3.6667, "x": 1, "y": 1 }
  1648. ]
  1649. },
  1650. "bone31": {
  1651. "rotate": [
  1652. { "time": 0, "angle": 0 },
  1653. { "time": 0.1333, "angle": -1.29 },
  1654. { "time": 0.3667, "angle": -7.05 },
  1655. { "time": 0.7, "angle": 0 },
  1656. { "time": 1.1333, "angle": -2.81 },
  1657. { "time": 1.7, "angle": 0 },
  1658. { "time": 2.1667, "angle": -2.81 },
  1659. { "time": 2.6667, "angle": 0 },
  1660. { "time": 3.1, "angle": -2.81 },
  1661. { "time": 3.6667, "angle": 0 }
  1662. ],
  1663. "translate": [
  1664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1665. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1666. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1667. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 3.6667, "x": 0, "y": 0 }
  1673. ],
  1674. "scale": [
  1675. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 3.6667, "x": 1, "y": 1 }
  1684. ]
  1685. },
  1686. "bone32": {
  1687. "rotate": [
  1688. { "time": 0, "angle": 0 },
  1689. { "time": 0.1333, "angle": -1.29 },
  1690. { "time": 0.3667, "angle": -7.05 },
  1691. { "time": 0.7, "angle": 0 },
  1692. { "time": 1.1333, "angle": -2.81 },
  1693. { "time": 1.7, "angle": 0 },
  1694. { "time": 2.1667, "angle": -2.81 },
  1695. { "time": 2.6667, "angle": 0 },
  1696. { "time": 3.1, "angle": -2.81 },
  1697. { "time": 3.6667, "angle": 0 }
  1698. ],
  1699. "translate": [
  1700. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1703. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1704. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1705. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1706. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1707. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1708. { "time": 3.6667, "x": 0, "y": 0 }
  1709. ],
  1710. "scale": [
  1711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1714. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1715. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1716. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1717. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1718. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1719. { "time": 3.6667, "x": 1, "y": 1 }
  1720. ]
  1721. },
  1722. "bone33": {
  1723. "rotate": [
  1724. { "time": 0, "angle": 0 },
  1725. { "time": 0.1333, "angle": 1.51 },
  1726. { "time": 0.7, "angle": -1.18 },
  1727. { "time": 1.2333, "angle": 0 },
  1728. { "time": 1.7, "angle": -1.18 },
  1729. { "time": 2.1667, "angle": 0 },
  1730. { "time": 2.6667, "angle": -1.18 },
  1731. { "time": 3.1, "angle": 0 },
  1732. { "time": 3.6667, "angle": -1.18 }
  1733. ],
  1734. "translate": [
  1735. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1736. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1737. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1738. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1739. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1740. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1741. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1742. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1743. { "time": 3.6667, "x": 0, "y": 0 }
  1744. ],
  1745. "scale": [
  1746. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1747. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1748. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1749. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1750. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1751. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1752. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1753. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1754. { "time": 3.6667, "x": 1, "y": 1 }
  1755. ]
  1756. },
  1757. "bone34": {
  1758. "rotate": [
  1759. { "time": 0, "angle": 0 },
  1760. { "time": 0.1333, "angle": 6.3 },
  1761. { "time": 0.7, "angle": -1.18 },
  1762. { "time": 1.2333, "angle": 1.32 },
  1763. { "time": 1.7, "angle": -1.18 },
  1764. { "time": 2.1667, "angle": 1.32 },
  1765. { "time": 2.6667, "angle": -1.18 },
  1766. { "time": 3.1, "angle": 1.32 },
  1767. { "time": 3.6667, "angle": -1.18 }
  1768. ],
  1769. "translate": [
  1770. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1771. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1772. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1773. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1774. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1775. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1776. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1777. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1778. { "time": 3.6667, "x": 0, "y": 0 }
  1779. ],
  1780. "scale": [
  1781. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1782. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1783. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1784. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1785. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1786. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1787. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1788. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1789. { "time": 3.6667, "x": 1, "y": 1 }
  1790. ]
  1791. },
  1792. "bone35": {
  1793. "rotate": [
  1794. { "time": 0, "angle": 0 },
  1795. { "time": 0.1333, "angle": -5.38 },
  1796. { "time": 0.7, "angle": -1.18 },
  1797. { "time": 1.2333, "angle": 1.32 },
  1798. { "time": 1.7, "angle": -1.18 },
  1799. { "time": 2.1667, "angle": 1.32 },
  1800. { "time": 2.6667, "angle": -1.18 },
  1801. { "time": 3.1, "angle": 1.32 },
  1802. { "time": 3.6667, "angle": -1.18 }
  1803. ],
  1804. "translate": [
  1805. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1806. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1807. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1808. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1809. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1810. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1811. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1812. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1813. { "time": 3.6667, "x": 0, "y": 0 }
  1814. ],
  1815. "scale": [
  1816. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1817. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1818. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1819. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1820. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1821. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 3.6667, "x": 1, "y": 1 }
  1825. ]
  1826. },
  1827. "bone36": {
  1828. "rotate": [
  1829. { "time": 0, "angle": 0 },
  1830. { "time": 0.1333, "angle": -1.51 },
  1831. { "time": 0.3667, "angle": 6.42 },
  1832. { "time": 0.7, "angle": -1.18 },
  1833. { "time": 1.2333, "angle": 1.32 },
  1834. { "time": 1.7, "angle": -1.18 },
  1835. { "time": 2.1667, "angle": 1.32 },
  1836. { "time": 2.6667, "angle": -1.18 },
  1837. { "time": 3.1, "angle": 1.32 },
  1838. { "time": 3.6667, "angle": -1.18 }
  1839. ],
  1840. "translate": [
  1841. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1842. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1843. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1844. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1845. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1846. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1847. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1848. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1849. { "time": 3.6667, "x": 0, "y": 0 }
  1850. ],
  1851. "scale": [
  1852. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1853. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1854. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1855. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1856. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1857. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1858. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1859. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1860. { "time": 3.6667, "x": 1, "y": 1 }
  1861. ]
  1862. },
  1863. "bone37": {
  1864. "rotate": [
  1865. { "time": 0, "angle": 0 },
  1866. { "time": 0.1333, "angle": 5.61 },
  1867. { "time": 0.3667, "angle": 10.61 },
  1868. { "time": 0.7, "angle": -1.18 },
  1869. { "time": 1.2333, "angle": 1.32 },
  1870. { "time": 1.7, "angle": -1.18 },
  1871. { "time": 2.1667, "angle": 1.32 },
  1872. { "time": 2.6667, "angle": -1.18 },
  1873. { "time": 3.1, "angle": 1.32 },
  1874. { "time": 3.6667, "angle": -1.18 }
  1875. ],
  1876. "translate": [
  1877. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1878. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1879. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1880. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1881. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1882. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1883. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1884. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1885. { "time": 3.6667, "x": 0, "y": 0 }
  1886. ],
  1887. "scale": [
  1888. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1890. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1891. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1892. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1893. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1894. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1895. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1896. { "time": 3.6667, "x": 1, "y": 1 }
  1897. ]
  1898. },
  1899. "bone38": {
  1900. "rotate": [
  1901. { "time": 0, "angle": 0 },
  1902. { "time": 0.1333, "angle": 5.61 },
  1903. { "time": 0.3667, "angle": 10.61 },
  1904. { "time": 0.7, "angle": -1.18 },
  1905. { "time": 1.2333, "angle": 1.32 },
  1906. { "time": 1.7, "angle": -1.18 },
  1907. { "time": 2.1667, "angle": 1.32 },
  1908. { "time": 2.6667, "angle": -1.18 },
  1909. { "time": 3.1, "angle": 1.32 },
  1910. { "time": 3.6667, "angle": -1.18 }
  1911. ],
  1912. "translate": [
  1913. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1914. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1915. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1916. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1917. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1918. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1919. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1920. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1921. { "time": 3.6667, "x": 0, "y": 0 }
  1922. ],
  1923. "scale": [
  1924. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1925. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1926. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1927. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1928. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1929. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1930. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1931. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1932. { "time": 3.6667, "x": 1, "y": 1 }
  1933. ]
  1934. },
  1935. "bone39": {
  1936. "rotate": [
  1937. { "time": 0, "angle": 0, "curve": "stepped" },
  1938. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1939. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1940. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  1941. { "time": 0.7, "angle": 0, "curve": "stepped" },
  1942. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1943. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1944. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1945. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1946. { "time": 3.1, "angle": 0, "curve": "stepped" },
  1947. { "time": 3.6667, "angle": 0 }
  1948. ],
  1949. "translate": [
  1950. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1951. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1952. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1953. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  1954. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1955. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1956. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1957. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1958. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1959. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1960. { "time": 3.6667, "x": 0, "y": 0 }
  1961. ],
  1962. "scale": [
  1963. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1964. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1965. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1966. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1967. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1968. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1969. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  1970. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1971. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1972. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  1973. { "time": 3.6667, "x": 1, "y": 1 }
  1974. ]
  1975. },
  1976. "bone40": {
  1977. "rotate": [
  1978. { "time": 0, "angle": 0, "curve": "stepped" },
  1979. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1980. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1981. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  1982. { "time": 1.7, "angle": 0, "curve": "stepped" },
  1983. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1984. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1985. { "time": 3.1, "angle": 0, "curve": "stepped" },
  1986. { "time": 3.6667, "angle": 0 }
  1987. ],
  1988. "translate": [
  1989. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1990. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1991. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1995. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1996. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  1997. { "time": 3.6667, "x": 0, "y": 0 }
  1998. ],
  1999. "scale": [
  2000. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2001. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2002. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2003. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2004. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2005. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2006. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2007. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2008. { "time": 3.6667, "x": 1, "y": 1 }
  2009. ]
  2010. },
  2011. "bone41": {
  2012. "rotate": [
  2013. { "time": 0, "angle": 0 },
  2014. { "time": 0.1667, "angle": 3.25 },
  2015. { "time": 0.6, "angle": 0 },
  2016. { "time": 1.1333, "angle": 3.25 },
  2017. { "time": 1.7, "angle": 0 },
  2018. { "time": 2.1667, "angle": 3.25 },
  2019. { "time": 2.6667, "angle": 0 },
  2020. { "time": 3.1, "angle": 3.25 },
  2021. { "time": 3.6667, "angle": 0 }
  2022. ],
  2023. "translate": [
  2024. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2025. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2026. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2027. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2028. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2029. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2030. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2031. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2032. { "time": 3.6667, "x": 0, "y": 0 }
  2033. ],
  2034. "scale": [
  2035. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2036. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2037. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2038. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2039. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2040. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2041. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2042. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2043. { "time": 3.6667, "x": 1, "y": 1 }
  2044. ]
  2045. },
  2046. "bone42": {
  2047. "rotate": [
  2048. { "time": 0, "angle": 0 },
  2049. { "time": 0.1667, "angle": 3.25 },
  2050. { "time": 0.6, "angle": 0 },
  2051. { "time": 1.1333, "angle": 3.25 },
  2052. { "time": 1.7, "angle": 0 },
  2053. { "time": 2.1667, "angle": 3.25 },
  2054. { "time": 2.6667, "angle": 0 },
  2055. { "time": 3.1, "angle": 3.25 },
  2056. { "time": 3.6667, "angle": 0 }
  2057. ],
  2058. "translate": [
  2059. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2060. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2061. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2062. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2063. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2064. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2065. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2066. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2067. { "time": 3.6667, "x": 0, "y": 0 }
  2068. ],
  2069. "scale": [
  2070. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2071. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2072. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2073. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2075. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2076. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2077. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2078. { "time": 3.6667, "x": 1, "y": 1 }
  2079. ]
  2080. },
  2081. "bone43": {
  2082. "rotate": [
  2083. { "time": 0, "angle": 0 },
  2084. { "time": 0.1667, "angle": 3.25 },
  2085. { "time": 0.6, "angle": 0 },
  2086. { "time": 1.1333, "angle": 3.25 },
  2087. { "time": 1.7, "angle": 0 },
  2088. { "time": 2.1667, "angle": 3.25 },
  2089. { "time": 2.6667, "angle": 0 },
  2090. { "time": 3.1, "angle": 3.25 },
  2091. { "time": 3.6667, "angle": 0 }
  2092. ],
  2093. "translate": [
  2094. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2095. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2096. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2097. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2098. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2099. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 3.6667, "x": 0, "y": 0 }
  2103. ],
  2104. "scale": [
  2105. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2106. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2107. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2108. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2109. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2110. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2111. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2112. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2113. { "time": 3.6667, "x": 1, "y": 1 }
  2114. ]
  2115. },
  2116. "bone44": {
  2117. "rotate": [
  2118. { "time": 0, "angle": 0 },
  2119. { "time": 0.1667, "angle": 3.25 },
  2120. { "time": 0.6, "angle": 0 },
  2121. { "time": 1.1333, "angle": 3.25 },
  2122. { "time": 1.7, "angle": 0 },
  2123. { "time": 2.1667, "angle": 3.25 },
  2124. { "time": 2.6667, "angle": 0 },
  2125. { "time": 3.1, "angle": 3.25 },
  2126. { "time": 3.6667, "angle": 0 }
  2127. ],
  2128. "translate": [
  2129. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2130. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2131. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2132. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2133. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2134. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2135. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2136. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2137. { "time": 3.6667, "x": 0, "y": 0 }
  2138. ],
  2139. "scale": [
  2140. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2141. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2143. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2144. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2145. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2146. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2147. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2148. { "time": 3.6667, "x": 1, "y": 1 }
  2149. ]
  2150. },
  2151. "bone45": {
  2152. "rotate": [
  2153. { "time": 0, "angle": 0, "curve": "stepped" },
  2154. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2155. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2156. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2157. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2158. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2159. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2160. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2161. { "time": 3.6667, "angle": 0 }
  2162. ],
  2163. "translate": [
  2164. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2165. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2166. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2167. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2168. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2169. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2170. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2172. { "time": 3.6667, "x": 0, "y": 0 }
  2173. ],
  2174. "scale": [
  2175. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2176. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2177. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2178. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2179. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2180. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2181. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2182. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2183. { "time": 3.6667, "x": 1, "y": 1 }
  2184. ]
  2185. },
  2186. "bone46": {
  2187. "rotate": [
  2188. { "time": 0, "angle": 0 },
  2189. { "time": 0.1667, "angle": -2.78 },
  2190. { "time": 0.6, "angle": 0 },
  2191. { "time": 1.1333, "angle": -2.78 },
  2192. { "time": 1.7, "angle": 0 },
  2193. { "time": 2.1667, "angle": -2.78 },
  2194. { "time": 2.6667, "angle": 0 },
  2195. { "time": 3.1, "angle": -2.78 },
  2196. { "time": 3.6667, "angle": 0 }
  2197. ],
  2198. "translate": [
  2199. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2200. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2201. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2202. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2203. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2204. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2205. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2206. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2207. { "time": 3.6667, "x": 0, "y": 0 }
  2208. ],
  2209. "scale": [
  2210. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2211. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2213. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2214. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2215. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2216. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2217. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2218. { "time": 3.6667, "x": 1, "y": 1 }
  2219. ]
  2220. },
  2221. "bone47": {
  2222. "rotate": [
  2223. { "time": 0, "angle": 0 },
  2224. { "time": 0.1667, "angle": -2.78 },
  2225. { "time": 0.6, "angle": 0 },
  2226. { "time": 1.1333, "angle": -2.78 },
  2227. { "time": 1.7, "angle": 0 },
  2228. { "time": 2.1667, "angle": -2.78 },
  2229. { "time": 2.6667, "angle": 0 },
  2230. { "time": 3.1, "angle": -2.78 },
  2231. { "time": 3.6667, "angle": 0 }
  2232. ],
  2233. "translate": [
  2234. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2235. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2236. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2237. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2238. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2239. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2240. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2241. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2242. { "time": 3.6667, "x": 0, "y": 0 }
  2243. ],
  2244. "scale": [
  2245. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2246. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2247. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2248. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2249. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2250. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 3.6667, "x": 1, "y": 1 }
  2254. ]
  2255. },
  2256. "bone48": {
  2257. "rotate": [
  2258. { "time": 0, "angle": 0 },
  2259. { "time": 0.1667, "angle": -2.78 },
  2260. { "time": 0.6, "angle": 0 },
  2261. { "time": 1.1333, "angle": -2.78 },
  2262. { "time": 1.7, "angle": 0 },
  2263. { "time": 2.1667, "angle": -2.78 },
  2264. { "time": 2.6667, "angle": 0 },
  2265. { "time": 3.1, "angle": -2.78 },
  2266. { "time": 3.6667, "angle": 0 }
  2267. ],
  2268. "translate": [
  2269. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2270. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2271. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2272. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2276. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2277. { "time": 3.6667, "x": 0, "y": 0 }
  2278. ],
  2279. "scale": [
  2280. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2281. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2285. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2286. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2287. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2288. { "time": 3.6667, "x": 1, "y": 1 }
  2289. ]
  2290. },
  2291. "bone49": {
  2292. "rotate": [
  2293. { "time": 0, "angle": 0, "curve": "stepped" },
  2294. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2295. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2296. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2297. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2298. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2299. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2300. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2301. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2302. { "time": 3.6667, "angle": 0 }
  2303. ],
  2304. "translate": [
  2305. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2309. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2310. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2311. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  2312. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2313. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2314. { "time": 3.6667, "x": 0, "y": 0 }
  2315. ],
  2316. "scale": [
  2317. { "time": 0, "x": 1, "y": 1 },
  2318. { "time": 0.1, "x": 0.401, "y": 1, "curve": "stepped" },
  2319. { "time": 0.2333, "x": 0.401, "y": 1 },
  2320. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2321. { "time": 1.7, "x": 1, "y": 1 },
  2322. { "time": 1.8, "x": 0.417, "y": 1, "curve": "stepped" },
  2323. { "time": 1.9333, "x": 0.417, "y": 1 },
  2324. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2325. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2326. { "time": 3.6667, "x": 1, "y": 1 }
  2327. ]
  2328. },
  2329. "bone50": {
  2330. "rotate": [
  2331. { "time": 0, "angle": 0, "curve": "stepped" },
  2332. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2333. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2334. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2335. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2336. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2337. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2338. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2339. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2340. { "time": 3.6667, "angle": 0 }
  2341. ],
  2342. "translate": [
  2343. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2344. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2345. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2346. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2347. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2348. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2349. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  2350. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2351. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2352. { "time": 3.6667, "x": 0, "y": 0 }
  2353. ],
  2354. "scale": [
  2355. { "time": 0, "x": 1, "y": 1 },
  2356. { "time": 0.1, "x": 0.433, "y": 1, "curve": "stepped" },
  2357. { "time": 0.2333, "x": 0.433, "y": 1 },
  2358. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2359. { "time": 1.7, "x": 1, "y": 1 },
  2360. { "time": 1.8, "x": 0.554, "y": 1, "curve": "stepped" },
  2361. { "time": 1.9333, "x": 0.554, "y": 1 },
  2362. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2363. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2364. { "time": 3.6667, "x": 1, "y": 1 }
  2365. ]
  2366. },
  2367. "bone51": {
  2368. "rotate": [
  2369. { "time": 0, "angle": 0, "curve": "stepped" },
  2370. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2371. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2372. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2373. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2374. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2375. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2376. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2377. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2378. { "time": 3.6667, "angle": 0 }
  2379. ],
  2380. "translate": [
  2381. { "time": 0, "x": 0, "y": 0 },
  2382. { "time": 0.1, "x": -1.42, "y": 0, "curve": "stepped" },
  2383. { "time": 0.2333, "x": -1.42, "y": 0 },
  2384. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2385. { "time": 1.7, "x": 0, "y": 0 },
  2386. { "time": 1.8, "x": -1.01, "y": 0, "curve": "stepped" },
  2387. { "time": 1.9333, "x": -1.01, "y": 0 },
  2388. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2389. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2390. { "time": 3.6667, "x": 0, "y": 0 }
  2391. ],
  2392. "scale": [
  2393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2394. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2397. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2398. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2399. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2401. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2402. { "time": 3.6667, "x": 1, "y": 1 }
  2403. ]
  2404. },
  2405. "bone52": {
  2406. "rotate": [
  2407. { "time": 0, "angle": 0, "curve": "stepped" },
  2408. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2409. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2410. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2411. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2412. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2413. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2414. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2415. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2416. { "time": 3.6667, "angle": 0 }
  2417. ],
  2418. "translate": [
  2419. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2420. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2421. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2422. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2423. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2424. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2425. { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
  2426. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2427. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2428. { "time": 3.6667, "x": 0, "y": 0 }
  2429. ],
  2430. "scale": [
  2431. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2432. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2433. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2434. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2435. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2436. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2437. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 3.6667, "x": 1, "y": 1 }
  2441. ]
  2442. },
  2443. "bone53": {
  2444. "rotate": [
  2445. { "time": 0, "angle": 0, "curve": "stepped" },
  2446. { "time": 0.1, "angle": 0, "curve": "stepped" },
  2447. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2448. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2449. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2450. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2451. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2452. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2453. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2454. { "time": 3.6667, "angle": 0 }
  2455. ],
  2456. "translate": [
  2457. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2458. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2459. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2460. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2461. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2462. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2463. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2464. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2465. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2466. { "time": 3.6667, "x": 0, "y": 0 }
  2467. ],
  2468. "scale": [
  2469. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2470. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2471. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2472. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2473. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2474. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2475. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2476. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2477. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2478. { "time": 3.6667, "x": 1, "y": 1 }
  2479. ]
  2480. },
  2481. "bone54": {
  2482. "rotate": [
  2483. { "time": 0, "angle": 0, "curve": "stepped" },
  2484. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2485. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2486. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2487. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2488. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2489. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2490. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2491. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2492. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2493. { "time": 3.6667, "angle": 0 }
  2494. ],
  2495. "translate": [
  2496. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 3.6667, "x": 0, "y": 0 }
  2507. ],
  2508. "scale": [
  2509. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2510. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2511. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2515. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2517. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2518. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2519. { "time": 3.6667, "x": 1, "y": 1 }
  2520. ]
  2521. },
  2522. "bone55": {
  2523. "rotate": [
  2524. { "time": 0, "angle": 0 },
  2525. { "time": 0.4667, "angle": -351.15 },
  2526. { "time": 0.7, "angle": 8.85, "curve": "stepped" },
  2527. { "time": 1.1333, "angle": 8.85, "curve": "stepped" },
  2528. { "time": 1.7, "angle": 8.85, "curve": "stepped" },
  2529. { "time": 2.1667, "angle": 8.85, "curve": "stepped" },
  2530. { "time": 2.6667, "angle": 8.85, "curve": "stepped" },
  2531. { "time": 3.1, "angle": 8.85, "curve": "stepped" },
  2532. { "time": 3.6667, "angle": 8.85 }
  2533. ],
  2534. "translate": [
  2535. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2536. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2537. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2538. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2539. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2540. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2541. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2542. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2543. { "time": 3.6667, "x": 0, "y": 0 }
  2544. ],
  2545. "scale": [
  2546. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2548. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2549. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2550. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2551. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2552. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2553. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2554. { "time": 3.6667, "x": 1, "y": 1 }
  2555. ]
  2556. },
  2557. "bone56": {
  2558. "rotate": [
  2559. { "time": 0, "angle": 0, "curve": "stepped" },
  2560. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2561. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2562. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2563. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2564. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2565. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2566. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2567. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2568. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2569. { "time": 3.6667, "angle": 0 }
  2570. ],
  2571. "translate": [
  2572. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2573. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2574. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2575. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2576. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2577. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2578. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2579. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2580. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2581. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2582. { "time": 3.6667, "x": 0, "y": 0 }
  2583. ],
  2584. "scale": [
  2585. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2586. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2587. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2588. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2591. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2592. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2593. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2594. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2595. { "time": 3.6667, "x": 1, "y": 1 }
  2596. ]
  2597. },
  2598. "bone57": {
  2599. "rotate": [
  2600. { "time": 0, "angle": 0, "curve": "stepped" },
  2601. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2602. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2603. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2604. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2605. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2606. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2607. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2608. { "time": 3.6667, "angle": 0 }
  2609. ],
  2610. "translate": [
  2611. { "time": 0, "x": 0, "y": 0 },
  2612. { "time": 0.1333, "x": 0.92, "y": 0.12 },
  2613. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2614. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2615. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2616. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2617. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2618. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2619. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2620. { "time": 3.6667, "x": 0, "y": 0 }
  2621. ],
  2622. "scale": [
  2623. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2624. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2625. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2626. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2627. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2628. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2629. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2630. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2631. { "time": 3.6667, "x": 1, "y": 1 }
  2632. ]
  2633. },
  2634. "bone58": {
  2635. "rotate": [
  2636. { "time": 0, "angle": 0, "curve": "stepped" },
  2637. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2638. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2639. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2640. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2641. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2642. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2643. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2644. { "time": 3.6667, "angle": 0 }
  2645. ],
  2646. "translate": [
  2647. { "time": 0, "x": 0, "y": 0 },
  2648. { "time": 0.1333, "x": 1.38, "y": -0.04 },
  2649. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2650. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2651. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2652. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2653. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2654. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2655. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2656. { "time": 3.6667, "x": 0, "y": 0 }
  2657. ],
  2658. "scale": [
  2659. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2660. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2661. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2662. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2663. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2664. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2665. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2666. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2667. { "time": 3.6667, "x": 1, "y": 1 }
  2668. ]
  2669. },
  2670. "bone59": {
  2671. "rotate": [
  2672. { "time": 0, "angle": 0, "curve": "stepped" },
  2673. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2674. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2675. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2676. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2677. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2678. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2679. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2680. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2681. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2682. { "time": 3.6667, "angle": 0 }
  2683. ],
  2684. "translate": [
  2685. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2686. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2687. { "time": 0.1667, "x": 0, "y": 0 },
  2688. { "time": 0.4667, "x": -1.89, "y": -2.05, "curve": "stepped" },
  2689. { "time": 0.7, "x": -1.89, "y": -2.05, "curve": "stepped" },
  2690. { "time": 1.7, "x": -1.89, "y": -2.05, "curve": "stepped" },
  2691. { "time": 1.8, "x": -1.89, "y": -2.05, "curve": "stepped" },
  2692. { "time": 1.9333, "x": -1.89, "y": -2.05, "curve": "stepped" },
  2693. { "time": 2.0667, "x": -1.89, "y": -2.05, "curve": "stepped" },
  2694. { "time": 3.1, "x": -1.89, "y": -2.05, "curve": "stepped" },
  2695. { "time": 3.6667, "x": -1.89, "y": -2.05 }
  2696. ],
  2697. "scale": [
  2698. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2699. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2700. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2701. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2702. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2703. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2707. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2708. { "time": 3.6667, "x": 1, "y": 1 }
  2709. ]
  2710. },
  2711. "bone60": {
  2712. "rotate": [
  2713. { "time": 0, "angle": 0, "curve": "stepped" },
  2714. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2715. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2716. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2717. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2718. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2719. { "time": 1.8, "angle": 0, "curve": "stepped" },
  2720. { "time": 1.9333, "angle": 0, "curve": "stepped" },
  2721. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2722. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2723. { "time": 3.6667, "angle": 0 }
  2724. ],
  2725. "translate": [
  2726. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2727. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2728. { "time": 0.1667, "x": 0, "y": 0 },
  2729. { "time": 0.4667, "x": -1.22, "y": -2.18, "curve": "stepped" },
  2730. { "time": 0.7, "x": -1.22, "y": -2.18, "curve": "stepped" },
  2731. { "time": 1.7, "x": -1.22, "y": -2.18, "curve": "stepped" },
  2732. { "time": 1.8, "x": -1.22, "y": -2.18, "curve": "stepped" },
  2733. { "time": 1.9333, "x": -1.22, "y": -2.18, "curve": "stepped" },
  2734. { "time": 2.0667, "x": -1.22, "y": -2.18, "curve": "stepped" },
  2735. { "time": 3.1, "x": -1.22, "y": -2.18, "curve": "stepped" },
  2736. { "time": 3.6667, "x": -1.22, "y": -2.18 }
  2737. ],
  2738. "scale": [
  2739. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2740. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2741. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2742. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2743. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2744. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2745. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2746. { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
  2747. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2748. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2749. { "time": 3.6667, "x": 1, "y": 1 }
  2750. ]
  2751. },
  2752. "bone62": {
  2753. "rotate": [
  2754. { "time": 0, "angle": 39.31, "curve": "stepped" },
  2755. { "time": 0.1333, "angle": 39.31, "curve": "stepped" },
  2756. { "time": 0.1667, "angle": 39.31 },
  2757. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2758. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2759. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2760. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2761. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2762. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2763. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2764. { "time": 3.6667, "angle": 0 }
  2765. ],
  2766. "translate": [
  2767. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2768. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2769. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2770. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2771. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2772. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2773. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2774. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2775. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2776. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2777. { "time": 3.6667, "x": 0, "y": 0 }
  2778. ],
  2779. "scale": [
  2780. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2781. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2782. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2783. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2784. { "time": 0.7, "x": 1, "y": 1 },
  2785. { "time": 1.1333, "x": 1.158, "y": 1 },
  2786. { "time": 1.7, "x": 1, "y": 1 },
  2787. { "time": 2.1667, "x": 1.158, "y": 1 },
  2788. { "time": 2.6667, "x": 1, "y": 1 },
  2789. { "time": 3.1, "x": 1.158, "y": 1 },
  2790. { "time": 3.6667, "x": 1, "y": 1 }
  2791. ]
  2792. },
  2793. "bone61": {
  2794. "rotate": [
  2795. { "time": 0, "angle": 4.6, "curve": "stepped" },
  2796. { "time": 0.1333, "angle": 4.6, "curve": "stepped" },
  2797. { "time": 0.1667, "angle": 4.6 },
  2798. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2799. { "time": 0.7, "angle": 0 },
  2800. { "time": 1.1333, "angle": -5.83 },
  2801. { "time": 1.7, "angle": 0 },
  2802. { "time": 2.1667, "angle": -5.83 },
  2803. { "time": 2.6667, "angle": 0 },
  2804. { "time": 3.1, "angle": -5.83 },
  2805. { "time": 3.6667, "angle": 0 }
  2806. ],
  2807. "translate": [
  2808. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2809. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2810. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2811. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2812. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2813. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2814. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2815. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2816. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2817. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2818. { "time": 3.6667, "x": 0, "y": 0 }
  2819. ],
  2820. "scale": [
  2821. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2822. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2823. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2824. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2826. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2827. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2831. { "time": 3.6667, "x": 1, "y": 1 }
  2832. ]
  2833. },
  2834. "bone65": {
  2835. "rotate": [
  2836. { "time": 0, "angle": -55.1, "curve": "stepped" },
  2837. { "time": 0.1333, "angle": -55.1 },
  2838. { "time": 0.1667, "angle": -76.17 },
  2839. { "time": 0.4667, "angle": -23.1, "curve": "stepped" },
  2840. { "time": 0.7, "angle": -23.1, "curve": "stepped" },
  2841. { "time": 1.1333, "angle": -23.1, "curve": "stepped" },
  2842. { "time": 1.7, "angle": -23.1, "curve": "stepped" },
  2843. { "time": 2.1667, "angle": -23.1, "curve": "stepped" },
  2844. { "time": 2.6667, "angle": -23.1, "curve": "stepped" },
  2845. { "time": 3.1, "angle": -23.1, "curve": "stepped" },
  2846. { "time": 3.6667, "angle": -23.1 }
  2847. ],
  2848. "translate": [
  2849. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 0.1333, "x": 0, "y": 0 },
  2851. { "time": 0.1667, "x": -0.6, "y": -0.32 },
  2852. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2858. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2859. { "time": 3.6667, "x": 0, "y": 0 }
  2860. ],
  2861. "scale": [
  2862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 3.6667, "x": 1, "y": 1 }
  2873. ]
  2874. },
  2875. "bone67": {
  2876. "rotate": [
  2877. { "time": 0, "angle": 0, "curve": "stepped" },
  2878. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2879. { "time": 0.1667, "angle": 0 },
  2880. { "time": 0.4667, "angle": 25.49, "curve": "stepped" },
  2881. { "time": 0.7, "angle": 25.49, "curve": "stepped" },
  2882. { "time": 1.1333, "angle": 25.49, "curve": "stepped" },
  2883. { "time": 1.7, "angle": 25.49, "curve": "stepped" },
  2884. { "time": 2.1667, "angle": 25.49, "curve": "stepped" },
  2885. { "time": 2.6667, "angle": 25.49, "curve": "stepped" },
  2886. { "time": 3.1, "angle": 25.49, "curve": "stepped" },
  2887. { "time": 3.6667, "angle": 25.49 }
  2888. ],
  2889. "translate": [
  2890. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2891. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2895. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2896. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2897. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2898. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2899. { "time": 3.6667, "x": 0, "y": 0 }
  2900. ],
  2901. "scale": [
  2902. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2903. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2904. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2905. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2906. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2909. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2910. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2911. { "time": 3.6667, "x": 1, "y": 1 }
  2912. ]
  2913. },
  2914. "bone64": {
  2915. "rotate": [
  2916. { "time": 0, "angle": -3.53, "curve": "stepped" },
  2917. { "time": 0.1333, "angle": -3.53 },
  2918. { "time": 0.1667, "angle": 8.83 },
  2919. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2920. { "time": 0.7, "angle": 0 },
  2921. { "time": 1.1333, "angle": 1.66 },
  2922. { "time": 1.7, "angle": 0 },
  2923. { "time": 2.1667, "angle": 1.66 },
  2924. { "time": 2.6667, "angle": 0 },
  2925. { "time": 3.1, "angle": 1.66 },
  2926. { "time": 3.6667, "angle": 0 }
  2927. ],
  2928. "translate": [
  2929. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2931. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2936. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2937. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2938. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2939. { "time": 3.6667, "x": 0, "y": 0 }
  2940. ],
  2941. "scale": [
  2942. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2943. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2944. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2945. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2946. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2947. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2948. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2949. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2950. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2951. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2952. { "time": 3.6667, "x": 1, "y": 1 }
  2953. ]
  2954. },
  2955. "bone63": {
  2956. "rotate": [
  2957. { "time": 0, "angle": 0, "curve": "stepped" },
  2958. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2959. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2960. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2961. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2962. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  2963. { "time": 1.7, "angle": 0, "curve": "stepped" },
  2964. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2965. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2966. { "time": 3.1, "angle": 0, "curve": "stepped" },
  2967. { "time": 3.6667, "angle": 0 }
  2968. ],
  2969. "translate": [
  2970. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2971. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2972. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2973. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2975. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  2976. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  2977. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2978. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2979. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  2980. { "time": 3.6667, "x": 0, "y": 0 }
  2981. ],
  2982. "scale": [
  2983. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2984. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2985. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2986. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2987. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2988. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  2989. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  2990. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2991. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2992. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  2993. { "time": 3.6667, "x": 1, "y": 1 }
  2994. ]
  2995. },
  2996. "bone66": {
  2997. "rotate": [
  2998. { "time": 0, "angle": 0, "curve": "stepped" },
  2999. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  3000. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3001. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3002. { "time": 0.7, "angle": 0, "curve": "stepped" },
  3003. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3004. { "time": 1.7, "angle": 0, "curve": "stepped" },
  3005. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  3006. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  3007. { "time": 3.1, "angle": 0, "curve": "stepped" },
  3008. { "time": 3.6667, "angle": 0 }
  3009. ],
  3010. "translate": [
  3011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3012. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  3013. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3014. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3015. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  3016. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3017. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  3018. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  3019. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3020. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  3021. { "time": 3.6667, "x": 0, "y": 0 }
  3022. ],
  3023. "scale": [
  3024. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3025. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  3026. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3027. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3028. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3029. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3030. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  3031. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  3032. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  3033. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  3034. { "time": 3.6667, "x": 1, "y": 1 }
  3035. ]
  3036. },
  3037. "bone68": {
  3038. "translate": [
  3039. { "time": 0.7, "x": 0, "y": 0 },
  3040. { "time": 0.8333, "x": 0, "y": 0.32 },
  3041. { "time": 1, "x": 0, "y": 0 },
  3042. { "time": 1.1333, "x": 0, "y": 0.32 },
  3043. { "time": 1.3, "x": 0, "y": 0 },
  3044. { "time": 1.4333, "x": 0, "y": 0.32 },
  3045. { "time": 1.6, "x": 0, "y": 0 },
  3046. { "time": 1.7333, "x": 0, "y": 0.32 },
  3047. { "time": 1.9, "x": 0, "y": 0 },
  3048. { "time": 2.0333, "x": 0, "y": 0.32 },
  3049. { "time": 2.2, "x": 0, "y": 0 },
  3050. { "time": 2.3333, "x": 0, "y": 0.32 },
  3051. { "time": 2.5, "x": 0, "y": 0 },
  3052. { "time": 2.6333, "x": 0, "y": 0.32 },
  3053. { "time": 2.8, "x": 0, "y": 0 },
  3054. { "time": 2.9333, "x": 0, "y": 0.32 },
  3055. { "time": 3.1, "x": 0, "y": 0 },
  3056. { "time": 3.2333, "x": 0, "y": 0.32 },
  3057. { "time": 3.4, "x": 0, "y": 0 },
  3058. { "time": 3.5333, "x": 0, "y": 0.32 },
  3059. { "time": 3.6667, "x": 0, "y": 0 }
  3060. ]
  3061. },
  3062. "bone69": {
  3063. "translate": [
  3064. { "time": 0.7, "x": 0, "y": 0 },
  3065. { "time": 0.8333, "x": 0, "y": 0.32 },
  3066. { "time": 1, "x": 0, "y": 0 },
  3067. { "time": 1.1333, "x": 0, "y": 0.32 },
  3068. { "time": 1.3, "x": 0, "y": 0 },
  3069. { "time": 1.4333, "x": 0, "y": 0.32 },
  3070. { "time": 1.6, "x": 0, "y": 0 },
  3071. { "time": 1.7333, "x": 0, "y": 0.32 },
  3072. { "time": 1.9, "x": 0, "y": 0 },
  3073. { "time": 2.0333, "x": 0, "y": 0.32 },
  3074. { "time": 2.2, "x": 0, "y": 0 },
  3075. { "time": 2.3333, "x": 0, "y": 0.32 },
  3076. { "time": 2.5, "x": 0, "y": 0 },
  3077. { "time": 2.6333, "x": 0, "y": 0.32 },
  3078. { "time": 2.8, "x": 0, "y": 0 },
  3079. { "time": 2.9333, "x": 0, "y": 0.32 },
  3080. { "time": 3.1, "x": 0, "y": 0 },
  3081. { "time": 3.2333, "x": 0, "y": 0.32 },
  3082. { "time": 3.4, "x": 0, "y": 0 },
  3083. { "time": 3.5333, "x": 0, "y": 0.32 },
  3084. { "time": 3.6667, "x": 0, "y": 0 }
  3085. ]
  3086. }
  3087. }
  3088. },
  3089. "walk1": {
  3090. "slots": {
  3091. "biyan": {
  3092. "attachment": [
  3093. { "time": 1.1, "name": "biyan" },
  3094. { "time": 1.2, "name": null }
  3095. ]
  3096. },
  3097. "teshudongzuoyueguangbaohe": {
  3098. "attachment": [
  3099. { "time": 0, "name": null }
  3100. ]
  3101. },
  3102. "teshuyoushou1": {
  3103. "attachment": [
  3104. { "time": 0, "name": null }
  3105. ]
  3106. },
  3107. "teshuyoushou2": {
  3108. "attachment": [
  3109. { "time": 0, "name": null }
  3110. ]
  3111. },
  3112. "teshuyoushou3": {
  3113. "attachment": [
  3114. { "time": 0, "name": null }
  3115. ]
  3116. },
  3117. "teshuzuoshou1": {
  3118. "attachment": [
  3119. { "time": 0, "name": null }
  3120. ]
  3121. },
  3122. "teshuzuoshou2": {
  3123. "attachment": [
  3124. { "time": 0, "name": null }
  3125. ]
  3126. },
  3127. "teshuzuoshou3": {
  3128. "attachment": [
  3129. { "time": 0, "name": null }
  3130. ]
  3131. },
  3132. "youyan": {
  3133. "attachment": [
  3134. { "time": 1.1, "name": null },
  3135. { "time": 1.2, "name": "youyan" }
  3136. ]
  3137. },
  3138. "youyangaoguang": {
  3139. "attachment": [
  3140. { "time": 1.1, "name": null },
  3141. { "time": 1.2, "name": "youyangaoguang" }
  3142. ]
  3143. },
  3144. "youyantongkong": {
  3145. "attachment": [
  3146. { "time": 1.1, "name": null },
  3147. { "time": 1.2, "name": "youyantongkong" }
  3148. ]
  3149. },
  3150. "zuoyan": {
  3151. "attachment": [
  3152. { "time": 1.1, "name": null },
  3153. { "time": 1.2, "name": "zuoyan" }
  3154. ]
  3155. },
  3156. "zuoyangaoguang": {
  3157. "attachment": [
  3158. { "time": 1.1, "name": null },
  3159. { "time": 1.2, "name": "zuoyangaoguang" }
  3160. ]
  3161. },
  3162. "zuoyantongkong": {
  3163. "attachment": [
  3164. { "time": 1.1, "name": null },
  3165. { "time": 1.2, "name": "zuoyantongkong" }
  3166. ]
  3167. }
  3168. },
  3169. "bones": {
  3170. "root": {
  3171. "rotate": [
  3172. { "time": 0, "angle": 0 }
  3173. ],
  3174. "translate": [
  3175. { "time": 0, "x": 0, "y": 0 }
  3176. ],
  3177. "scale": [
  3178. { "time": 0, "x": 0.65, "y": 0.65 }
  3179. ]
  3180. },
  3181. "bone": {
  3182. "rotate": [
  3183. { "time": 0, "angle": 0, "curve": "stepped" },
  3184. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3185. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3186. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3187. { "time": 1, "angle": 0, "curve": "stepped" },
  3188. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3189. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3190. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3191. { "time": 2, "angle": 0 }
  3192. ],
  3193. "translate": [
  3194. { "time": 0, "x": 0, "y": -0.98 },
  3195. { "time": 0.1667, "x": 0, "y": 0.02 },
  3196. { "time": 0.5, "x": 0, "y": -0.98 },
  3197. { "time": 0.6667, "x": 0, "y": 0.02 },
  3198. { "time": 1, "x": 0, "y": -0.98 },
  3199. { "time": 1.1667, "x": 0, "y": 0.02 },
  3200. { "time": 1.5, "x": 0, "y": -0.98 },
  3201. { "time": 1.6667, "x": 0, "y": 0.02 },
  3202. { "time": 2, "x": 0, "y": -0.98 }
  3203. ],
  3204. "scale": [
  3205. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3206. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3207. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3208. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3209. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3210. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3211. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3212. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3213. { "time": 2, "x": 1, "y": 1 }
  3214. ]
  3215. },
  3216. "bone2": {
  3217. "rotate": [
  3218. { "time": 0, "angle": 0, "curve": "stepped" },
  3219. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3220. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3221. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3222. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3223. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3224. { "time": 1, "angle": 0, "curve": "stepped" },
  3225. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3226. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3227. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3228. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3229. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3230. { "time": 2, "angle": 0 }
  3231. ],
  3232. "translate": [
  3233. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3234. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3235. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3236. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3237. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3238. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3239. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3240. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3241. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3242. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3243. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3244. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3245. { "time": 2, "x": 0, "y": 0 }
  3246. ],
  3247. "scale": [
  3248. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3249. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3250. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3251. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3252. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3253. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3254. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3255. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3256. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3257. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3258. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 2, "x": 1, "y": 1 }
  3261. ]
  3262. },
  3263. "bone3": {
  3264. "rotate": [
  3265. { "time": 0, "angle": 0, "curve": "stepped" },
  3266. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3267. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3268. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3269. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3270. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3271. { "time": 1, "angle": 0, "curve": "stepped" },
  3272. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3273. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3274. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3275. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3276. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3277. { "time": 2, "angle": 0 }
  3278. ],
  3279. "translate": [
  3280. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3281. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3282. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3283. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3284. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3285. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3286. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3287. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3288. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3289. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3290. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3291. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3292. { "time": 2, "x": 0, "y": 0 }
  3293. ],
  3294. "scale": [
  3295. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3296. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3297. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3298. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3299. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3300. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3301. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3302. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3303. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3304. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3305. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3307. { "time": 2, "x": 1, "y": 1 }
  3308. ]
  3309. },
  3310. "bone4": {
  3311. "rotate": [
  3312. { "time": 0, "angle": 0, "curve": "stepped" },
  3313. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3314. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3315. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3316. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3317. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3318. { "time": 1, "angle": 0, "curve": "stepped" },
  3319. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3320. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3321. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3322. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3323. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3324. { "time": 2, "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, "curve": "stepped" },
  3334. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3335. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3336. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3337. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3338. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3339. { "time": 2, "x": 0, "y": 0 }
  3340. ],
  3341. "scale": [
  3342. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3343. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3344. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3345. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3346. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3347. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3348. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3349. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3350. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3351. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3352. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3354. { "time": 2, "x": 1, "y": 1 }
  3355. ]
  3356. },
  3357. "bone5": {
  3358. "rotate": [
  3359. {
  3360. "time": 0,
  3361. "angle": -315.35,
  3362. "curve": [ 0.25, 0, 0.75, 1 ]
  3363. },
  3364. {
  3365. "time": 0.5,
  3366. "angle": 4.44,
  3367. "curve": [ 0.25, 0, 0.75, 1 ]
  3368. },
  3369. {
  3370. "time": 1,
  3371. "angle": -315.35,
  3372. "curve": [ 0.25, 0, 0.75, 1 ]
  3373. },
  3374. {
  3375. "time": 1.5,
  3376. "angle": 4.44,
  3377. "curve": [ 0.25, 0, 0.75, 1 ]
  3378. },
  3379. { "time": 2, "angle": 44.65 }
  3380. ],
  3381. "translate": [
  3382. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3383. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3384. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3385. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 2, "x": 0, "y": 0 }
  3387. ],
  3388. "scale": [
  3389. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3390. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3391. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3392. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3393. { "time": 2, "x": 1, "y": 1 }
  3394. ]
  3395. },
  3396. "bone6": {
  3397. "rotate": [
  3398. { "time": 0, "angle": -20.98, "curve": "stepped" },
  3399. { "time": 0.5, "angle": -20.98, "curve": "stepped" },
  3400. { "time": 1, "angle": -20.98, "curve": "stepped" },
  3401. { "time": 1.5, "angle": -20.98, "curve": "stepped" },
  3402. { "time": 2, "angle": -20.98 }
  3403. ],
  3404. "translate": [
  3405. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3406. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3407. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3408. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3409. { "time": 2, "x": 0, "y": 0 }
  3410. ],
  3411. "scale": [
  3412. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3413. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3414. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3415. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3416. { "time": 2, "x": 1, "y": 1 }
  3417. ]
  3418. },
  3419. "bone7": {
  3420. "rotate": [
  3421. { "time": 0, "angle": 0, "curve": "stepped" },
  3422. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3423. { "time": 1, "angle": 0, "curve": "stepped" },
  3424. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3425. { "time": 2, "angle": 0 }
  3426. ],
  3427. "translate": [
  3428. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3429. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3430. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3431. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3432. { "time": 2, "x": 0, "y": 0 }
  3433. ],
  3434. "scale": [
  3435. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3436. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3437. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3438. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3439. { "time": 2, "x": 1, "y": 1 }
  3440. ]
  3441. },
  3442. "bone8": {
  3443. "rotate": [
  3444. {
  3445. "time": 0,
  3446. "angle": 321.64,
  3447. "curve": [ 0.25, 0, 0.75, 1 ]
  3448. },
  3449. {
  3450. "time": 0.5,
  3451. "angle": -4.9,
  3452. "curve": [ 0.25, 0, 0.75, 1 ]
  3453. },
  3454. {
  3455. "time": 1,
  3456. "angle": 321.64,
  3457. "curve": [ 0.25, 0, 0.75, 1 ]
  3458. },
  3459. {
  3460. "time": 1.5,
  3461. "angle": -4.9,
  3462. "curve": [ 0.25, 0, 0.75, 1 ]
  3463. },
  3464. { "time": 2, "angle": -38.36 }
  3465. ],
  3466. "translate": [
  3467. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3468. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3469. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3470. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3471. { "time": 2, "x": 0, "y": 0 }
  3472. ],
  3473. "scale": [
  3474. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3475. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3476. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3477. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3478. { "time": 2, "x": 1, "y": 1 }
  3479. ]
  3480. },
  3481. "bone9": {
  3482. "rotate": [
  3483. {
  3484. "time": 0,
  3485. "angle": -18.25,
  3486. "curve": [ 0.25, 0, 0.75, 1 ]
  3487. },
  3488. {
  3489. "time": 0.5,
  3490. "angle": -3.93,
  3491. "curve": [ 0.25, 0, 0.75, 1 ]
  3492. },
  3493. {
  3494. "time": 1,
  3495. "angle": -18.25,
  3496. "curve": [ 0.25, 0, 0.75, 1 ]
  3497. },
  3498. {
  3499. "time": 1.5,
  3500. "angle": -3.93,
  3501. "curve": [ 0.25, 0, 0.75, 1 ]
  3502. },
  3503. { "time": 2, "angle": -18.25 }
  3504. ],
  3505. "translate": [
  3506. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3507. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3508. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3509. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3510. { "time": 2, "x": 0, "y": 0 }
  3511. ],
  3512. "scale": [
  3513. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3514. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3515. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3516. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3517. { "time": 2, "x": 1, "y": 1 }
  3518. ]
  3519. },
  3520. "bone10": {
  3521. "rotate": [
  3522. { "time": 0, "angle": 0, "curve": "stepped" },
  3523. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3524. { "time": 1, "angle": 0, "curve": "stepped" },
  3525. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3526. { "time": 2, "angle": 0 }
  3527. ],
  3528. "translate": [
  3529. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3530. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3531. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 2, "x": 0, "y": 0 }
  3534. ],
  3535. "scale": [
  3536. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3537. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3538. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3539. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3540. { "time": 2, "x": 1, "y": 1 }
  3541. ]
  3542. },
  3543. "bone11": {
  3544. "rotate": [
  3545. { "time": 0, "angle": 0, "curve": "stepped" },
  3546. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3547. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3548. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3549. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3550. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3551. { "time": 1, "angle": 0, "curve": "stepped" },
  3552. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3553. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3554. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3555. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3556. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3557. { "time": 2, "angle": 0 }
  3558. ],
  3559. "translate": [
  3560. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3561. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3562. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3563. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3564. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3565. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3566. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3567. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3568. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3570. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3571. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3572. { "time": 2, "x": 0, "y": 0 }
  3573. ],
  3574. "scale": [
  3575. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3576. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3577. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3578. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3579. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3580. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3581. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3582. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3583. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3584. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3585. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3586. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3587. { "time": 2, "x": 1, "y": 1 }
  3588. ]
  3589. },
  3590. "bone12": {
  3591. "rotate": [
  3592. { "time": 0, "angle": -11.35 },
  3593. { "time": 0.1667, "angle": 2.22 },
  3594. { "time": 0.3333, "angle": 22.84 },
  3595. { "time": 0.5, "angle": 37.2 },
  3596. { "time": 0.6667, "angle": 10.88 },
  3597. { "time": 0.8333, "angle": -17.16 },
  3598. { "time": 1, "angle": -11.35 },
  3599. { "time": 1.1667, "angle": 2.22 },
  3600. { "time": 1.3333, "angle": 22.84 },
  3601. { "time": 1.5, "angle": 37.2 },
  3602. { "time": 1.6667, "angle": 10.88 },
  3603. { "time": 1.8333, "angle": -17.16 },
  3604. { "time": 2, "angle": -11.35 }
  3605. ],
  3606. "translate": [
  3607. { "time": 0.5, "x": -1.4, "y": 0.63 },
  3608. { "time": 0.6667, "x": -0.5, "y": -0.71 },
  3609. { "time": 0.8333, "x": -0.25, "y": -0.36 },
  3610. { "time": 1, "x": 0.57, "y": 2.06 },
  3611. { "time": 1.5, "x": -1.4, "y": 0.63 },
  3612. { "time": 1.6667, "x": -0.5, "y": -0.71 },
  3613. { "time": 1.8333, "x": -0.25, "y": -0.36 },
  3614. { "time": 2, "x": 0.57, "y": 2.06 }
  3615. ],
  3616. "scale": [
  3617. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3618. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3619. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3620. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3621. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3622. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3623. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3624. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3625. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3627. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3628. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3629. { "time": 2, "x": 1, "y": 1 }
  3630. ]
  3631. },
  3632. "bone13": {
  3633. "rotate": [
  3634. { "time": 0, "angle": 0 },
  3635. { "time": 0.1667, "angle": 15.08 },
  3636. { "time": 0.3333, "angle": 7.27 },
  3637. { "time": 0.5, "angle": 6.74 },
  3638. { "time": 0.6667, "angle": 54.82 },
  3639. { "time": 0.8333, "angle": 46.87 },
  3640. { "time": 1, "angle": 0 },
  3641. { "time": 1.1667, "angle": 15.08 },
  3642. { "time": 1.3333, "angle": 7.27 },
  3643. { "time": 1.5, "angle": 6.74 },
  3644. { "time": 1.6667, "angle": 54.82 },
  3645. { "time": 1.8333, "angle": 46.87 },
  3646. { "time": 2, "angle": 0 }
  3647. ],
  3648. "translate": [
  3649. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3650. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3651. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3652. { "time": 0.5, "x": 0, "y": 0 },
  3653. { "time": 0.6667, "x": -1.02, "y": -1.04 },
  3654. { "time": 0.8333, "x": -1.51, "y": -1.53 },
  3655. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3656. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3657. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3658. { "time": 1.5, "x": 0, "y": 0 },
  3659. { "time": 1.6667, "x": -1.02, "y": -1.04 },
  3660. { "time": 1.8333, "x": -1.51, "y": -1.53 },
  3661. { "time": 2, "x": 0, "y": 0 }
  3662. ],
  3663. "scale": [
  3664. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3665. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3666. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3667. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3668. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3669. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3670. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3672. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3675. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3676. { "time": 2, "x": 1, "y": 1 }
  3677. ]
  3678. },
  3679. "bone14": {
  3680. "rotate": [
  3681. { "time": 0, "angle": 0 },
  3682. { "time": 0.1667, "angle": -13.55 },
  3683. { "time": 0.3333, "angle": -22.99 },
  3684. { "time": 0.5, "angle": 0 },
  3685. { "time": 0.6667, "angle": -14.77 },
  3686. { "time": 0.8333, "angle": -16.29 },
  3687. { "time": 1, "angle": 0 },
  3688. { "time": 1.1667, "angle": -13.55 },
  3689. { "time": 1.3333, "angle": -22.99 },
  3690. { "time": 1.5, "angle": 0 },
  3691. { "time": 1.6667, "angle": -14.77 },
  3692. { "time": 1.8333, "angle": -16.29 },
  3693. { "time": 2, "angle": 0 }
  3694. ],
  3695. "translate": [
  3696. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3697. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3698. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3699. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3700. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3701. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3702. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3703. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3704. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3705. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3706. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3707. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3708. { "time": 2, "x": 0, "y": 0 }
  3709. ],
  3710. "scale": [
  3711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3712. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3713. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3714. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3715. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3716. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3717. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3718. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3719. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3720. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3721. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3722. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3723. { "time": 2, "x": 1, "y": 1 }
  3724. ]
  3725. },
  3726. "bone15": {
  3727. "rotate": [
  3728. { "time": 0, "angle": 20.72 },
  3729. { "time": 0.1667, "angle": -6.41 },
  3730. { "time": 0.3333, "angle": -25.26 },
  3731. { "time": 0.5, "angle": -28.3 },
  3732. { "time": 0.6667, "angle": -13.97 },
  3733. { "time": 0.8333, "angle": 6.17 },
  3734. { "time": 1, "angle": 20.72 },
  3735. { "time": 1.1667, "angle": -6.41 },
  3736. { "time": 1.3333, "angle": -25.26 },
  3737. { "time": 1.5, "angle": -28.3 },
  3738. { "time": 1.6667, "angle": -13.97 },
  3739. { "time": 1.8333, "angle": 6.17 },
  3740. { "time": 2, "angle": 20.72 }
  3741. ],
  3742. "translate": [
  3743. { "time": 0, "x": 0, "y": 0 },
  3744. { "time": 0.1667, "x": -0.91, "y": -0.78 },
  3745. { "time": 0.3333, "x": -1.83, "y": -1.56 },
  3746. { "time": 0.5, "x": -2.74, "y": -2.34 },
  3747. { "time": 0.6667, "x": -1.83, "y": -1.56 },
  3748. { "time": 0.8333, "x": -0.91, "y": -0.78 },
  3749. { "time": 1, "x": 0, "y": 0 },
  3750. { "time": 1.1667, "x": -0.91, "y": -0.78 },
  3751. { "time": 1.3333, "x": -1.83, "y": -1.56 },
  3752. { "time": 1.5, "x": -2.74, "y": -2.34 },
  3753. { "time": 1.6667, "x": -1.83, "y": -1.56 },
  3754. { "time": 1.8333, "x": -0.91, "y": -0.78 },
  3755. { "time": 2, "x": 0, "y": 0 }
  3756. ],
  3757. "scale": [
  3758. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3759. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3760. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3761. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3762. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3763. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3764. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3765. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3766. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3767. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3768. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3769. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3770. { "time": 2, "x": 1, "y": 1 }
  3771. ]
  3772. },
  3773. "bone16": {
  3774. "rotate": [
  3775. { "time": 0, "angle": 0 },
  3776. { "time": 0.1667, "angle": 53.01 },
  3777. { "time": 0.3333, "angle": 47.24 },
  3778. { "time": 0.5, "angle": 0 },
  3779. { "time": 0.6667, "angle": 15.96 },
  3780. { "time": 0.8333, "angle": 6.58 },
  3781. { "time": 1, "angle": 0 },
  3782. { "time": 1.1667, "angle": 53.01 },
  3783. { "time": 1.3333, "angle": 47.24 },
  3784. { "time": 1.5, "angle": 0 },
  3785. { "time": 1.6667, "angle": 15.96 },
  3786. { "time": 1.8333, "angle": 6.58 },
  3787. { "time": 2, "angle": 0 }
  3788. ],
  3789. "translate": [
  3790. { "time": 0, "x": 0, "y": 0 },
  3791. { "time": 0.1667, "x": -3.29, "y": -0.07 },
  3792. { "time": 0.3333, "x": -1.36, "y": -1.45 },
  3793. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3794. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3795. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3796. { "time": 1, "x": 0, "y": 0 },
  3797. { "time": 1.1667, "x": -3.29, "y": -0.07 },
  3798. { "time": 1.3333, "x": -1.36, "y": -1.45 },
  3799. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3800. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3801. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3802. { "time": 2, "x": 0, "y": 0 }
  3803. ],
  3804. "scale": [
  3805. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3806. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3807. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3808. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3809. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3810. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3811. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3812. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3813. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3814. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3815. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3816. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3817. { "time": 2, "x": 1, "y": 1 }
  3818. ]
  3819. },
  3820. "bone17": {
  3821. "rotate": [
  3822. { "time": 0, "angle": 0, "curve": "stepped" },
  3823. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3824. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3825. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3826. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3827. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3828. { "time": 1, "angle": 0, "curve": "stepped" },
  3829. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3830. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3831. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3832. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3833. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3834. { "time": 2, "angle": 0 }
  3835. ],
  3836. "translate": [
  3837. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3838. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3839. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3840. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3841. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3842. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3843. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3844. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3845. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3846. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3847. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3848. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3849. { "time": 2, "x": 0, "y": 0 }
  3850. ],
  3851. "scale": [
  3852. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3853. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3855. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3858. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3859. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3860. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3861. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3862. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3863. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3864. { "time": 2, "x": 1, "y": 1 }
  3865. ]
  3866. },
  3867. "bone18": {
  3868. "rotate": [
  3869. {
  3870. "time": 0,
  3871. "angle": 0,
  3872. "curve": [ 0.25, 0, 0.75, 1 ]
  3873. },
  3874. {
  3875. "time": 0.5,
  3876. "angle": 7.23,
  3877. "curve": [ 0.25, 0, 0.75, 1 ]
  3878. },
  3879. {
  3880. "time": 1,
  3881. "angle": 0,
  3882. "curve": [ 0.25, 0, 0.75, 1 ]
  3883. },
  3884. {
  3885. "time": 1.5,
  3886. "angle": 7.23,
  3887. "curve": [ 0.25, 0, 0.75, 1 ]
  3888. },
  3889. { "time": 2, "angle": 0 }
  3890. ],
  3891. "translate": [
  3892. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3893. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3894. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3896. { "time": 2, "x": 0, "y": 0 }
  3897. ],
  3898. "scale": [
  3899. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3900. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3901. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3902. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3903. { "time": 2, "x": 1, "y": 1 }
  3904. ]
  3905. },
  3906. "bone19": {
  3907. "rotate": [
  3908. { "time": 0, "angle": -3, "curve": "stepped" },
  3909. { "time": 0.5, "angle": -3, "curve": "stepped" },
  3910. { "time": 1, "angle": -3, "curve": "stepped" },
  3911. { "time": 1.5, "angle": -3, "curve": "stepped" },
  3912. { "time": 2, "angle": -3 }
  3913. ],
  3914. "translate": [
  3915. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3916. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3917. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3918. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3919. { "time": 2, "x": 0, "y": 0 }
  3920. ],
  3921. "scale": [
  3922. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3923. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3924. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3926. { "time": 2, "x": 1, "y": 1 }
  3927. ]
  3928. },
  3929. "bone20": {
  3930. "rotate": [
  3931. {
  3932. "time": 0,
  3933. "angle": -3,
  3934. "curve": [ 0.25, 0, 0.75, 1 ]
  3935. },
  3936. {
  3937. "time": 0.5,
  3938. "angle": 4.71,
  3939. "curve": [ 0.25, 0, 0.75, 1 ]
  3940. },
  3941. {
  3942. "time": 1,
  3943. "angle": -3,
  3944. "curve": [ 0.25, 0, 0.75, 1 ]
  3945. },
  3946. {
  3947. "time": 1.5,
  3948. "angle": 4.71,
  3949. "curve": [ 0.25, 0, 0.75, 1 ]
  3950. },
  3951. { "time": 2, "angle": -3 }
  3952. ],
  3953. "translate": [
  3954. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3955. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3956. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3957. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3958. { "time": 2, "x": 0, "y": 0 }
  3959. ],
  3960. "scale": [
  3961. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3962. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3963. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3964. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3965. { "time": 2, "x": 1, "y": 1 }
  3966. ]
  3967. },
  3968. "bone21": {
  3969. "rotate": [
  3970. { "time": 0, "angle": -3, "curve": "stepped" },
  3971. { "time": 0.5, "angle": -3, "curve": "stepped" },
  3972. { "time": 1, "angle": -3, "curve": "stepped" },
  3973. { "time": 1.5, "angle": -3, "curve": "stepped" },
  3974. { "time": 2, "angle": -3 }
  3975. ],
  3976. "translate": [
  3977. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3978. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3979. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3980. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3981. { "time": 2, "x": 0, "y": 0 }
  3982. ],
  3983. "scale": [
  3984. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3985. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3986. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3987. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3988. { "time": 2, "x": 1, "y": 1 }
  3989. ]
  3990. },
  3991. "bone22": {
  3992. "rotate": [
  3993. { "time": 0, "angle": -3, "curve": "stepped" },
  3994. { "time": 0.5, "angle": -3, "curve": "stepped" },
  3995. { "time": 1, "angle": -3, "curve": "stepped" },
  3996. { "time": 1.5, "angle": -3, "curve": "stepped" },
  3997. { "time": 2, "angle": -3 }
  3998. ],
  3999. "translate": [
  4000. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4001. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4002. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4003. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4004. { "time": 2, "x": 0, "y": 0 }
  4005. ],
  4006. "scale": [
  4007. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4008. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4009. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4010. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4011. { "time": 2, "x": 1, "y": 1 }
  4012. ]
  4013. },
  4014. "bone23": {
  4015. "rotate": [
  4016. { "time": 0, "angle": -5.5 },
  4017. { "time": 0.5, "angle": -0.91 },
  4018. { "time": 1, "angle": -5.5 },
  4019. { "time": 1.5, "angle": -0.91 },
  4020. { "time": 2, "angle": -5.5 }
  4021. ],
  4022. "translate": [
  4023. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4024. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4025. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4026. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4027. { "time": 2, "x": 0, "y": 0 }
  4028. ],
  4029. "scale": [
  4030. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4031. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4032. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4033. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4034. { "time": 2, "x": 1, "y": 1 }
  4035. ]
  4036. },
  4037. "bone24": {
  4038. "rotate": [
  4039. { "time": 0, "angle": 0 },
  4040. { "time": 0.5, "angle": 13.98 },
  4041. { "time": 1, "angle": 0 },
  4042. { "time": 1.5, "angle": 13.98 },
  4043. { "time": 2, "angle": 0 }
  4044. ],
  4045. "translate": [
  4046. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4047. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4048. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4049. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4050. { "time": 2, "x": 0, "y": 0 }
  4051. ],
  4052. "scale": [
  4053. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4054. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4055. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4056. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4057. { "time": 2, "x": 1, "y": 1 }
  4058. ]
  4059. },
  4060. "bone25": {
  4061. "rotate": [
  4062. { "time": 0, "angle": -2.15 },
  4063. { "time": 0.5, "angle": 2.43 },
  4064. { "time": 1, "angle": -2.15 },
  4065. { "time": 1.5, "angle": 2.43 },
  4066. { "time": 2, "angle": -2.15 }
  4067. ],
  4068. "translate": [
  4069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4070. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4071. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4072. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4073. { "time": 2, "x": 0, "y": 0 }
  4074. ],
  4075. "scale": [
  4076. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4077. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4078. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4079. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4080. { "time": 2, "x": 1, "y": 1 }
  4081. ]
  4082. },
  4083. "bone26": {
  4084. "rotate": [
  4085. { "time": 0, "angle": -2.15 },
  4086. { "time": 0.5, "angle": 2.43 },
  4087. { "time": 1, "angle": -2.15 },
  4088. { "time": 1.5, "angle": 2.43 },
  4089. { "time": 2, "angle": -2.15 }
  4090. ],
  4091. "translate": [
  4092. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4093. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4094. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4095. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4096. { "time": 2, "x": 0, "y": 0 }
  4097. ],
  4098. "scale": [
  4099. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4100. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4101. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4102. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4103. { "time": 2, "x": 1, "y": 1 }
  4104. ]
  4105. },
  4106. "bone27": {
  4107. "rotate": [
  4108. { "time": 0, "angle": -5.95 }
  4109. ],
  4110. "translate": [
  4111. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4112. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4113. { "time": 2, "x": 0, "y": 0 }
  4114. ],
  4115. "scale": [
  4116. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4117. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4118. { "time": 2, "x": 1, "y": 1 }
  4119. ]
  4120. },
  4121. "bone28": {
  4122. "rotate": [
  4123. { "time": 0, "angle": -3.13 },
  4124. { "time": 0.5, "angle": 0 },
  4125. { "time": 1, "angle": -3.13 },
  4126. { "time": 1.5, "angle": 0 },
  4127. { "time": 2, "angle": -3.13 }
  4128. ],
  4129. "translate": [
  4130. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4131. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4132. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4133. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4134. { "time": 2, "x": 0, "y": 0 }
  4135. ],
  4136. "scale": [
  4137. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4138. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4139. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4140. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4141. { "time": 2, "x": 1, "y": 1 }
  4142. ]
  4143. },
  4144. "bone29": {
  4145. "rotate": [
  4146. { "time": 0, "angle": -3.13 },
  4147. { "time": 0.5, "angle": 0 },
  4148. { "time": 1, "angle": -3.13 },
  4149. { "time": 1.5, "angle": 0 },
  4150. { "time": 2, "angle": -3.13 }
  4151. ],
  4152. "translate": [
  4153. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4154. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4155. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4156. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4157. { "time": 2, "x": 0, "y": 0 }
  4158. ],
  4159. "scale": [
  4160. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4161. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4162. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4163. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4164. { "time": 2, "x": 1, "y": 1 }
  4165. ]
  4166. },
  4167. "bone30": {
  4168. "rotate": [
  4169. { "time": 0, "angle": -3.13 },
  4170. { "time": 0.5, "angle": 0 },
  4171. { "time": 1, "angle": -3.13 },
  4172. { "time": 1.5, "angle": 0 },
  4173. { "time": 2, "angle": -3.13 }
  4174. ],
  4175. "translate": [
  4176. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4177. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4178. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4179. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4180. { "time": 2, "x": 0, "y": 0 }
  4181. ],
  4182. "scale": [
  4183. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4184. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4185. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4186. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4187. { "time": 2, "x": 1, "y": 1 }
  4188. ]
  4189. },
  4190. "bone31": {
  4191. "rotate": [
  4192. { "time": 0, "angle": -3.13 },
  4193. { "time": 0.5, "angle": 0 },
  4194. { "time": 1, "angle": -3.13 },
  4195. { "time": 1.5, "angle": 0 },
  4196. { "time": 2, "angle": -3.13 }
  4197. ],
  4198. "translate": [
  4199. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4200. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4201. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4202. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4203. { "time": 2, "x": 0, "y": 0 }
  4204. ],
  4205. "scale": [
  4206. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4207. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4208. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4209. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4210. { "time": 2, "x": 1, "y": 1 }
  4211. ]
  4212. },
  4213. "bone32": {
  4214. "rotate": [
  4215. { "time": 0, "angle": -3.13 },
  4216. { "time": 0.5, "angle": 0 },
  4217. { "time": 1, "angle": -3.13 },
  4218. { "time": 1.5, "angle": 0 },
  4219. { "time": 2, "angle": -3.13 }
  4220. ],
  4221. "translate": [
  4222. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4223. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4224. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4225. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4226. { "time": 2, "x": 0, "y": 0 }
  4227. ],
  4228. "scale": [
  4229. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4230. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4231. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4232. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4233. { "time": 2, "x": 1, "y": 1 }
  4234. ]
  4235. },
  4236. "bone33": {
  4237. "rotate": [
  4238. { "time": 0, "angle": 0, "curve": "stepped" },
  4239. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4240. { "time": 1, "angle": 0, "curve": "stepped" },
  4241. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4242. { "time": 2, "angle": 0 }
  4243. ],
  4244. "translate": [
  4245. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4246. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4247. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4248. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4249. { "time": 2, "x": 0, "y": 0 }
  4250. ],
  4251. "scale": [
  4252. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4253. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4254. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4255. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4256. { "time": 2, "x": 1, "y": 1 }
  4257. ]
  4258. },
  4259. "bone34": {
  4260. "rotate": [
  4261. { "time": 0, "angle": -6.36 },
  4262. { "time": 0.5, "angle": 0 },
  4263. { "time": 1, "angle": -6.36 },
  4264. { "time": 1.5, "angle": 0 },
  4265. { "time": 2, "angle": -6.36 }
  4266. ],
  4267. "translate": [
  4268. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4269. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4270. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4271. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4272. { "time": 2, "x": 0, "y": 0 }
  4273. ],
  4274. "scale": [
  4275. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4276. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4277. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4278. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4279. { "time": 2, "x": 1, "y": 1 }
  4280. ]
  4281. },
  4282. "bone35": {
  4283. "rotate": [
  4284. { "time": 0, "angle": -6.36 },
  4285. { "time": 0.5, "angle": 0 },
  4286. { "time": 1, "angle": -6.36 },
  4287. { "time": 1.5, "angle": 0 },
  4288. { "time": 2, "angle": -6.36 }
  4289. ],
  4290. "translate": [
  4291. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4292. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4293. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4294. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4295. { "time": 2, "x": 0, "y": 0 }
  4296. ],
  4297. "scale": [
  4298. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4299. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4300. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4301. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4302. { "time": 2, "x": 1, "y": 1 }
  4303. ]
  4304. },
  4305. "bone36": {
  4306. "rotate": [
  4307. { "time": 0, "angle": -6.36 },
  4308. { "time": 0.5, "angle": 0 },
  4309. { "time": 1, "angle": -6.36 },
  4310. { "time": 1.5, "angle": 0 },
  4311. { "time": 2, "angle": -6.36 }
  4312. ],
  4313. "translate": [
  4314. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4315. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4316. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4317. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4318. { "time": 2, "x": 0, "y": 0 }
  4319. ],
  4320. "scale": [
  4321. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4322. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4323. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4324. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4325. { "time": 2, "x": 1, "y": 1 }
  4326. ]
  4327. },
  4328. "bone37": {
  4329. "rotate": [
  4330. { "time": 0, "angle": 0, "curve": "stepped" },
  4331. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4332. { "time": 1, "angle": 0, "curve": "stepped" },
  4333. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4334. { "time": 2, "angle": 0 }
  4335. ],
  4336. "translate": [
  4337. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4338. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4339. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4340. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4341. { "time": 2, "x": 0, "y": 0 }
  4342. ],
  4343. "scale": [
  4344. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4345. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4346. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4347. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4348. { "time": 2, "x": 1, "y": 1 }
  4349. ]
  4350. },
  4351. "bone38": {
  4352. "rotate": [
  4353. { "time": 0, "angle": 0, "curve": "stepped" },
  4354. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4355. { "time": 1, "angle": 0, "curve": "stepped" },
  4356. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4357. { "time": 2, "angle": 0 }
  4358. ],
  4359. "translate": [
  4360. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4361. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4362. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4363. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4364. { "time": 2, "x": 0, "y": 0 }
  4365. ],
  4366. "scale": [
  4367. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4368. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4369. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4370. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 2, "x": 1, "y": 1 }
  4372. ]
  4373. },
  4374. "bone39": {
  4375. "rotate": [
  4376. { "time": 0, "angle": 0, "curve": "stepped" },
  4377. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4378. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4379. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4380. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4381. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4382. { "time": 1, "angle": 0, "curve": "stepped" },
  4383. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4384. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4385. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4386. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4387. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4388. { "time": 2, "angle": 0 }
  4389. ],
  4390. "translate": [
  4391. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4392. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4393. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4394. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4395. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4396. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4397. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4398. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4399. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4400. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4401. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4402. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4403. { "time": 2, "x": 0, "y": 0 }
  4404. ],
  4405. "scale": [
  4406. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4407. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4408. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4409. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4410. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4411. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4412. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4413. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4414. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4415. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4416. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4417. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4418. { "time": 2, "x": 1, "y": 1 }
  4419. ]
  4420. },
  4421. "bone40": {
  4422. "rotate": [
  4423. { "time": 0, "angle": 0, "curve": "stepped" },
  4424. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4425. { "time": 1, "angle": 0, "curve": "stepped" },
  4426. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4427. { "time": 2, "angle": 0 }
  4428. ],
  4429. "translate": [
  4430. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4431. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4432. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4433. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4434. { "time": 2, "x": 0, "y": 0 }
  4435. ],
  4436. "scale": [
  4437. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4438. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4440. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 2, "x": 1, "y": 1 }
  4442. ]
  4443. },
  4444. "bone41": {
  4445. "rotate": [
  4446. { "time": 0, "angle": 0 },
  4447. { "time": 0.5, "angle": 3.25 },
  4448. { "time": 1, "angle": 0 },
  4449. { "time": 1.5, "angle": 3.25 },
  4450. { "time": 2, "angle": 0 }
  4451. ],
  4452. "translate": [
  4453. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4454. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4455. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4456. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4457. { "time": 2, "x": 0, "y": 0 }
  4458. ],
  4459. "scale": [
  4460. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4461. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4462. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4463. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4464. { "time": 2, "x": 1, "y": 1 }
  4465. ]
  4466. },
  4467. "bone42": {
  4468. "rotate": [
  4469. { "time": 0, "angle": 0 },
  4470. { "time": 0.5, "angle": 3.25 },
  4471. { "time": 1, "angle": 0 },
  4472. { "time": 1.5, "angle": 3.25 },
  4473. { "time": 2, "angle": 0 }
  4474. ],
  4475. "translate": [
  4476. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4477. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4478. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4479. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4480. { "time": 2, "x": 0, "y": 0 }
  4481. ],
  4482. "scale": [
  4483. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4484. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4485. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4486. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4487. { "time": 2, "x": 1, "y": 1 }
  4488. ]
  4489. },
  4490. "bone43": {
  4491. "rotate": [
  4492. { "time": 0, "angle": 0 },
  4493. { "time": 0.5, "angle": 3.25 },
  4494. { "time": 1, "angle": 0 },
  4495. { "time": 1.5, "angle": 3.25 },
  4496. { "time": 2, "angle": 0 }
  4497. ],
  4498. "translate": [
  4499. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4500. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4501. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4502. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4503. { "time": 2, "x": 0, "y": 0 }
  4504. ],
  4505. "scale": [
  4506. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4507. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4508. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4509. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4510. { "time": 2, "x": 1, "y": 1 }
  4511. ]
  4512. },
  4513. "bone44": {
  4514. "rotate": [
  4515. { "time": 0, "angle": 0 },
  4516. { "time": 0.5, "angle": 3.25 },
  4517. { "time": 1, "angle": 0 },
  4518. { "time": 1.5, "angle": 3.25 },
  4519. { "time": 2, "angle": 0 }
  4520. ],
  4521. "translate": [
  4522. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4523. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4524. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4525. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4526. { "time": 2, "x": 0, "y": 0 }
  4527. ],
  4528. "scale": [
  4529. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4530. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4531. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4532. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 2, "x": 1, "y": 1 }
  4534. ]
  4535. },
  4536. "bone45": {
  4537. "rotate": [
  4538. { "time": 0, "angle": 0, "curve": "stepped" },
  4539. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4540. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4541. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4542. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4543. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4544. { "time": 1, "angle": 0, "curve": "stepped" },
  4545. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4546. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4547. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4548. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4549. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4550. { "time": 2, "angle": 0 }
  4551. ],
  4552. "translate": [
  4553. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4554. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4555. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4556. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4557. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4558. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4559. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4560. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4561. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4562. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4563. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4564. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4565. { "time": 2, "x": 0, "y": 0 }
  4566. ],
  4567. "scale": [
  4568. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4569. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4570. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4571. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4572. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4573. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4574. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4575. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4576. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4577. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4578. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4579. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4580. { "time": 2, "x": 1, "y": 1 }
  4581. ]
  4582. },
  4583. "bone46": {
  4584. "rotate": [
  4585. { "time": 0, "angle": 0 },
  4586. { "time": 0.5, "angle": -2.78 },
  4587. { "time": 1, "angle": 0 },
  4588. { "time": 1.5, "angle": -2.78 },
  4589. { "time": 2, "angle": 0 }
  4590. ],
  4591. "translate": [
  4592. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4593. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4594. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4595. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4596. { "time": 2, "x": 0, "y": 0 }
  4597. ],
  4598. "scale": [
  4599. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4600. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4601. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4602. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4603. { "time": 2, "x": 1, "y": 1 }
  4604. ]
  4605. },
  4606. "bone47": {
  4607. "rotate": [
  4608. { "time": 0, "angle": 0 },
  4609. { "time": 0.5, "angle": -2.78 },
  4610. { "time": 1, "angle": 0 },
  4611. { "time": 1.5, "angle": -2.78 },
  4612. { "time": 2, "angle": 0 }
  4613. ],
  4614. "translate": [
  4615. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4616. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4617. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4618. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4619. { "time": 2, "x": 0, "y": 0 }
  4620. ],
  4621. "scale": [
  4622. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4624. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 2, "x": 1, "y": 1 }
  4627. ]
  4628. },
  4629. "bone48": {
  4630. "rotate": [
  4631. { "time": 0, "angle": 0 },
  4632. { "time": 0.5, "angle": -2.78 },
  4633. { "time": 1, "angle": 0 },
  4634. { "time": 1.5, "angle": -2.78 },
  4635. { "time": 2, "angle": 0 }
  4636. ],
  4637. "translate": [
  4638. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4639. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4640. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4641. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4642. { "time": 2, "x": 0, "y": 0 }
  4643. ],
  4644. "scale": [
  4645. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4646. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4647. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4648. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4649. { "time": 2, "x": 1, "y": 1 }
  4650. ]
  4651. },
  4652. "bone49": {
  4653. "rotate": [
  4654. { "time": 0, "angle": 0 },
  4655. { "time": 0.2333, "angle": -0.27 },
  4656. { "time": 1, "angle": 0, "curve": "stepped" },
  4657. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4658. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4659. { "time": 1.3333, "angle": 0 }
  4660. ],
  4661. "translate": [
  4662. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4663. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4664. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4665. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4666. { "time": 1.3333, "x": 0, "y": 0 }
  4667. ],
  4668. "scale": [
  4669. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4670. { "time": 1, "x": 1, "y": 1 },
  4671. { "time": 1.1, "x": 0.464, "y": 1, "curve": "stepped" },
  4672. { "time": 1.2, "x": 0.464, "y": 1 },
  4673. { "time": 1.3333, "x": 1, "y": 1 }
  4674. ]
  4675. },
  4676. "bone50": {
  4677. "rotate": [
  4678. { "time": 0, "angle": 0, "curve": "stepped" },
  4679. { "time": 1, "angle": 0, "curve": "stepped" },
  4680. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4681. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4682. { "time": 1.3333, "angle": 0 }
  4683. ],
  4684. "translate": [
  4685. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4686. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4687. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4688. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4689. { "time": 1.3333, "x": 0, "y": 0 }
  4690. ],
  4691. "scale": [
  4692. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4693. { "time": 1, "x": 1, "y": 1 },
  4694. { "time": 1.1, "x": 0.464, "y": 1, "curve": "stepped" },
  4695. { "time": 1.2, "x": 0.464, "y": 1 },
  4696. { "time": 1.3333, "x": 1, "y": 1 }
  4697. ]
  4698. },
  4699. "bone51": {
  4700. "rotate": [
  4701. { "time": 0, "angle": 0, "curve": "stepped" },
  4702. { "time": 1, "angle": 0, "curve": "stepped" },
  4703. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4704. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4705. { "time": 1.3333, "angle": 0 }
  4706. ],
  4707. "translate": [
  4708. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4709. { "time": 1, "x": 0, "y": 0 },
  4710. { "time": 1.1, "x": -3.75, "y": 0, "curve": "stepped" },
  4711. { "time": 1.2, "x": -3.75, "y": 0 },
  4712. { "time": 1.3333, "x": 0, "y": 0 }
  4713. ],
  4714. "scale": [
  4715. { "time": 0, "x": 1, "y": 1 }
  4716. ]
  4717. },
  4718. "bone52": {
  4719. "rotate": [
  4720. { "time": 0, "angle": 0, "curve": "stepped" },
  4721. { "time": 1, "angle": 0, "curve": "stepped" },
  4722. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4723. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4724. { "time": 1.3333, "angle": 0 }
  4725. ],
  4726. "translate": [
  4727. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4728. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4729. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4730. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4731. { "time": 1.3333, "x": 0, "y": 0 }
  4732. ],
  4733. "scale": [
  4734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4735. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4736. { "time": 1.3333, "x": 1, "y": 1 }
  4737. ]
  4738. },
  4739. "bone53": {
  4740. "rotate": [
  4741. { "time": 0, "angle": 0, "curve": "stepped" },
  4742. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4743. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4744. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4745. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4746. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4747. { "time": 1, "angle": 0, "curve": "stepped" },
  4748. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4749. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4750. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4751. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4752. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4753. { "time": 2, "angle": 0 }
  4754. ],
  4755. "translate": [
  4756. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4757. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4758. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4759. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4760. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4761. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4762. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4763. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4764. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4765. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4766. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4767. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4768. { "time": 2, "x": 0, "y": 0 }
  4769. ],
  4770. "scale": [
  4771. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4772. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4773. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4774. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4775. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4776. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4777. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4778. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4779. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4780. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4781. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4782. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4783. { "time": 2, "x": 1, "y": 1 }
  4784. ]
  4785. },
  4786. "bone54": {
  4787. "rotate": [
  4788. { "time": 0, "angle": 0, "curve": "stepped" },
  4789. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4790. { "time": 1, "angle": 0, "curve": "stepped" },
  4791. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4792. { "time": 2, "angle": 0 }
  4793. ],
  4794. "translate": [
  4795. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4796. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4797. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4798. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4799. { "time": 2, "x": 0, "y": 0 }
  4800. ],
  4801. "scale": [
  4802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4803. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4804. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4805. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4806. { "time": 2, "x": 1, "y": 1 }
  4807. ]
  4808. },
  4809. "bone55": {
  4810. "rotate": [
  4811. {
  4812. "time": 0,
  4813. "angle": 0,
  4814. "curve": [ 0.25, 0, 0.75, 1 ]
  4815. },
  4816. {
  4817. "time": 0.5,
  4818. "angle": -350.43,
  4819. "curve": [ 0.25, 0, 0.75, 1 ]
  4820. },
  4821. {
  4822. "time": 1,
  4823. "angle": 0,
  4824. "curve": [ 0.25, 0, 0.75, 1 ]
  4825. },
  4826. {
  4827. "time": 1.5,
  4828. "angle": -350.43,
  4829. "curve": [ 0.25, 0, 0.75, 1 ]
  4830. },
  4831. { "time": 2, "angle": 0 }
  4832. ],
  4833. "translate": [
  4834. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4835. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4836. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4837. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4838. { "time": 2, "x": 0, "y": 0 }
  4839. ],
  4840. "scale": [
  4841. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4842. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4843. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4844. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4845. { "time": 2, "x": 1, "y": 1 }
  4846. ]
  4847. },
  4848. "bone56": {
  4849. "rotate": [
  4850. {
  4851. "time": 0,
  4852. "angle": 0,
  4853. "curve": [ 0.25, 0, 0.75, 1 ]
  4854. },
  4855. {
  4856. "time": 0.5,
  4857. "angle": 1.06,
  4858. "curve": [ 0.25, 0, 0.75, 1 ]
  4859. },
  4860. {
  4861. "time": 1,
  4862. "angle": 0,
  4863. "curve": [ 0.25, 0, 0.75, 1 ]
  4864. },
  4865. {
  4866. "time": 1.5,
  4867. "angle": 1.06,
  4868. "curve": [ 0.25, 0, 0.75, 1 ]
  4869. },
  4870. { "time": 2, "angle": 0 }
  4871. ],
  4872. "translate": [
  4873. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4874. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4875. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4876. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4877. { "time": 2, "x": 0, "y": 0 }
  4878. ],
  4879. "scale": [
  4880. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4881. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4882. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4883. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4884. { "time": 2, "x": 1, "y": 1 }
  4885. ]
  4886. },
  4887. "bone57": {
  4888. "rotate": [
  4889. {
  4890. "time": 0,
  4891. "angle": 0,
  4892. "curve": [ 0.25, 0, 0.75, 1 ]
  4893. },
  4894. {
  4895. "time": 0.5,
  4896. "angle": 1.06,
  4897. "curve": [ 0.25, 0, 0.75, 1 ]
  4898. },
  4899. {
  4900. "time": 1,
  4901. "angle": 0,
  4902. "curve": [ 0.25, 0, 0.75, 1 ]
  4903. },
  4904. {
  4905. "time": 1.5,
  4906. "angle": 1.06,
  4907. "curve": [ 0.25, 0, 0.75, 1 ]
  4908. },
  4909. { "time": 2, "angle": 0 }
  4910. ],
  4911. "translate": [
  4912. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4913. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4914. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4915. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4916. { "time": 2, "x": 0, "y": 0 }
  4917. ],
  4918. "scale": [
  4919. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4920. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4921. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4922. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4923. { "time": 2, "x": 1, "y": 1 }
  4924. ]
  4925. },
  4926. "bone58": {
  4927. "rotate": [
  4928. {
  4929. "time": 0,
  4930. "angle": 0,
  4931. "curve": [ 0.25, 0, 0.75, 1 ]
  4932. },
  4933. {
  4934. "time": 0.5,
  4935. "angle": 1.06,
  4936. "curve": [ 0.25, 0, 0.75, 1 ]
  4937. },
  4938. {
  4939. "time": 1,
  4940. "angle": 0,
  4941. "curve": [ 0.25, 0, 0.75, 1 ]
  4942. },
  4943. {
  4944. "time": 1.5,
  4945. "angle": 1.06,
  4946. "curve": [ 0.25, 0, 0.75, 1 ]
  4947. },
  4948. { "time": 2, "angle": 0 }
  4949. ],
  4950. "translate": [
  4951. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4952. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4953. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4954. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4955. { "time": 2, "x": 0, "y": 0 }
  4956. ],
  4957. "scale": [
  4958. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4959. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4960. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4961. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4962. { "time": 2, "x": 1, "y": 1 }
  4963. ]
  4964. }
  4965. },
  4966. "deform": {
  4967. "default": {
  4968. "shenti": {
  4969. "shenti": [
  4970. {
  4971. "time": 0,
  4972. "offset": 22,
  4973. "vertices": [ -0.05685, 5.37566, 0.3717, 5.3631, 0.20454, 4.86642, 0.59169, 4.83465, -0.14829, 1.91853, 0.00506, 1.92425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08329, 1.54018, 0.03971, 1.54192, 0.14823, 2.13885, -0.18077, 4.42029, 0.17206, 4.42064, 0.24749, 2.6021 ]
  4974. },
  4975. {
  4976. "time": 0.5,
  4977. "offset": 20,
  4978. "vertices": [ -0.33125, -2.92809, -0.17871, -7.29823, -0.75983, -7.26077, -2.78868, -2.58969, -2.98625, -2.35921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.13483, -0.63859, 0.08345, -0.6473, -0.37042, -1.64232, -0.46994, -3.97319, -0.78513, -3.9231, -0.85087, -3.02039 ]
  4979. },
  4980. {
  4981. "time": 1,
  4982. "offset": 22,
  4983. "vertices": [ -0.05685, 5.37566, 0.3717, 5.3631, 0.20454, 4.86642, 0.59169, 4.83465, -0.14829, 1.91853, 0.00506, 1.92425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08329, 1.54018, 0.03971, 1.54192, 0.14823, 2.13885, -0.18077, 4.42029, 0.17206, 4.42064, 0.24749, 2.6021 ]
  4984. },
  4985. {
  4986. "time": 1.5,
  4987. "offset": 20,
  4988. "vertices": [ -0.33125, -2.92809, -0.17871, -7.29823, -0.75983, -7.26077, -2.78868, -2.58969, -2.98625, -2.35921, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.13483, -0.63859, 0.08345, -0.6473, -0.37042, -1.64232, -0.46994, -3.97319, -0.78513, -3.9231, -0.85087, -3.02039 ]
  4989. },
  4990. {
  4991. "time": 2,
  4992. "offset": 22,
  4993. "vertices": [ -0.05685, 5.37566, 0.3717, 5.3631, 0.20454, 4.86642, 0.59169, 4.83465, -0.14829, 1.91853, 0.00506, 1.92425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08329, 1.54018, 0.03971, 1.54192, 0.14823, 2.13885, -0.18077, 4.42029, 0.17206, 4.42064, 0.24749, 2.6021 ]
  4994. }
  4995. ]
  4996. },
  4997. "toufa7": {
  4998. "toufa7": [
  4999. { "time": 0 },
  5000. {
  5001. "time": 0.5,
  5002. "vertices": [ 1.73582, -2.55186, 2.57886, -1.15296, 2.56683, 0.13107 ]
  5003. },
  5004. { "time": 1 },
  5005. {
  5006. "time": 1.5,
  5007. "vertices": [ 1.73582, -2.55186, 2.57886, -1.15296, 2.56683, 0.13107 ]
  5008. },
  5009. { "time": 2 }
  5010. ]
  5011. }
  5012. }
  5013. }
  5014. }
  5015. }
  5016. }