60051.json 509 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084
  1. {
  2. "skeleton": { "hash": "1oHKccantyso4XoiWzcXC7iqpto", "spine": "3.6.53", "width": 134.68, "height": 224.66, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -3, "y": 72.51 },
  6. { "name": "bone2", "parent": "bone", "length": 14.88, "rotation": 93.43, "x": 0.11, "y": 0.45 },
  7. { "name": "bone3", "parent": "bone2", "length": 22.35, "rotation": -8.01, "x": 14.88 },
  8. { "name": "bone4", "parent": "bone3", "length": 7.13, "rotation": 2.19, "x": 22.35 },
  9. { "name": "bone5", "parent": "bone4", "length": 65.09, "rotation": 0.29, "x": 7.13 },
  10. { "name": "bone6", "parent": "bone3", "length": 22.42, "rotation": 147.36, "x": 16.98, "y": 6.69, "color": "8e1edbff" },
  11. { "name": "bone7", "parent": "bone6", "length": 21.25, "rotation": -8.21, "x": 22.42, "color": "8e1edbff" },
  12. { "name": "bone8", "parent": "bone7", "length": 16.32, "rotation": -8.02, "x": 21.09, "y": 0.16, "color": "8e1edbff" },
  13. { "name": "bone9", "parent": "bone3", "length": 22.34, "rotation": -136.59, "x": 17.56, "y": -17.53, "color": "f16916ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 17.92, "rotation": 9.23, "x": 22.34, "color": "f16916ff" },
  15. { "name": "bone11", "parent": "bone10", "length": 19.34, "rotation": -2.59, "x": 19.2, "y": -0.07, "color": "f16916ff" },
  16. { "name": "bone12", "parent": "bone", "length": 8.4, "rotation": -113.81, "x": -2.93, "y": -6.43, "color": "3b971bff" },
  17. { "name": "bone13", "parent": "bone12", "length": 10.72, "rotation": -1.14, "x": 8.4, "color": "3b971bff" },
  18. { "name": "bone14", "parent": "bone13", "length": 15.08, "rotation": 1.07, "x": 10.72, "color": "3b971bff" },
  19. { "name": "bone15", "parent": "bone14", "length": 14.19, "rotation": -6.78, "x": 15.7, "y": 0.27, "color": "3b971bff" },
  20. { "name": "bone16", "parent": "bone15", "length": 12.93, "rotation": -5.82, "x": 14.19, "color": "3b971bff" },
  21. { "name": "bone17", "parent": "bone", "length": 13.14, "rotation": -63.43, "x": 8.15, "y": -7.56, "color": "ad77e1ff" },
  22. { "name": "bone18", "parent": "bone17", "length": 14.05, "rotation": 1.24, "x": 14.05, "y": 0.3, "color": "ad77e1ff" },
  23. { "name": "bone19", "parent": "bone18", "length": 10.62, "rotation": 1.49, "x": 14.05, "color": "ad77e1ff" },
  24. { "name": "bone20", "parent": "bone19", "length": 9.61, "rotation": 0.29, "x": 13.48, "y": 0.47, "color": "ad77e1ff" },
  25. { "name": "bone21", "parent": "bone20", "length": 12.94, "rotation": -10.19, "x": 9.42, "y": 0.11, "color": "ad77e1ff" },
  26. { "name": "bone22", "parent": "bone", "length": 13.83, "rotation": -94.69, "x": 2.95, "y": -8.01, "color": "15208fff" },
  27. { "name": "bone23", "parent": "bone22", "length": 21.08, "rotation": 0.38, "x": 14.73, "y": 0.07, "color": "15208fff" },
  28. { "name": "bone24", "parent": "bone23", "length": 19.28, "rotation": -0.4, "x": 22.2, "y": 0.08, "color": "15208fff" },
  29. { "name": "bone25", "parent": "bone", "length": 15.7, "rotation": -85.82, "x": 13.97, "y": -26.83, "color": "e75a2cff" },
  30. { "name": "bone26", "parent": "bone25", "length": 25.41, "rotation": -2.89, "x": 16.08, "y": -0.03, "color": "e75a2cff" },
  31. { "name": "bone27", "parent": "bone26", "length": 11.31, "rotation": -75.61, "x": 25.41, "color": "e75a2cff" },
  32. { "name": "bone28", "parent": "bone", "length": 14.9, "rotation": -90.73, "x": -8.37, "y": -26.25, "color": "1d84c9ff" },
  33. { "name": "bone29", "parent": "bone28", "length": 27.55, "rotation": -2.45, "x": 14.9, "color": "1d84c9ff" },
  34. { "name": "bone30", "parent": "bone29", "length": 10.3, "rotation": -76.14, "x": 27.55, "color": "1d84c9ff" },
  35. { "name": "bone31", "parent": "bone5", "length": 10.66, "rotation": 2.09, "x": 19.59, "y": 17.98 },
  36. { "name": "bone32", "parent": "bone5", "length": 11.4, "rotation": 4.29, "x": 19.58, "y": -9.78 },
  37. { "name": "bone33", "parent": "bone5", "x": 32.91, "y": 5.17 },
  38. { "name": "bone34", "parent": "bone5", "x": 21.4, "y": 4.46 },
  39. { "name": "bone35", "parent": "bone5", "x": 5.19, "y": 4.16 },
  40. { "name": "bone36", "parent": "bone5", "length": 20.71, "rotation": 179.78, "x": 51.23, "y": -6.88, "color": "345cc4ff" },
  41. { "name": "bone37", "parent": "bone36", "length": 34.91, "rotation": 1.63, "x": 21.12, "y": 0.23, "color": "345cc4ff" },
  42. { "name": "bone38", "parent": "bone37", "length": 29.28, "rotation": 2.73, "x": 34.91, "color": "345cc4ff" },
  43. { "name": "bone39", "parent": "bone5", "length": 14.01, "rotation": 170.78, "x": 45.52, "y": 28.1, "color": "86e048ff" },
  44. { "name": "bone40", "parent": "bone39", "length": 13.97, "rotation": 11.31, "x": 14.01, "color": "86e048ff" },
  45. { "name": "bone41", "parent": "bone40", "length": 13.21, "rotation": 8.97, "x": 15.11, "y": 0.69, "color": "86e048ff" },
  46. { "name": "bone42", "parent": "bone41", "length": 8.8, "rotation": 29.69, "x": 13.36, "y": 0.9, "color": "86e048ff" },
  47. { "name": "bone43", "parent": "bone42", "length": 8.01, "rotation": -38.66, "x": 9.48, "y": -0.25, "color": "86e048ff" },
  48. { "name": "bone44", "parent": "bone43", "length": 12.91, "rotation": -27.47, "x": 8.7, "color": "86e048ff" },
  49. { "name": "bone45", "parent": "bone44", "length": 8.81, "rotation": 18.5, "x": 12.91, "color": "86e048ff" },
  50. { "name": "bone46", "parent": "bone5", "length": 11.68, "rotation": -149.84, "x": 11.61, "y": 23.39, "color": "c94f1cff" },
  51. { "name": "bone47", "parent": "bone46", "length": 9.04, "rotation": -19.33, "x": 12.5, "y": 0.08, "color": "c94f1cff" },
  52. { "name": "bone48", "parent": "bone47", "length": 10.24, "rotation": -35.31, "x": 9.72, "y": -0.1, "color": "c94f1cff" },
  53. { "name": "bone49", "parent": "bone48", "length": 8.29, "rotation": 32.91, "x": 10.86, "y": -0.2, "color": "c94f1cff" },
  54. { "name": "bone50", "parent": "bone5", "length": 9.44, "rotation": 168.06, "x": 25.11, "y": -41.46, "color": "49b0d9ff" },
  55. { "name": "bone51", "parent": "bone50", "length": 14.35, "rotation": 5.78, "x": 9.44, "color": "49b0d9ff" },
  56. { "name": "bone52", "parent": "bone51", "length": 13.19, "rotation": 28.58, "x": 14.35, "color": "49b0d9ff" },
  57. { "name": "bone53", "parent": "bone52", "length": 12.64, "rotation": 15.09, "x": 14.07, "y": 0.41, "color": "49b0d9ff" },
  58. { "name": "bone54", "parent": "bone53", "length": 8.7, "rotation": -36.92, "x": 13.39, "y": -0.53, "color": "49b0d9ff" },
  59. { "name": "bone55", "parent": "bone54", "length": 9.53, "rotation": -33.71, "x": 9.87, "y": -0.66, "color": "49b0d9ff" },
  60. { "name": "bone56", "parent": "bone5", "length": 14.21, "rotation": -176.06, "x": 42.88, "y": -19.72, "color": "a820c0ff" },
  61. { "name": "bone57", "parent": "bone56", "length": 9.21, "rotation": -7.56, "x": 14.66, "y": -0.24, "color": "a820c0ff" },
  62. { "name": "bone58", "parent": "bone57", "length": 9.72, "rotation": 20.73, "x": 9.89, "y": 0.07, "color": "a820c0ff" },
  63. { "name": "bone59", "parent": "bone58", "length": 9.12, "rotation": 36.1, "x": 10.38, "y": -0.18, "color": "a820c0ff" },
  64. { "name": "bone60", "parent": "bone59", "length": 10, "rotation": -9.93, "x": 10.09, "y": -0.1, "color": "a820c0ff" },
  65. { "name": "bone61", "parent": "bone60", "length": 7.61, "rotation": -48.1, "x": 9.44, "y": -0.67, "color": "a820c0ff" },
  66. { "name": "bone62", "parent": "bone61", "length": 9, "rotation": -15.31, "x": 7.84, "y": 0.03, "color": "a820c0ff" },
  67. { "name": "bone63", "parent": "bone62", "length": 10.25, "rotation": 58.48, "x": 10.39, "y": -0.27, "color": "a820c0ff" },
  68. { "name": "bone64", "parent": "bone", "length": 13.89, "rotation": -106.7, "x": -7.8, "y": -7.24, "color": "15208fff" },
  69. { "name": "bone65", "parent": "bone5", "length": 14.45, "rotation": 163.43, "x": 27.65, "y": -28.68, "color": "e2e54cff" },
  70. { "name": "bone66", "parent": "bone65", "length": 12.88, "rotation": 6.23, "x": 15.44, "y": -0.05, "color": "e2e54cff" },
  71. { "name": "bone67", "parent": "bone66", "length": 13.58, "rotation": 36.56, "x": 12.88, "color": "e2e54cff" },
  72. { "name": "bone68", "parent": "bone67", "length": 11.41, "rotation": -7.15, "x": 13.58, "color": "e2e54cff" },
  73. { "name": "bone69", "parent": "bone68", "length": 10.12, "rotation": -35.07, "x": 11.78, "y": -0.69, "color": "e2e54cff" },
  74. { "name": "bone70", "parent": "bone69", "length": 9.3, "rotation": 12.39, "x": 10.12, "color": "e2e54cff" },
  75. { "name": "bone71", "parent": "bone64", "length": 17.86, "rotation": -3.86, "x": 13.89, "color": "15208fff" },
  76. { "name": "bone72", "parent": "bone71", "length": 16.53, "rotation": 3.16, "x": 18.03, "y": 0.07, "color": "15208fff" },
  77. { "name": "bone73", "parent": "bone72", "length": 11.56, "rotation": -7.91, "x": 16.53, "color": "15208fff" },
  78. { "name": "bone74", "parent": "bone", "length": 14.78, "rotation": -72.03, "x": 12.15, "y": -6.1, "color": "15208fff" },
  79. { "name": "bone75", "parent": "bone74", "length": 13.13, "rotation": -3.73, "x": 14.78, "color": "15208fff" },
  80. { "name": "bone76", "parent": "bone75", "length": 14.43, "rotation": 1.81, "x": 13.13, "color": "15208fff" },
  81. { "name": "bone77", "parent": "bone76", "length": 16.29, "rotation": 0.91, "x": 15.82, "color": "15208fff" },
  82. { "name": "bone78", "parent": "root", "length": 20, "rotation": 180, "x": 11.65, "y": 111.63 },
  83. { "name": "bone79", "parent": "root", "length": 20, "rotation": 90, "y": -2.43 },
  84. { "name": "dro", "parent": "root", "x": 36.95, "y": 109.07 },
  85. { "name": "long", "parent": "dro", "x": 7.74, "y": -11.89 },
  86. { "name": "long2", "parent": "long", "length": 5.7, "rotation": 26.57, "x": 0.47, "y": 0.09, "color": "9f25d0ff" },
  87. { "name": "long3", "parent": "long2", "length": 4.38, "rotation": 18.44, "x": 5.7, "color": "9f25d0ff" },
  88. { "name": "long4", "parent": "long3", "length": 5.66, "x": 4.5, "color": "9f25d0ff" },
  89. { "name": "long5", "parent": "long4", "length": 5.76, "rotation": -5.77, "x": 6.18, "color": "9f25d0ff" },
  90. { "name": "long6", "parent": "long5", "length": 7.29, "rotation": -23.28, "x": 5.88, "y": 0.01, "color": "9f25d0ff" },
  91. { "name": "long7", "parent": "long", "length": 6.34, "rotation": 164.17, "x": 0.19, "y": -0.09, "color": "9f25d0ff" },
  92. { "name": "long8", "parent": "long7", "length": 4.92, "rotation": -17.86, "x": 6.34, "color": "9f25d0ff" },
  93. { "name": "long9", "parent": "long8", "length": 6.05, "rotation": -12.53, "x": 4.92, "color": "9f25d0ff" },
  94. { "name": "long10", "parent": "long", "length": 8.18, "rotation": -73.18, "x": 0.01, "y": -0.52, "color": "147bbbff" },
  95. { "name": "long11", "parent": "long10", "length": 3.95, "rotation": 99.15, "x": 8.18, "color": "147bbbff" },
  96. { "name": "long12", "parent": "long11", "length": 3.61, "rotation": -68.93, "x": 3.95, "color": "147bbbff" },
  97. { "name": "long13", "parent": "long12", "length": 5.86, "rotation": -19.29, "x": 3.61, "color": "147bbbff" },
  98. { "name": "long14", "parent": "long9", "length": 17.16, "rotation": -27.46, "x": 7.03, "y": 0.19, "color": "1a991fff" },
  99. { "name": "long15", "parent": "long14", "length": 16.18, "rotation": 113.44, "x": 6.51, "y": -2.87, "color": "f06110ff" },
  100. { "name": "long16", "parent": "long14", "length": 12.89, "rotation": 115.17, "x": 2.02, "y": -0.32, "color": "1a991fff" },
  101. { "name": "long17", "parent": "long14", "length": 7.22, "rotation": -154.75, "x": 13.48, "y": -1.7, "color": "1a2599ff" },
  102. { "name": "long18", "parent": "long9", "length": 9.51, "rotation": 146.3, "x": 5.35, "y": 1.46, "color": "170c6dff" },
  103. { "name": "long19", "parent": "long18", "length": 13.47, "rotation": -52.89, "x": 9.51, "color": "170c6dff" },
  104. { "name": "long20", "parent": "long19", "length": 15.59, "rotation": 60.28, "x": 13.47, "color": "170c6dff" },
  105. { "name": "long21", "parent": "long9", "length": 9.5, "rotation": -51.91, "x": 4.64, "y": -0.03, "color": "aac535ff" },
  106. { "name": "long22", "parent": "long21", "length": 9.34, "rotation": 30.31, "x": 9.5, "color": "aac535ff" },
  107. { "name": "long23", "parent": "long22", "length": 13.87, "rotation": -93.09, "x": 9.34, "color": "aac535ff" },
  108. { "name": "long24", "parent": "long9", "length": 14.84, "rotation": -168.64, "x": -0.32, "y": -4.72, "color": "ee2582ff" },
  109. { "name": "long25", "parent": "long24", "length": 13.37, "rotation": -77.68, "x": 15.01, "y": -0.09, "color": "ee2582ff" },
  110. { "name": "long26", "parent": "long25", "length": 23.41, "rotation": 48.27, "x": 13.37, "color": "ee2582ff" },
  111. { "name": "long27", "parent": "long9", "length": 8.48, "rotation": -133.78, "x": -2.13, "y": -6.55, "color": "1dc618ff" },
  112. { "name": "long28", "parent": "long27", "length": 16.29, "rotation": 5.62, "x": 8.57, "y": 0.5, "color": "1dc618ff" },
  113. { "name": "long29", "parent": "long28", "length": 11.64, "rotation": -45.06, "x": 16.52, "y": -0.19, "color": "1dc618ff" },
  114. { "name": "long30", "parent": "long9", "length": 15.49, "rotation": -99.83, "x": -0.7, "y": -3.1, "color": "9c2020ff" },
  115. { "name": "long31", "parent": "long30", "length": 17.68, "rotation": 35.46, "x": 15.49, "color": "9c2020ff" },
  116. { "name": "long32", "parent": "long31", "length": 17.19, "rotation": -52.66, "x": 17.77, "y": -0.24, "color": "9c2020ff" }
  117. ],
  118. "slots": [
  119. { "name": "qunzihou", "bone": "bone22", "attachment": "qunzihou" },
  120. { "name": "toufa3", "bone": "bone36", "attachment": "toufa3" },
  121. { "name": "toufa2", "bone": "bone50", "attachment": "toufa2" },
  122. { "name": "toufa1", "bone": "bone46", "attachment": "toufa1" },
  123. { "name": "zuojiao", "bone": "bone28", "attachment": "zuojiao" },
  124. { "name": "youjiao", "bone": "bone25", "attachment": "youjiao" },
  125. { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
  126. { "name": "qunzi", "bone": "bone17", "attachment": "qunzi" },
  127. { "name": "qunzi2", "bone": "bone12", "attachment": "qunzi2" },
  128. { "name": "shangshen", "bone": "bone2", "attachment": "shangshen" },
  129. { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
  130. { "name": "tou", "bone": "bone5", "attachment": "tou" },
  131. { "name": "zuiba", "bone": "bone35", "attachment": "zuiba" },
  132. { "name": "zuoyan", "bone": "bone31", "attachment": "zuoyan" },
  133. { "name": "youyan", "bone": "bone32", "attachment": "youyan" },
  134. { "name": "meimao", "bone": "bone33", "attachment": "meimao" },
  135. { "name": "toufa7", "bone": "bone5", "attachment": "toufa7" },
  136. { "name": "toufa6", "bone": "bone39", "attachment": "toufa6" },
  137. { "name": "toufa5", "bone": "bone65", "attachment": "toufa5" },
  138. { "name": "toufa4", "bone": "bone56", "attachment": "toufa4" },
  139. { "name": "biyan", "bone": "bone34" },
  140. { "name": "l_cibanag6", "bone": "long21", "attachment": "l_cibanag6" },
  141. { "name": "l_cibang5", "bone": "long18", "attachment": "l_cibang5" },
  142. { "name": "l_long", "bone": "long2", "attachment": "l_long" },
  143. { "name": "l_zui", "bone": "long16", "attachment": "l_zui" },
  144. { "name": "guang", "bone": "long16", "color": "eae727ff", "attachment": "guang", "blend": "additive" },
  145. { "name": "l_jiao", "bone": "long10", "attachment": "l_jiao" },
  146. { "name": "l_longtou", "bone": "long15", "attachment": "l_longtou" },
  147. { "name": "l_xiaba", "bone": "long16", "attachment": "l_xiaba" },
  148. { "name": "guang2", "bone": "long16", "color": "eae62658", "attachment": "guang", "blend": "additive" },
  149. { "name": "l_chibang1", "bone": "long27", "attachment": "l_chibang1" },
  150. { "name": "l_cibang3", "bone": "long30", "attachment": "l_cibang3" },
  151. { "name": "l_cibang2", "bone": "long24", "attachment": "l_cibang2" },
  152. { "name": "l_biyan", "bone": "long17", "attachment": "l_biyan" },
  153. { "name": "huo_0", "bone": "bone79", "attachment": "huo_7" },
  154. { "name": "huo_1", "bone": "bone79", "attachment": "huo_7", "blend": "additive" }
  155. ],
  156. "skins": {
  157. "default": {
  158. "biyan": {
  159. "biyan": { "x": -0.7, "y": 0.1, "rotation": -87.91, "width": 43, "height": 8 }
  160. },
  161. "guang": {
  162. "guang": { "x": 5.49, "y": -4.59, "scaleX": 0.508, "scaleY": 0.508, "rotation": 138.51, "width": 52, "height": 52 }
  163. },
  164. "guang2": {
  165. "guang": {
  166. "type": "mesh",
  167. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  168. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  169. "vertices": [ 4.35, 14.05, 24.13, -3.45, 6.64, -23.23, -13.14, -5.73 ],
  170. "hull": 4,
  171. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  172. "width": 52,
  173. "height": 52
  174. }
  175. },
  176. "huo_0": {
  177. "huo_0": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  178. "huo_1": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  179. "huo_2": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  180. "huo_3": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  181. "huo_4": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  182. "huo_5": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  183. "huo_6": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  184. "huo_7": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 }
  185. },
  186. "huo_1": {
  187. "huo_0": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  188. "huo_1": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  189. "huo_2": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  190. "huo_3": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  191. "huo_4": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  192. "huo_5": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  193. "huo_6": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 },
  194. "huo_7": { "x": 25.84, "rotation": -90, "width": 50, "height": 100 }
  195. },
  196. "l_biyan": {
  197. "l_biyan": {
  198. "type": "mesh",
  199. "uvs": [ 0.94709, 0.10352, 1, 0.44852, 0.82459, 0.77352, 0.59959, 0.92102, 0.25959, 1, 0, 0.77352, 0.14959, 0.45102, 0.35959, 0.16102, 0.57209, 0, 0.78709, 0 ],
  200. "triangles": [ 9, 1, 8, 1, 9, 0, 8, 2, 7, 1, 2, 8, 2, 6, 7, 3, 6, 2, 4, 5, 6, 3, 4, 6 ],
  201. "vertices": [ 2.95, 7.94, 7.64, 4.91, 9.67, -0.64, 9.04, -4.9, 6.38, -9.81, 0.91, -10.51, -1.36, -5.3, -2.6, 0.29, -2.27, 4.55, 0.01, 7.12 ],
  202. "hull": 10,
  203. "edges": [ 10, 8, 8, 6, 6, 4, 2, 0, 0, 18, 16, 18, 16, 14, 14, 12, 12, 10, 2, 4 ],
  204. "width": 16,
  205. "height": 16
  206. }
  207. },
  208. "l_chibang1": {
  209. "l_chibang1": {
  210. "type": "mesh",
  211. "uvs": [ 0.60743, 0.11419, 0.69017, 0.15763, 0.72743, 0.17719, 0.84893, 0.31178, 0.92093, 0.40628, 1, 0.56665, 1, 0.82489, 1, 1, 0.95367, 1, 0.89941, 0.89134, 0.81239, 0.72325, 0.77713, 0.651, 0.74277, 0.58057, 0.64346, 0.59035, 0.51958, 0.5923, 0.45436, 0.58321, 0.37932, 0.57276, 0.32543, 0.6411, 0.28643, 0.63537, 0.17093, 0.59242, 0.07193, 0.58955, 0, 0.56092, 0, 0.43985, 0, 0.30606, 0.06703, 0.32713, 0.14198, 0.33742, 0.22793, 0.34328, 0.29543, 0.30892, 0.36443, 0.19437, 0.35243, 0, 0.43311, 0, 0.52643, 0, 0.74843, 0.20297, 0.34199, 0.4203, 0.69827, 0.35581, 0.06557, 0.4411, 0.14428, 0.43649, 0.2457, 0.44455, 0.42524, 0.40523, 0.4994, 0.39181, 0.60932, 0.37191, 0.85829, 0.60459, 0.80117, 0.51578, 0.94776, 0.74368 ],
  212. "triangles": [ 28, 29, 30, 3, 32, 2, 32, 34, 1, 32, 1, 2, 34, 32, 3, 40, 0, 1, 40, 1, 34, 31, 0, 40, 30, 39, 28, 30, 31, 39, 31, 40, 39, 38, 27, 28, 39, 38, 28, 33, 27, 38, 26, 27, 33, 36, 25, 26, 22, 23, 24, 35, 22, 24, 35, 24, 25, 35, 25, 36, 37, 26, 33, 36, 26, 37, 42, 34, 3, 42, 3, 4, 21, 22, 35, 41, 42, 4, 16, 33, 38, 37, 33, 16, 12, 34, 42, 15, 38, 39, 16, 38, 15, 20, 35, 36, 21, 35, 20, 13, 40, 34, 13, 34, 12, 14, 39, 40, 14, 15, 39, 40, 13, 14, 19, 36, 37, 18, 19, 37, 20, 36, 19, 5, 41, 4, 11, 12, 42, 16, 18, 37, 17, 18, 16, 41, 11, 42, 10, 11, 41, 43, 41, 5, 10, 41, 43, 43, 5, 6, 9, 10, 43, 9, 43, 6, 7, 8, 9, 7, 9, 6 ],
  213. "vertices": [ 1, 108, 13.01, 5.63, 1, 2, 108, 16.38, 4.34, 0.90054, 109, -3.31, 3.09, 0.09946, 2, 108, 17.89, 3.76, 0.65966, 109, -1.83, 3.76, 0.34034, 1, 109, 3.99, 4.71, 1, 1, 109, 7.65, 5.03, 1, 1, 109, 12.45, 4.41, 1, 1, 109, 16.06, 0.02, 1, 1, 109, 18.51, -2.95, 1, 1, 109, 17.01, -4.19, 1, 1, 109, 13.73, -3.79, 1, 1, 109, 8.56, -3.26, 1, 1, 109, 6.4, -2.97, 1, 2, 108, 17.66, -5.14, 0.03629, 109, 4.3, -2.69, 0.96371, 2, 108, 13.49, -4.94, 0.62192, 109, 1.22, -5.5, 0.37808, 3, 107, 17.28, -3.14, 7.9E-4, 108, 8.31, -4.48, 0.98639, 109, -2.77, -8.84, 0.01282, 2, 107, 14.54, -2.94, 0.04233, 108, 5.6, -4.01, 0.95767, 2, 107, 11.38, -2.71, 0.4632, 108, 2.49, -3.47, 0.5368, 2, 107, 9.12, -4.21, 0.95879, 108, 0.09, -4.75, 0.04121, 1, 107, 7.48, -4.08, 1, 1, 107, 2.63, -3.14, 1, 1, 107, -1.53, -3.08, 1, 1, 107, -4.55, -2.45, 1, 1, 107, -4.55, 0.22, 1, 1, 107, -4.55, 3.16, 1, 1, 107, -1.73, 2.7, 1, 1, 107, 1.42, 2.47, 1, 2, 107, 5.03, 2.34, 0.86065, 108, -3.34, 2.18, 0.13935, 2, 107, 7.86, 3.1, 0.10229, 108, -0.45, 2.65, 0.89771, 1, 108, 2.68, 4.87, 1, 1, 108, 2.6, 9.18, 1, 1, 108, 5.97, 8.85, 1, 1, 108, 9.87, 8.46, 1, 2, 108, 18.71, 3.11, 0.45201, 109, -0.79, 3.88, 0.54799, 1, 108, 1.26, 0.02, 1, 2, 108, 16.29, -0.03, 0.93984, 109, -0.28, -0.06, 0.06016, 1, 107, -1.79, 0.19, 1, 1, 107, 1.51, 0.29, 1, 2, 107, 5.77, 0.11, 0.99486, 108, -2.82, -0.11, 0.00514, 1, 108, 4.77, 0.01, 1, 2, 108, 7.9, 0, 1, 109, -6.23, -5.97, 0, 2, 108, 12.53, -0.02, 0.99966, 109, -2.94, -2.7, 3.4E-4, 1, 109, 8.39, -0.01, 1, 2, 108, 20.24, -3.96, 0, 109, 5.29, -0.03, 1, 1, 109, 13.23, 0.01, 1 ],
  214. "hull": 32,
  215. "edges": [ 50, 52, 52, 54, 54, 56, 56, 58, 62, 0, 64, 6, 6, 8, 8, 10, 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 28, 26, 26, 24, 20, 18, 14, 16, 18, 16, 4, 6, 42, 44, 44, 46, 10, 12, 12, 14, 44, 70, 40, 70, 46, 48, 48, 50, 70, 48, 72, 70, 50, 72, 72, 38, 66, 74, 74, 72, 52, 74, 74, 36, 32, 66, 66, 54, 66, 76, 56, 76, 28, 30, 30, 32, 76, 30, 78, 76, 28, 78, 58, 60, 60, 62, 78, 60, 68, 80, 80, 78, 62, 80, 80, 26, 24, 68, 0, 2, 2, 4, 68, 2, 20, 82, 82, 8, 68, 84, 84, 82, 6, 84, 20, 22, 22, 24, 84, 22, 12, 86, 86, 82, 18, 86, 86, 10 ],
  216. "width": 42,
  217. "height": 22
  218. }
  219. },
  220. "l_cibanag6": {
  221. "l_cibanag6": {
  222. "type": "mesh",
  223. "uvs": [ 1, 0.12081, 0.8584, 0.13443, 0.81102, 0.18755, 0.7565, 0.27915, 0.87114, 0.35236, 0.84311, 0.42432, 0.76572, 0.47922, 0.80488, 0.58936, 0.74811, 0.64481, 0.58318, 0.66563, 0.5418, 0.7204, 0.4684, 0.83212, 0.41399, 0.92704, 0.3814, 0.98983, 0.28756, 1, 0.13511, 0.88284, 0.15122, 0.82415, 0.18053, 0.71739, 0.28856, 0.61401, 0.20847, 0.52312, 0, 0.44498, 0, 0.39695, 0.01935, 0.3316, 0.11988, 0.26862, 0.22953, 0.19126, 0.36402, 0.11264, 0.6214, 0.05543, 0.87624, 0, 1, 0, 0.4219, 0.58946, 0.37638, 0.25566, 0.67954, 0.08821, 0.7785, 0.04383, 0.51875, 0.15458, 0.3654, 0.35355, 0.38978, 0.43863, 0.39679, 0.66188, 0.41125, 0.51357, 0.35771, 0.78285, 0.32149, 0.89496 ],
  224. "triangles": [ 32, 26, 27, 31, 26, 32, 27, 28, 0, 1, 32, 27, 1, 27, 0, 33, 25, 26, 33, 26, 31, 2, 32, 1, 31, 32, 2, 30, 25, 33, 24, 25, 30, 3, 31, 2, 33, 31, 3, 34, 24, 30, 23, 24, 34, 5, 3, 4, 30, 33, 3, 5, 30, 3, 30, 6, 34, 35, 34, 6, 23, 34, 35, 22, 23, 35, 20, 21, 19, 35, 21, 22, 5, 6, 30, 7, 37, 35, 37, 21, 35, 37, 19, 21, 7, 35, 6, 37, 9, 29, 19, 37, 29, 18, 19, 29, 7, 8, 37, 36, 18, 29, 8, 9, 37, 10, 36, 29, 9, 10, 29, 38, 18, 36, 11, 38, 36, 17, 18, 38, 16, 17, 38, 10, 11, 36, 39, 16, 38, 12, 39, 38, 15, 16, 39, 11, 12, 38, 13, 39, 12, 14, 15, 39, 14, 39, 13 ],
  225. "vertices": [ 1, 103, 21.38, -3.4, 1, 3, 101, 23.32, -11.56, 7.6E-4, 102, 6.09, -16.95, 9.7E-4, 103, 17.11, -2.33, 0.99827, 3, 101, 21.59, -10.33, 0.01023, 102, 5.22, -15.01, 0.01538, 103, 15.21, -3.31, 0.97439, 3, 101, 18.72, -9.03, 0.08997, 102, 3.4, -12.44, 0.12539, 103, 12.75, -5.27, 0.78464, 3, 101, 17.12, -12.85, 0.18262, 102, 0.09, -14.93, 0.19874, 103, 15.41, -8.44, 0.61864, 3, 101, 14.93, -12.28, 0.20293, 102, -1.52, -13.34, 0.20947, 103, 13.91, -10.12, 0.5876, 3, 101, 13.01, -10.13, 0.31929, 102, -2.08, -10.52, 0.24597, 103, 11.12, -10.84, 0.43474, 3, 101, 10.02, -11.79, 0.47538, 102, -5.5, -10.44, 0.23925, 103, 11.22, -14.26, 0.28538, 3, 101, 8.18, -10.27, 0.51416, 102, -6.32, -8.2, 0.23272, 103, 9.03, -15.2, 0.25312, 3, 101, 6.86, -5.29, 0.7961, 102, -4.95, -3.24, 0.11846, 103, 4, -14.1, 0.08544, 3, 101, 5.11, -4.25, 0.96005, 102, -5.94, -1.45, 0.01909, 103, 2.27, -15.18, 0.02086, 1, 101, 1.58, -2.46, 1, 1, 101, -1.38, -1.17, 1, 1, 101, -3.33, -0.43, 1, 1, 101, -4.03, 2.41, 1, 1, 101, -1.34, 7.56, 1, 1, 101, 0.42, 7.31, 1, 2, 101, 3.61, 6.85, 0.99695, 102, -1.63, 8.89, 0.00305, 2, 101, 7.05, 3.96, 0.70968, 102, -0.12, 4.65, 0.29032, 2, 101, 9.31, 6.79, 0.10239, 102, 3.26, 5.96, 0.89761, 1, 102, 7.8, 11.09, 1, 1, 102, 9.09, 10.56, 1, 1, 102, 10.62, 9.29, 1, 2, 102, 11.13, 5.71, 0.97117, 103, -5.8, 1.48, 0.02883, 2, 102, 11.93, 1.72, 0.48271, 103, -1.86, 2.48, 0.51729, 1, 103, 2.83, 3.28, 1, 1, 103, 10.91, 2.23, 1, 1, 103, 18.9, 1.17, 1, 1, 103, 22.53, -0.09, 1, 2, 101, 8.34, -0.03, 0.99996, 103, 0, -10.38, 4.0E-5, 2, 102, 8.48, -1.79, 0.20542, 103, 1.83, -0.77, 0.79458, 1, 103, 12.3, 0.75, 1, 1, 103, 15.62, 0.96, 1, 1, 103, 6.96, 0.56, 1, 2, 102, 5.98, -0.4, 0.96569, 103, 0.58, -3.34, 0.03431, 2, 102, 3.41, -0.17, 0.99662, 103, 0.49, -5.92, 0.00338, 2, 101, 6.15, 0.44, 0.99354, 102, -2.67, 2.07, 0.00646, 2, 101, 10.47, 0.61, 9.0E-5, 102, 1.14, 0.03, 0.99991, 1, 101, 2.51, 1.14, 1, 1, 101, -0.87, 1.8, 1 ],
  226. "hull": 29,
  227. "edges": [ 28, 30, 34, 36, 36, 38, 38, 40, 48, 50, 50, 52, 54, 56, 52, 54, 0, 56, 0, 2, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 26, 28, 52, 62, 2, 4, 4, 6, 62, 4, 54, 64, 64, 62, 2, 64, 60, 66, 66, 62, 50, 66, 66, 6, 68, 60, 12, 68, 44, 46, 46, 48, 68, 46, 48, 60, 60, 10, 70, 68, 44, 70, 70, 14, 38, 58, 58, 18, 72, 58, 36, 72, 18, 20, 20, 22, 72, 20, 58, 74, 74, 70, 16, 74, 40, 42, 42, 44, 74, 42, 76, 72, 34, 76, 76, 22, 30, 32, 32, 34, 28, 78, 78, 76, 32, 78, 22, 24, 24, 26, 78, 24 ],
  228. "width": 31,
  229. "height": 29
  230. }
  231. },
  232. "l_cibang2": {
  233. "l_cibang2": {
  234. "type": "mesh",
  235. "uvs": [ 0.28902, 0.06051, 0.43007, 0.10133, 0.61323, 0.11766, 0.71849, 0.10623, 0.69534, 0.16337, 0.73113, 0.23684, 0.8006, 0.34786, 0.9206, 0.40664, 1, 0.43439, 1, 0.48663, 0.89113, 0.54214, 0.7606, 0.62541, 0.69112, 0.75439, 0.68639, 0.87235, 0.75639, 1, 0.63386, 1, 0.56902, 1, 0.39218, 0.90296, 0.26586, 0.77888, 0.1606, 0.65643, 0.10744, 0.55398, 0.0606, 0.49153, 0.01737, 0.42255, 0.03377, 0.33954, 0.08481, 0.28255, 0.18376, 0.30868, 0.18376, 0.25601, 0.18376, 0.20255, 0.07664, 0.13974, 0, 0.0948, 0, 0, 0.15639, 0, 0.43597, 0.21725, 0.30228, 0.45072, 0.30657, 0.15277, 0.18389, 0.09164, 0.39814, 0.28411, 0.34368, 0.36827, 0.35116, 0.56094, 0.41078, 0.65353, 0.48097, 0.76254, 0.56299, 0.88992 ],
  236. "triangles": [ 35, 31, 0, 30, 31, 35, 28, 29, 30, 35, 28, 30, 34, 0, 1, 35, 0, 34, 4, 2, 3, 27, 28, 35, 27, 35, 34, 32, 1, 2, 34, 1, 32, 26, 27, 34, 26, 34, 32, 36, 26, 32, 32, 5, 36, 2, 5, 32, 4, 5, 2, 25, 26, 36, 37, 25, 36, 23, 24, 25, 37, 23, 25, 6, 37, 36, 6, 36, 5, 33, 23, 37, 22, 23, 33, 33, 37, 6, 33, 6, 7, 7, 8, 9, 21, 22, 33, 7, 38, 33, 10, 7, 9, 20, 21, 33, 10, 38, 7, 20, 33, 38, 11, 38, 10, 39, 38, 11, 19, 20, 38, 19, 38, 39, 12, 39, 11, 40, 39, 12, 18, 19, 39, 18, 39, 40, 12, 41, 40, 13, 41, 12, 17, 18, 40, 17, 40, 41, 15, 16, 41, 17, 41, 16, 13, 15, 41, 15, 13, 14 ],
  237. "vertices": [ 1, 104, 6.17, 3.4, 1, 1, 104, 11.71, 4.82, 1, 3, 104, 17.88, 8.14, 0.61634, 105, -7.43, 4.56, 0.37672, 106, -10.44, 18.56, 0.00693, 3, 104, 20.84, 10.89, 0.54226, 105, -9.48, 8.04, 0.44855, 106, -9.2, 22.4, 0.00919, 3, 104, 21.72, 8.08, 0.46782, 105, -6.55, 8.3, 0.50967, 106, -7.06, 20.39, 0.0225, 3, 104, 24.89, 5.91, 0.21376, 105, -3.75, 10.94, 0.69601, 106, -3.23, 20.06, 0.09023, 3, 104, 30.17, 2.95, 0.02528, 105, 0.26, 15.46, 0.70317, 106, 2.82, 20.07, 0.27155, 3, 104, 35.56, 3.2, 6.3E-4, 105, 1.18, 20.78, 0.62895, 106, 7.39, 22.93, 0.37042, 2, 105, 1.27, 24.08, 0.61797, 106, 9.93, 25.06, 0.38203, 2, 105, 3.64, 25.07, 0.61343, 106, 12.23, 23.94, 0.38657, 2, 105, 7.74, 22.29, 0.56773, 106, 12.89, 19.04, 0.43227, 2, 105, 13.41, 19.27, 0.34516, 106, 14.41, 12.8, 0.65484, 2, 105, 20.26, 19.25, 0.06684, 106, 18.95, 7.67, 0.93316, 2, 105, 25.66, 21.3, 0.00245, 106, 24.08, 5, 0.99755, 1, 106, 30.87, 4.68, 1, 1, 106, 28.85, 0.49, 1, 1, 106, 27.78, -1.73, 1, 1, 106, 20.58, -5.72, 1, 1, 106, 13.02, -7.4, 1, 2, 105, 23.55, -1.21, 0.00808, 106, 5.88, -8.4, 0.99192, 2, 105, 19.69, -5, 0.26448, 106, 0.48, -8.04, 0.73552, 2, 105, 17.54, -7.81, 0.61495, 106, -3.05, -8.32, 0.38505, 3, 104, 7.84, -17.06, 0.00145, 105, 15.05, -10.63, 0.84425, 106, -6.81, -8.33, 0.1543, 3, 104, 6.03, -13.37, 0.01555, 105, 11.06, -11.61, 0.94882, 106, -10.2, -6, 0.03563, 3, 104, 6.02, -9.97, 0.0349, 105, 7.73, -10.89, 0.9642, 106, -11.88, -3.04, 9.0E-4, 2, 104, 9.84, -8.87, 0.15574, 105, 7.47, -6.92, 0.84426, 2, 104, 8.36, -6.75, 0.4878, 105, 5.09, -7.91, 0.5122, 2, 104, 6.87, -4.6, 0.8307, 105, 2.67, -8.92, 0.1693, 2, 104, 1.77, -4.4, 0.99876, 105, 1.39, -13.86, 0.00124, 1, 104, -1.88, -4.26, 1, 1, 104, -4.54, -0.45, 1, 1, 104, 0.34, 2.95, 1, 3, 104, 15.14, 0.28, 0.49892, 105, -0.34, 0.21, 0.50081, 106, -8.97, 10.37, 2.7E-4, 2, 104, 17.51, -12.01, 4.0E-5, 105, 12.18, -0.1, 0.99996, 1, 104, 9.3, 0.07, 1, 2, 104, 3.76, -0.14, 0.99989, 105, -2.35, -11, 1.1E-4, 2, 105, 3.24, 0.14, 0.9997, 106, -6.64, 7.65, 3.0E-4, 2, 104, 16.49, -7.79, 0.00138, 105, 7.84, -0.19, 0.99862, 2, 105, 16.45, 3.69, 0.00379, 106, 4.81, 0.15, 0.99621, 2, 105, 19.77, 7.52, 0.00149, 106, 9.88, 0.22, 0.99851, 2, 105, 23.69, 12.03, 7.1E-4, 106, 15.85, 0.31, 0.99929, 2, 105, 28.26, 17.3, 9.0E-5, 106, 22.82, 0.4, 0.99991 ],
  238. "hull": 32,
  239. "edges": [ 58, 60, 50, 48, 44, 42, 42, 40, 40, 38, 38, 36, 36, 34, 34, 32, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 60, 62, 0, 62, 28, 30, 30, 32, 68, 64, 54, 68, 68, 2, 54, 56, 56, 58, 60, 70, 70, 68, 56, 70, 70, 0, 50, 52, 52, 54, 52, 64, 64, 4, 64, 72, 50, 72, 72, 10, 44, 46, 46, 48, 66, 74, 74, 72, 46, 74, 74, 12, 44, 66, 66, 14, 76, 66, 40, 76, 76, 20, 78, 76, 38, 78, 78, 22, 80, 78, 36, 80, 80, 24, 30, 82, 82, 80, 34, 82, 82, 26 ],
  240. "width": 38,
  241. "height": 49
  242. }
  243. },
  244. "l_cibang3": {
  245. "l_cibang3": {
  246. "type": "mesh",
  247. "uvs": [ 1, 0.07798, 0.94201, 0.10445, 0.84027, 0.19975, 0.8157, 0.22468, 0.76723, 0.27386, 0.7281, 0.37622, 0.74636, 0.50504, 0.74506, 0.63916, 0.6681, 0.67092, 0.57549, 0.68504, 0.61462, 0.78386, 0.61071, 0.87033, 0.56114, 0.87386, 0.46984, 0.86504, 0.42419, 0.88798, 0.3081, 0.96739, 0.20636, 1, 0.07463, 1, 0, 1, 0, 0.9322, 0, 0.83151, 0.03319, 0.81742, 0.0973, 0.79445, 0.19904, 0.73798, 0.22252, 0.64268, 0.1573, 0.51916, 0.10252, 0.48739, 0, 0.46798, 0, 0.36386, 0.06469, 0.30739, 0.18991, 0.21033, 0.3086, 0.13269, 0.42599, 0.06034, 0.5799, 0, 0.71716, 0, 0.85151, 0, 1, 0, 0.37714, 0.69573, 0.53627, 0.17691, 0.12256, 0.85661, 0.05435, 0.89812, 0.22144, 0.79031, 0.31008, 0.73778, 0.41046, 0.5871, 0.46748, 0.4012, 0.44441, 0.47641, 0.51583, 0.24357, 0.68831, 0.11891, 0.7775, 0.08488, 0.8996, 0.0383 ],
  248. "triangles": [ 49, 35, 36, 49, 36, 0, 48, 34, 35, 48, 35, 49, 1, 49, 0, 47, 33, 34, 47, 34, 48, 38, 32, 33, 38, 33, 47, 1, 2, 48, 1, 48, 49, 3, 48, 2, 47, 48, 3, 46, 32, 38, 31, 32, 46, 4, 47, 3, 38, 47, 4, 4, 46, 38, 5, 46, 4, 44, 31, 46, 44, 46, 5, 30, 31, 44, 26, 27, 28, 45, 30, 44, 29, 30, 45, 25, 26, 29, 26, 28, 29, 44, 5, 6, 45, 25, 29, 43, 25, 45, 6, 45, 44, 7, 45, 6, 45, 9, 43, 24, 25, 43, 7, 8, 45, 8, 9, 45, 37, 24, 43, 37, 43, 9, 42, 24, 37, 23, 24, 42, 41, 23, 42, 22, 23, 41, 39, 22, 41, 13, 37, 9, 13, 9, 10, 14, 42, 37, 10, 12, 13, 11, 12, 10, 13, 14, 37, 39, 40, 21, 39, 21, 22, 20, 21, 40, 19, 20, 40, 14, 15, 41, 14, 41, 42, 16, 39, 41, 17, 18, 19, 17, 40, 39, 16, 17, 39, 17, 19, 40, 41, 15, 16 ],
  249. "vertices": [ 1, 112, 22.2, -2.43, 1, 1, 112, 19.38, -2.52, 1, 2, 111, 22.84, -13.93, 6.5E-4, 112, 13.97, -4.27, 0.99935, 2, 111, 21.65, -13.17, 0.00523, 112, 12.64, -4.76, 0.99477, 2, 111, 19.3, -11.67, 0.05069, 112, 10.02, -5.72, 0.94931, 2, 111, 15.41, -11.21, 0.30148, 112, 7.3, -8.53, 0.69852, 2, 111, 11.6, -13.54, 0.58258, 112, 6.84, -12.97, 0.41742, 2, 111, 7.31, -15.08, 0.68548, 112, 5.47, -17.32, 0.31452, 3, 110, 26.66, -6.96, 0.00182, 111, 5.06, -12.15, 0.74504, 112, 1.77, -17.33, 0.25314, 3, 110, 22.86, -4.98, 0.07874, 111, 3.11, -8.33, 0.83705, 112, -2.45, -16.56, 0.08421, 3, 110, 22.48, -8.77, 0.22656, 111, 0.6, -11.2, 0.7626, 112, -1.7, -20.3, 0.01084, 3, 110, 20.69, -11.11, 0.25939, 111, -2.22, -12.06, 0.73759, 112, -2.72, -23.06, 0.00302, 3, 110, 18.73, -9.94, 0.29303, 111, -3.13, -9.97, 0.70455, 112, -4.93, -22.52, 0.00242, 3, 110, 15.41, -7.34, 0.58146, 111, -4.33, -5.93, 0.4183, 112, -8.87, -21.02, 2.5E-4, 2, 110, 13.23, -6.82, 0.83366, 111, -5.8, -4.24, 0.16634, 1, 110, 7.3, -6.08, 1, 1, 110, 2.8, -4.38, 1, 1, 110, -2.23, -1, 1, 1, 110, -5.08, 0.92, 1, 1, 110, -3.79, 2.83, 1, 1, 110, -1.88, 5.67, 1, 1, 110, -0.35, 5.22, 1, 1, 110, 2.54, 4.22, 1, 2, 110, 7.49, 3.2, 0.97536, 111, -4.66, 7.25, 0.02464, 2, 110, 10.2, 5.28, 0.67248, 111, -1.25, 7.37, 0.32752, 2, 110, 10.05, 10.44, 0.22181, 111, 1.63, 11.66, 0.77819, 2, 110, 8.57, 12.74, 0.14219, 111, 1.75, 14.4, 0.85781, 2, 110, 5.02, 15.92, 0.11198, 111, 0.71, 19.05, 0.88802, 2, 110, 7, 18.86, 0.10834, 111, 4.02, 20.29, 0.89166, 2, 110, 10.54, 18.79, 0.10245, 111, 6.87, 18.18, 0.89755, 2, 110, 17.16, 18.31, 0.05396, 111, 11.98, 13.95, 0.94604, 2, 110, 23.16, 17.45, 0.00853, 111, 16.37, 9.77, 0.99147, 2, 111, 20.58, 5.58, 0.93033, 112, -2.92, 5.76, 0.06967, 2, 111, 24.99, -0.33, 0.12003, 112, 4.46, 5.68, 0.87997, 1, 112, 10.5, 3.86, 1, 1, 112, 16.42, 2.08, 1, 1, 112, 22.96, 0.11, 1, 3, 110, 15.09, -0.19, 0.83798, 111, -0.44, 0.08, 0.16201, 112, -11.29, -14.28, 1.0E-5, 2, 111, 18.65, -0.57, 0.12676, 112, 0.8, 0.5, 0.87324, 1, 110, 2.32, 1.82, 1, 1, 110, -1.07, 2.4, 1, 2, 110, 7.35, 1.15, 0.99597, 111, -5.97, 5.66, 0.00403, 2, 110, 11.73, 0.35, 0.99141, 111, -2.86, 2.47, 0.00859, 2, 111, 3.56, -0.05, 0.99993, 112, -8.76, -11.18, 7.0E-5, 2, 111, 10.4, -0.29, 0.99588, 112, -4.43, -5.89, 0.00412, 2, 111, 7.63, -0.19, 0.99891, 112, -6.18, -8.03, 0.00109, 2, 111, 16.2, -0.48, 0.81791, 112, -0.75, -1.4, 0.18209, 1, 112, 8.07, 0.37, 1, 1, 112, 12.33, 0.3, 1, 1, 112, 18.16, 0.2, 1 ],
  250. "hull": 37,
  251. "edges": [ 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 34, 36, 32, 34, 32, 30, 30, 28, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 4, 2, 0, 72, 2, 0, 28, 26, 36, 38, 38, 40, 44, 78, 78, 32, 40, 42, 42, 44, 38, 80, 80, 78, 42, 80, 80, 34, 82, 78, 46, 82, 82, 30, 74, 84, 84, 82, 28, 84, 84, 48, 74, 86, 50, 86, 86, 18, 12, 88, 88, 60, 86, 90, 90, 88, 58, 90, 90, 14, 76, 92, 92, 88, 62, 92, 92, 10, 8, 76, 76, 64, 94, 76, 66, 94, 4, 6, 6, 8, 94, 6, 96, 94, 4, 96, 66, 68, 96, 68, 68, 70, 70, 72, 72, 98, 98, 96, 70, 98, 98, 2 ],
  252. "width": 46,
  253. "height": 34
  254. }
  255. },
  256. "l_cibang5": {
  257. "l_cibang5": {
  258. "type": "mesh",
  259. "uvs": [ 0.83321, 0.14563, 0.88889, 0.22165, 0.99999, 0.35383, 0.92844, 0.43486, 0.91979, 0.47953, 0.90814, 0.53964, 0.88273, 0.63691, 0.70749, 0.6646, 0.67661, 0.71664, 0.63119, 0.79299, 0.5894, 0.86357, 0.60464, 1, 0.49731, 1, 0.4294, 1, 0.29487, 0.88818, 0.16654, 0.78152, 0.12714, 0.69048, 0.07511, 0.57024, 0, 0.49845, 0, 0.40614, 0.07511, 0.34665, 0.24083, 0.37742, 0.3401, 0.33603, 0.41416, 0.30152, 0.40246, 0.25006, 0.38802, 0.18659, 0.34559, 0, 0.57159, 0, 0.74559, 0, 0.62778, 0.33651, 0.22874, 0.56932, 0.42179, 0.87891, 0.35467, 0.77127, 0.34994, 0.49721, 0.45087, 0.43968, 0.65809, 0.26889, 0.63836, 0.20757, 0.56267, 0.37443, 0.30098, 0.68517 ],
  260. "triangles": [ 25, 26, 27, 36, 27, 28, 36, 28, 0, 25, 27, 36, 36, 0, 1, 24, 25, 36, 35, 36, 1, 24, 36, 35, 23, 24, 35, 29, 23, 35, 35, 1, 2, 37, 23, 29, 22, 23, 37, 3, 35, 2, 29, 35, 3, 34, 22, 37, 21, 22, 34, 4, 29, 3, 37, 29, 4, 33, 21, 34, 19, 20, 21, 33, 19, 21, 19, 17, 18, 5, 37, 4, 34, 37, 5, 33, 30, 19, 30, 17, 19, 6, 34, 5, 33, 34, 6, 7, 33, 6, 30, 33, 7, 38, 30, 7, 16, 17, 30, 16, 30, 38, 8, 38, 7, 32, 38, 8, 15, 16, 38, 15, 38, 32, 9, 32, 8, 9, 31, 32, 10, 31, 9, 14, 15, 32, 14, 32, 31, 12, 13, 31, 14, 31, 13, 10, 12, 31, 12, 10, 11 ],
  261. "vertices": [ 2, 98, 3.84, 4.55, 0.99995, 99, -7.05, -1.77, 5.0E-5, 2, 98, 6.97, 5.19, 0.92497, 99, -5.67, 1.1, 0.07503, 3, 98, 12.45, 6.58, 0.36448, 99, -3.47, 6.32, 0.63117, 100, -2.91, 17.84, 0.00434, 3, 98, 15.3, 4.55, 0.10978, 99, -0.13, 7.36, 0.85464, 100, -0.35, 15.46, 0.03558, 3, 98, 16.98, 4.06, 0.03157, 99, 1.27, 8.42, 0.89358, 100, 1.26, 14.76, 0.07486, 3, 98, 19.25, 3.41, 0.00233, 99, 3.16, 9.83, 0.855, 100, 3.42, 13.83, 0.14267, 2, 99, 6.3, 12.02, 0.75384, 100, 6.88, 12.18, 0.24616, 2, 99, 9.6, 10.05, 0.52743, 100, 6.81, 8.34, 0.47257, 2, 99, 11.53, 10.95, 0.27857, 100, 8.55, 7.12, 0.72143, 2, 99, 14.36, 12.28, 0.07737, 100, 11.1, 5.31, 0.92263, 2, 99, 16.97, 13.5, 0.00908, 100, 13.47, 3.65, 0.99092, 1, 100, 18.64, 2.36, 1, 1, 100, 17.96, 0.21, 1, 1, 100, 17.53, -1.15, 1, 1, 100, 12.52, -2.54, 1, 1, 100, 7.75, -3.86, 1, 1, 100, 4.11, -3.58, 1, 2, 99, 15.92, -2.19, 0.32836, 100, -0.69, -3.22, 0.67164, 2, 99, 14.94, -5.25, 0.80524, 100, -3.83, -3.88, 0.19476, 2, 99, 12.3, -7.7, 0.97072, 100, -7.27, -2.8, 0.02928, 2, 99, 9.52, -8.12, 0.99929, 100, -9.01, -0.6, 7.1E-4, 2, 98, 10.57, -9.28, 0.00227, 99, 8.04, -4.75, 0.99773, 2, 98, 9.34, -6.94, 0.06512, 99, 5.44, -4.32, 0.93488, 2, 98, 8.29, -5.18, 0.31601, 99, 3.39, -4.09, 0.68399, 2, 98, 6.27, -5.07, 0.70973, 99, 2.09, -5.64, 0.29027, 2, 98, 3.78, -4.93, 0.9348, 99, 0.48, -7.54, 0.0652, 1, 98, -3.54, -4.54, 1, 1, 98, -2.71, 0.14, 1, 1, 98, -2.07, 3.74, 1, 2, 99, 1.35, 0.13, 0.99992, 100, -5.9, 10.59, 8.0E-5, 2, 99, 13.7, 0.15, 0.16128, 100, 0.25, -0.13, 0.83872, 2, 99, 19.8, 11.33, 7.0E-5, 100, 12.98, 0.11, 0.99993, 2, 99, 17.68, 7.44, 1.4E-4, 100, 8.55, 0.03, 0.99986, 2, 99, 9.91, 0.1, 0.99743, 100, -1.67, 3.14, 0.00257, 2, 99, 6.82, 0.13, 0.99913, 100, -3.18, 5.84, 8.7E-4, 1, 98, 7.93, 0.09, 1, 1, 98, 5.51, 0.1, 1, 2, 99, 3.36, 0.13, 0.99973, 100, -4.9, 8.84, 2.7E-4, 1, 100, 5.01, -0.04, 1 ],
  262. "hull": 29,
  263. "edges": [ 42, 40, 40, 38, 36, 38, 36, 34, 22, 20, 14, 12, 6, 4, 0, 56, 52, 54, 54, 56, 22, 24, 24, 26, 26, 28, 28, 30, 24, 62, 28, 62, 62, 20, 64, 62, 30, 64, 18, 20, 64, 18, 14, 60, 60, 34, 66, 60, 38, 66, 66, 12, 68, 66, 42, 68, 10, 12, 68, 10, 46, 58, 58, 6, 46, 48, 70, 58, 48, 70, 70, 4, 48, 50, 50, 52, 54, 72, 72, 70, 50, 72, 0, 2, 2, 4, 72, 2, 42, 44, 44, 46, 58, 74, 74, 68, 44, 74, 6, 8, 8, 10, 74, 8, 30, 32, 32, 34, 60, 76, 76, 64, 32, 76, 14, 16, 16, 18, 76, 16 ],
  264. "width": 21,
  265. "height": 39
  266. }
  267. },
  268. "l_jiao": {
  269. "l_jiao": {
  270. "type": "mesh",
  271. "uvs": [ 0.4882, 0.2335, 0.55891, 0.26629, 0.614, 0.29925, 0.69265, 0.34635, 0.80415, 0.43431, 0.91688, 0.50131, 1, 0.70539, 0.91365, 0.87114, 0.83096, 0.88251, 0.64474, 0.88649, 0.46333, 0.84079, 0.35988, 0.74259, 0.08308, 0.68774, 0, 0.41879, 0, 0.1126, 0, 0, 0.21805, 0, 0.41552, 0, 0.36532, 0.49687, 0.53078, 0.42487, 0.62623, 0.54087, 0.31903, 0.34068, 0.726, 0.68618 ],
  272. "triangles": [ 8, 9, 22, 9, 10, 22, 7, 8, 6, 5, 6, 8, 10, 20, 22, 20, 11, 19, 20, 10, 11, 11, 18, 19, 11, 12, 18, 8, 22, 5, 18, 13, 21, 18, 12, 13, 22, 4, 5, 22, 20, 4, 20, 19, 3, 20, 3, 4, 3, 19, 2, 1, 19, 18, 1, 18, 21, 19, 1, 2, 0, 1, 21, 13, 14, 21, 14, 16, 21, 21, 17, 0, 21, 16, 17, 14, 15, 16 ],
  273. "vertices": [ 3, 90, 3.81, 4.25, 0.42855, 91, 4.89, 3.63, 0.54916, 92, -3.05, 2.18, 0.02229, 3, 90, 4.89, 5.55, 0.13969, 91, 6, 2.36, 0.62714, 92, -1.47, 2.76, 0.23317, 4, 90, 5.87, 6.52, 0.03786, 91, 6.8, 1.24, 0.38783, 92, -0.13, 3.11, 0.57294, 93, -4.55, 1.7, 0.00137, 4, 90, 7.27, 7.9, 6.0E-4, 91, 7.94, -0.37, 0.08075, 92, 1.78, 3.6, 0.82255, 93, -2.91, 2.79, 0.09611, 2, 92, 4.77, 3.98, 0.34147, 93, -0.21, 4.14, 0.65853, 2, 92, 7.5, 4.69, 0.06136, 93, 2.13, 5.71, 0.93864, 1, 93, 6.59, 5.43, 1, 1, 93, 8.64, 2.2, 1, 1, 93, 7.99, 0.49, 1, 3, 91, 2.26, -9.62, 0.10103, 92, 8.37, -5.03, 0.00408, 93, 6.16, -3.17, 0.89489, 4, 90, 15.28, 0.21, 0.0023, 91, -0.92, -7.05, 0.42121, 92, 4.82, -7.08, 0.04633, 93, 3.49, -6.28, 0.53016, 4, 90, 12.74, -1.4, 0.13156, 91, -2.11, -4.29, 0.60874, 92, 1.82, -7.19, 0.04159, 93, 0.69, -7.38, 0.21811, 3, 90, 9.93, -6.91, 0.84575, 91, -7.1, -0.63, 0.1535, 93, -3.12, -12.26, 7.5E-4, 2, 90, 4.25, -7.11, 0.99763, 91, -6.39, 5, 0.00237, 1, 90, -1.61, -5.33, 1, 1, 90, -3.77, -4.68, 1, 2, 90, -2.38, -0.09, 0.99937, 91, 1.59, 10.43, 6.3E-4, 2, 90, -1.12, 4.07, 0.92588, 91, 5.5, 8.53, 0.07412, 2, 90, 8.07, 0.14, 0.41327, 91, 0.15, 0.08, 0.58673, 2, 91, 4.05, -0.22, 0.09805, 92, 0.24, 0.02, 0.90195, 3, 91, 4.93, -3.22, 0.00928, 92, 3.36, -0.25, 0.78103, 93, -0.15, -0.31, 0.20969, 2, 90, 4.79, 0.06, 0.9943, 91, 0.6, 3.33, 0.0057, 1, 93, 3.44, 0.27, 1 ],
  274. "hull": 18,
  275. "edges": [ 28, 30, 28, 26, 26, 24, 22, 20, 14, 12, 34, 0, 6, 8, 8, 10, 10, 12, 22, 24, 18, 20, 30, 32, 32, 34, 36, 38, 38, 40, 14, 16, 16, 18, 32, 42, 42, 36, 26, 42, 42, 0, 24, 36, 0, 2, 36, 2, 2, 4, 4, 6, 4, 38, 38, 22, 6, 40, 40, 20, 16, 44, 44, 40, 8, 44, 44, 18, 10, 16 ],
  276. "width": 22,
  277. "height": 20
  278. }
  279. },
  280. "l_long": {
  281. "l_long": {
  282. "type": "mesh",
  283. "uvs": [ 0.07393, 0.60571, 0.07327, 0.5421, 0.09959, 0.38213, 0.15231, 0.27087, 0.23425, 0.18894, 0.24783, 0.19794, 0.32725, 0.25057, 0.30739, 0.30229, 0.29182, 0.34285, 0.28332, 0.37801, 0.29442, 0.39971, 0.30344, 0.42734, 0.32514, 0.44064, 0.34917, 0.44861, 0.38883, 0.44648, 0.43938, 0.43266, 0.50159, 0.40759, 0.59746, 0.33629, 0.67021, 0.27764, 0.76028, 0.25959, 0.84446, 0.25682, 0.89712, 0.25508, 0.89267, 0.30029, 0.88846, 0.34306, 0.86881, 0.35653, 0.82912, 0.38373, 0.76402, 0.43957, 0.72044, 0.52352, 0.66328, 0.65436, 0.59054, 0.75136, 0.51086, 0.88896, 0.35011, 0.96082, 0.20406, 0.9101, 0.11849, 0.78285, 0.035, 0.79798, 0.00857, 0.71208, 0.15512, 0.48038, 0.21755, 0.58921, 0.33925, 0.66477, 0.44727, 0.68566, 0.52325, 0.61549, 0.57875, 0.5247, 0.65746, 0.42959, 0.71984, 0.36238, 0.80147, 0.32962, 0.86077, 0.31101, 0.26745, 0.62523, 0.1785, 0.52455, 0.18732, 0.37055, 0.21523, 0.29095 ],
  284. "triangles": [ 49, 3, 4, 49, 4, 5, 49, 5, 6, 22, 20, 21, 7, 49, 6, 45, 20, 22, 44, 19, 20, 44, 20, 45, 8, 49, 7, 23, 45, 22, 24, 45, 23, 44, 45, 24, 43, 18, 19, 43, 19, 44, 17, 18, 43, 48, 3, 49, 48, 49, 8, 9, 48, 8, 2, 3, 48, 25, 44, 24, 42, 17, 43, 16, 17, 42, 25, 26, 43, 25, 43, 44, 42, 43, 26, 36, 2, 48, 36, 48, 9, 27, 42, 26, 47, 10, 11, 10, 36, 9, 10, 47, 36, 41, 16, 42, 41, 42, 27, 1, 2, 36, 1, 36, 47, 11, 12, 37, 11, 37, 47, 46, 37, 12, 0, 1, 47, 0, 47, 37, 41, 15, 16, 40, 15, 41, 13, 46, 12, 28, 41, 27, 40, 41, 28, 38, 46, 13, 40, 14, 15, 14, 39, 38, 38, 13, 14, 14, 40, 39, 29, 40, 28, 39, 40, 29, 33, 0, 37, 33, 37, 46, 35, 0, 33, 34, 35, 33, 30, 39, 29, 46, 38, 32, 46, 32, 33, 31, 38, 39, 31, 39, 30, 32, 38, 31 ],
  285. "vertices": [ 2, 89, 5, 6.46, 0.83327, 88, 11.2, 5.22, 0.16673, 2, 89, 7, 4.59, 0.96492, 88, 12.75, 2.96, 0.03508, 2, 89, 10.95, -1.23, 0.34071, 101, 4.84, 4.23, 0.65929, 2, 89, 12.36, -6.67, 0.00133, 101, 9.99, 1.98, 0.99867, 1, 101, 14.13, -2.06, 1, 1, 101, 13.85, -2.87, 1, 4, 88, 7.87, -15.36, 6.2E-4, 101, 12.24, -7.59, 0.99919, 82, 4.42, 18.68, 9.0E-5, 84, 0.19, 18.13, 9.0E-5, 5, 88, 7.56, -12.89, 0.00648, 87, 9.58, -14.59, 6.0E-4, 101, 9.88, -6.81, 0.98933, 82, 2.43, 17.19, 0.00198, 84, -2.16, 17.34, 0.00162, 5, 88, 7.32, -10.95, 0.02507, 87, 9.95, -12.67, 0.00414, 101, 8.03, -6.19, 0.95598, 82, 0.87, 16.02, 0.0082, 84, -4.01, 16.73, 0.0066, 5, 88, 6.88, -9.43, 0.06783, 87, 9.99, -11.09, 0.01536, 101, 6.47, -5.93, 0.87449, 82, -0.23, 14.88, 0.0235, 84, -5.42, 15.99, 0.01882, 6, 89, 2.85, -8.59, 4.9E-4, 88, 5.84, -9, 0.11738, 87, 9.14, -10.36, 0.03204, 101, 5.63, -6.68, 0.77049, 82, -0.09, 13.77, 0.04416, 84, -5.64, 14.89, 0.03543, 6, 89, 1.64, -8.13, 0.00353, 88, 4.76, -8.29, 0.1808, 87, 8.33, -9.35, 0.06247, 101, 4.53, -7.35, 0.60713, 82, -0.17, 12.48, 0.08065, 84, -6.12, 13.7, 0.06543, 6, 89, 0.39, -8.61, 0.00205, 88, 3.43, -8.49, 0.2192, 87, 7, -9.13, 0.105, 101, 4.13, -8.63, 0.41125, 82, 0.66, 11.43, 0.14196, 84, -5.67, 12.43, 0.12055, 6, 89, -0.79, -9.34, 7.0E-5, 88, 2.13, -8.95, 0.20213, 87, 5.62, -9.17, 0.13045, 101, 3.98, -10.01, 0.2635, 82, 1.71, 10.52, 0.20848, 84, -4.96, 11.24, 0.19536, 6, 88, 0.33, -10.26, 0.12775, 87, 3.5, -9.87, 0.10849, 101, 4.39, -12.2, 0.12929, 82, 3.74, 9.61, 0.27527, 83, 1.18, 9.73, 7.2E-4, 84, -3.32, 9.73, 0.35849, 7, 88, -1.7, -12.32, 0.05362, 87, 0.94, -11.21, 0.04367, 101, 5.38, -14.92, 0.0491, 82, 6.54, 8.87, 0.22514, 83, 3.6, 8.15, 0.00385, 84, -0.9, 8.15, 0.62383, 85, -7.86, 7.4, 7.9E-4, 6, 88, -4, -15.15, 0.01211, 87, -2.12, -13.2, 0.00456, 101, 6.94, -18.21, 0.01078, 82, 10.14, 8.28, 0.07006, 84, 2.32, 6.45, 0.84408, 85, -4.48, 6.03, 0.05841, 6, 88, -6.77, -20.68, 3.0E-5, 101, 10.73, -23.1, 2.0E-5, 82, 16.31, 8.62, 1.1E-4, 84, 8.29, 4.82, 0.17714, 85, 1.62, 5.01, 0.81307, 86, -5.9, 2.9, 0.00962, 2, 85, 6.37, 4.39, 0.48108, 86, -1.29, 4.21, 0.51892, 1, 86, 3.78, 3.57, 1, 1, 86, 8.34, 2.39, 1, 1, 86, 11.2, 1.65, 1, 1, 86, 10.42, -0.15, 1, 1, 86, 9.69, -1.85, 1, 2, 85, 12.84, -5.27, 3.3E-4, 86, 8.48, -2.11, 0.99967, 2, 85, 10.37, -4.77, 0.036, 86, 6.02, -2.62, 0.964, 3, 84, 11.74, -4.91, 0.01359, 85, 6.03, -4.33, 0.69525, 86, 1.85, -3.93, 0.29116, 3, 83, 11.97, -5.74, 0.02224, 84, 7.47, -5.74, 0.27043, 85, 1.86, -5.58, 0.70733, 5, 87, -13.72, -5.46, 6.7E-4, 82, 13.49, -5.26, 0.02367, 83, 5.73, -7.45, 0.45526, 84, 1.22, -7.45, 0.43371, 85, -4.18, -7.92, 0.08669, 5, 87, -10.94, -0.34, 0.08463, 82, 7.98, -7.17, 0.32833, 83, -0.1, -7.52, 0.55263, 84, -4.61, -7.52, 0.03402, 85, -9.97, -8.57, 3.9E-4, 4, 88, -15.91, 1.78, 5.0E-5, 87, -8.26, 6.57, 0.52414, 82, 1.34, -10.47, 0.37856, 83, -7.44, -8.55, 0.09725, 3, 88, -10.14, 9.35, 0.08776, 87, -0.44, 12, 0.88784, 82, -8.09, -9.2, 0.02441, 3, 89, -9.49, 10.25, 0.04826, 88, -2.12, 12.07, 0.36832, 87, 8.02, 12.14, 0.58342, 3, 89, -2.23, 9.93, 0.42886, 88, 4.9, 10.17, 0.45752, 87, 14.12, 8.18, 0.11362, 3, 89, 0.54, 13.75, 0.62598, 88, 8.43, 13.31, 0.36648, 87, 18.44, 10.08, 0.00754, 2, 89, 4.23, 12.26, 0.66414, 88, 11.71, 11.05, 0.33586, 2, 89, 5.74, -0.55, 0.48648, 101, 1.1, 0.55, 0.51352, 2, 89, -0.05, 0.16, 0.47158, 88, 4.9, 0.17, 0.52842, 5, 88, -2.57, -0.91, 7.1E-4, 87, 3.61, -0.08, 0.99732, 101, -5.3, -10.78, 2.4E-4, 82, -2.94, 2.45, 0.00143, 84, -11.92, 5.06, 3.0E-4, 3, 87, -2.45, -0.86, 0.05307, 82, 2.07, -1.05, 0.94097, 83, -3.78, 0.15, 0.00596, 3, 87, -5.72, -4.93, 0.00103, 82, 7.22, -0.26, 0.01159, 83, 1.36, -0.73, 0.98738, 2, 84, 1.82, -0.17, 0.99916, 85, -4.32, -0.6, 8.4E-4, 2, 84, 7.83, -0.39, 0.00832, 85, 1.68, -0.22, 0.99168, 2, 84, 12.34, -0.82, 0, 86, 0.38, -0.06, 1, 1, 86, 5.17, 0.04, 1, 1, 86, 8.58, -0.1, 1, 5, 88, 1.72, -0.09, 0.99371, 87, 7.95, -0.62, 0.00405, 101, -4.18, -6.56, 0.00126, 82, -5.78, 5.77, 6.4E-4, 84, -13.56, 9.11, 3.4E-4, 6, 89, 3.47, -0.19, 0.91743, 88, 8.27, -0.93, 4.7E-4, 87, 13.92, -3.42, 4.0E-5, 101, -0.6, -1.01, 0.08178, 82, -8.3, 11.87, 1.5E-4, 84, -14.03, 15.69, 1.2E-4, 5, 88, 11.53, -6.72, 0.00207, 87, 15.25, -9.93, 2.3E-4, 101, 6.03, -0.57, 0.99658, 82, -4.89, 17.57, 6.2E-4, 84, -8.99, 20.02, 5.0E-4, 5, 88, 12.13, -10.43, 0.00166, 87, 14.68, -13.65, 6.0E-5, 101, 9.63, -1.63, 0.99735, 82, -1.96, 19.94, 5.1E-4, 84, -5.47, 21.34, 4.1E-4 ],
  286. "hull": 36,
  287. "edges": [ 68, 66, 66, 64, 64, 62, 60, 58, 58, 56, 56, 54, 54, 52, 38, 36, 36, 34, 34, 32, 32, 30, 8, 6, 6, 4, 4, 2, 2, 0, 68, 70, 0, 70, 60, 62, 8, 10, 10, 12, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 42, 44, 44, 46, 88, 86, 38, 88, 50, 52, 88, 50, 46, 48, 48, 50, 44, 90, 90, 88, 48, 90, 38, 40, 40, 42, 90, 40, 36, 86, 86, 52, 34, 84, 84, 54, 32, 82, 82, 56, 30, 80, 80, 58, 28, 30, 28, 78, 78, 60, 24, 26, 26, 28, 26, 76, 76, 62, 74, 92, 92, 76, 24, 92, 92, 64, 22, 24, 22, 74, 74, 66, 2, 72, 72, 18, 72, 94, 94, 74, 0, 94, 18, 20, 20, 22, 94, 20, 96, 72, 4, 96, 16, 18, 96, 16, 10, 98, 98, 96, 6, 98, 12, 14, 14, 16, 98, 14 ],
  288. "width": 56,
  289. "height": 43
  290. }
  291. },
  292. "l_longtou": {
  293. "l_longtou": {
  294. "type": "mesh",
  295. "uvs": [ 0.95981, 0.07037, 0.90954, 0.25894, 0.86089, 0.31723, 0.95494, 0.41151, 0.93224, 0.65494, 0.85116, 0.83665, 0.7717, 0.95494, 0.53657, 0.89665, 0.39225, 1, 0.26738, 0.94123, 0.19603, 1, 0.1358, 0.94445, 0.05982, 0.87437, 0.06144, 0.77151, 0, 0.73723, 0, 0.61894, 0.08252, 0.50066, 0.23657, 0.28466, 0.38252, 0.20066, 0.34035, 0.07552, 0.32738, 0, 0.47819, 0, 0.61116, 0.09609, 0.6517, 0.21094, 0.74738, 0.13037, 0.87549, 0, 0.31484, 0.61268, 0.54663, 0.30914 ],
  296. "triangles": [ 19, 20, 21, 18, 19, 21, 18, 21, 22, 27, 18, 22, 0, 24, 25, 1, 24, 0, 23, 27, 22, 2, 24, 1, 23, 24, 2, 27, 26, 17, 27, 17, 18, 16, 17, 26, 4, 2, 3, 15, 13, 14, 26, 15, 16, 26, 13, 15, 27, 2, 4, 2, 27, 23, 27, 7, 26, 27, 4, 7, 5, 7, 4, 26, 11, 13, 9, 26, 7, 11, 12, 13, 26, 9, 11, 6, 7, 5, 10, 11, 9, 8, 9, 7 ],
  297. "vertices": [ -21.55, -9.22, -15.9, -5.34, -13.21, -4.92, -13.78, -0.16, -7.68, 5.85, -1.31, 8.82, 3.6, 10.13, 8.98, 2.99, 15.4, 2.36, 17.64, -2.18, 20.98, -2.28, 21.45, -5.2, 22.04, -8.89, 19.7, -11.62, 20.68, -13.99, 18.03, -17.18, 13.03, -18.4, 3.82, -20.57, -2.22, -19.38, -3.82, -23.74, -5.14, -26.08, -9.43, -22.51, -11.06, -16.78, -9.64, -12.73, -14.17, -12.63, -20.73, -13.11, 8.93, -9.89, -4.45, -12.57 ],
  298. "hull": 26,
  299. "edges": [ 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 0, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 24, 26, 28, 30, 26, 28, 20, 22, 22, 24, 22, 52, 52, 54, 54, 46 ],
  300. "width": 37,
  301. "height": 35
  302. }
  303. },
  304. "l_xiaba": {
  305. "l_xiaba": {
  306. "type": "mesh",
  307. "uvs": [ 1, 0.15905, 1, 0.25461, 0.92768, 0.49683, 0.82528, 0.7235, 0.65088, 0.87683, 0.47168, 1, 0.23968, 1, 0, 0.83016, 0, 0.60128, 0.14368, 0.60794, 0.29568, 0.65683, 0.46208, 0.57461, 0.54848, 0.43905, 0.70208, 0.21683, 0.79968, 0, 0.87488, 0 ],
  308. "triangles": [ 14, 15, 0, 0, 1, 14, 1, 13, 14, 2, 13, 1, 2, 12, 13, 3, 12, 2, 11, 12, 3, 7, 8, 9, 4, 11, 3, 10, 7, 9, 6, 7, 10, 10, 11, 4, 5, 10, 4, 6, 10, 5 ],
  309. "vertices": [ -7.93, 1.56, -6.79, 2.85, -2.55, 4.91, 2.08, 6.27, 7.17, 5.45, 11.99, 4.15, 16.34, 0.3, 18.8, -5.95, 16.07, -9.04, 13.46, -6.57, 11.2, -3.4, 7.1, -1.75, 3.87, -2.14, -1.66, -2.6, -6.07, -3.9, -7.48, -2.66 ],
  310. "hull": 16,
  311. "edges": [ 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 14, 16, 14, 12, 10, 12, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 28, 30, 0, 30 ],
  312. "width": 25,
  313. "height": 18
  314. }
  315. },
  316. "l_zui": {
  317. "l_zui": {
  318. "type": "mesh",
  319. "uvs": [ 1, 0.3505, 0.84082, 0.74479, 0.29719, 1, 0, 0.73907, 0, 0.2505, 0.18264, 0, 1, 0 ],
  320. "triangles": [ 5, 6, 0, 4, 1, 3, 5, 1, 4, 5, 0, 1, 2, 3, 1 ],
  321. "vertices": [ -3.71, 2.79, 2.57, 4.61, 13.9, -0.64, 16.38, -7.71, 11.85, -12.83, 6.51, -12.8, -6.96, -0.89 ],
  322. "hull": 7,
  323. "edges": [ 0, 12, 2, 0, 10, 12, 6, 8, 10, 8, 4, 6, 2, 4 ],
  324. "width": 22,
  325. "height": 14
  326. }
  327. },
  328. "meimao": {
  329. "meimao": { "x": -0.15, "y": -2.18, "rotation": -87.91, "width": 55, "height": 8 }
  330. },
  331. "qunzi": {
  332. "qunzi": {
  333. "type": "mesh",
  334. "uvs": [ 0.34433, 0.03623, 0.38232, 0.03525, 0.5707, 0.0304, 0.72516, 0.27336, 0.7835, 0.36513, 0.8447, 0.46141, 0.89972, 0.56406, 0.9987, 0.89212, 1, 1, 0.9327, 1, 0.82898, 0.94251, 0.69674, 0.8807, 0.56358, 0.81291, 0.44937, 0.7299, 0.33306, 0.64384, 0.22049, 0.50269, 0.2407, 0.37239, 0.3147, 0.13971, 0.9647, 0.78154, 0.5127, 0.32867, 0.66467, 0.53001, 0.73712, 0.63494, 0.87986, 0.82382, 0.5781, 0.42106, 0.80849, 0.73198, 0.93646, 0.68654, 0.93765, 0.90899 ],
  335. "triangles": [ 9, 26, 8, 26, 7, 8, 9, 10, 26, 10, 22, 26, 10, 11, 22, 7, 26, 18, 26, 22, 18, 18, 22, 25, 22, 24, 25, 7, 18, 25, 7, 25, 6, 11, 24, 22, 11, 12, 24, 12, 21, 24, 25, 24, 6, 24, 21, 6, 12, 13, 21, 13, 20, 21, 13, 14, 20, 14, 23, 20, 21, 5, 6, 21, 20, 5, 20, 4, 5, 14, 15, 23, 20, 23, 4, 15, 19, 23, 23, 3, 4, 23, 19, 3, 15, 16, 19, 16, 17, 19, 19, 17, 1, 17, 0, 1, 17, 16, 0, 19, 2, 3, 19, 1, 2 ],
  336. "vertices": [ 1, 17, -9.62, 0.82, 1, 1, 17, -8.72, 2.79, 1, 2, 17, -4.23, 12.55, 0.97005, 18, -18.01, 12.64, 0.02995, 3, 17, 15.57, 12.49, 0.15995, 18, 1.78, 12.15, 0.82144, 19, -11.95, 12.47, 0.01861, 4, 17, 23.05, 12.47, 0.00276, 18, 9.26, 11.97, 0.7893, 19, -4.48, 12.09, 0.20607, 20, -17.9, 11.71, 0.00188, 4, 18, 17.1, 11.78, 0.30168, 19, 3.36, 11.69, 0.62405, 20, -10.07, 11.27, 0.07138, 21, -21.15, 7.54, 0.0029, 4, 18, 25.19, 11.06, 0.02283, 19, 11.43, 10.76, 0.48422, 20, -2, 10.3, 0.42134, 21, -13.04, 8.01, 0.07161, 2, 20, 21.61, 3.39, 0, 21, 11.42, 5.38, 1, 1, 21, 18.87, 2.84, 1, 1, 21, 17.6, -0.78, 1, 3, 19, 33.55, -6.27, 0.00235, 20, 20.03, -6.84, 0.12014, 21, 11.68, -4.97, 0.87752, 4, 17, 54.5, -8.78, 0, 19, 25.92, -10.64, 0.0927, 20, 12.39, -11.17, 0.75662, 21, 4.92, -10.58, 0.15067, 4, 17, 46.68, -13.36, 0.00685, 18, 32.33, -14.37, 0.0025, 19, 17.9, -14.84, 0.37913, 20, 4.34, -15.33, 0.61152, 4, 17, 38.35, -16.47, 0.05692, 18, 23.93, -17.3, 0.05998, 19, 9.42, -17.55, 0.64314, 20, -4.15, -18, 0.23997, 4, 17, 29.76, -19.59, 0.21049, 18, 15.28, -20.23, 0.19606, 19, 0.7, -20.26, 0.54898, 20, -12.88, -20.66, 0.04447, 4, 17, 17.68, -20.72, 0.55041, 18, 3.17, -21.1, 0.21564, 19, -11.42, -20.81, 0.23389, 20, -25.01, -21.16, 5.0E-5, 3, 17, 9.68, -15.44, 0.84415, 18, -4.7, -15.65, 0.0826, 19, -19.16, -15.15, 0.07325, 1, 17, -3.62, -4.07, 1, 2, 20, 13.63, 5.69, 4.5E-4, 21, 3.16, 6.23, 0.99955, 3, 17, 13.76, -0.15, 0.42608, 18, -0.3, -0.44, 0.57368, 19, -14.35, -0.07, 2.5E-4, 3, 18, 16.75, 0.36, 0.00256, 19, 2.7, 0.29, 0.99707, 20, -10.78, -0.12, 3.7E-4, 3, 19, 11.4, 0.15, 0.80161, 20, -2.08, -0.31, 0.19785, 21, -11.24, -2.45, 5.4E-4, 1, 21, 4.47, 0.65, 1, 3, 17, 21.46, 0.17, 0.00318, 18, 7.41, -0.29, 0.99537, 19, -6.65, -0.12, 0.00145, 2, 19, 19.57, 0.23, 0.00199, 20, 6.09, -0.27, 0.99801, 3, 19, 20.25, 8.21, 0.01632, 20, 6.81, 7.71, 0.39073, 21, -3.92, 7.02, 0.59295, 1, 21, 11.43, 1.69, 1 ],
  337. "hull": 17,
  338. "edges": [ 34, 32, 32, 30, 30, 28, 28, 26, 16, 18, 0, 34, 10, 12, 16, 14, 36, 14, 12, 14, 32, 0, 0, 2, 2, 4, 2, 38, 40, 42, 4, 6, 38, 6, 28, 40, 40, 10, 38, 46, 46, 40, 30, 46, 6, 8, 8, 10, 46, 8, 26, 42, 42, 12, 22, 44, 44, 36, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 12, 50, 50, 36, 48, 50, 18, 20, 20, 22, 16, 52, 52, 44, 20, 52, 52, 14 ],
  339. "width": 57,
  340. "height": 73
  341. }
  342. },
  343. "qunzi2": {
  344. "qunzi2": {
  345. "type": "mesh",
  346. "uvs": [ 1, 0.0961, 0.89104, 0.11097, 0.86504, 0.26628, 0.81105, 0.42984, 0.72905, 0.60332, 0.59905, 0.74871, 0.51296, 0.80907, 0.42705, 0.86932, 0.32714, 0.92054, 0.23905, 0.96514, 0.03705, 1, 0, 1, 0, 0.85775, 0.03329, 0.75629, 0.06063, 0.67827, 0.08835, 0.58537, 0.11505, 0.49593, 0.19604, 0.34453, 0.26899, 0.21024, 0.34905, 0.10602, 0.37905, 0, 0.64624, 0, 1, 0, 0.23424, 0.74871, 0.35224, 0.5901, 0.49224, 0.29106, 0.58224, 0.14897, 0.10149, 0.90358, 0.42782, 0.43668, 0.29157, 0.67164, 0.17055, 0.82103 ],
  347. "triangles": [ 10, 27, 9, 27, 10, 12, 10, 11, 12, 27, 30, 9, 9, 30, 8, 30, 23, 8, 8, 23, 7, 30, 27, 13, 27, 12, 13, 23, 30, 14, 30, 13, 14, 23, 29, 7, 7, 29, 6, 29, 24, 6, 6, 24, 5, 4, 5, 28, 29, 23, 15, 23, 14, 15, 24, 29, 16, 5, 24, 28, 29, 15, 16, 4, 28, 3, 16, 17, 24, 24, 17, 28, 17, 18, 28, 3, 28, 25, 28, 18, 25, 25, 26, 3, 18, 19, 25, 3, 26, 2, 25, 19, 26, 2, 26, 1, 19, 20, 26, 26, 21, 1, 26, 20, 21, 0, 1, 22, 1, 21, 22 ],
  348. "vertices": [ 2, 12, -9.73, 20.61, 0.99875, 13, -18.54, 20.25, 0.00125, 3, 12, -6.29, 15.34, 0.96558, 13, -14.99, 15.05, 0.03336, 15, -42.63, 10.29, 0.00106, 4, 12, 4.11, 18.31, 0.62896, 13, -4.65, 18.22, 0.31135, 14, -15.02, 18.51, 0.02636, 15, -32.65, 14.48, 0.03332, 4, 12, 15.68, 20.05, 0.16895, 13, 6.88, 20.19, 0.45182, 14, -3.46, 20.26, 0.18426, 15, -21.38, 17.59, 0.19496, 4, 12, 28.52, 20.61, 0.00692, 13, 19.71, 21, 0.16464, 14, 9.38, 20.83, 0.22383, 15, -8.7, 19.67, 0.60461, 4, 13, 31.93, 18.51, 0.0179, 14, 21.55, 18.12, 0.02659, 15, 3.71, 18.41, 0.93566, 16, -12.29, 17.25, 0.01985, 4, 13, 37.78, 15.82, 0.00182, 14, 27.35, 15.31, 3.3E-4, 15, 9.8, 16.31, 0.87555, 16, -6.02, 15.78, 0.1223, 2, 15, 15.87, 14.22, 0.6077, 16, 0.23, 14.31, 0.3923, 2, 15, 21.81, 11.12, 0.222, 16, 6.46, 11.84, 0.778, 2, 15, 27.02, 8.37, 0.03425, 16, 11.92, 9.63, 0.96575, 1, 16, 20.7, 1.8, 1, 1, 16, 21.95, 0.1, 1, 2, 15, 27.59, -7.13, 5.8E-4, 16, 14.06, -5.74, 0.99942, 3, 14, 35.08, -11.16, 0.01507, 15, 20.6, -9.07, 0.12945, 16, 7.3, -8.37, 0.85548, 3, 14, 29.53, -11.91, 0.10057, 15, 15.18, -10.47, 0.48259, 16, 2.05, -10.32, 0.41683, 3, 14, 23.03, -13.06, 0.39021, 15, 8.86, -12.38, 0.55079, 16, -4.05, -12.86, 0.059, 4, 13, 27.75, -13.86, 0.00319, 14, 16.77, -14.17, 0.74658, 15, 2.77, -14.22, 0.24954, 16, -9.91, -15.3, 6.9E-4, 4, 12, 24.45, -14.4, 0.00225, 13, 16.33, -14.08, 0.18699, 14, 5.35, -14.18, 0.80977, 15, -8.57, -15.57, 0.001, 3, 12, 14.29, -14.33, 0.14356, 13, 6.18, -14.21, 0.58904, 14, -4.81, -14.13, 0.2674, 3, 12, 5.87, -13.06, 0.6272, 13, -2.27, -13.11, 0.34901, 14, -13.23, -12.86, 0.02379, 2, 12, -1.51, -14.45, 0.88953, 13, -9.62, -14.64, 0.11047, 1, 12, -7.66, -0.51, 1, 1, 12, -15.8, 17.93, 1, 2, 15, 14.31, 0.52, 0.47167, 16, 0.07, 0.53, 0.52833, 2, 13, 27.94, 1.14, 0, 15, 1.47, 0.73, 1, 3, 12, 14.26, -0.44, 4.2E-4, 13, 5.87, -0.32, 0.99918, 14, -4.86, -0.23, 4.0E-4, 2, 12, 3.22, 0.3, 0.99996, 15, -31.4, -3.51, 4.0E-5, 1, 16, 13.16, 0.8, 1, 3, 13, 16.52, 0.59, 8.2E-4, 14, 5.82, 0.48, 0.99341, 15, -9.83, -0.96, 0.00577, 1, 15, 8.07, 0.62, 1, 1, 16, 6.24, 0.58, 1 ],
  349. "hull": 23,
  350. "edges": [ 22, 24, 38, 40, 0, 44, 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 20, 22, 18, 20, 50, 52, 40, 42, 42, 44, 52, 42, 20, 54, 24, 54, 54, 18, 28, 46, 46, 14, 10, 48, 48, 32, 48, 56, 56, 50, 8, 56, 32, 34, 56, 34, 6, 50, 34, 36, 36, 38, 50, 36, 4, 52, 52, 38, 28, 30, 30, 32, 46, 58, 58, 48, 30, 58, 10, 12, 12, 14, 58, 12, 24, 26, 26, 28, 46, 60, 60, 54, 26, 60, 14, 16, 16, 18, 60, 16 ],
  351. "width": 57,
  352. "height": 69
  353. }
  354. },
  355. "qunzihou": {
  356. "qunzihou": {
  357. "type": "mesh",
  358. "uvs": [ 0.84212, 0.22561, 0.89288, 0.40384, 0.9413, 0.57381, 1, 0.77992, 1, 0.94908, 1, 1, 0.89976, 1, 0.44308, 1, 0.09273, 1, 0, 1, 0, 0.95092, 0.02235, 0.80801, 0.05713, 0.58557, 0.08003, 0.43916, 0.10646, 0.24623, 0.1487, 0, 0.36001, 0, 0.49936, 0, 0.6195, 0, 0.77786, 0, 0.46547, 0.60216, 0.45449, 0.79724, 0.44575, 0.95247, 0.48511, 0.25314, 0.47449, 0.44183, 0.30297, 0.24982, 0.25361, 0.44034, 0.20925, 0.59175, 0.14939, 0.80484, 0.10824, 0.95129, 0.68149, 0.238, 0.73417, 0.41825, 0.7839, 0.58319, 0.83784, 0.78507, 0.87133, 0.94987 ],
  359. "triangles": [ 8, 29, 7, 29, 8, 10, 8, 9, 10, 29, 28, 22, 10, 11, 29, 29, 11, 28, 11, 12, 28, 28, 12, 27, 27, 26, 20, 12, 13, 27, 27, 13, 26, 26, 25, 24, 13, 14, 26, 26, 14, 25, 14, 15, 25, 25, 16, 23, 25, 15, 16, 23, 17, 18, 23, 16, 17, 20, 24, 31, 20, 26, 24, 24, 23, 30, 24, 25, 23, 7, 22, 34, 7, 29, 22, 22, 21, 33, 22, 28, 21, 28, 27, 21, 21, 20, 32, 21, 27, 20, 6, 4, 5, 6, 7, 34, 6, 34, 4, 22, 33, 34, 4, 34, 3, 34, 33, 3, 21, 32, 33, 33, 2, 3, 33, 32, 2, 20, 31, 32, 32, 1, 2, 32, 31, 1, 31, 0, 1, 24, 30, 31, 31, 30, 0, 30, 23, 18, 30, 19, 0, 30, 18, 19 ],
  360. "vertices": [ 5, 74, 19.62, 12.43, 0.41334, 75, 4.02, 12.72, 0.44314, 76, -8.7, 13, 0.14351, 77, -24.31, 13.39, 1.0E-5, 22, 10.66, 28.04, 0, 4, 74, 31.37, 12.83, 0.04074, 75, 15.72, 13.89, 0.21724, 76, 3.02, 13.8, 0.67157, 77, -12.57, 14, 0.07044, 4, 74, 42.58, 13.22, 1.1E-4, 75, 26.87, 15, 0.00938, 76, 14.21, 14.56, 0.48399, 77, -1.38, 14.59, 0.50651, 2, 76, 27.77, 15.48, 0.03595, 77, 12.2, 15.3, 0.96405, 1, 77, 22.23, 12.24, 1, 1, 77, 25.25, 11.32, 1, 1, 77, 22.94, 3.74, 1, 4, 77, 12.42, -30.77, 0.01041, 24, 24.15, 0.25, 0.97368, 22, 61.09, 0.55, 0, 73, 5.03, 26.16, 0.01591, 4, 75, 36, -56.47, 0, 24, 26.43, -27.33, 0.00635, 22, 63.35, -27.04, 0, 73, 16.85, 1.14, 0.99365, 5, 75, 34.2, -63.57, 0, 77, 2.21, -64.25, 0, 24, 27.03, -34.64, 0, 22, 63.95, -34.34, 0, 73, 19.99, -5.49, 1, 4, 77, -0.7, -63.36, 0, 24, 23.99, -34.89, 0, 22, 60.92, -34.59, 0, 73, 17.23, -6.79, 1, 5, 77, -8.66, -59.09, 0, 22, 51.94, -33.55, 0, 71, 42.23, -8.67, 0.0077, 72, 23.68, -10.06, 0.04222, 73, 8.47, -8.98, 0.95008, 4, 22, 37.97, -31.94, 0, 71, 28.36, -10.94, 0.36328, 72, 9.7, -11.56, 0.50561, 73, -5.17, -12.39, 0.13111, 5, 22, 28.78, -30.88, 0, 64, 32.23, -13.7, 0.01164, 71, 19.22, -12.43, 0.92155, 72, 0.49, -12.55, 0.06543, 73, -14.15, -14.63, 0.00138, 3, 22, 16.68, -29.78, 0, 64, 20.17, -15.13, 0.26604, 71, 7.29, -14.68, 0.73396, 3, 22, 1.2, -27.7, 0, 64, 4.59, -16.32, 0.87722, 71, -8.18, -16.91, 0.12278, 1, 64, -0.21, -0.33, 1, 5, 74, -2.04, -9.01, 0.00578, 75, -16.2, -10.09, 0, 77, -45.59, -8.43, 0, 22, -1.07, -0.09, 0.98898, 64, -3.37, 10.21, 0.00525, 2, 74, 0.89, 0.02, 0.99675, 22, -1.84, 9.37, 0.00325, 3, 74, 4.75, 11.91, 0.9982, 75, -10.78, 11.24, 0.00176, 22, -2.86, 21.84, 4.0E-5, 6, 75, 19.33, -21.87, 0, 76, 5.51, -22.05, 2.5E-4, 77, -10.66, -21.88, 1.1E-4, 24, -0.57, -0.01, 0.43204, 23, 21.63, 0.08, 0.5676, 22, 36.36, 0.29, 0, 5, 75, 30.84, -25.68, 0, 76, 16.89, -26.23, 8.0E-5, 77, 0.66, -26.24, 9.9E-4, 24, 11.55, 0.12, 0.99893, 22, 48.49, 0.42, 0, 5, 75, 40, -28.72, 0, 77, 9.66, -29.71, 0.00575, 24, 21.2, 0.22, 0.98948, 22, 58.14, 0.52, 0, 73, 2.27, 25.09, 0.00476, 2, 23, -0.06, 0, 0.96196, 22, 14.67, 0.07, 0.03804, 6, 75, 9.87, -18.73, 2.7E-4, 76, -3.85, -18.62, 2.3E-4, 77, -19.96, -18.3, 0, 24, -10.54, -0.12, 5.0E-5, 23, 11.66, 0.04, 0.99945, 22, 26.4, 0.19, 0, 1, 71, 2.04, -0.06, 1, 7, 75, 5.49, -35.62, 0, 76, -8.76, -35.36, 0, 77, -25.14, -34.97, 0, 24, -9.2, -17.52, 6.5E-4, 23, 12.88, -17.37, 0.00781, 71, 14.47, 0.43, 0.94895, 72, -3.54, 0.56, 0.04259, 8, 75, 13.73, -41.33, 0, 76, -0.71, -41.33, 0, 77, -17.18, -41.06, 0, 24, 0.44, -20.24, 7.8E-4, 23, 22.51, -20.16, 1.7E-4, 71, 24.49, 0.45, 7.0E-5, 72, 6.47, 0.02, 0.99897, 73, -9.96, -1.36, 0, 4, 24, 14, -23.87, 6.0E-4, 71, 38.53, 0.66, 5.0E-5, 72, 20.49, -0.54, 3.6E-4, 73, 4, 0.01, 0.999, 3, 75, 33.37, -54.54, 0, 24, 23.32, -26.36, 0.00796, 73, 13.6, 0.95, 0.99204, 2, 75, 1.65, 0.23, 0.99981, 76, -11.47, 0.59, 1.9E-4, 4, 74, 28.35, 0.63, 0.00476, 75, 13.5, 1.51, 0.29397, 76, 0.42, 1.5, 0.70055, 77, -15.37, 1.75, 7.3E-4, 3, 75, 24.38, 2.81, 8.2E-4, 76, 11.33, 2.45, 0.89064, 77, -4.45, 2.52, 0.10855, 2, 76, 24.54, 3.08, 0.00682, 77, 8.77, 2.95, 0.99318, 1, 77, 19.31, 2.5, 1 ],
  361. "hull": 20,
  362. "edges": [ 18, 20, 6, 4, 42, 40, 20, 22, 22, 24, 14, 44, 44, 42, 6, 8, 8, 10, 28, 30, 34, 46, 0, 38, 0, 2, 2, 4, 40, 48, 48, 46, 24, 26, 26, 28, 30, 32, 32, 34, 28, 50, 50, 46, 32, 50, 26, 52, 52, 48, 50, 52, 24, 54, 54, 40, 52, 54, 22, 56, 56, 42, 54, 56, 20, 58, 58, 44, 56, 58, 14, 16, 16, 18, 58, 16, 34, 36, 36, 38, 0, 60, 60, 46, 36, 60, 2, 62, 62, 48, 60, 62, 4, 64, 64, 40, 62, 64, 6, 66, 66, 42, 64, 66, 8, 68, 68, 44, 66, 68, 10, 12, 12, 14, 68, 12 ],
  363. "width": 79,
  364. "height": 62
  365. }
  366. },
  367. "shangshen": {
  368. "shangshen": {
  369. "type": "mesh",
  370. "uvs": [ 0.69217, 0.04982, 0.70297, 0.10076, 0.71735, 0.16863, 1, 0.22557, 1, 0.41774, 0.8741, 0.65974, 0.86641, 0.72475, 0.85737, 0.8012, 0.8466, 0.89225, 0.8624, 0.99999, 0.41211, 1, 0.06561, 1, 0.06632, 0.91026, 0.06714, 0.80674, 0.0677, 0.73607, 0.06836, 0.65262, 0, 0.53162, 0, 0.38215, 0.21704, 0.15339, 0.27461, 0.0927, 0.27718, 0.04933, 0.28011, 0, 0.43411, 0, 0.6816, 0, 0.41984, 0.64849, 0.41646, 0.80192, 0.41401, 0.91343, 0.41808, 0.72843, 0.43064, 0.15761, 0.43205, 0.09326, 0.43301, 0.04966, 0.18211, 0.53243, 0.66236, 0.55076, 0.42651, 0.34519 ],
  371. "triangles": [ 30, 21, 22, 20, 21, 30, 30, 22, 23, 0, 30, 23, 29, 20, 30, 19, 20, 29, 29, 30, 0, 1, 29, 0, 28, 19, 29, 28, 29, 1, 18, 19, 28, 28, 1, 2, 33, 18, 28, 33, 28, 2, 2, 3, 4, 17, 31, 16, 18, 31, 17, 18, 33, 31, 32, 33, 2, 32, 2, 4, 15, 16, 31, 5, 32, 4, 24, 31, 33, 24, 33, 32, 15, 31, 24, 24, 32, 5, 6, 24, 5, 27, 15, 24, 27, 24, 6, 14, 15, 27, 7, 27, 6, 25, 14, 27, 25, 27, 7, 13, 14, 25, 8, 25, 7, 26, 13, 25, 26, 25, 8, 12, 13, 26, 10, 11, 12, 26, 10, 12, 10, 26, 8, 10, 8, 9 ],
  372. "vertices": [ 3, 2, 41.75, -14.87, 1.0E-5, 3, 28.68, -10.98, 0.15759, 4, 5.91, -11.22, 0.8424, 3, 2, 39.13, -15.19, 7.2E-4, 3, 26.13, -11.66, 0.30832, 4, 3.34, -11.8, 0.69097, 3, 2, 35.64, -15.62, 0.00846, 3, 22.73, -12.57, 0.61952, 4, -0.09, -12.58, 0.37201, 3, 2, 31.99, -27.86, 0.05155, 3, 20.83, -25.2, 0.89508, 4, -2.48, -25.12, 0.05337, 3, 2, 22.21, -27.27, 0.13055, 3, 11.06, -25.98, 0.85137, 4, -12.27, -25.53, 0.01807, 2, 2, 10.22, -21, 0.54257, 3, -1.69, -21.44, 0.45743, 2, 2, 6.93, -20.46, 0.69471, 3, -5.02, -21.37, 0.30529, 2, 2, 3.06, -19.83, 0.82975, 3, -8.94, -21.29, 0.17025, 2, 2, -1.54, -19.08, 0.93522, 3, -13.6, -21.18, 0.06478, 2, 2, -7.07, -19.45, 0.97515, 3, -19.02, -22.31, 0.02485, 1, 2, -5.88, 0.33, 1, 1, 2, -4.97, 15.55, 1, 2, 2, -0.4, 15.24, 0.99691, 3, -17.26, 12.97, 0.00309, 2, 2, 4.86, 14.89, 0.95333, 3, -11.99, 13.35, 0.04667, 2, 2, 8.46, 14.65, 0.8593, 3, -8.4, 13.61, 0.1407, 2, 2, 12.71, 14.37, 0.62509, 3, -4.15, 13.93, 0.37491, 2, 2, 19.05, 17, 0.2585, 3, 1.76, 17.42, 0.7415, 2, 2, 26.66, 16.54, 0.07806, 3, 9.36, 18.02, 0.92194, 2, 3, 21.75, 9.43, 0.69672, 4, -0.23, 9.45, 0.30328, 2, 3, 25.04, 7.16, 0.25845, 4, 2.96, 7.05, 0.74155, 2, 3, 27.25, 7.22, 0.06876, 4, 5.18, 7.03, 0.93124, 2, 3, 29.77, 7.29, 0.01183, 4, 7.7, 7, 0.98817, 1, 4, 7.98, 0.23, 1, 2, 3, 31.18, -10.32, 0.09673, 4, 8.43, -10.65, 0.90327, 2, 2, 11.99, -1.08, 0.9906, 3, -2.71, -1.47, 0.0094, 2, 2, 4.19, -0.47, 0.99961, 3, -10.52, -1.95, 3.9E-4, 1, 2, -1.48, -0.02, 1, 2, 2, 7.93, -0.76, 0.9975, 3, -6.78, -1.72, 0.0025, 2, 3, 22.29, 0.05, 0.53901, 4, -0.06, 0.05, 0.46099, 1, 4, 3.22, 0.13, 1, 1, 4, 5.45, 0.18, 1, 2, 2, 18.53, 9, 0.51583, 3, 2.36, 9.42, 0.48417, 3, 2, 16.33, -12.03, 0.60478, 3, 3.11, -11.71, 0.31602, 4, -19.67, -10.97, 0.0792, 3, 2, 27.41, -2.3, 0.37853, 3, 12.73, -0.53, 0.33664, 4, -9.62, -0.17, 0.28484 ],
  373. "hull": 24,
  374. "edges": [ 30, 32, 32, 34, 4, 6, 6, 8, 8, 10, 16, 18, 18, 20, 20, 22, 42, 44, 44, 46, 30, 48, 48, 10, 26, 50, 14, 16, 50, 14, 20, 52, 52, 50, 16, 52, 22, 24, 24, 26, 52, 24, 26, 28, 28, 30, 48, 54, 54, 50, 28, 54, 10, 12, 12, 14, 54, 12, 34, 36, 36, 38, 36, 56, 56, 4, 4, 2, 58, 56, 2, 58, 58, 38, 38, 40, 40, 42, 44, 60, 60, 58, 40, 60, 2, 0, 0, 46, 60, 0, 48, 66, 66, 56 ],
  375. "width": 44,
  376. "height": 51
  377. }
  378. },
  379. "tou": {
  380. "tou": { "x": 34.58, "y": -5.44, "rotation": -87.91, "width": 74, "height": 83 }
  381. },
  382. "toufa1": {
  383. "toufa1": {
  384. "type": "mesh",
  385. "uvs": [ 0.58989, 0.41725, 0.62622, 0.47244, 0.74438, 0.54898, 0.88522, 0.59273, 0.99999, 0.66262, 1, 0.79727, 0.77301, 0.85635, 0.64301, 0.90839, 0.74771, 0.948, 0.88517, 1, 0.49978, 1, 0.20375, 1, 0.16875, 0.96789, 0.11749, 0.89687, 0.25854, 0.81875, 0.40649, 0.77121, 0.4883, 0.73318, 0.47143, 0.68202, 0.32549, 0.63602, 0.00348, 0.54125, 0, 0.43649, 0.27133, 1.0E-5, 0.53498, 1.0E-5, 0.73874, 1.0E-5, 0.40766, 0.51994, 0.7285, 0.6435, 0.70126, 0.79261, 0.45115, 0.90907, 0.35246, 0.42593, 0.54409, 0.58321, 0.72885, 0.715, 0.53603, 0.84965, 0.47927, 0.96164 ],
  386. "triangles": [ 13, 14, 27, 27, 31, 7, 32, 27, 7, 32, 7, 8, 12, 13, 27, 12, 27, 32, 11, 12, 32, 10, 32, 8, 11, 32, 10, 10, 8, 9, 15, 16, 26, 26, 30, 5, 31, 15, 26, 14, 15, 31, 6, 26, 5, 31, 26, 6, 7, 31, 6, 27, 14, 31, 25, 2, 3, 17, 29, 25, 30, 25, 3, 16, 17, 25, 30, 3, 4, 30, 16, 25, 26, 16, 30, 30, 4, 5, 0, 22, 23, 28, 21, 22, 28, 22, 0, 20, 21, 28, 24, 28, 0, 24, 0, 1, 19, 20, 28, 19, 28, 24, 29, 24, 1, 29, 1, 2, 18, 19, 24, 18, 24, 29, 25, 29, 2, 17, 18, 29 ],
  387. "vertices": [ 1, 46, -2.88, 7.04, 1, 1, 46, 1.25, 5.62, 1, 2, 46, 7.57, 4.79, 0.93168, 47, -6.21, 2.81, 0.06832, 2, 46, 11.84, 5.55, 0.44228, 47, -2.43, 4.94, 0.55772, 3, 46, 17.68, 4.91, 0.00426, 47, 3.29, 6.27, 0.99012, 48, -8.93, 1.48, 0.00562, 2, 47, 13.67, 4.67, 0.12585, 48, 0.47, 6.18, 0.87415, 2, 48, 6.52, 4.38, 0.9914, 49, -1.15, 6.21, 0.0086, 2, 48, 11.25, 3.99, 0.31285, 49, 2.61, 3.31, 0.68715, 2, 48, 13.13, 7.15, 0.01195, 49, 5.9, 4.94, 0.98805, 1, 49, 10.22, 7.09, 1, 1, 49, 9.41, -0.19, 1, 1, 49, 8.79, -5.78, 1, 1, 49, 6.23, -6.16, 1, 2, 48, 14.91, -5.34, 0.00381, 49, 0.62, -6.52, 0.99619, 3, 47, 13.18, -9.51, 8.0E-4, 48, 8.26, -5.67, 0.63473, 49, -5.14, -3.18, 0.36447, 3, 47, 9.94, -6.17, 0.12877, 48, 3.69, -4.81, 0.84801, 49, -8.52, 0.02, 0.02322, 3, 46, 17.96, -6.26, 0.00107, 47, 7.25, -4.18, 0.68052, 48, 0.34, -4.75, 0.31841, 3, 46, 14.29, -4.67, 0.17039, 47, 3.26, -3.89, 0.82716, 48, -3.08, -6.82, 0.00246, 2, 46, 9.82, -5.42, 0.86157, 47, -0.71, -6.08, 0.13843, 1, 46, 0.41, -7.34, 1, 1, 46, -6.83, -3.56, 1, 1, 46, -34.44, 17.01, 1, 1, 46, -32.08, 21.43, 1, 1, 46, -30.26, 24.85, 1, 1, 46, 2.56, 0.21, 1, 2, 46, 13.93, 1.06, 0.00215, 47, 1.03, 1.4, 0.99785, 1, 48, 2.68, 0.94, 1, 1, 49, 2.26, -0.32, 1, 1, 46, -4.4, 2.74, 1, 2, 46, 8.14, 0.18, 0.99885, 47, -4.15, -1.35, 0.00115, 2, 47, 6.54, 0.55, 0.98946, 48, -2.97, -1.3, 0.01054, 1, 48, 8.06, 0.12, 1, 1, 49, 6.4, -0.24, 1 ],
  388. "hull": 24,
  389. "edges": [ 2, 4, 42, 40, 38, 40, 38, 36, 36, 34, 26, 24, 24, 22, 8, 10, 10, 12, 12, 14, 42, 44, 44, 46, 18, 20, 20, 22, 44, 56, 56, 48, 40, 56, 2, 0, 0, 46, 56, 0, 2, 48, 48, 38, 48, 58, 58, 50, 36, 58, 58, 4, 34, 50, 4, 6, 6, 8, 50, 6, 30, 32, 32, 34, 50, 60, 60, 52, 32, 60, 60, 8, 30, 52, 52, 10, 52, 62, 62, 54, 12, 62, 26, 28, 28, 30, 62, 28, 26, 54, 54, 14, 20, 64, 64, 54, 24, 64, 14, 16, 16, 18, 64, 16 ],
  390. "width": 19,
  391. "height": 78
  392. }
  393. },
  394. "toufa2": {
  395. "toufa2": {
  396. "type": "mesh",
  397. "uvs": [ 0.62799, 0.23786, 0.56996, 0.37173, 0.59313, 0.47327, 0.70017, 0.56641, 0.83903, 0.64331, 1, 0.75232, 1, 0.87472, 0.70186, 1, 0.51339, 1, 0.26924, 1, 0.39586, 0.89002, 0.4971, 0.81265, 0.40113, 0.73893, 0.11224, 0.65038, 0, 0.5496, 0, 0.38895, 0.19537, 0.22065, 0.37475, 0, 0.5767, 0, 0.78099, 0, 0.42656, 0.2318, 0.38722, 0.49797, 0.46067, 0.59852, 0.76535, 0.78753, 0.74025, 0.8862, 0.34597, 0.38781, 0.64218, 0.69515 ],
  398. "triangles": [ 7, 24, 6, 7, 8, 24, 9, 10, 8, 8, 10, 24, 10, 11, 24, 24, 23, 6, 24, 11, 23, 23, 5, 6, 11, 26, 23, 11, 12, 26, 23, 4, 5, 23, 26, 4, 12, 22, 26, 26, 3, 4, 26, 22, 3, 12, 13, 22, 13, 21, 22, 13, 14, 21, 22, 2, 3, 22, 21, 2, 14, 25, 21, 21, 1, 2, 14, 15, 25, 21, 25, 1, 15, 16, 25, 25, 20, 1, 25, 16, 20, 1, 20, 0, 20, 18, 0, 0, 18, 19, 16, 17, 20, 20, 17, 18 ],
  399. "vertices": [ 1, 51, -4.35, 6.3, 1, 2, 51, 6.49, 6.17, 0.94914, 52, -3.95, 9.18, 0.05086, 3, 51, 14.43, 8, 0.23403, 52, 3.9, 6.99, 0.72098, 53, -8.1, 9.01, 0.04498, 2, 52, 11.97, 7.31, 0.34034, 53, -0.23, 7.22, 0.65966, 1, 53, 7.11, 6.93, 1, 2, 53, 16.93, 5.68, 0.50837, 54, -0.91, 7.09, 0.49163, 3, 53, 24.91, 0.01, 5.3E-4, 54, 8.88, 7.35, 0.97056, 55, -5.26, 6.11, 0.02892, 1, 55, 7.91, 4.83, 1, 1, 55, 11.06, 0.36, 1, 1, 55, 15.15, -5.42, 1, 2, 54, 10.57, -10.13, 0.09543, 55, 5.84, -7.49, 0.90457, 4, 52, 28.39, -5.05, 0.008, 53, 12.41, -9, 0.08169, 54, 4.3, -7.36, 0.61272, 55, -0.91, -8.67, 0.29758, 4, 52, 21.9, -5.61, 0.20524, 53, 5.99, -7.85, 0.52249, 54, -1.52, -10.3, 0.25375, 55, -4.12, -14.34, 0.01852, 3, 52, 12.34, -11.01, 0.98081, 53, -4.64, -10.57, 0.01633, 54, -8.38, -18.86, 0.00285, 2, 51, 22.94, -8.14, 0.06769, 52, 3.65, -11.26, 0.93231, 2, 51, 10.22, -9.99, 0.90666, 52, -8.4, -6.8, 0.09334, 1, 51, -3.92, -6.31, 1, 1, 51, -22.13, -3.7, 1, 1, 51, -22.97, 2.09, 1, 1, 51, -23.82, 7.96, 1, 1, 51, -4, 0.45, 1, 3, 51, 17.24, 2.38, 0.01166, 52, 3.68, 0.7, 0.98658, 53, -9.95, 2.99, 0.00176, 2, 52, 11.96, -0.09, 0.99999, 54, -12.8, -8.87, 1.0E-5, 2, 53, 15.28, -1.49, 0.00547, 54, 2.09, 0.36, 0.99453, 2, 54, 10, -0.16, 0.11929, 55, -0.17, 0.49, 0.88071, 1, 51, 8.69, -0.07, 1, 4, 52, 21.04, 2.16, 6.4E-4, 53, 7.19, -0.12, 0.99677, 54, -5.21, -3.4, 0.00252, 55, -11.02, -10.65, 7.0E-5 ],
  400. "hull": 20,
  401. "edges": [ 38, 0, 0, 2, 6, 8, 8, 10, 10, 12, 12, 14, 34, 32, 32, 30, 28, 30, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 34, 36, 36, 38, 36, 40, 42, 44, 46, 48, 14, 16, 16, 18, 48, 16, 32, 40, 40, 0, 40, 50, 50, 42, 30, 50, 50, 2, 28, 42, 2, 4, 4, 6, 42, 4, 26, 44, 44, 6, 44, 52, 52, 46, 24, 52, 52, 8, 22, 46, 46, 10, 20, 48, 48, 12 ],
  402. "width": 29,
  403. "height": 80
  404. }
  405. },
  406. "toufa3": {
  407. "toufa3": {
  408. "type": "mesh",
  409. "uvs": [ 1, 0.28896, 1, 0.45122, 1, 0.56288, 1, 0.7042, 1, 0.84203, 1, 1, 0.47087, 1, 0, 1, 0, 0.82807, 0, 0.71467, 0, 0.57684, 0, 0.46169, 0, 0.30816, 0, 0, 0.48348, 0, 1, 0, 0.4729, 0.83856, 0.47616, 0.58035, 0.47959, 0.3082, 0.47453, 0.70959, 0.47783, 0.44766 ],
  410. "triangles": [ 6, 16, 5, 16, 4, 5, 6, 7, 16, 7, 8, 16, 16, 19, 4, 19, 3, 4, 19, 16, 9, 16, 8, 9, 9, 10, 19, 19, 17, 3, 19, 10, 17, 14, 18, 13, 18, 12, 13, 17, 2, 3, 17, 20, 2, 20, 17, 11, 17, 10, 11, 20, 1, 2, 11, 12, 20, 20, 18, 1, 18, 0, 1, 20, 12, 18, 18, 14, 0, 14, 15, 0 ],
  411. "vertices": [ 3, 37, 3.64, 41.63, 0.86555, 36, 23.58, 41.94, 0.04527, 38, -29.24, 43.07, 0.08919, 3, 37, 18.9, 41.81, 0.73434, 36, 38.82, 42.56, 0.0012, 38, -14, 42.53, 0.26446, 2, 37, 29.39, 41.94, 0.5489, 38, -3.51, 42.15, 0.4511, 2, 37, 42.67, 42.1, 0.28847, 38, 9.77, 41.68, 0.71153, 2, 37, 55.63, 42.25, 0.10274, 38, 22.71, 41.22, 0.89726, 2, 37, 70.48, 42.43, 0.02748, 38, 37.55, 40.69, 0.97252, 1, 38, 36.08, -0.56, 1, 3, 37, 71.41, -35.56, 0.00185, 36, 93.51, -33.29, 0.00399, 38, 34.77, -37.26, 0.99416, 3, 37, 55.25, -35.76, 0.05343, 36, 77.36, -33.95, 0.0349, 38, 18.62, -36.69, 0.91167, 3, 37, 44.59, -35.88, 0.15598, 36, 66.71, -34.38, 0.10269, 38, 7.97, -36.31, 0.74133, 3, 37, 31.64, -36.04, 0.29667, 36, 53.76, -34.9, 0.26952, 38, -4.98, -35.84, 0.43382, 3, 37, 20.81, -36.17, 0.30653, 36, 42.95, -35.34, 0.49197, 38, -15.8, -35.46, 0.2015, 3, 37, 6.38, -36.34, 0.14042, 36, 28.53, -35.92, 0.81889, 38, -30.22, -34.94, 0.04069, 1, 36, -0.41, -37.09, 1, 2, 37, -23.03, 1.02, 0.00976, 36, -1.94, 0.59, 0.99024, 3, 37, -23.52, 41.31, 0.78492, 36, -3.56, 40.85, 0.21435, 38, -56.39, 44.04, 7.3E-4, 2, 37, 55.79, 1.14, 1.0E-5, 38, 20.92, 0.14, 0.99999, 2, 37, 31.52, 1.1, 0.95009, 38, -3.33, 1.26, 0.04991, 2, 37, 5.94, 1.06, 0.99962, 38, -28.88, 2.44, 3.8E-4, 2, 37, 43.67, 1.12, 0.00275, 38, 8.81, 0.7, 0.99725, 2, 37, 19.05, 1.08, 0.99784, 38, -15.79, 1.84, 0.00216 ],
  412. "hull": 16,
  413. "edges": [ 26, 28, 28, 30, 10, 12, 12, 14, 24, 26, 14, 16, 12, 32, 16, 32, 10, 8, 32, 8, 20, 34, 34, 4, 28, 36, 24, 36, 0, 30, 36, 0, 16, 18, 18, 20, 32, 38, 38, 34, 18, 38, 4, 6, 6, 8, 38, 6, 20, 22, 22, 24, 34, 40, 40, 36, 22, 40, 0, 2, 2, 4, 40, 2 ],
  414. "width": 78,
  415. "height": 94
  416. }
  417. },
  418. "toufa4": {
  419. "toufa4": {
  420. "type": "mesh",
  421. "uvs": [ 0.79322, 0.11056, 0.81901, 0.18615, 0.81083, 0.28995, 0.78128, 0.41495, 0.79827, 0.44698, 0.8208, 0.48946, 0.86194, 0.53105, 0.90549, 0.57507, 0.94143, 0.60944, 1, 0.66543, 0.99852, 0.71219, 0.99636, 0.78058, 0.96586, 0.83077, 0.93449, 0.88238, 0.94549, 0.9048, 0.96261, 0.9397, 1, 0.96824, 1, 1, 0.89028, 1, 0.8208, 1, 0.80184, 0.97557, 0.77155, 0.93653, 0.7752, 0.89579, 0.77822, 0.86212, 0.80697, 0.80389, 0.83222, 0.75275, 0.82844, 0.71715, 0.82519, 0.68648, 0.77725, 0.66064, 0.71728, 0.62831, 0.65854, 0.57905, 0.61546, 0.54292, 0.60926, 0.46917, 0.60428, 0.40995, 0.61534, 0.298, 0.63702, 0.19952, 0.62383, 0.11056, 0.55686, 0, 0.63265, 0, 0.70064, 0, 0.6921, 0.11063, 0.69706, 0.2954, 0.68365, 0.40622, 0.72348, 0.50808, 0.83578, 0.59714, 0.9134, 0.67823, 0.89854, 0.76862, 0.85627, 0.87186, 0.71406, 0.19481, 0.87492, 0.94212, 0.88338, 0.97398, 0.86401, 0.90102, 0.87894, 0.81648, 0.90707, 0.71676, 0.87226, 0.63525, 0.77549, 0.54932, 0.70377, 0.45767 ],
  422. "triangles": [ 22, 47, 51, 51, 13, 14, 49, 51, 14, 49, 14, 15, 21, 22, 51, 49, 21, 51, 50, 49, 15, 50, 15, 16, 20, 21, 49, 20, 49, 50, 19, 20, 50, 18, 50, 16, 19, 50, 18, 18, 16, 17, 24, 25, 52, 52, 46, 12, 47, 24, 52, 23, 24, 47, 13, 52, 12, 47, 52, 13, 22, 23, 47, 51, 47, 13, 53, 27, 45, 53, 45, 10, 26, 27, 53, 25, 26, 53, 46, 25, 53, 11, 53, 10, 46, 53, 11, 52, 25, 46, 12, 46, 11, 44, 6, 7, 54, 44, 7, 54, 7, 8, 28, 29, 44, 28, 44, 54, 45, 54, 8, 45, 8, 9, 27, 28, 54, 27, 54, 45, 10, 45, 9, 55, 43, 5, 55, 5, 6, 30, 31, 43, 30, 43, 55, 44, 55, 6, 29, 30, 55, 29, 55, 44, 33, 34, 42, 42, 41, 3, 56, 42, 3, 56, 3, 4, 32, 33, 42, 32, 42, 56, 43, 56, 4, 43, 4, 5, 31, 32, 56, 31, 56, 43, 34, 35, 41, 42, 34, 41, 3, 41, 2, 36, 37, 38, 40, 38, 39, 40, 39, 0, 36, 38, 40, 48, 40, 0, 48, 0, 1, 35, 36, 40, 35, 40, 48, 2, 48, 1, 41, 35, 48, 41, 48, 2 ],
  423. "vertices": [ 1, 56, 1.56, 6.73, 1, 2, 56, 7.81, 8.23, 0.99841, 57, -7.9, 7.5, 0.00159, 3, 56, 16.3, 7.42, 0.56614, 57, 0.62, 7.81, 0.43337, 58, -5.93, 10.52, 4.9E-4, 4, 56, 26.48, 5.14, 0.00702, 57, 11.01, 6.89, 0.28853, 58, 3.47, 5.98, 0.70001, 59, -1.96, 9.05, 0.00444, 4, 56, 29.14, 6.17, 6.0E-5, 57, 13.52, 8.27, 0.06848, 58, 6.29, 6.39, 0.84253, 59, 0.56, 7.71, 0.08894, 3, 57, 16.83, 10.09, 0.0036, 58, 10.04, 6.92, 0.48929, 59, 3.91, 5.93, 0.50711, 3, 58, 14.04, 8.66, 0.0815, 59, 8.16, 4.99, 0.78536, 60, -2.77, 4.68, 0.13314, 3, 58, 18.27, 10.5, 0.00121, 59, 12.66, 3.98, 0.13267, 60, 1.84, 4.47, 0.86612, 1, 60, 5.52, 4.4, 1, 1, 60, 11.52, 4.28, 1, 3, 60, 14.34, 1.68, 0.76649, 61, 1.52, 5.22, 0.2294, 62, -7.46, 3.34, 0.00411, 3, 60, 18.47, -2.12, 0.13108, 61, 7.11, 5.75, 0.50015, 62, -2.22, 5.32, 0.36877, 3, 60, 20.24, -6.34, 0.00867, 61, 11.44, 4.25, 0.04322, 62, 2.35, 5.02, 0.94811, 2, 62, 7.06, 4.7, 0.76643, 63, 2.49, 5.44, 0.23357, 2, 62, 8.48, 6.07, 0.4019, 63, 4.41, 4.94, 0.5981, 2, 62, 10.7, 8.2, 0.07149, 63, 7.38, 4.16, 0.92851, 2, 62, 11.94, 11.37, 0.00211, 63, 10.73, 4.77, 0.99789, 1, 63, 12.83, 3.23, 1, 1, 63, 8.54, -2.61, 1, 1, 63, 5.83, -6.31, 1, 1, 63, 3.48, -6.13, 1, 1, 63, -0.29, -5.85, 1, 2, 62, 12.05, -4.62, 0.10961, 63, -2.84, -3.68, 0.89039, 3, 61, 15.48, -7.74, 0.00407, 62, 9.42, -5.48, 0.46141, 63, -4.95, -1.89, 0.53451, 3, 61, 10.51, -6.43, 0.17117, 62, 4.28, -5.52, 0.78684, 63, -7.67, 2.46, 0.04199, 3, 60, 9.62, -8.77, 0.00385, 61, 6.15, -5.28, 0.78565, 62, -0.23, -5.57, 0.2105, 4, 59, 16.02, -8.28, 0.00375, 60, 7.25, -7.03, 0.10649, 61, 3.28, -5.88, 0.88006, 62, -2.84, -6.9, 0.00969, 3, 59, 14.27, -6.46, 0.05093, 60, 5.22, -5.54, 0.42069, 61, 0.81, -6.4, 0.52838, 3, 59, 10.48, -6.8, 0.40021, 60, 1.54, -6.52, 0.4832, 61, -0.92, -9.79, 0.11658, 3, 59, 5.74, -7.22, 0.87649, 60, -3.06, -7.76, 0.11333, 61, -3.07, -14.04, 0.01018, 3, 58, 14.36, -5.33, 0.00773, 59, 0.18, -6.51, 0.99137, 60, -8.65, -8.01, 9.0E-4, 2, 58, 10.77, -7.31, 0.19403, 59, -3.89, -5.98, 0.80597, 2, 58, 4.82, -6.13, 0.8082, 59, -8.01, -1.53, 0.1918, 3, 57, 11.77, -4.77, 0.25791, 58, 0.04, -5.19, 0.73103, 59, -11.31, 2.04, 0.01106, 2, 56, 16.54, -5.5, 0.00394, 57, 2.56, -4.96, 0.99606, 2, 56, 8.52, -3.81, 0.94148, 57, -5.62, -4.34, 0.05852, 1, 56, 1.2, -4.44, 1, 1, 56, -8.01, -8.57, 1, 1, 56, -7.84, -3.57, 1, 1, 56, -7.7, 0.92, 1, 1, 56, 1.35, 0.06, 1, 2, 56, 16.5, -0.1, 0.02816, 57, 1.81, 0.38, 0.97184, 1, 58, 1.11, -0.06, 1, 2, 58, 9.85, 0.32, 0.91968, 59, -0.14, 0.71, 0.08032, 2, 60, 0.17, -0.19, 0.99914, 61, -6.55, -6.58, 8.6E-4, 2, 60, 8.55, -0.71, 0.4663, 61, -0.57, -0.7, 0.5337, 1, 61, 6.91, -0.78, 1, 3, 61, 15.65, -2.53, 2.7E-4, 62, 8.21, -0.4, 0.98554, 63, -1.26, 1.79, 0.01419, 1, 56, 8.3, 1.29, 1, 1, 63, 4.12, -0.62, 1, 1, 63, 6.55, -1.72, 1, 2, 62, 10.23, 0.97, 0.26036, 63, 0.97, 0.79, 0.73964, 3, 61, 10.96, -1.59, 0.02498, 62, 3.44, -0.74, 0.97444, 63, -4.03, 5.68, 5.8E-4, 1, 61, 2.62, -0.73, 1, 3, 59, 14.05, -1.24, 0.00277, 60, 4.1, -0.43, 0.97708, 61, -3.74, -3.82, 0.02014, 2, 58, 14.01, 2.76, 0.00962, 59, 4.66, 0.24, 0.99038, 2, 57, 15.01, 2.15, 5.4E-4, 58, 5.52, 0.13, 0.99946 ],
  424. "hull": 40,
  425. "edges": [ 74, 72, 68, 66, 78, 0, 0, 2, 2, 4, 4, 6, 32, 34, 30, 32, 74, 76, 76, 78, 76, 80, 82, 84, 34, 36, 36, 38, 72, 80, 80, 0, 80, 96, 96, 82, 2, 96, 68, 70, 70, 72, 96, 70, 68, 82, 82, 4, 66, 84, 84, 6, 62, 86, 86, 10, 58, 88, 88, 14, 54, 90, 90, 18, 50, 92, 92, 22, 46, 94, 94, 26, 42, 98, 98, 30, 36, 100, 100, 98, 32, 100, 38, 40, 40, 42, 100, 40, 42, 44, 44, 46, 94, 102, 102, 98, 44, 102, 26, 28, 28, 30, 102, 28, 46, 48, 48, 50, 92, 104, 104, 94, 48, 104, 22, 24, 24, 26, 104, 24, 50, 52, 52, 54, 90, 106, 106, 92, 52, 106, 18, 20, 20, 22, 106, 20, 54, 56, 56, 58, 88, 108, 108, 90, 56, 108, 14, 16, 16, 18, 108, 16, 58, 60, 60, 62, 86, 110, 110, 88, 60, 110, 10, 12, 12, 14, 110, 12, 62, 64, 64, 66, 84, 112, 112, 86, 64, 112, 6, 8, 8, 10, 112, 8 ],
  426. "width": 66,
  427. "height": 82
  428. }
  429. },
  430. "toufa5": {
  431. "toufa5": {
  432. "type": "mesh",
  433. "uvs": [ 1, 0.17844, 0.67188, 0.31696, 0.56738, 0.40659, 0.65729, 0.47778, 0.72688, 0.53288, 1, 0.63473, 1, 0.75967, 0.82038, 0.83436, 0.69288, 0.88584, 0.7363, 0.93829, 0.78738, 1, 0.57871, 1, 0.41888, 1, 0.27038, 0.93893, 0.23188, 0.8493, 0.36388, 0.77733, 0.43562, 0.72337, 0.46288, 0.66868, 0.22638, 0.60621, 0, 0.53152, 0, 0.39301, 0.14388, 0.27622, 0.31364, 0.12398, 0.45188, 0, 0.84421, 0, 1, 0, 0.43121, 0.29938, 0.31422, 0.50394, 0.52372, 0.58555, 0.74071, 0.73604, 0.46872, 0.87406, 0.64437, 0.14661, 0.26077, 0.40017, 0.73886, 0.66199, 0.63147, 0.80465, 0.52729, 0.94112 ],
  434. "triangles": [ 30, 34, 8, 13, 14, 30, 35, 30, 8, 13, 30, 35, 35, 8, 9, 12, 13, 35, 11, 35, 9, 12, 35, 11, 11, 9, 10, 34, 16, 29, 15, 16, 34, 34, 29, 7, 30, 15, 34, 14, 15, 30, 8, 34, 7, 33, 4, 5, 17, 28, 33, 29, 33, 5, 17, 33, 29, 16, 17, 29, 29, 5, 6, 7, 29, 6, 27, 2, 3, 19, 32, 27, 28, 27, 3, 28, 3, 4, 18, 19, 27, 18, 27, 28, 28, 4, 33, 17, 18, 28, 21, 22, 26, 26, 31, 1, 32, 21, 26, 20, 21, 32, 2, 26, 1, 32, 26, 2, 27, 32, 2, 19, 20, 32, 31, 23, 24, 22, 23, 31, 24, 25, 0, 31, 24, 0, 26, 22, 31, 1, 31, 0 ],
  435. "vertices": [ 1, 65, 2.99, 7.37, 1, 2, 65, 15.72, 4.74, 0.39485, 66, 0.79, 4.74, 0.60515, 2, 66, 8.33, 4.26, 0.86721, 67, -1.12, 6.14, 0.13279, 2, 66, 13.57, 7.26, 0.11667, 67, 4.88, 5.42, 0.88333, 3, 66, 17.63, 9.58, 0.00102, 67, 9.52, 4.87, 0.96794, 68, -4.63, 4.32, 0.03104, 2, 67, 19.29, 6.48, 0.02408, 68, 4.85, 7.14, 0.97592, 2, 68, 14.53, 4.19, 0.67968, 69, -0.55, 5.58, 0.32032, 3, 68, 19.27, -1.01, 0.01125, 69, 6.31, 4.04, 0.98142, 70, -2.85, 4.77, 0.00734, 2, 69, 11.07, 2.91, 0.20289, 70, 1.55, 2.64, 0.79711, 1, 70, 5.69, 3.93, 1, 1, 70, 10.57, 5.44, 1, 1, 70, 10.98, 1.29, 1, 1, 70, 11.3, -1.89, 1, 2, 69, 17.78, -3.78, 0.00295, 70, 6.67, -5.34, 0.99705, 2, 69, 11.12, -6.77, 0.47896, 70, -0.48, -6.83, 0.52104, 3, 68, 12.19, -8.4, 0.00447, 69, 4.76, -6.07, 0.97555, 70, -6.54, -4.78, 0.01998, 2, 68, 8.43, -5.75, 0.31254, 69, 0.16, -6.07, 0.68746, 3, 67, 17.41, -4.45, 0.06576, 68, 4.35, -3.94, 0.85188, 69, -4.22, -6.92, 0.08236, 2, 67, 10.85, -6.7, 0.88645, 68, -1.87, -6.98, 0.11355, 2, 66, 20.66, -4.64, 0.02787, 67, 3.48, -8.36, 0.97213, 2, 66, 9.7, -7.05, 0.96224, 67, -6.76, -3.77, 0.03776, 2, 65, 15.97, -6.32, 0.38012, 66, -0.16, -6.28, 0.61988, 1, 65, 3.2, -7.05, 1, 1, 65, -7.2, -7.64, 1, 1, 65, -9.71, -0.21, 1, 1, 65, -10.71, 2.74, 1, 1, 66, 0.44, -0.27, 1, 1, 67, 4.01, -1.71, 1, 2, 67, 11.76, -0.58, 0.9994, 68, -1.74, -0.81, 6.0E-4, 2, 68, 11.19, -0.21, 0.84243, 69, -0.76, 0.05, 0.15757, 2, 69, 11.56, -1.64, 0.17042, 70, 1.05, -1.91, 0.82958, 1, 65, 2.82, -0.19, 1, 2, 66, 9.14, -1.84, 0.9995, 67, -4.1, 0.75, 5.0E-4, 1, 68, 5.44, 1.5, 1, 1, 69, 5.2, -0.3, 1, 1, 70, 6.34, -0.21, 1 ],
  436. "hull": 26,
  437. "edges": [ 42, 40, 0, 50, 0, 2, 2, 4, 8, 10, 38, 40, 38, 36, 36, 34, 30, 28, 28, 26, 26, 24, 10, 12, 12, 14, 14, 16, 46, 48, 48, 50, 54, 56, 20, 22, 22, 24, 48, 62, 62, 52, 0, 62, 46, 44, 44, 42, 62, 44, 2, 52, 52, 42, 52, 64, 64, 54, 40, 64, 64, 4, 38, 54, 4, 6, 6, 8, 54, 6, 36, 56, 56, 8, 56, 66, 66, 58, 34, 66, 66, 10, 30, 32, 32, 34, 32, 58, 58, 12, 58, 68, 68, 60, 14, 68, 68, 30, 28, 60, 60, 16, 22, 70, 70, 60, 26, 70, 16, 18, 18, 20, 70, 18 ],
  438. "width": 20,
  439. "height": 81
  440. }
  441. },
  442. "toufa6": {
  443. "toufa6": {
  444. "type": "mesh",
  445. "uvs": [ 0.62082, 0.26481, 0.61685, 0.35003, 0.61314, 0.42948, 0.70733, 0.50182, 0.77451, 0.55341, 1, 0.6366, 1, 0.71324, 1, 0.79034, 0.75969, 0.85094, 0.64091, 0.89676, 0.62996, 0.93666, 0.83796, 1, 0.4064, 1, 0.22125, 1, 0.1804, 0.95183, 0.12903, 0.89125, 0.23661, 0.80297, 0.40815, 0.74812, 0.46602, 0.72961, 0.52861, 0.7096, 0.35188, 0.65867, 0, 0.56699, 1.0E-5, 0.43004, 0.01976, 0.33875, 0.03979, 0.24616, 0.30577, 0, 0.53613, 0, 0.86672, 0, 0.28429, 0.25018, 0.31482, 0.42171, 0.61234, 0.59595, 0.75745, 0.66157, 0.73455, 0.76611, 0.45982, 0.89762, 0.41963, 0.52807, 0.3009, 0.34352, 0.59434, 0.83322, 0.436, 0.94326, 0.74308, 0.72718 ],
  446. "triangles": [ 11, 12, 10, 12, 37, 10, 12, 13, 37, 13, 14, 37, 37, 14, 33, 37, 33, 10, 33, 14, 15, 10, 33, 9, 33, 36, 9, 15, 16, 33, 33, 16, 36, 9, 36, 8, 36, 32, 8, 8, 32, 7, 16, 17, 36, 36, 17, 32, 32, 38, 7, 17, 18, 32, 38, 6, 7, 32, 18, 38, 18, 19, 38, 38, 31, 6, 38, 19, 31, 31, 5, 6, 19, 30, 31, 31, 4, 5, 19, 20, 30, 31, 30, 4, 20, 34, 30, 30, 3, 4, 30, 34, 3, 20, 21, 34, 21, 29, 34, 21, 22, 29, 34, 2, 3, 34, 29, 2, 2, 29, 1, 29, 23, 35, 29, 22, 23, 29, 35, 1, 1, 35, 0, 23, 24, 35, 24, 28, 35, 35, 28, 0, 28, 26, 0, 0, 26, 27, 28, 25, 26, 28, 24, 25 ],
  447. "vertices": [ 3, 39, 14.37, 6.87, 0.40401, 40, 1.7, 6.66, 0.5956, 41, -12.32, 7.99, 4.0E-4, 3, 39, 21.57, 8.23, 0.00384, 40, 9.02, 6.59, 0.84967, 41, -5.09, 6.78, 0.14648, 4, 40, 15.86, 6.52, 0.12359, 41, 1.64, 5.64, 0.85227, 42, -7.83, 9.92, 0.02414, 43, -19.87, -2.87, 0, 3, 41, 8.07, 6.44, 0.57698, 42, -1.85, 7.43, 0.42301, 43, -13.65, -1.08, 1.0E-5, 3, 41, 12.65, 7.01, 0.0682, 42, 2.41, 5.65, 0.93178, 43, -9.21, 0.19, 3.0E-5, 3, 42, 10.67, 4.53, 0.39042, 43, -2.05, 4.48, 0.60954, 44, -11.61, -0.99, 3.0E-5, 2, 43, 4.54, 4.48, 0.77086, 44, -5.76, 2.05, 0.22914, 1, 44, 0.12, 5.11, 1, 1, 44, 6.85, 3.46, 1, 2, 44, 11.39, 3.28, 0.69611, 45, -0.4, 3.59, 0.30389, 2, 44, 14.53, 4.68, 0.05666, 45, 3.03, 3.92, 0.94334, 1, 45, 7.79, 8.67, 1, 1, 45, 9.07, 0.57, 1, 1, 45, 9.62, -2.9, 1, 2, 44, 19.63, -2.3, 0.00336, 45, 5.65, -4.31, 0.99664, 2, 44, 15.46, -5.57, 0.32803, 45, 0.65, -6.09, 0.67197, 3, 43, 12.25, -10.03, 0.02911, 44, 7.78, -7.26, 0.95719, 45, -7.17, -5.25, 0.0137, 3, 42, 11.13, -10.24, 0.00117, 43, 7.54, -6.77, 0.35391, 44, 2.09, -6.54, 0.64493, 4, 41, 26.7, -1.14, 0.00119, 42, 10.58, -8.39, 0.01686, 43, 5.95, -5.67, 0.60212, 44, 0.17, -6.3, 0.37983, 4, 41, 25.19, 0.3, 0.01126, 42, 9.98, -6.39, 0.10314, 43, 4.22, -4.48, 0.79582, 44, -1.91, -6.04, 0.08979, 3, 41, 20.34, -2.34, 0.26183, 42, 4.46, -6.27, 0.5334, 43, -0.16, -7.84, 0.20477, 2, 40, 27.68, -5.13, 7.8E-4, 41, 11.51, -7.71, 0.99922, 2, 40, 15.91, -5.13, 0.63188, 41, -0.13, -5.87, 0.36812, 1, 40, 8.05, -4.76, 1, 2, 39, 14.96, -4.27, 0.41639, 40, 0.09, -4.38, 0.58361, 1, 39, -6.79, -3.47, 1, 1, 39, -7.65, 0.82, 1, 1, 39, -8.88, 6.98, 1, 2, 39, 14.39, 0.35, 0.26369, 40, 0.44, 0.27, 0.73631, 3, 41, 0.1, 0.15, 0.99994, 42, -11.89, 5.91, 6.0E-5, 43, -20.53, -8.54, 0, 1, 42, 3.34, 0.96, 1, 3, 41, 21.79, 5.24, 2.2E-4, 42, 9.47, -0.41, 0.02876, 43, 0.09, -0.13, 0.97102, 1, 44, 0.6, -0.33, 1, 2, 44, 13.04, 0.26, 0.38993, 45, 0.21, 0.2, 0.61007, 3, 41, 9.44, 0.69, 0.91941, 42, -3.51, 1.75, 0.08058, 43, -11.39, -6.55, 2.0E-5, 2, 40, 8.47, 0.58, 0.99476, 41, -6.58, 0.93, 0.00524, 2, 43, 14.86, -3.23, 5.0E-5, 44, 6.95, -0.03, 0.99995, 1, 45, 4.16, 0.37, 1, 3, 41, 27.32, 4.09, 4.0E-5, 42, 13.7, -4.15, 9.2E-4, 43, 5.74, -0.4, 0.99903 ],
  448. "hull": 28,
  449. "edges": [ 54, 0, 8, 10, 50, 48, 42, 44, 42, 40, 40, 38, 32, 30, 14, 16, 16, 18, 18, 20, 20, 22, 50, 52, 52, 54, 52, 56, 60, 62, 22, 24, 24, 26, 48, 56, 56, 0, 44, 58, 58, 4, 58, 68, 68, 60, 42, 68, 4, 6, 6, 8, 68, 6, 8, 60, 60, 40, 44, 46, 46, 48, 56, 70, 70, 58, 46, 70, 0, 2, 2, 4, 70, 2, 38, 62, 62, 10, 32, 34, 34, 64, 64, 14, 64, 72, 72, 66, 32, 72, 72, 16, 30, 66, 66, 18, 24, 74, 74, 66, 20, 74, 26, 28, 28, 30, 74, 28, 34, 36, 36, 38, 62, 76, 76, 64, 36, 76, 10, 12, 12, 14, 76, 12 ],
  450. "width": 19,
  451. "height": 86
  452. }
  453. },
  454. "toufa7": {
  455. "toufa7": {
  456. "type": "mesh",
  457. "uvs": [ 0.91729, 0.11537, 1, 0.45071, 1, 0.65877, 0.93113, 1, 0.59127, 1, 0.59522, 0.80808, 0.59127, 0.67835, 0.57151, 0.54862, 0.47272, 0.4654, 0.33836, 0.42623, 0.18424, 0.46295, 0.13682, 0.59023, 0.10915, 0.86683, 0, 0.87417, 0, 0.42134, 0.05185, 0.23041, 0.13879, 0.11047, 0.30477, 0, 0.66833, 0, 0.94693, 0.2402 ],
  458. "triangles": [ 1, 19, 0, 8, 9, 17, 16, 17, 9, 15, 16, 9, 10, 14, 15, 9, 10, 15, 18, 8, 17, 19, 8, 18, 19, 18, 0, 7, 8, 19, 1, 7, 19, 11, 14, 10, 7, 1, 2, 6, 7, 2, 5, 6, 2, 11, 13, 14, 12, 13, 11, 3, 5, 2, 4, 5, 3 ],
  459. "vertices": [ 74.71, -42.14, 52.51, -49.82, 38.58, -50.33, 15.52, -45.45, 14.49, -17.26, 27.36, -17.12, 36.03, -16.47, 44.66, -14.52, 49.93, -6.12, 52.14, 5.12, 49.22, 17.82, 40.55, 21.44, 21.95, 23.06, 21.13, 32.09, 51.45, 33.2, 64.39, 29.36, 72.68, 22.45, 80.58, 8.95, 81.68, -21.21, 66.44, -44.9 ],
  460. "hull": 19,
  461. "edges": [ 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 38, 38, 0, 0, 36, 0, 2, 34, 36, 34, 32, 32, 30, 26, 28, 30, 28 ],
  462. "width": 83,
  463. "height": 67
  464. }
  465. },
  466. "youjiao": {
  467. "youjiao": {
  468. "type": "mesh",
  469. "uvs": [ 1, 0.31441, 1, 0.33511, 1, 0.35359, 1, 0.83611, 1, 0.85976, 1, 0.87785, 1, 1, 0, 1, 0, 0.95391, 0, 0.88947, 0.31621, 0.82752, 0.31543, 0.80952, 0.31463, 0.79109, 0.29573, 0.35657, 0.29483, 0.33588, 0.29389, 0.31441, 0.28022, 0, 0.61621, 0, 1, 0, 0.67621, 0.8523, 0.67513, 0.83697, 0.67358, 0.81492, 0.63984, 0.33569, 0.64122, 0.35528, 0.63836, 0.31453 ],
  470. "triangles": [ 7, 19, 6, 7, 8, 19, 8, 10, 19, 8, 9, 10, 19, 5, 6, 19, 4, 5, 4, 20, 3, 10, 20, 19, 4, 19, 20, 20, 11, 21, 20, 21, 3, 21, 2, 3, 20, 10, 11, 21, 12, 23, 21, 23, 2, 21, 11, 12, 12, 13, 23, 13, 22, 23, 13, 14, 22, 2, 23, 1, 23, 22, 1, 1, 22, 0, 14, 24, 22, 14, 15, 24, 22, 24, 0, 15, 17, 24, 0, 24, 18, 24, 17, 18, 15, 16, 17 ],
  471. "vertices": [ 2, 25, 15.62, 6.91, 0.69182, 26, -0.81, 6.9, 0.30818, 2, 25, 16.57, 6.84, 0.59145, 26, 0.14, 6.88, 0.40855, 2, 25, 17.42, 6.78, 0.49915, 26, 0.99, 6.86, 0.50085, 2, 26, 23.18, 6.36, 0.96725, 27, -6.72, -0.58, 0.03275, 2, 26, 24.27, 6.34, 0.91534, 27, -6.42, 0.47, 0.08466, 2, 26, 25.1, 6.32, 0.85298, 27, -6.2, 1.27, 0.14702, 2, 26, 30.72, 6.19, 0.44361, 27, -4.68, 6.68, 0.55639, 1, 27, 13.61, 1.55, 1, 1, 27, 13.04, -0.49, 1, 2, 26, 25.21, -12.69, 0, 27, 12.24, -3.35, 1, 2, 26, 22.49, -6.62, 0.33476, 27, 5.69, -4.47, 0.66524, 2, 26, 21.67, -6.61, 0.49905, 27, 5.48, -5.27, 0.50095, 2, 26, 20.82, -6.61, 0.62591, 27, 5.26, -6.09, 0.37409, 2, 25, 16.58, -6.58, 0.409, 26, 0.83, -6.52, 0.591, 2, 25, 15.63, -6.53, 0.54439, 26, -0.12, -6.51, 0.45561, 2, 25, 14.65, -6.47, 0.67848, 26, -1.11, -6.51, 0.32152, 1, 25, 0.2, -5.68, 1, 1, 25, 0.67, 0.69, 1, 1, 25, 1.2, 7.96, 1, 1, 26, 23.79, 0.19, 1, 1, 26, 23.08, 0.19, 1, 1, 26, 22.07, 0.18, 1, 2, 25, 16.1, 0.01, 0.01704, 26, 0.01, 0.04, 0.98296, 2, 25, 17, -0.03, 1.8E-4, 26, 0.92, 0.05, 0.99982, 1, 25, 15.13, 0.05, 1 ],
  472. "hull": 19,
  473. "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  474. "width": 19,
  475. "height": 46
  476. }
  477. },
  478. "youshou": {
  479. "youshou": {
  480. "type": "mesh",
  481. "uvs": [ 0.49273, 0.26125, 0.51863, 0.28339, 0.55756, 0.31668, 0.76489, 0.49393, 0.80295, 0.52647, 0.84328, 0.56094, 1, 0.69493, 1, 1, 0.69829, 1, 0.54974, 0.85113, 0.51851, 0.81984, 0.49329, 0.79457, 0.28441, 0.58525, 0.25935, 0.56014, 0.23495, 0.53569, 0, 0.30025, 0, 0, 0.18715, 0, 0.67097, 0.67491, 0.70192, 0.70549, 0.63591, 0.63964, 0.37664, 0.37885, 0.40555, 0.40793, 0.43474, 0.43729 ],
  482. "triangles": [ 8, 19, 7, 19, 6, 7, 19, 5, 6, 8, 9, 19, 9, 18, 19, 9, 10, 18, 10, 11, 18, 19, 4, 5, 19, 18, 4, 4, 18, 20, 11, 12, 20, 11, 20, 18, 20, 12, 23, 4, 20, 3, 23, 2, 20, 20, 2, 3, 12, 13, 23, 13, 22, 23, 13, 14, 22, 14, 21, 22, 23, 1, 2, 23, 22, 1, 22, 0, 1, 22, 21, 0, 14, 15, 21, 0, 21, 17, 17, 21, 16, 21, 15, 16 ],
  483. "vertices": [ 2, 9, 20.3, 9.42, 0.55818, 10, -0.5, 9.62, 0.44182, 2, 9, 21.93, 9.67, 0.417, 10, 1.14, 9.61, 0.583, 2, 9, 24.37, 10.05, 0.22845, 10, 3.62, 9.6, 0.77155, 2, 10, 16.79, 9.51, 0.66685, 11, -2.84, 9.46, 0.33315, 2, 10, 19.21, 9.5, 0.44271, 11, -0.43, 9.56, 0.55729, 2, 10, 21.77, 9.48, 0.22467, 11, 2.13, 9.66, 0.77533, 1, 11, 12.08, 10.05, 1, 1, 11, 22.78, -0.83, 1, 2, 10, 31.37, -11.4, 0.03107, 11, 12.67, -10.77, 0.96893, 2, 10, 21.2, -10.53, 0.41652, 11, 2.47, -10.36, 0.58348, 2, 10, 19.06, -10.35, 0.5791, 11, 0.33, -10.27, 0.4209, 2, 10, 17.34, -10.2, 0.70806, 11, -1.4, -10.2, 0.29194, 2, 9, 26.78, -8.37, 0.18392, 10, 3.04, -8.97, 0.81608, 2, 9, 25.06, -8.5, 0.32561, 10, 1.32, -8.83, 0.67439, 2, 9, 23.39, -8.63, 0.49208, 10, -0.35, -8.68, 0.50792, 1, 9, 7.3, -9.85, 1, 1, 9, -4.4, -0.43, 1, 1, 9, 1.12, 6.42, 1, 1, 11, 0.35, -0.08, 1, 2, 10, 21.65, -0.33, 0.00575, 11, 2.46, -0.15, 0.99425, 1, 10, 17.15, 0.04, 1, 2, 9, 21.46, 1.48, 0.68957, 10, -0.63, 1.6, 0.31043, 2, 9, 23.45, 1.62, 0.14959, 10, 1.35, 1.43, 0.85041, 2, 9, 25.45, 1.77, 0.03256, 10, 3.35, 1.25, 0.96744 ],
  484. "hull": 18,
  485. "edges": [ 32, 34, 14, 12, 30, 32, 14, 16, 20, 36, 36, 8, 16, 18, 18, 20, 14, 38, 38, 36, 18, 38, 8, 10, 10, 12, 38, 10, 20, 22, 40, 36, 22, 40, 8, 6, 40, 6, 28, 30, 32, 42, 28, 42, 0, 34, 42, 0, 26, 28, 44, 42, 26, 44, 0, 2, 44, 2, 22, 24, 24, 26, 40, 46, 46, 44, 24, 46, 2, 4, 4, 6, 46, 4 ],
  486. "width": 47,
  487. "height": 50
  488. }
  489. },
  490. "youyan": {
  491. "youyan": { "x": 6.59, "y": -1.47, "rotation": -92.2, "width": 20, "height": 18 }
  492. },
  493. "zuiba": {
  494. "zuiba": { "x": -0.94, "y": -1.2, "rotation": -87.91, "width": 15, "height": 7 }
  495. },
  496. "zuojiao": {
  497. "zuojiao": {
  498. "type": "mesh",
  499. "uvs": [ 1, 0.21544, 0.98656, 0.27464, 0.97697, 0.31692, 0.96846, 0.35441, 0.85932, 0.83527, 0.8553, 0.85297, 0.84838, 0.88344, 0.82193, 1, 0, 1, 0, 0.96544, 0, 0.90544, 0.30493, 0.83944, 0.30757, 0.80483, 0.30887, 0.78785, 0.34307, 0.3399, 0.34534, 0.3101, 0.34867, 0.26646, 0.36902, 0, 0.6852, 0, 1, 0, 0.59974, 0.85944, 0.60251, 0.83163, 0.6044, 0.8126, 0.65399, 0.31386, 0.65078, 0.34612, 0.65835, 0.27002 ],
  500. "triangles": [ 8, 20, 7, 8, 9, 20, 9, 11, 20, 9, 10, 11, 7, 20, 6, 20, 21, 6, 6, 21, 5, 21, 20, 12, 21, 22, 5, 5, 22, 4, 20, 11, 12, 3, 4, 24, 22, 21, 13, 4, 22, 24, 21, 12, 13, 13, 14, 22, 22, 14, 24, 24, 23, 3, 3, 23, 2, 14, 15, 24, 24, 15, 23, 23, 25, 2, 2, 25, 1, 15, 16, 23, 23, 16, 25, 1, 25, 0, 16, 17, 25, 25, 18, 0, 25, 17, 18, 18, 19, 0 ],
  501. "vertices": [ 2, 28, 10.22, 7.51, 0.91976, 29, -5, 7.3, 0.08024, 2, 28, 13.01, 7.25, 0.72931, 29, -2.2, 7.16, 0.27069, 2, 28, 14.99, 7.06, 0.50491, 29, -0.21, 7.06, 0.49509, 2, 28, 16.76, 6.9, 0.29609, 29, 1.56, 6.97, 0.70391, 2, 29, 24.26, 5.83, 0.97401, 30, -6.44, -1.79, 0.02599, 2, 29, 25.1, 5.78, 0.94417, 30, -6.2, -0.99, 0.05583, 2, 29, 26.54, 5.71, 0.84744, 30, -5.79, 0.39, 0.15256, 2, 29, 32.04, 5.43, 0.36485, 30, -4.2, 5.66, 0.63515, 1, 30, 13.57, 2.31, 1, 1, 30, 13.27, 0.71, 1, 1, 30, 12.75, -2.06, 1, 2, 29, 25.13, -6.34, 0.2915, 30, 5.58, -3.86, 0.7085, 2, 29, 23.51, -6.37, 0.59336, 30, 5.22, -5.45, 0.40664, 2, 29, 22.71, -6.39, 0.69177, 30, 5.04, -6.23, 0.30823, 2, 28, 16.25, -6.87, 0.30283, 29, 1.65, -6.8, 0.69717, 2, 28, 14.85, -6.84, 0.47139, 29, 0.25, -6.83, 0.52861, 2, 28, 12.8, -6.79, 0.71733, 29, -1.81, -6.87, 0.28267, 1, 28, 0.27, -6.5, 1, 1, 28, 0.18, 0.45, 1, 1, 28, 0.09, 7.38, 1, 1, 29, 25.71, 0.19, 1, 1, 29, 24.41, 0.18, 1, 1, 29, 23.51, 0.17, 1, 2, 28, 14.94, -0.04, 0.46366, 29, 0.04, -0.04, 0.53634, 2, 28, 16.46, -0.1, 8.6E-4, 29, 1.56, -0.03, 0.99914, 1, 28, 12.88, 0.02, 1 ],
  502. "hull": 20,
  503. "edges": [ 0, 38, 14, 16, 22, 20, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 46, 46, 4, 26, 28, 28, 30, 44, 48, 48, 46, 28, 48, 4, 6, 6, 8, 48, 6, 30, 32, 32, 34, 36, 50, 50, 46, 32, 50, 0, 2, 2, 4, 50, 2 ],
  504. "width": 22,
  505. "height": 47
  506. }
  507. },
  508. "zuoshou": {
  509. "zuoshou": {
  510. "type": "mesh",
  511. "uvs": [ 1, 0.27911, 0.76822, 0.501, 0.74374, 0.52417, 0.71765, 0.54675, 0.49483, 0.76537, 0.45897, 0.79861, 0.42941, 0.82476, 0.24617, 1, 0, 1, 0, 0.72136, 0.17693, 0.56102, 0.2088, 0.53214, 0.24011, 0.50634, 0.49116, 0.27654, 0.51606, 0.25369, 0.54551, 0.22853, 0.796, 0, 1, 0, 0.66028, 0.41323, 0.33665, 0.71411, 0.36581, 0.69264, 0.39276, 0.66554, 0.62922, 0.44085, 0.68589, 0.3826 ],
  512. "triangles": [ 6, 7, 19, 7, 8, 19, 19, 9, 10, 19, 8, 9, 19, 20, 6, 6, 20, 5, 10, 11, 19, 5, 20, 4, 4, 20, 21, 4, 21, 3, 19, 11, 20, 11, 12, 20, 20, 12, 21, 21, 22, 3, 21, 12, 22, 3, 22, 2, 22, 18, 2, 2, 18, 1, 12, 13, 22, 22, 13, 18, 13, 14, 18, 18, 14, 23, 18, 23, 1, 1, 23, 0, 23, 14, 15, 17, 0, 23, 23, 15, 16, 23, 16, 17 ],
  513. "vertices": [ 1, 6, 8.16, 10.08, 1, 2, 6, 23.66, 7.29, 0.5432, 7, 0.18, 7.4, 0.4568, 2, 6, 25.28, 6.99, 0.34353, 7, 1.83, 7.33, 0.65647, 2, 6, 26.93, 6.61, 0.17522, 7, 3.52, 7.19, 0.82478, 2, 7, 18.82, 6.84, 0.37691, 8, -3.18, 6.3, 0.62309, 2, 7, 21.22, 6.72, 0.12508, 8, -0.79, 6.52, 0.87492, 2, 7, 23.16, 6.58, 0.01748, 8, 1.15, 6.65, 0.98252, 1, 8, 13.52, 7.95, 1, 1, 8, 23.4, 0.62, 1, 2, 7, 34.97, -12.02, 0.05957, 8, 15.44, -10.13, 0.94043, 2, 7, 23.26, -11.3, 0.62435, 8, 3.75, -11.04, 0.37565, 2, 7, 21.16, -11.17, 0.774, 8, 1.64, -11.21, 0.226, 2, 7, 19.17, -10.95, 0.88574, 8, -0.35, -11.27, 0.11426, 2, 6, 23.45, -10.25, 0.25583, 7, 2.49, -10, 0.74417, 2, 6, 21.83, -9.93, 0.38463, 7, 0.83, -9.91, 0.61537, 2, 6, 19.98, -9.48, 0.55237, 7, -1.06, -9.74, 0.44763, 1, 6, 3.66, -6.14, 1, 1, 6, -2.5, 1.98, 1, 1, 7, 1.07, 0.61, 1, 2, 7, 22.73, -0.46, 0.06151, 8, 1.71, -0.38, 0.93849, 1, 7, 20.97, -0.17, 1, 1, 7, 19.1, -0.15, 1, 1, 7, 3.11, 0.46, 1, 1, 6, 21.62, 0.58, 1 ],
  514. "hull": 18,
  515. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 38, 16, 18, 20, 20, 38, 12, 14, 38, 12, 20, 22, 40, 38, 22, 40, 10, 12, 40, 10, 22, 24, 42, 40, 24, 42, 8, 10, 42, 8, 28, 36, 36, 4, 24, 26, 26, 28, 36, 44, 44, 42, 26, 44, 4, 6, 6, 8, 44, 6, 28, 30, 30, 32, 34, 46, 46, 36, 30, 46, 0, 2, 2, 4, 46, 2 ],
  516. "width": 50,
  517. "height": 48
  518. }
  519. },
  520. "zuoyan": {
  521. "zuoyan": { "x": 6.12, "y": 1.04, "rotation": -90, "width": 20, "height": 17 }
  522. }
  523. }
  524. },
  525. "animations": {
  526. "stand1": {
  527. "slots": {
  528. "biyan": {
  529. "attachment": [
  530. { "time": 0.1, "name": "biyan" },
  531. { "time": 0.4333, "name": null },
  532. { "time": 1.4, "name": "biyan" },
  533. { "time": 1.5, "name": null },
  534. { "time": 2.5667, "name": "biyan" },
  535. { "time": 2.6667, "name": null }
  536. ]
  537. },
  538. "guang": {
  539. "color": [
  540. { "time": 0, "color": "eae6269c" },
  541. { "time": 0.6667, "color": "faf8a0ff" },
  542. { "time": 0.8, "color": "eae6269c" },
  543. { "time": 1.3, "color": "eae62600" },
  544. { "time": 1.4333, "color": "eae6269c", "curve": "stepped" },
  545. { "time": 1.9667, "color": "eae6269c", "curve": "stepped" },
  546. { "time": 2.6333, "color": "eae6269c", "curve": "stepped" },
  547. { "time": 3.3, "color": "eae6269c" }
  548. ],
  549. "attachment": [
  550. { "time": 0, "name": "guang" },
  551. { "time": 0.6667, "name": "guang" },
  552. { "time": 0.7667, "name": null },
  553. { "time": 1.3, "name": "guang" },
  554. { "time": 1.9667, "name": "guang" },
  555. { "time": 2.6333, "name": "guang" },
  556. { "time": 3.3, "name": "guang" }
  557. ]
  558. },
  559. "guang2": {
  560. "color": [
  561. { "time": 0, "color": "eae62658" },
  562. { "time": 0.6667, "color": "eae6269c", "curve": "stepped" },
  563. { "time": 0.7667, "color": "eae6269c" },
  564. { "time": 1.3667, "color": "eae62600" }
  565. ],
  566. "attachment": [
  567. { "time": 0, "name": null },
  568. { "time": 0.6667, "name": "guang" },
  569. { "time": 1.3, "name": null }
  570. ]
  571. },
  572. "huo_0": {
  573. "color": [
  574. { "time": 1.1667, "color": "ffffffff" },
  575. { "time": 1.4333, "color": "ffffff90" },
  576. { "time": 1.6333, "color": "ffffff00" }
  577. ],
  578. "attachment": [
  579. { "time": 0, "name": null },
  580. { "time": 0.8, "name": null },
  581. { "time": 0.8333, "name": "huo_0" },
  582. { "time": 0.9333, "name": "huo_1" },
  583. { "time": 1.0333, "name": "huo_2" },
  584. { "time": 1.1333, "name": "huo_3" },
  585. { "time": 1.2333, "name": "huo_4" },
  586. { "time": 1.3333, "name": "huo_5" },
  587. { "time": 1.4333, "name": "huo_6" },
  588. { "time": 1.5333, "name": "huo_7" }
  589. ]
  590. },
  591. "huo_1": {
  592. "color": [
  593. { "time": 0, "color": "ffffffff", "curve": "stepped" },
  594. { "time": 1.4333, "color": "ffffffff" },
  595. { "time": 1.6333, "color": "ffffff00" }
  596. ],
  597. "attachment": [
  598. { "time": 0, "name": null }
  599. ]
  600. },
  601. "l_biyan": {
  602. "attachment": [
  603. { "time": 0, "name": null },
  604. { "time": 1.3, "name": "l_biyan" },
  605. { "time": 1.4667, "name": null },
  606. { "time": 1.9667, "name": null },
  607. { "time": 2.6333, "name": null }
  608. ]
  609. },
  610. "l_chibang1": {
  611. "attachment": [
  612. { "time": 0, "name": null },
  613. { "time": 0.2333, "name": "l_chibang1" },
  614. { "time": 0.2667, "name": null },
  615. { "time": 0.4333, "name": "l_chibang1" },
  616. { "time": 0.5667, "name": null },
  617. { "time": 0.6667, "name": null },
  618. { "time": 0.8667, "name": "l_chibang1" },
  619. { "time": 0.9, "name": null },
  620. { "time": 1.0667, "name": "l_chibang1" },
  621. { "time": 1.2, "name": null },
  622. { "time": 1.3, "name": null },
  623. { "time": 1.5333, "name": "l_chibang1" },
  624. { "time": 1.5667, "name": null },
  625. { "time": 1.7333, "name": "l_chibang1" },
  626. { "time": 1.8667, "name": null },
  627. { "time": 1.9667, "name": null },
  628. { "time": 2.2, "name": "l_chibang1" },
  629. { "time": 2.2333, "name": null },
  630. { "time": 2.4, "name": "l_chibang1" },
  631. { "time": 2.5333, "name": null },
  632. { "time": 2.6333, "name": null },
  633. { "time": 2.8667, "name": "l_chibang1" },
  634. { "time": 2.9, "name": null },
  635. { "time": 3.0667, "name": "l_chibang1" },
  636. { "time": 3.2, "name": null },
  637. { "time": 3.3, "name": null }
  638. ]
  639. },
  640. "l_cibanag6": {
  641. "attachment": [
  642. { "time": 0, "name": "l_cibanag6" },
  643. { "time": 0.1333, "name": null },
  644. { "time": 0.3667, "name": null },
  645. { "time": 0.5, "name": null },
  646. { "time": 0.5667, "name": "l_cibanag6" },
  647. { "time": 0.6667, "name": "l_cibanag6" },
  648. { "time": 0.7667, "name": null },
  649. { "time": 1, "name": null },
  650. { "time": 1.1333, "name": null },
  651. { "time": 1.2, "name": "l_cibanag6" },
  652. { "time": 1.3, "name": "l_cibanag6" },
  653. { "time": 1.4333, "name": null },
  654. { "time": 1.6667, "name": null },
  655. { "time": 1.8, "name": null },
  656. { "time": 1.8667, "name": "l_cibanag6" },
  657. { "time": 1.9667, "name": "l_cibanag6" },
  658. { "time": 2.1, "name": null },
  659. { "time": 2.3333, "name": null },
  660. { "time": 2.4667, "name": null },
  661. { "time": 2.5333, "name": "l_cibanag6" },
  662. { "time": 2.6333, "name": "l_cibanag6" },
  663. { "time": 2.7667, "name": null },
  664. { "time": 3, "name": null },
  665. { "time": 3.1333, "name": null },
  666. { "time": 3.2, "name": "l_cibanag6" },
  667. { "time": 3.3, "name": "l_cibanag6" }
  668. ]
  669. },
  670. "l_cibang2": {
  671. "attachment": [
  672. { "time": 0, "name": null },
  673. { "time": 0.2333, "name": null },
  674. { "time": 0.2667, "name": "l_cibang2" },
  675. { "time": 0.3667, "name": "l_cibang2" },
  676. { "time": 0.4333, "name": null },
  677. { "time": 0.5, "name": null },
  678. { "time": 0.6667, "name": null },
  679. { "time": 0.8667, "name": null },
  680. { "time": 0.9, "name": "l_cibang2" },
  681. { "time": 1, "name": "l_cibang2" },
  682. { "time": 1.0667, "name": null },
  683. { "time": 1.1333, "name": null },
  684. { "time": 1.3, "name": null },
  685. { "time": 1.5333, "name": null },
  686. { "time": 1.5667, "name": "l_cibang2" },
  687. { "time": 1.6667, "name": "l_cibang2" },
  688. { "time": 1.7333, "name": null },
  689. { "time": 1.8, "name": null },
  690. { "time": 1.9667, "name": null },
  691. { "time": 2.2, "name": null },
  692. { "time": 2.2333, "name": "l_cibang2" },
  693. { "time": 2.3333, "name": "l_cibang2" },
  694. { "time": 2.4, "name": null },
  695. { "time": 2.4667, "name": null },
  696. { "time": 2.6333, "name": null },
  697. { "time": 2.8667, "name": null },
  698. { "time": 2.9, "name": "l_cibang2" },
  699. { "time": 3, "name": "l_cibang2" },
  700. { "time": 3.0667, "name": null },
  701. { "time": 3.1333, "name": null },
  702. { "time": 3.3, "name": null }
  703. ]
  704. },
  705. "l_cibang3": {
  706. "attachment": [
  707. { "time": 0.2333, "name": null },
  708. { "time": 0.3667, "name": null },
  709. { "time": 0.5667, "name": "l_cibang3" },
  710. { "time": 0.6667, "name": "l_cibang3" },
  711. { "time": 0.8667, "name": null },
  712. { "time": 1, "name": null },
  713. { "time": 1.2, "name": "l_cibang3" },
  714. { "time": 1.3, "name": "l_cibang3" },
  715. { "time": 1.5333, "name": null },
  716. { "time": 1.6667, "name": null },
  717. { "time": 1.8667, "name": "l_cibang3" },
  718. { "time": 1.9667, "name": "l_cibang3" },
  719. { "time": 2.2, "name": null },
  720. { "time": 2.3333, "name": null },
  721. { "time": 2.5333, "name": "l_cibang3" },
  722. { "time": 2.6333, "name": "l_cibang3" },
  723. { "time": 2.8667, "name": null },
  724. { "time": 3, "name": null },
  725. { "time": 3.2, "name": "l_cibang3" },
  726. { "time": 3.3, "name": "l_cibang3" }
  727. ]
  728. },
  729. "l_cibang5": {
  730. "attachment": [
  731. { "time": 0, "name": null },
  732. { "time": 0.1333, "name": "l_cibang5" },
  733. { "time": 0.2333, "name": "l_cibang5" },
  734. { "time": 0.3667, "name": "l_cibang5" },
  735. { "time": 0.5667, "name": null },
  736. { "time": 0.6667, "name": null },
  737. { "time": 0.7667, "name": "l_cibang5" },
  738. { "time": 0.8667, "name": "l_cibang5" },
  739. { "time": 1, "name": "l_cibang5" },
  740. { "time": 1.2, "name": null },
  741. { "time": 1.3, "name": null },
  742. { "time": 1.4333, "name": "l_cibang5" },
  743. { "time": 1.5333, "name": "l_cibang5" },
  744. { "time": 1.6667, "name": "l_cibang5" },
  745. { "time": 1.8667, "name": null },
  746. { "time": 1.9667, "name": null },
  747. { "time": 2.1, "name": "l_cibang5" },
  748. { "time": 2.2, "name": "l_cibang5" },
  749. { "time": 2.3333, "name": "l_cibang5" },
  750. { "time": 2.5333, "name": null },
  751. { "time": 2.6333, "name": null },
  752. { "time": 2.7667, "name": "l_cibang5" },
  753. { "time": 2.8667, "name": "l_cibang5" },
  754. { "time": 3, "name": "l_cibang5" },
  755. { "time": 3.2, "name": null },
  756. { "time": 3.3, "name": null }
  757. ]
  758. },
  759. "l_zui": {
  760. "attachment": [
  761. { "time": 0.7667, "name": null },
  762. { "time": 0.9333, "name": "l_zui" }
  763. ]
  764. },
  765. "youyan": {
  766. "attachment": [
  767. { "time": 0.1, "name": null },
  768. { "time": 0.4333, "name": "youyan" },
  769. { "time": 1.4, "name": null },
  770. { "time": 1.5, "name": "youyan" },
  771. { "time": 2.5667, "name": null },
  772. { "time": 2.6667, "name": "youyan" }
  773. ]
  774. },
  775. "zuoyan": {
  776. "attachment": [
  777. { "time": 0.1, "name": null },
  778. { "time": 0.4333, "name": "zuoyan" },
  779. { "time": 1.4, "name": null },
  780. { "time": 1.5, "name": "zuoyan" },
  781. { "time": 2.5667, "name": null },
  782. { "time": 2.6667, "name": "zuoyan" }
  783. ]
  784. }
  785. },
  786. "bones": {
  787. "bone28": {
  788. "rotate": [
  789. { "time": 0, "angle": 0.96 },
  790. { "time": 0.1667, "angle": -4.48 },
  791. { "time": 0.3333, "angle": 0.96, "curve": "stepped" },
  792. { "time": 0.6, "angle": 0.96 },
  793. { "time": 0.7, "angle": 0.32 }
  794. ],
  795. "translate": [
  796. { "time": 0, "x": 0, "y": 0 },
  797. { "time": 0.1667, "x": 0.44, "y": 4.84 },
  798. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  799. { "time": 0.6, "x": 0, "y": 0 },
  800. { "time": 0.7, "x": 4.16, "y": -0.44 }
  801. ],
  802. "scale": [
  803. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  804. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  805. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  806. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  807. { "time": 0.7, "x": 1, "y": 1 }
  808. ]
  809. },
  810. "bone41": {
  811. "rotate": [
  812. { "time": 0, "angle": 0 },
  813. {
  814. "time": 0.1667,
  815. "angle": 2.95,
  816. "curve": [ 0.25, 0, 0.75, 1 ]
  817. },
  818. {
  819. "time": 0.3333,
  820. "angle": -9.73,
  821. "curve": [ 0.25, 0, 0.75, 1 ]
  822. },
  823. { "time": 0.6, "angle": -2.81 },
  824. { "time": 0.7, "angle": 5.86 },
  825. { "time": 1.6333, "angle": 13 },
  826. { "time": 2.4667, "angle": 5.86 },
  827. { "time": 3.3, "angle": 13 }
  828. ],
  829. "translate": [
  830. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  833. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  834. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  835. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  836. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  837. { "time": 3.3, "x": 0, "y": 0 }
  838. ],
  839. "scale": [
  840. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  841. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  842. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  843. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  844. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  845. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  846. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  847. { "time": 3.3, "x": 1, "y": 1 }
  848. ]
  849. },
  850. "long14": {
  851. "rotate": [
  852. {
  853. "time": 0,
  854. "angle": 0,
  855. "curve": [ 0.243, 0, 0.654, 0.62 ]
  856. },
  857. {
  858. "time": 0.3667,
  859. "angle": -20.38,
  860. "curve": [ 0.382, 0.58, 0.732, 1 ]
  861. },
  862. {
  863. "time": 0.6667,
  864. "angle": -12.83,
  865. "curve": [ 0.243, 0, 0.654, 0.62 ]
  866. },
  867. {
  868. "time": 1,
  869. "angle": -20.38,
  870. "curve": [ 0.382, 0.58, 0.732, 1 ]
  871. },
  872. {
  873. "time": 1.3,
  874. "angle": 0,
  875. "curve": [ 0.243, 0, 0.654, 0.62 ]
  876. },
  877. {
  878. "time": 1.6667,
  879. "angle": -20.38,
  880. "curve": [ 0.382, 0.58, 0.732, 1 ]
  881. },
  882. {
  883. "time": 1.9667,
  884. "angle": 0,
  885. "curve": [ 0.243, 0, 0.654, 0.62 ]
  886. },
  887. {
  888. "time": 2.3333,
  889. "angle": -20.38,
  890. "curve": [ 0.382, 0.58, 0.732, 1 ]
  891. },
  892. {
  893. "time": 2.6333,
  894. "angle": 0,
  895. "curve": [ 0.243, 0, 0.654, 0.62 ]
  896. },
  897. {
  898. "time": 3,
  899. "angle": -20.38,
  900. "curve": [ 0.382, 0.58, 0.732, 1 ]
  901. },
  902. { "time": 3.3, "angle": 0 }
  903. ],
  904. "translate": [
  905. {
  906. "time": 0,
  907. "x": -1.27,
  908. "y": -1.52,
  909. "curve": [ 0.25, 0, 0.75, 1 ]
  910. },
  911. {
  912. "time": 0.3667,
  913. "x": 0,
  914. "y": 0,
  915. "curve": [ 0.25, 0, 0.75, 1 ]
  916. },
  917. {
  918. "time": 0.6667,
  919. "x": -1.27,
  920. "y": -1.52,
  921. "curve": [ 0.25, 0, 0.75, 1 ]
  922. },
  923. {
  924. "time": 1,
  925. "x": 0,
  926. "y": 0,
  927. "curve": [ 0.25, 0, 0.75, 1 ]
  928. },
  929. {
  930. "time": 1.3,
  931. "x": -1.27,
  932. "y": -1.52,
  933. "curve": [ 0.25, 0, 0.75, 1 ]
  934. },
  935. {
  936. "time": 1.6667,
  937. "x": 0,
  938. "y": 0,
  939. "curve": [ 0.25, 0, 0.75, 1 ]
  940. },
  941. {
  942. "time": 1.9667,
  943. "x": -1.27,
  944. "y": -1.52,
  945. "curve": [ 0.25, 0, 0.75, 1 ]
  946. },
  947. {
  948. "time": 2.3333,
  949. "x": 0,
  950. "y": 0,
  951. "curve": [ 0.25, 0, 0.75, 1 ]
  952. },
  953. {
  954. "time": 2.6333,
  955. "x": -1.27,
  956. "y": -1.52,
  957. "curve": [ 0.25, 0, 0.75, 1 ]
  958. },
  959. {
  960. "time": 3,
  961. "x": 0,
  962. "y": 0,
  963. "curve": [ 0.25, 0, 0.75, 1 ]
  964. },
  965. { "time": 3.3, "x": -1.27, "y": -1.52 }
  966. ],
  967. "scale": [
  968. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  969. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  970. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  971. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  972. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  973. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  974. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  975. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 3.3, "x": 1, "y": 1 }
  979. ]
  980. },
  981. "bone15": {
  982. "rotate": [
  983. { "time": 0, "angle": 0 },
  984. { "time": 0.1667, "angle": 3.52, "curve": "stepped" },
  985. { "time": 0.6, "angle": 3.52 },
  986. { "time": 0.7, "angle": 4.51 },
  987. { "time": 1.5333, "angle": 11.84 },
  988. { "time": 2.4333, "angle": 4.51 },
  989. { "time": 3.3, "angle": 11.84 }
  990. ],
  991. "translate": [
  992. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  994. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  995. { "time": 0.7, "x": 0, "y": 0 },
  996. { "time": 1.5333, "x": -0.13, "y": 1.45 },
  997. { "time": 2.4333, "x": 0, "y": 0 },
  998. { "time": 3.3, "x": -0.13, "y": 1.45 }
  999. ],
  1000. "scale": [
  1001. { "time": 0, "x": 1, "y": 1 },
  1002. {
  1003. "time": 0.1667,
  1004. "x": 1,
  1005. "y": 1.1,
  1006. "curve": [ 0.25, 0, 0.75, 1 ]
  1007. },
  1008. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1009. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1010. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1011. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1012. { "time": 3.3, "x": 1, "y": 1 }
  1013. ]
  1014. },
  1015. "bone49": {
  1016. "rotate": [
  1017. { "time": 0, "angle": 0 },
  1018. {
  1019. "time": 0.1667,
  1020. "angle": -4.79,
  1021. "curve": [ 0.25, 0, 0.75, 1 ]
  1022. },
  1023. {
  1024. "time": 0.3333,
  1025. "angle": 7.44,
  1026. "curve": [ 0.25, 0, 0.75, 1 ]
  1027. },
  1028. { "time": 0.6, "angle": -4.79 },
  1029. { "time": 0.7, "angle": 18.78 },
  1030. { "time": 1, "angle": 31.91 },
  1031. { "time": 1.6333, "angle": 8.61 },
  1032. { "time": 2.4667, "angle": -4.79 },
  1033. { "time": 3.3, "angle": 8.61 }
  1034. ],
  1035. "translate": [
  1036. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1037. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1038. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1039. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1040. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1041. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1042. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1043. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  1044. { "time": 3.3, "x": 0, "y": 0 }
  1045. ],
  1046. "scale": [
  1047. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1050. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1051. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1052. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1053. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1054. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  1055. { "time": 3.3, "x": 1, "y": 1 }
  1056. ]
  1057. },
  1058. "bone4": {
  1059. "rotate": [
  1060. { "time": 0, "angle": 0, "curve": "stepped" },
  1061. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1062. {
  1063. "time": 0.3333,
  1064. "angle": 0,
  1065. "curve": [ 0.25, 0, 0.75, 1 ]
  1066. },
  1067. { "time": 0.6, "angle": -1.66 },
  1068. { "time": 0.7, "angle": 0 }
  1069. ],
  1070. "translate": [
  1071. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1072. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1073. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1074. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1075. { "time": 0.7, "x": 0, "y": 0 }
  1076. ],
  1077. "scale": [
  1078. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1079. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1080. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1081. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1082. { "time": 0.7, "x": 1, "y": 1 }
  1083. ]
  1084. },
  1085. "bone2": {
  1086. "rotate": [
  1087. { "time": 0, "angle": 0 },
  1088. { "time": 0.1667, "angle": -3.61 },
  1089. {
  1090. "time": 0.3333,
  1091. "angle": -10.55,
  1092. "curve": [ 0.25, 0, 0.75, 1 ]
  1093. },
  1094. { "time": 0.6, "angle": -11.4 },
  1095. { "time": 0.7, "angle": -6.3, "curve": "stepped" },
  1096. { "time": 1.2333, "angle": -6.3 },
  1097. { "time": 1.4667, "angle": -6.88 }
  1098. ],
  1099. "translate": [
  1100. { "time": 0, "x": 0.09, "y": -1.44, "curve": "stepped" },
  1101. { "time": 0.1667, "x": 0.09, "y": -1.44 },
  1102. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1103. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1104. { "time": 1.4667, "x": 0, "y": 0 }
  1105. ]
  1106. },
  1107. "long": {
  1108. "rotate": [
  1109. { "time": 0, "angle": 0, "curve": "stepped" },
  1110. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1111. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1112. { "time": 1, "angle": 0, "curve": "stepped" },
  1113. { "time": 1.3, "angle": 0, "curve": "stepped" },
  1114. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1115. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  1116. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1117. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  1118. { "time": 3, "angle": 0, "curve": "stepped" },
  1119. { "time": 3.3, "angle": 0 }
  1120. ],
  1121. "translate": [
  1122. {
  1123. "time": 0,
  1124. "x": 0,
  1125. "y": -2.86,
  1126. "curve": [ 0.276, 0, 0.621, 0.4 ]
  1127. },
  1128. {
  1129. "time": 0.1667,
  1130. "x": -3.23,
  1131. "y": -10.56,
  1132. "curve": [ 0.333, 0.33, 0.758, 1 ]
  1133. },
  1134. {
  1135. "time": 0.6667,
  1136. "x": 13.31,
  1137. "y": 21.29,
  1138. "curve": [ 0.25, 0, 0.75, 1 ]
  1139. },
  1140. {
  1141. "time": 1,
  1142. "x": 4,
  1143. "y": 15.18,
  1144. "curve": [ 0.25, 0, 0.75, 1 ]
  1145. },
  1146. {
  1147. "time": 1.3,
  1148. "x": 0,
  1149. "y": -2.86,
  1150. "curve": [ 0.25, 0, 0.75, 1 ]
  1151. },
  1152. {
  1153. "time": 1.6667,
  1154. "x": 4,
  1155. "y": 15.18,
  1156. "curve": [ 0.25, 0, 0.75, 1 ]
  1157. },
  1158. {
  1159. "time": 1.9667,
  1160. "x": 0,
  1161. "y": -2.86,
  1162. "curve": [ 0.25, 0, 0.75, 1 ]
  1163. },
  1164. {
  1165. "time": 2.3333,
  1166. "x": 4,
  1167. "y": 15.18,
  1168. "curve": [ 0.25, 0, 0.75, 1 ]
  1169. },
  1170. {
  1171. "time": 2.6333,
  1172. "x": 0,
  1173. "y": -2.86,
  1174. "curve": [ 0.25, 0, 0.75, 1 ]
  1175. },
  1176. {
  1177. "time": 3,
  1178. "x": 4,
  1179. "y": 15.18,
  1180. "curve": [ 0.25, 0, 0.75, 1 ]
  1181. },
  1182. { "time": 3.3, "x": 0, "y": -2.86 }
  1183. ],
  1184. "scale": [
  1185. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1186. { "time": 0.5667, "x": 1, "y": 1 },
  1187. { "time": 0.6667, "x": 1, "y": 1.1 },
  1188. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1189. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1190. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1191. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  1192. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1193. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  1194. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1195. { "time": 3.3, "x": 1, "y": 1 }
  1196. ]
  1197. },
  1198. "bone67": {
  1199. "rotate": [
  1200. { "time": 0, "angle": 0 },
  1201. {
  1202. "time": 0.1667,
  1203. "angle": -16.36,
  1204. "curve": [ 0.25, 0, 0.75, 1 ]
  1205. },
  1206. {
  1207. "time": 0.3333,
  1208. "angle": -17.62,
  1209. "curve": [ 0.25, 0, 0.75, 1 ]
  1210. },
  1211. { "time": 0.6, "angle": -2.42 },
  1212. { "time": 0.7, "angle": 10.44 },
  1213. { "time": 1, "angle": 5.93 },
  1214. { "time": 1.6333, "angle": -3.6 },
  1215. { "time": 2.4667, "angle": 10.44 },
  1216. { "time": 3.3, "angle": -3.6 }
  1217. ],
  1218. "translate": [
  1219. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1220. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1221. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1225. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1226. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  1227. { "time": 3.3, "x": 0, "y": 0 }
  1228. ],
  1229. "scale": [
  1230. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1231. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1232. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1233. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1234. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1235. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1236. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1237. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  1238. { "time": 3.3, "x": 1, "y": 1 }
  1239. ]
  1240. },
  1241. "bone54": {
  1242. "rotate": [
  1243. { "time": 0, "angle": 0 },
  1244. { "time": 0.1667, "angle": -17.56 },
  1245. { "time": 0.6, "angle": -1.31 },
  1246. { "time": 0.7, "angle": 3.64 },
  1247. { "time": 1, "angle": 16.88 },
  1248. { "time": 1.6333, "angle": 11.03 },
  1249. { "time": 2.4667, "angle": 10.71 },
  1250. { "time": 3.3, "angle": 28.9 }
  1251. ],
  1252. "translate": [
  1253. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1254. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1255. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1256. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1257. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1258. { "time": 3.3, "x": 0, "y": 0 }
  1259. ],
  1260. "scale": [
  1261. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1262. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1263. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1264. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1265. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1266. { "time": 3.3, "x": 1, "y": 1 }
  1267. ]
  1268. },
  1269. "long4": {
  1270. "rotate": [
  1271. { "time": 0, "angle": 0.66 },
  1272. { "time": 0.1, "angle": -5.52 },
  1273. { "time": 0.2333, "angle": -21.92 },
  1274. { "time": 0.3667, "angle": -16.18 },
  1275. { "time": 0.4333, "angle": -12.31 },
  1276. { "time": 0.5667, "angle": 0.86 },
  1277. { "time": 0.6667, "angle": 0.66 },
  1278. { "time": 0.7333, "angle": -5.52 },
  1279. { "time": 0.8667, "angle": -21.92 },
  1280. { "time": 1, "angle": -16.18 },
  1281. { "time": 1.0667, "angle": -12.31 },
  1282. { "time": 1.2, "angle": 0.86 },
  1283. { "time": 1.3, "angle": 0.66 },
  1284. { "time": 1.4, "angle": -5.52 },
  1285. { "time": 1.5333, "angle": -21.92 },
  1286. { "time": 1.6667, "angle": -16.18 },
  1287. { "time": 1.7333, "angle": -12.31 },
  1288. { "time": 1.8667, "angle": 0.86 },
  1289. { "time": 1.9667, "angle": 0.66 },
  1290. { "time": 2.0667, "angle": -5.52 },
  1291. { "time": 2.2, "angle": -21.92 },
  1292. { "time": 2.3333, "angle": -16.18 },
  1293. { "time": 2.4, "angle": -12.31 },
  1294. { "time": 2.5333, "angle": 0.86 },
  1295. { "time": 2.6333, "angle": 0.66 },
  1296. { "time": 2.7333, "angle": -5.52 },
  1297. { "time": 2.8667, "angle": -21.92 },
  1298. { "time": 3, "angle": -16.18 },
  1299. { "time": 3.0667, "angle": -12.31 },
  1300. { "time": 3.2, "angle": 0.86 },
  1301. { "time": 3.3, "angle": 0.66 }
  1302. ],
  1303. "translate": [
  1304. { "time": 0, "x": 0, "y": 0 },
  1305. { "time": 0.1, "x": -0.02, "y": -0.74 },
  1306. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1307. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1308. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1309. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1310. { "time": 0.6667, "x": 0, "y": 0 },
  1311. { "time": 0.7333, "x": -0.02, "y": -0.74 },
  1312. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1313. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 1.3, "x": 0, "y": 0 },
  1317. { "time": 1.4, "x": -0.02, "y": -0.74 },
  1318. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1319. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1320. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1321. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1322. { "time": 1.9667, "x": 0, "y": 0 },
  1323. { "time": 2.0667, "x": -0.02, "y": -0.74 },
  1324. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1325. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1326. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  1327. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1328. { "time": 2.6333, "x": 0, "y": 0 },
  1329. { "time": 2.7333, "x": -0.02, "y": -0.74 },
  1330. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  1331. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1332. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1333. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  1334. { "time": 3.3, "x": 0, "y": 0 }
  1335. ],
  1336. "scale": [
  1337. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1338. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1339. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1340. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1341. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1342. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1343. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1344. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1346. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1347. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1348. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  1349. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1350. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1351. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1352. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1353. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1354. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1355. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  1356. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1357. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1358. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1359. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  1360. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1361. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  1362. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1363. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1364. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1365. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1366. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1367. { "time": 3.3, "x": 1, "y": 1 }
  1368. ]
  1369. },
  1370. "bone77": {
  1371. "rotate": [
  1372. { "time": 0, "angle": 0, "curve": "stepped" },
  1373. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1374. { "time": 0.6, "angle": 0 },
  1375. { "time": 0.7, "angle": 13.32 },
  1376. { "time": 1.5333, "angle": -3.05 },
  1377. { "time": 2.4333, "angle": 3.09 },
  1378. { "time": 3.3, "angle": -3.05 }
  1379. ],
  1380. "translate": [
  1381. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1382. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 0.7, "x": 0, "y": 0 },
  1385. { "time": 1.5333, "x": -2.75, "y": 0.4 },
  1386. { "time": 2.4333, "x": 0, "y": 0 },
  1387. { "time": 3.3, "x": -2.75, "y": 0.4 }
  1388. ],
  1389. "scale": [
  1390. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1391. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1392. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1393. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1394. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1395. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1396. { "time": 3.3, "x": 1, "y": 1 }
  1397. ]
  1398. },
  1399. "long23": {
  1400. "rotate": [
  1401. { "time": 0, "angle": 40.63 },
  1402. { "time": 0.1, "angle": -30.38 },
  1403. { "time": 0.2333, "angle": -3.48 },
  1404. { "time": 0.3667, "angle": 0 },
  1405. { "time": 0.4333, "angle": 13.54 },
  1406. { "time": 0.5667, "angle": 120.48 },
  1407. { "time": 0.6667, "angle": 40.63 },
  1408. { "time": 0.7333, "angle": -30.38 },
  1409. { "time": 0.8667, "angle": -3.48 },
  1410. { "time": 1, "angle": 0 },
  1411. { "time": 1.0667, "angle": 13.54 },
  1412. { "time": 1.2, "angle": 120.48 },
  1413. { "time": 1.3, "angle": 40.63 },
  1414. { "time": 1.4, "angle": -30.38 },
  1415. { "time": 1.5333, "angle": -3.48 },
  1416. { "time": 1.6667, "angle": 0 },
  1417. { "time": 1.7333, "angle": 13.54 },
  1418. { "time": 1.8667, "angle": 120.48 },
  1419. { "time": 1.9667, "angle": 40.63 },
  1420. { "time": 2.0667, "angle": -30.38 },
  1421. { "time": 2.2, "angle": -3.48 },
  1422. { "time": 2.3333, "angle": 0 },
  1423. { "time": 2.4, "angle": 13.54 },
  1424. { "time": 2.5333, "angle": 120.48 },
  1425. { "time": 2.6333, "angle": 40.63 },
  1426. { "time": 2.7333, "angle": -30.38 },
  1427. { "time": 2.8667, "angle": -3.48 },
  1428. { "time": 3, "angle": 0 },
  1429. { "time": 3.0667, "angle": 13.54 },
  1430. { "time": 3.2, "angle": 120.48 },
  1431. { "time": 3.3, "angle": 40.63 }
  1432. ],
  1433. "translate": [
  1434. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1435. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1436. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1437. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1438. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1439. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1440. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1441. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1442. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1443. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1444. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1445. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1446. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1447. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1448. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1449. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1450. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1451. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1452. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  1453. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1454. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1455. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1456. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  1457. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1458. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  1459. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1460. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  1461. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1462. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1463. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  1464. { "time": 3.3, "x": 0, "y": 0 }
  1465. ],
  1466. "scale": [
  1467. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1468. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1469. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1470. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1471. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1472. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1473. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1474. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1475. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1476. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1477. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1478. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  1479. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1480. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1481. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1482. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1483. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1484. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1485. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  1486. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1487. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1488. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1489. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  1490. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1491. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  1492. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1493. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1494. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1495. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1496. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1497. { "time": 3.3, "x": 1, "y": 1 }
  1498. ]
  1499. },
  1500. "bone35": {
  1501. "rotate": [
  1502. { "time": 0, "angle": 0, "curve": "stepped" },
  1503. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1504. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1505. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1506. { "time": 0.7, "angle": 0 }
  1507. ],
  1508. "translate": [
  1509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1510. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1511. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1512. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1513. { "time": 0.7, "x": 0, "y": 0 }
  1514. ],
  1515. "scale": [
  1516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1517. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1518. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1519. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1520. { "time": 0.7, "x": 1, "y": 1 }
  1521. ]
  1522. },
  1523. "bone7": {
  1524. "rotate": [
  1525. { "time": 0, "angle": 0 },
  1526. { "time": 0.0667, "angle": -12.68 },
  1527. {
  1528. "time": 0.1667,
  1529. "angle": -7.63,
  1530. "curve": [ 0.258, 0, 0.619, 0.45 ]
  1531. },
  1532. {
  1533. "time": 0.2333,
  1534. "angle": -7.52,
  1535. "curve": [ 0.363, 0.44, 0.755, 1 ]
  1536. },
  1537. {
  1538. "time": 0.3333,
  1539. "angle": -79.27,
  1540. "curve": [ 0.25, 0, 0.75, 1 ]
  1541. },
  1542. { "time": 0.6, "angle": -72.63 },
  1543. { "time": 0.7, "angle": -19.22 },
  1544. { "time": 0.8, "angle": -9.72 },
  1545. { "time": 1.3, "angle": -10.07 },
  1546. { "time": 1.6667, "angle": -10.67 }
  1547. ],
  1548. "translate": [
  1549. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1550. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1551. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1552. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1553. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1554. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  1555. { "time": 1.3, "x": 0, "y": 0 }
  1556. ],
  1557. "scale": [
  1558. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1559. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1560. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1561. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1562. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1563. { "time": 1.3, "x": 1, "y": 1 }
  1564. ]
  1565. },
  1566. "bone16": {
  1567. "rotate": [
  1568. { "time": 0, "angle": 0 },
  1569. { "time": 0.1667, "angle": -2.59, "curve": "stepped" },
  1570. { "time": 0.6, "angle": -2.59 },
  1571. { "time": 0.7, "angle": 6.92 },
  1572. { "time": 1.5333, "angle": 14.25 },
  1573. { "time": 2.4333, "angle": 6.92 },
  1574. { "time": 3.3, "angle": 14.25 }
  1575. ],
  1576. "translate": [
  1577. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1578. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1579. { "time": 0.6, "x": 0, "y": 0 },
  1580. { "time": 0.7, "x": -2.36, "y": 0.07, "curve": "stepped" },
  1581. { "time": 1.5333, "x": -2.36, "y": 0.07, "curve": "stepped" },
  1582. { "time": 2.4333, "x": -2.36, "y": 0.07, "curve": "stepped" },
  1583. { "time": 3.3, "x": -2.36, "y": 0.07 }
  1584. ],
  1585. "scale": [
  1586. { "time": 0, "x": 1, "y": 1 },
  1587. {
  1588. "time": 0.1667,
  1589. "x": 1,
  1590. "y": 1.1,
  1591. "curve": [ 0.25, 0, 0.75, 1 ]
  1592. },
  1593. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1594. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1595. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1596. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  1597. { "time": 3.3, "x": 1, "y": 1 }
  1598. ]
  1599. },
  1600. "long3": {
  1601. "rotate": [
  1602. { "time": 0, "angle": -14.9 },
  1603. { "time": 0.1, "angle": -12.71 },
  1604. { "time": 0.2333, "angle": -10.11 },
  1605. { "time": 0.3667, "angle": -16.18 },
  1606. { "time": 0.4333, "angle": -10.79 },
  1607. { "time": 0.5667, "angle": -5.39 },
  1608. { "time": 0.6667, "angle": -14.9 },
  1609. { "time": 0.7333, "angle": -12.71 },
  1610. { "time": 0.8667, "angle": -10.11 },
  1611. { "time": 1, "angle": -16.18 },
  1612. { "time": 1.0667, "angle": -10.79 },
  1613. { "time": 1.2, "angle": -5.39 },
  1614. { "time": 1.3, "angle": -14.9 },
  1615. { "time": 1.4, "angle": -12.71 },
  1616. { "time": 1.5333, "angle": -10.11 },
  1617. { "time": 1.6667, "angle": -16.18 },
  1618. { "time": 1.7333, "angle": -10.79 },
  1619. { "time": 1.8667, "angle": -5.39 },
  1620. { "time": 1.9667, "angle": -14.9 },
  1621. { "time": 2.0667, "angle": -12.71 },
  1622. { "time": 2.2, "angle": -10.11 },
  1623. { "time": 2.3333, "angle": -16.18 },
  1624. { "time": 2.4, "angle": -10.79 },
  1625. { "time": 2.5333, "angle": -5.39 },
  1626. { "time": 2.6333, "angle": -14.9 },
  1627. { "time": 2.7333, "angle": -12.71 },
  1628. { "time": 2.8667, "angle": -10.11 },
  1629. { "time": 3, "angle": -16.18 },
  1630. { "time": 3.0667, "angle": -10.79 },
  1631. { "time": 3.2, "angle": -5.39 },
  1632. { "time": 3.3, "angle": -14.9 }
  1633. ],
  1634. "translate": [
  1635. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1636. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1637. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1638. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1639. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1640. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1641. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1642. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1643. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1644. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1645. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1646. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1647. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1648. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1649. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1650. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1651. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1652. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1653. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  1654. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1655. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1656. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1657. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  1658. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1659. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  1660. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1661. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  1662. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1663. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1664. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  1665. { "time": 3.3, "x": 0, "y": 0 }
  1666. ],
  1667. "scale": [
  1668. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1669. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1670. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1671. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1672. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1673. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1674. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1675. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1684. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1686. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  1687. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1688. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1689. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1690. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  1691. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1692. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  1693. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1694. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1695. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1696. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1697. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1698. { "time": 3.3, "x": 1, "y": 1 }
  1699. ]
  1700. },
  1701. "bone6": {
  1702. "rotate": [
  1703. { "time": 0, "angle": 8.25 },
  1704. {
  1705. "time": 0.1667,
  1706. "angle": -316.31,
  1707. "curve": [ 0.25, 0, 0.75, 1 ]
  1708. },
  1709. {
  1710. "time": 0.3333,
  1711. "angle": -96.23,
  1712. "curve": [ 0.25, 0, 0.75, 1 ]
  1713. },
  1714. { "time": 0.6, "angle": -108.39 },
  1715. { "time": 0.7, "angle": -35.91 },
  1716. { "time": 0.9333, "angle": -30.2, "curve": "stepped" },
  1717. {
  1718. "time": 1.1667,
  1719. "angle": -30.2,
  1720. "curve": [ 0.269, 0, 0.618, 0.42 ]
  1721. },
  1722. {
  1723. "time": 1.3,
  1724. "angle": -15.75,
  1725. "curve": [ 0.344, 0.37, 0.757, 1 ]
  1726. },
  1727. { "time": 1.6667, "angle": 30.3 }
  1728. ],
  1729. "translate": [
  1730. { "time": 0, "x": 0, "y": 0 },
  1731. {
  1732. "time": 0.1667,
  1733. "x": 0.29,
  1734. "y": 1.93,
  1735. "curve": [ 0.25, 0, 0.75, 1 ]
  1736. },
  1737. {
  1738. "time": 0.3333,
  1739. "x": -2.86,
  1740. "y": -3.76,
  1741. "curve": [ 0.25, 0, 0.75, 1 ]
  1742. },
  1743. { "time": 0.6, "x": -2.99, "y": -2.75 },
  1744. { "time": 0.7, "x": -0.48, "y": -2.3, "curve": "stepped" },
  1745. { "time": 1.3, "x": -0.48, "y": -2.3 }
  1746. ],
  1747. "scale": [
  1748. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1749. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1750. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1751. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1752. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1753. { "time": 1.3, "x": 1, "y": 1 }
  1754. ]
  1755. },
  1756. "bone60": {
  1757. "rotate": [
  1758. { "time": 0, "angle": 0 },
  1759. {
  1760. "time": 0.1667,
  1761. "angle": -2.18,
  1762. "curve": [ 0.25, 0, 0.75, 1 ]
  1763. },
  1764. {
  1765. "time": 0.3333,
  1766. "angle": -17.5,
  1767. "curve": [ 0.25, 0, 0.75, 1 ]
  1768. },
  1769. { "time": 0.6, "angle": -18.1 },
  1770. { "time": 0.7, "angle": 10.27 },
  1771. { "time": 1, "angle": -0.74 },
  1772. { "time": 1.6333, "angle": 6.46 },
  1773. { "time": 2.4667, "angle": 10.27 },
  1774. { "time": 3.3, "angle": 6.46 }
  1775. ],
  1776. "translate": [
  1777. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1778. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1779. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1780. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1781. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1782. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1783. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1784. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  1785. { "time": 3.3, "x": 0, "y": 0 }
  1786. ],
  1787. "scale": [
  1788. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1789. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1790. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1791. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1792. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1793. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1794. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1795. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  1796. { "time": 3.3, "x": 1, "y": 1 }
  1797. ]
  1798. },
  1799. "bone66": {
  1800. "rotate": [
  1801. { "time": 0, "angle": 0 },
  1802. {
  1803. "time": 0.1667,
  1804. "angle": 8.15,
  1805. "curve": [ 0.25, 0, 0.75, 1 ]
  1806. },
  1807. { "time": 0.3333, "angle": -2.42, "curve": "stepped" },
  1808. { "time": 0.6, "angle": -2.42 },
  1809. { "time": 0.7, "angle": 10.44 },
  1810. { "time": 1, "angle": 6.26 },
  1811. { "time": 1.6333, "angle": -2.56 },
  1812. { "time": 2.4667, "angle": 10.44 },
  1813. { "time": 3.3, "angle": -2.56 }
  1814. ],
  1815. "translate": [
  1816. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1818. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1819. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1820. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1821. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1822. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1823. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  1824. { "time": 3.3, "x": 0, "y": 0 }
  1825. ],
  1826. "scale": [
  1827. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1828. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1829. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1830. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1831. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1832. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1833. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1834. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  1835. { "time": 3.3, "x": 1, "y": 1 }
  1836. ]
  1837. },
  1838. "long21": {
  1839. "rotate": [
  1840. { "time": 0, "angle": 0 },
  1841. { "time": 0.1, "angle": 39.52 },
  1842. { "time": 0.2333, "angle": 5.72 },
  1843. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1844. { "time": 0.4333, "angle": 0 },
  1845. { "time": 0.5, "angle": 55.51 },
  1846. { "time": 0.5667, "angle": 23.45 },
  1847. { "time": 0.6667, "angle": 0 },
  1848. { "time": 0.7333, "angle": 39.52 },
  1849. { "time": 0.8667, "angle": 5.72 },
  1850. { "time": 1, "angle": 0, "curve": "stepped" },
  1851. { "time": 1.0667, "angle": 0 },
  1852. { "time": 1.1333, "angle": 55.51 },
  1853. { "time": 1.2, "angle": 23.45 },
  1854. { "time": 1.3, "angle": 0 },
  1855. { "time": 1.4, "angle": 39.52 },
  1856. { "time": 1.5333, "angle": 5.72 },
  1857. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1858. { "time": 1.7333, "angle": 0 },
  1859. { "time": 1.8, "angle": 55.51 },
  1860. { "time": 1.8667, "angle": 23.45 },
  1861. { "time": 1.9667, "angle": 0 },
  1862. { "time": 2.0667, "angle": 39.52 },
  1863. { "time": 2.2, "angle": 5.72 },
  1864. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  1865. { "time": 2.4, "angle": 0 },
  1866. { "time": 2.4667, "angle": 55.51 },
  1867. { "time": 2.5333, "angle": 23.45 },
  1868. { "time": 2.6333, "angle": 0 },
  1869. { "time": 2.7333, "angle": 39.52 },
  1870. { "time": 2.8667, "angle": 5.72 },
  1871. { "time": 3, "angle": 0, "curve": "stepped" },
  1872. { "time": 3.0667, "angle": 0 },
  1873. { "time": 3.1333, "angle": 55.51 },
  1874. { "time": 3.2, "angle": 23.45 },
  1875. { "time": 3.3, "angle": 0 }
  1876. ],
  1877. "translate": [
  1878. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1879. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1880. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1881. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1882. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  1883. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1884. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1885. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  1886. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  1887. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1888. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1889. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1890. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1891. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  1892. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1893. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1894. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1895. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1896. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  1897. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1898. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1899. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  1900. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  1901. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1902. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  1903. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  1904. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  1905. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1906. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1907. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  1908. { "time": 3.3, "x": 0, "y": 0 }
  1909. ],
  1910. "scale": [
  1911. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1912. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1913. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1914. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1915. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1916. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1917. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1918. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  1919. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  1920. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1921. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1922. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  1923. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1924. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  1925. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1926. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1927. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1928. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1929. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  1930. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1931. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1932. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  1933. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  1934. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1935. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  1936. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  1937. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1938. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  1939. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1940. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  1941. { "time": 3.3, "x": 1, "y": 1 }
  1942. ]
  1943. },
  1944. "bone47": {
  1945. "rotate": [
  1946. { "time": 0, "angle": 0 },
  1947. {
  1948. "time": 0.1667,
  1949. "angle": 4.31,
  1950. "curve": [ 0.25, 0, 0.75, 1 ]
  1951. },
  1952. {
  1953. "time": 0.3333,
  1954. "angle": 7.44,
  1955. "curve": [ 0.25, 0, 0.75, 1 ]
  1956. },
  1957. { "time": 0.6, "angle": -4.79 },
  1958. { "time": 0.7, "angle": 18.78 },
  1959. { "time": 1, "angle": 31.91 },
  1960. { "time": 1.6333, "angle": 29.65 },
  1961. { "time": 2.4667, "angle": -4.79 },
  1962. { "time": 3.3, "angle": 29.65 }
  1963. ],
  1964. "translate": [
  1965. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1966. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1967. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1968. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1969. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  1970. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1971. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1972. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  1973. { "time": 3.3, "x": 0, "y": 0 }
  1974. ],
  1975. "scale": [
  1976. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1977. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1978. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1979. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1980. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  1981. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1982. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  1984. { "time": 3.3, "x": 1, "y": 1 }
  1985. ]
  1986. },
  1987. "bone9": {
  1988. "rotate": [
  1989. { "time": 0, "angle": -11.6 },
  1990. {
  1991. "time": 0.1667,
  1992. "angle": -18.42,
  1993. "curve": [ 0.25, 0, 0.75, 1 ]
  1994. },
  1995. {
  1996. "time": 0.3333,
  1997. "angle": -38.93,
  1998. "curve": [ 0.25, 0, 0.75, 1 ]
  1999. },
  2000. { "time": 0.6, "angle": 314.26 },
  2001. { "time": 0.6333, "angle": -24.14 },
  2002. { "time": 0.7, "angle": -10.25 },
  2003. { "time": 1.1667, "angle": -27.46 }
  2004. ],
  2005. "translate": [
  2006. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2007. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2008. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 0.7, "x": 0, "y": 0 }
  2011. ],
  2012. "scale": [
  2013. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2014. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2015. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2016. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2017. { "time": 0.7, "x": 1, "y": 1 }
  2018. ]
  2019. },
  2020. "long27": {
  2021. "rotate": [
  2022. { "time": 0, "angle": 0, "curve": "stepped" },
  2023. { "time": 0.1, "angle": 0 },
  2024. { "time": 0.2333, "angle": -33.59 },
  2025. { "time": 0.3667, "angle": 268.17 },
  2026. { "time": 0.4333, "angle": 0 },
  2027. { "time": 0.5667, "angle": 24.91 },
  2028. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2029. { "time": 0.7333, "angle": 0 },
  2030. { "time": 0.8667, "angle": -33.59 },
  2031. { "time": 1, "angle": 268.17 },
  2032. { "time": 1.0667, "angle": 0 },
  2033. { "time": 1.2, "angle": 24.91 },
  2034. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2035. { "time": 1.4, "angle": 0 },
  2036. { "time": 1.5333, "angle": -33.59 },
  2037. { "time": 1.6667, "angle": 268.17 },
  2038. { "time": 1.7333, "angle": 0 },
  2039. { "time": 1.8667, "angle": 24.91 },
  2040. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  2041. { "time": 2.0667, "angle": 0 },
  2042. { "time": 2.2, "angle": -33.59 },
  2043. { "time": 2.3333, "angle": 268.17 },
  2044. { "time": 2.4, "angle": 0 },
  2045. { "time": 2.5333, "angle": 24.91 },
  2046. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  2047. { "time": 2.7333, "angle": 0 },
  2048. { "time": 2.8667, "angle": -33.59 },
  2049. { "time": 3, "angle": 268.17 },
  2050. { "time": 3.0667, "angle": 0 },
  2051. { "time": 3.2, "angle": 24.91 },
  2052. { "time": 3.3, "angle": 0 }
  2053. ],
  2054. "translate": [
  2055. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2056. { "time": 0.1, "x": 0, "y": 0 },
  2057. { "time": 0.2333, "x": 0.16, "y": 2.64 },
  2058. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  2059. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2060. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2061. { "time": 0.7333, "x": 0, "y": 0 },
  2062. { "time": 0.8667, "x": 0.16, "y": 2.64 },
  2063. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2064. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  2065. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2066. { "time": 1.4, "x": 0, "y": 0 },
  2067. { "time": 1.5333, "x": 0.16, "y": 2.64 },
  2068. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2069. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2070. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  2071. { "time": 2.0667, "x": 0, "y": 0 },
  2072. { "time": 2.2, "x": 0.16, "y": 2.64 },
  2073. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2074. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2075. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  2076. { "time": 2.7333, "x": 0, "y": 0 },
  2077. { "time": 2.8667, "x": 0.16, "y": 2.64 },
  2078. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2079. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  2080. { "time": 3.3, "x": 0, "y": 0 }
  2081. ],
  2082. "scale": [
  2083. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2084. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2085. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2086. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2087. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2088. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2089. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2090. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2091. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2092. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2093. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2094. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  2095. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2096. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2097. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2098. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2099. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2100. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2101. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  2102. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2103. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2104. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2105. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  2106. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2107. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  2108. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2109. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  2110. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2111. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2112. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2113. { "time": 3.3, "x": 1, "y": 1 }
  2114. ]
  2115. },
  2116. "long25": {
  2117. "rotate": [
  2118. { "time": 0, "angle": 0, "curve": "stepped" },
  2119. { "time": 0.1, "angle": 0 },
  2120. { "time": 0.2333, "angle": 47.55 },
  2121. { "time": 0.2667, "angle": 53.18 },
  2122. { "time": 0.3667, "angle": -5.85 },
  2123. { "time": 0.4333, "angle": 35.06 },
  2124. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  2125. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2126. { "time": 0.7333, "angle": 0 },
  2127. { "time": 0.8667, "angle": 47.55 },
  2128. { "time": 0.9, "angle": 53.18 },
  2129. { "time": 1, "angle": -5.85 },
  2130. { "time": 1.0667, "angle": 35.06 },
  2131. { "time": 1.2, "angle": 0, "curve": "stepped" },
  2132. { "time": 1.3, "angle": 0, "curve": "stepped" },
  2133. { "time": 1.4, "angle": 0 },
  2134. { "time": 1.5333, "angle": 47.55 },
  2135. { "time": 1.5667, "angle": 53.18 },
  2136. { "time": 1.6667, "angle": -5.85 },
  2137. { "time": 1.7333, "angle": 35.06 },
  2138. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2139. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  2140. { "time": 2.0667, "angle": 0 },
  2141. { "time": 2.2, "angle": 47.55 },
  2142. { "time": 2.2333, "angle": 53.18 },
  2143. { "time": 2.3333, "angle": -5.85 },
  2144. { "time": 2.4, "angle": 35.06 },
  2145. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  2146. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  2147. { "time": 2.7333, "angle": 0 },
  2148. { "time": 2.8667, "angle": 47.55 },
  2149. { "time": 2.9, "angle": 53.18 },
  2150. { "time": 3, "angle": -5.85 },
  2151. { "time": 3.0667, "angle": 35.06 },
  2152. { "time": 3.2, "angle": 0, "curve": "stepped" },
  2153. { "time": 3.3, "angle": 0 }
  2154. ],
  2155. "translate": [
  2156. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2157. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2158. { "time": 0.2333, "x": 0, "y": 0 },
  2159. { "time": 0.2667, "x": -1.26, "y": -1.23 },
  2160. { "time": 0.3667, "x": 1.21, "y": -0.07 },
  2161. { "time": 0.4333, "x": 1.68, "y": 2.94 },
  2162. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2163. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2164. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2165. { "time": 0.8667, "x": 0, "y": 0 },
  2166. { "time": 0.9, "x": -1.26, "y": -1.23 },
  2167. { "time": 1, "x": 1.21, "y": -0.07 },
  2168. { "time": 1.0667, "x": 1.68, "y": 2.94 },
  2169. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  2170. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2171. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2172. { "time": 1.5333, "x": 0, "y": 0 },
  2173. { "time": 1.5667, "x": -1.26, "y": -1.23 },
  2174. { "time": 1.6667, "x": 1.21, "y": -0.07 },
  2175. { "time": 1.7333, "x": 1.68, "y": 2.94 },
  2176. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2177. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  2178. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2179. { "time": 2.2, "x": 0, "y": 0 },
  2180. { "time": 2.2333, "x": -1.26, "y": -1.23 },
  2181. { "time": 2.3333, "x": 1.21, "y": -0.07 },
  2182. { "time": 2.4, "x": 1.68, "y": 2.94 },
  2183. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2184. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  2185. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2186. { "time": 2.8667, "x": 0, "y": 0 },
  2187. { "time": 2.9, "x": -1.26, "y": -1.23 },
  2188. { "time": 3, "x": 1.21, "y": -0.07 },
  2189. { "time": 3.0667, "x": 1.68, "y": 2.94 },
  2190. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  2191. { "time": 3.3, "x": 0, "y": 0 }
  2192. ],
  2193. "scale": [
  2194. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2195. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2196. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2197. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2198. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2199. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2200. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2201. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2202. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  2203. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2204. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2205. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  2206. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2207. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2208. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2209. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2210. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2211. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  2213. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2214. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2215. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2216. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  2217. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2218. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  2219. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2220. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  2221. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2222. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2223. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2224. { "time": 3.3, "x": 1, "y": 1 }
  2225. ]
  2226. },
  2227. "long11": {
  2228. "rotate": [
  2229. {
  2230. "time": 0,
  2231. "angle": 0,
  2232. "curve": [ 0.25, 0, 0.75, 1 ]
  2233. },
  2234. {
  2235. "time": 0.3667,
  2236. "angle": 25.88,
  2237. "curve": [ 0.25, 0, 0.75, 1 ]
  2238. },
  2239. {
  2240. "time": 0.6667,
  2241. "angle": 0,
  2242. "curve": [ 0.25, 0, 0.75, 1 ]
  2243. },
  2244. {
  2245. "time": 1,
  2246. "angle": 25.88,
  2247. "curve": [ 0.25, 0, 0.75, 1 ]
  2248. },
  2249. {
  2250. "time": 1.3,
  2251. "angle": 0,
  2252. "curve": [ 0.25, 0, 0.75, 1 ]
  2253. },
  2254. {
  2255. "time": 1.6667,
  2256. "angle": 25.88,
  2257. "curve": [ 0.25, 0, 0.75, 1 ]
  2258. },
  2259. {
  2260. "time": 1.9667,
  2261. "angle": 0,
  2262. "curve": [ 0.25, 0, 0.75, 1 ]
  2263. },
  2264. {
  2265. "time": 2.3333,
  2266. "angle": 25.88,
  2267. "curve": [ 0.25, 0, 0.75, 1 ]
  2268. },
  2269. {
  2270. "time": 2.6333,
  2271. "angle": 0,
  2272. "curve": [ 0.25, 0, 0.75, 1 ]
  2273. },
  2274. {
  2275. "time": 3,
  2276. "angle": 25.88,
  2277. "curve": [ 0.25, 0, 0.75, 1 ]
  2278. },
  2279. { "time": 3.3, "angle": 0 }
  2280. ],
  2281. "translate": [
  2282. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2283. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  2284. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2285. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2286. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2287. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2288. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  2289. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2290. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  2291. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2292. { "time": 3.3, "x": 0, "y": 0 }
  2293. ],
  2294. "scale": [
  2295. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2296. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2297. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2298. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2299. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2300. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2301. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  2302. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2303. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  2304. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2305. { "time": 3.3, "x": 1, "y": 1 }
  2306. ]
  2307. },
  2308. "bone43": {
  2309. "rotate": [
  2310. { "time": 0, "angle": 0 },
  2311. {
  2312. "time": 0.1667,
  2313. "angle": -9.02,
  2314. "curve": [ 0.25, 0, 0.75, 1 ]
  2315. },
  2316. {
  2317. "time": 0.3333,
  2318. "angle": -7.18,
  2319. "curve": [ 0.25, 0, 0.75, 1 ]
  2320. },
  2321. { "time": 0.6, "angle": -9.02 },
  2322. { "time": 0.7, "angle": -0.36 },
  2323. { "time": 1.6333, "angle": 17.36 },
  2324. { "time": 2.4667, "angle": -0.36 },
  2325. { "time": 3.3, "angle": 17.36 }
  2326. ],
  2327. "translate": [
  2328. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2330. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2331. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2332. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2333. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2334. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2335. { "time": 3.3, "x": 0, "y": 0 }
  2336. ],
  2337. "scale": [
  2338. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2339. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2340. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2341. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2342. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2343. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2344. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2345. { "time": 3.3, "x": 1, "y": 1 }
  2346. ]
  2347. },
  2348. "bone61": {
  2349. "rotate": [
  2350. { "time": 0, "angle": 0 },
  2351. {
  2352. "time": 0.1667,
  2353. "angle": 15.13,
  2354. "curve": [ 0.25, 0, 0.75, 1 ]
  2355. },
  2356. {
  2357. "time": 0.3333,
  2358. "angle": -7.64,
  2359. "curve": [ 0.25, 0, 0.75, 1 ]
  2360. },
  2361. { "time": 0.6, "angle": -10.79 },
  2362. { "time": 0.7, "angle": 5.9 },
  2363. { "time": 1, "angle": 9.12 },
  2364. { "time": 1.6333, "angle": 21.7 },
  2365. { "time": 2.4667, "angle": 5.9 },
  2366. { "time": 3.3, "angle": 21.7 }
  2367. ],
  2368. "translate": [
  2369. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2370. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2371. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2372. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2373. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2374. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 3.3, "x": 0, "y": 0 }
  2378. ],
  2379. "scale": [
  2380. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2381. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2382. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2383. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2384. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2385. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2386. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 3.3, "x": 1, "y": 1 }
  2389. ]
  2390. },
  2391. "bone44": {
  2392. "rotate": [
  2393. { "time": 0, "angle": 0 },
  2394. {
  2395. "time": 0.1667,
  2396. "angle": -9.02,
  2397. "curve": [ 0.25, 0, 0.75, 1 ]
  2398. },
  2399. {
  2400. "time": 0.3333,
  2401. "angle": 7.79,
  2402. "curve": [ 0.25, 0, 0.75, 1 ]
  2403. },
  2404. { "time": 0.6, "angle": -9.02 },
  2405. { "time": 0.7, "angle": -0.36 },
  2406. { "time": 1.6333, "angle": 6.79 },
  2407. { "time": 2.4667, "angle": -0.36 },
  2408. { "time": 3.3, "angle": 6.79 }
  2409. ],
  2410. "translate": [
  2411. { "time": 0, "x": 0, "y": 0 },
  2412. { "time": 0.1667, "x": -2.71, "y": 0.44, "curve": "stepped" },
  2413. { "time": 0.3333, "x": -2.71, "y": 0.44, "curve": "stepped" },
  2414. { "time": 0.6, "x": -2.71, "y": 0.44, "curve": "stepped" },
  2415. { "time": 0.7, "x": -2.71, "y": 0.44, "curve": "stepped" },
  2416. { "time": 1.6333, "x": -2.71, "y": 0.44, "curve": "stepped" },
  2417. { "time": 2.4667, "x": -2.71, "y": 0.44, "curve": "stepped" },
  2418. { "time": 3.3, "x": -2.71, "y": 0.44 }
  2419. ],
  2420. "scale": [
  2421. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2422. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2423. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2424. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2425. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2426. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2427. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2428. { "time": 3.3, "x": 1, "y": 1 }
  2429. ]
  2430. },
  2431. "bone57": {
  2432. "rotate": [
  2433. { "time": 0, "angle": 0 },
  2434. {
  2435. "time": 0.1667,
  2436. "angle": -5.48,
  2437. "curve": [ 0.25, 0, 0.75, 1 ]
  2438. },
  2439. {
  2440. "time": 0.3333,
  2441. "angle": 1.33,
  2442. "curve": [ 0.25, 0, 0.75, 1 ]
  2443. },
  2444. { "time": 0.6, "angle": -2.27 },
  2445. { "time": 0.7, "angle": 11.91 },
  2446. { "time": 1, "angle": 19.57 },
  2447. { "time": 1.6333, "angle": 9.82 },
  2448. { "time": 2.4667, "angle": 11.91 },
  2449. { "time": 3.3, "angle": 9.82 }
  2450. ],
  2451. "translate": [
  2452. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2453. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2454. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2455. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2456. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2457. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2458. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2459. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2460. { "time": 3.3, "x": 0, "y": 0 }
  2461. ],
  2462. "scale": [
  2463. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2464. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2465. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2466. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2467. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2468. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2469. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2470. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2471. { "time": 3.3, "x": 1, "y": 1 }
  2472. ]
  2473. },
  2474. "bone71": {
  2475. "rotate": [
  2476. { "time": 0, "angle": 0 },
  2477. { "time": 0.1667, "angle": -7.89, "curve": "stepped" },
  2478. { "time": 0.6, "angle": -7.89 },
  2479. { "time": 0.7, "angle": 7.11 },
  2480. { "time": 1.5333, "angle": 13.25 },
  2481. { "time": 2.4333, "angle": 7.11 },
  2482. { "time": 3.3, "angle": 13.25 }
  2483. ],
  2484. "translate": [
  2485. { "time": 0, "x": 0, "y": 0 },
  2486. {
  2487. "time": 0.1667,
  2488. "x": 1.56,
  2489. "y": -0.32,
  2490. "curve": [ 0.25, 0, 0.75, 1 ]
  2491. },
  2492. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2493. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2494. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2495. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2496. { "time": 3.3, "x": 0, "y": 0 }
  2497. ],
  2498. "scale": [
  2499. { "time": 0, "x": 1, "y": 1 },
  2500. {
  2501. "time": 0.1667,
  2502. "x": 1,
  2503. "y": 1.2,
  2504. "curve": [ 0.25, 0, 0.75, 1 ]
  2505. },
  2506. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2507. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2508. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2509. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2510. { "time": 3.3, "x": 1, "y": 1 }
  2511. ]
  2512. },
  2513. "bone19": {
  2514. "rotate": [
  2515. { "time": 0, "angle": 0, "curve": "stepped" },
  2516. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2517. { "time": 0.6, "angle": 0 },
  2518. { "time": 0.7, "angle": 8.13 },
  2519. { "time": 1.5333, "angle": 6.31 },
  2520. { "time": 2.4333, "angle": 4.25 },
  2521. { "time": 3.3, "angle": 11.72 }
  2522. ],
  2523. "translate": [
  2524. { "time": 0, "x": 0, "y": 0 },
  2525. {
  2526. "time": 0.1667,
  2527. "x": 2.05,
  2528. "y": 0.05,
  2529. "curve": [ 0.268, 0, 0.618, 0.42 ]
  2530. },
  2531. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2532. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2533. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2534. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2535. { "time": 3.3, "x": 0, "y": 0 }
  2536. ],
  2537. "scale": [
  2538. { "time": 0, "x": 1, "y": 1 },
  2539. {
  2540. "time": 0.1667,
  2541. "x": 1,
  2542. "y": 1.2,
  2543. "curve": [ 0.25, 0, 0.75, 1 ]
  2544. },
  2545. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2548. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2549. { "time": 3.3, "x": 1, "y": 1 }
  2550. ]
  2551. },
  2552. "bone65": {
  2553. "rotate": [
  2554. { "time": 0, "angle": 0, "curve": "stepped" },
  2555. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2556. {
  2557. "time": 0.3333,
  2558. "angle": 0,
  2559. "curve": [ 0.25, 0, 0.75, 1 ]
  2560. },
  2561. { "time": 0.6, "angle": 7.77 },
  2562. { "time": 1, "angle": 12.56 },
  2563. { "time": 1.6333, "angle": 19.57, "curve": "stepped" },
  2564. { "time": 3.3, "angle": 19.57 }
  2565. ],
  2566. "translate": [
  2567. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2570. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2571. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2572. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2573. { "time": 3.3, "x": 0, "y": 0 }
  2574. ],
  2575. "scale": [
  2576. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2577. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2578. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2579. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2581. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2582. { "time": 3.3, "x": 1, "y": 1 }
  2583. ]
  2584. },
  2585. "bone39": {
  2586. "rotate": [
  2587. { "time": 0, "angle": 0, "curve": "stepped" },
  2588. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2589. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2590. { "time": 0.6, "angle": 0, "curve": "stepped" },
  2591. { "time": 0.7, "angle": 0, "curve": "stepped" },
  2592. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  2593. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  2594. { "time": 3.3, "angle": 0 }
  2595. ],
  2596. "translate": [
  2597. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2598. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2599. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2600. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2601. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2602. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2603. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2604. { "time": 3.3, "x": 0, "y": 0 }
  2605. ],
  2606. "scale": [
  2607. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2608. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2609. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2610. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2611. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2612. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2613. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2614. { "time": 3.3, "x": 1, "y": 1 }
  2615. ]
  2616. },
  2617. "long16": {
  2618. "rotate": [
  2619. { "time": 0, "angle": 0 },
  2620. { "time": 0.1, "angle": -5.41 },
  2621. { "time": 0.2333, "angle": -13.53 },
  2622. { "time": 0.3667, "angle": -21.65 },
  2623. { "time": 0.4333, "angle": -14.43 },
  2624. { "time": 0.5667, "angle": -7.22 },
  2625. { "time": 0.6667, "angle": -14.13 },
  2626. { "time": 0.7333, "angle": -5.41 },
  2627. { "time": 0.8, "angle": 17.55, "curve": "stepped" },
  2628. { "time": 1, "angle": 17.55 },
  2629. { "time": 1.0667, "angle": -14.43 },
  2630. { "time": 1.2, "angle": -7.22 },
  2631. { "time": 1.3, "angle": 0 },
  2632. { "time": 1.4, "angle": -5.41 },
  2633. { "time": 1.5333, "angle": -13.53 },
  2634. { "time": 1.6667, "angle": -21.65 },
  2635. { "time": 1.7333, "angle": -14.43 },
  2636. { "time": 1.8667, "angle": -7.22 },
  2637. { "time": 1.9667, "angle": 0 },
  2638. { "time": 2.0667, "angle": -5.41 },
  2639. { "time": 2.2, "angle": -13.53 },
  2640. { "time": 2.3333, "angle": -21.65 },
  2641. { "time": 2.4, "angle": -14.43 },
  2642. { "time": 2.5333, "angle": -7.22 },
  2643. { "time": 2.6333, "angle": 0 },
  2644. { "time": 2.7333, "angle": -5.41 },
  2645. { "time": 2.8667, "angle": -13.53 },
  2646. { "time": 3, "angle": -21.65 },
  2647. { "time": 3.0667, "angle": -14.43 },
  2648. { "time": 3.2, "angle": -7.22 },
  2649. { "time": 3.3, "angle": 0 }
  2650. ],
  2651. "translate": [
  2652. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2653. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  2654. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2655. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  2656. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  2657. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  2658. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2659. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2660. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2661. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  2663. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2664. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2665. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2666. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2667. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2668. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2669. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  2670. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2671. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2672. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2673. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  2674. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2675. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  2676. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  2677. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  2678. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2679. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  2680. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  2681. { "time": 3.3, "x": 0, "y": 0 }
  2682. ],
  2683. "scale": [
  2684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2685. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  2686. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2687. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2688. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  2689. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  2690. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2691. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2692. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2693. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2694. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  2695. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2696. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2697. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2698. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2699. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2700. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2701. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  2702. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2703. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2707. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  2708. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  2713. { "time": 3.3, "x": 1, "y": 1 }
  2714. ]
  2715. },
  2716. "bone69": {
  2717. "rotate": [
  2718. { "time": 0, "angle": 0 },
  2719. {
  2720. "time": 0.1667,
  2721. "angle": -11.13,
  2722. "curve": [ 0.25, 0, 0.75, 1 ]
  2723. },
  2724. {
  2725. "time": 0.3333,
  2726. "angle": 23.75,
  2727. "curve": [ 0.25, 0, 0.75, 1 ]
  2728. },
  2729. { "time": 0.6, "angle": -11.13 },
  2730. { "time": 0.7, "angle": 1.73 },
  2731. { "time": 1, "angle": 0.1 },
  2732. { "time": 1.6333, "angle": -3.35 },
  2733. { "time": 2.4667, "angle": 1.73 },
  2734. { "time": 3.3, "angle": -3.35 }
  2735. ],
  2736. "translate": [
  2737. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2738. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2739. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2740. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2741. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2742. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2743. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2744. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2745. { "time": 3.3, "x": 0, "y": 0 }
  2746. ],
  2747. "scale": [
  2748. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2749. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2750. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2751. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2752. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2753. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2754. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2755. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2756. { "time": 3.3, "x": 1, "y": 1 }
  2757. ]
  2758. },
  2759. "long13": {
  2760. "rotate": [
  2761. {
  2762. "time": 0,
  2763. "angle": 0,
  2764. "curve": [ 0.25, 0, 0.75, 1 ]
  2765. },
  2766. {
  2767. "time": 0.3667,
  2768. "angle": 18.84,
  2769. "curve": [ 0.25, 0, 0.75, 1 ]
  2770. },
  2771. {
  2772. "time": 0.6667,
  2773. "angle": -40.19,
  2774. "curve": [ 0.25, 0, 0.75, 1 ]
  2775. },
  2776. {
  2777. "time": 1,
  2778. "angle": 18.84,
  2779. "curve": [ 0.25, 0, 0.75, 1 ]
  2780. },
  2781. {
  2782. "time": 1.3,
  2783. "angle": 0,
  2784. "curve": [ 0.25, 0, 0.75, 1 ]
  2785. },
  2786. {
  2787. "time": 1.6667,
  2788. "angle": 18.84,
  2789. "curve": [ 0.25, 0, 0.75, 1 ]
  2790. },
  2791. {
  2792. "time": 1.9667,
  2793. "angle": 0,
  2794. "curve": [ 0.25, 0, 0.75, 1 ]
  2795. },
  2796. {
  2797. "time": 2.3333,
  2798. "angle": 18.84,
  2799. "curve": [ 0.25, 0, 0.75, 1 ]
  2800. },
  2801. {
  2802. "time": 2.6333,
  2803. "angle": 0,
  2804. "curve": [ 0.25, 0, 0.75, 1 ]
  2805. },
  2806. {
  2807. "time": 3,
  2808. "angle": 18.84,
  2809. "curve": [ 0.25, 0, 0.75, 1 ]
  2810. },
  2811. { "time": 3.3, "angle": 0 }
  2812. ],
  2813. "translate": [
  2814. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2815. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  2816. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2817. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2818. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2819. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2820. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  2821. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2822. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  2823. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2824. { "time": 3.3, "x": 0, "y": 0 }
  2825. ],
  2826. "scale": [
  2827. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2830. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2831. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2832. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2833. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  2834. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2835. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  2836. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2837. { "time": 3.3, "x": 1, "y": 1 }
  2838. ]
  2839. },
  2840. "bone13": {
  2841. "rotate": [
  2842. { "time": 0, "angle": 0, "curve": "stepped" },
  2843. { "time": 0.1667, "angle": 0 },
  2844. { "time": 0.6, "angle": 11.21 },
  2845. { "time": 0.7, "angle": 9.51 },
  2846. { "time": 1.5333, "angle": 15.62 },
  2847. { "time": 2.4333, "angle": 9.51 },
  2848. { "time": 3.3, "angle": 15.62 }
  2849. ],
  2850. "translate": [
  2851. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 3.3, "x": 0, "y": 0 }
  2858. ],
  2859. "scale": [
  2860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2861. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2862. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 3.3, "x": 1, "y": 1 }
  2867. ]
  2868. },
  2869. "bone8": {
  2870. "rotate": [
  2871. { "time": 0, "angle": 0 },
  2872. { "time": 0.0667, "angle": -17.35 },
  2873. {
  2874. "time": 0.1667,
  2875. "angle": 0,
  2876. "curve": [ 0.258, 0, 0.619, 0.45 ]
  2877. },
  2878. {
  2879. "time": 0.2333,
  2880. "angle": 2.47,
  2881. "curve": [ 0.363, 0.44, 0.755, 1 ]
  2882. },
  2883. { "time": 0.3333, "angle": -21.1, "curve": "stepped" },
  2884. { "time": 0.6, "angle": -21.1 },
  2885. { "time": 0.7, "angle": -44.01 },
  2886. { "time": 1.3, "angle": -25.01 },
  2887. { "time": 1.6667, "angle": 2.44 }
  2888. ],
  2889. "translate": [
  2890. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2891. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2895. { "time": 1.3, "x": 0, "y": 0 }
  2896. ],
  2897. "scale": [
  2898. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2899. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2900. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2901. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2902. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2903. { "time": 1.3, "x": 1, "y": 1 }
  2904. ]
  2905. },
  2906. "bone21": {
  2907. "rotate": [
  2908. { "time": 0, "angle": 0 },
  2909. {
  2910. "time": 0.1667,
  2911. "angle": 5.74,
  2912. "curve": [ 0.268, 0, 0.618, 0.42 ]
  2913. },
  2914. { "time": 0.6, "angle": 0 },
  2915. { "time": 0.7, "angle": 23.95 },
  2916. { "time": 1.5333, "angle": -9.78 },
  2917. { "time": 2.4333, "angle": 0.68 },
  2918. { "time": 3.3, "angle": -9.78 }
  2919. ],
  2920. "translate": [
  2921. { "time": 0, "x": 0, "y": 0 },
  2922. {
  2923. "time": 0.1667,
  2924. "x": 0.36,
  2925. "y": 0.12,
  2926. "curve": [ 0.25, 0, 0.75, 1 ]
  2927. },
  2928. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2929. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  2931. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 3.3, "x": 0, "y": 0 }
  2933. ],
  2934. "scale": [
  2935. { "time": 0, "x": 1, "y": 1 },
  2936. {
  2937. "time": 0.1667,
  2938. "x": 1,
  2939. "y": 1.1,
  2940. "curve": [ 0.25, 0, 0.75, 1 ]
  2941. },
  2942. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2943. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2944. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  2945. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  2946. { "time": 3.3, "x": 1, "y": 1 }
  2947. ]
  2948. },
  2949. "bone40": {
  2950. "rotate": [
  2951. { "time": 0, "angle": 0 },
  2952. {
  2953. "time": 0.1667,
  2954. "angle": -3.55,
  2955. "curve": [ 0.25, 0, 0.75, 1 ]
  2956. },
  2957. {
  2958. "time": 0.3333,
  2959. "angle": -2.52,
  2960. "curve": [ 0.25, 0, 0.75, 1 ]
  2961. },
  2962. { "time": 0.6, "angle": -3.55 },
  2963. { "time": 0.7, "angle": 5.12 },
  2964. { "time": 1.6333, "angle": 7.11 },
  2965. { "time": 2.4667, "angle": 5.12 },
  2966. { "time": 3.3, "angle": 7.11 }
  2967. ],
  2968. "translate": [
  2969. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2970. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2971. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2972. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  2973. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  2975. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  2976. { "time": 3.3, "x": 0, "y": 0 }
  2977. ],
  2978. "scale": [
  2979. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2980. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2981. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2982. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  2983. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  2984. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  2985. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  2986. { "time": 3.3, "x": 1, "y": 1 }
  2987. ]
  2988. },
  2989. "long18": {
  2990. "rotate": [
  2991. { "time": 0, "angle": 0 },
  2992. { "time": 0.1, "angle": -7.63 },
  2993. { "time": 0.1333, "angle": -137.23 },
  2994. { "time": 0.2333, "angle": -30.16 },
  2995. { "time": 0.3667, "angle": -30.52 },
  2996. { "time": 0.4333, "angle": -126.71 },
  2997. { "time": 0.5667, "angle": -132.99 },
  2998. { "time": 0.6667, "angle": 0 },
  2999. { "time": 0.7333, "angle": -7.63 },
  3000. { "time": 0.7667, "angle": -137.23 },
  3001. { "time": 0.8667, "angle": -30.16 },
  3002. { "time": 1, "angle": -30.52 },
  3003. { "time": 1.0667, "angle": -126.71 },
  3004. { "time": 1.2, "angle": -132.99 },
  3005. { "time": 1.3, "angle": 0 },
  3006. { "time": 1.4, "angle": -7.63 },
  3007. { "time": 1.4333, "angle": -137.23 },
  3008. { "time": 1.5333, "angle": -30.16 },
  3009. { "time": 1.6667, "angle": -30.52 },
  3010. { "time": 1.7333, "angle": -126.71 },
  3011. { "time": 1.8667, "angle": -132.99 },
  3012. { "time": 1.9667, "angle": 0 },
  3013. { "time": 2.0667, "angle": -7.63 },
  3014. { "time": 2.1, "angle": -137.23 },
  3015. { "time": 2.2, "angle": -30.16 },
  3016. { "time": 2.3333, "angle": -30.52 },
  3017. { "time": 2.4, "angle": -126.71 },
  3018. { "time": 2.5333, "angle": -132.99 },
  3019. { "time": 2.6333, "angle": 0 },
  3020. { "time": 2.7333, "angle": -7.63 },
  3021. { "time": 2.7667, "angle": -137.23 },
  3022. { "time": 2.8667, "angle": -30.16 },
  3023. { "time": 3, "angle": -30.52 },
  3024. { "time": 3.0667, "angle": -126.71 },
  3025. { "time": 3.2, "angle": -132.99 },
  3026. { "time": 3.3, "angle": 0 }
  3027. ],
  3028. "translate": [
  3029. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3030. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3031. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3032. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3033. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  3034. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3035. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3036. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3037. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3038. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3039. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3040. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3041. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3042. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3043. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3044. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3045. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3046. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3047. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  3048. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3049. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  3050. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3051. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  3052. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3053. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  3054. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  3055. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  3056. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3057. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3058. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  3059. { "time": 3.3, "x": 0, "y": 0 }
  3060. ],
  3061. "scale": [
  3062. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3063. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3064. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3065. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3066. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  3067. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3068. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3069. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3070. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3071. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3072. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3073. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3078. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3079. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3080. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  3081. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3082. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3083. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3084. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  3085. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3086. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  3087. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  3088. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  3089. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3090. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3091. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3092. { "time": 3.3, "x": 1, "y": 1 }
  3093. ]
  3094. },
  3095. "bone74": {
  3096. "rotate": [
  3097. { "time": 0, "angle": 0, "curve": "stepped" },
  3098. {
  3099. "time": 0.1667,
  3100. "angle": 0,
  3101. "curve": [ 0.25, 0, 0.75, 1 ]
  3102. },
  3103. { "time": 0.6, "angle": 4.77 },
  3104. { "time": 0.7, "angle": 5.37 },
  3105. { "time": 1.5333, "angle": 19.11 },
  3106. { "time": 2.4333, "angle": 0 },
  3107. { "time": 3.3, "angle": 19.11 }
  3108. ],
  3109. "translate": [
  3110. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3111. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3112. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3113. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  3114. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3115. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3116. { "time": 3.3, "x": 0, "y": 0 }
  3117. ],
  3118. "scale": [
  3119. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3120. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3121. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3122. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3123. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3124. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3125. { "time": 3.3, "x": 1, "y": 1 }
  3126. ]
  3127. },
  3128. "bone48": {
  3129. "rotate": [
  3130. { "time": 0, "angle": 0 },
  3131. {
  3132. "time": 0.1667,
  3133. "angle": -4.79,
  3134. "curve": [ 0.25, 0, 0.75, 1 ]
  3135. },
  3136. {
  3137. "time": 0.3333,
  3138. "angle": 7.44,
  3139. "curve": [ 0.25, 0, 0.75, 1 ]
  3140. },
  3141. { "time": 0.6, "angle": -4.79 },
  3142. { "time": 0.7, "angle": 18.78 },
  3143. { "time": 1, "angle": 31.91 },
  3144. { "time": 1.6333, "angle": 24 },
  3145. { "time": 2.4667, "angle": -4.79 },
  3146. { "time": 3.3, "angle": 24 }
  3147. ],
  3148. "translate": [
  3149. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3150. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3151. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3152. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3153. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  3154. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3155. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3156. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3157. { "time": 3.3, "x": 0, "y": 0 }
  3158. ],
  3159. "scale": [
  3160. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3161. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3162. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3163. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3164. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3165. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3166. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3167. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3168. { "time": 3.3, "x": 1, "y": 1 }
  3169. ]
  3170. },
  3171. "long8": {
  3172. "rotate": [
  3173. {
  3174. "time": 0,
  3175. "angle": 0,
  3176. "curve": [ 0.25, 0, 0.75, 1 ]
  3177. },
  3178. {
  3179. "time": 0.3667,
  3180. "angle": 18.48,
  3181. "curve": [ 0.25, 0, 0.75, 1 ]
  3182. },
  3183. {
  3184. "time": 0.6667,
  3185. "angle": 0,
  3186. "curve": [ 0.25, 0, 0.75, 1 ]
  3187. },
  3188. {
  3189. "time": 1,
  3190. "angle": 18.48,
  3191. "curve": [ 0.25, 0, 0.75, 1 ]
  3192. },
  3193. {
  3194. "time": 1.3,
  3195. "angle": 0,
  3196. "curve": [ 0.25, 0, 0.75, 1 ]
  3197. },
  3198. {
  3199. "time": 1.6667,
  3200. "angle": 18.48,
  3201. "curve": [ 0.25, 0, 0.75, 1 ]
  3202. },
  3203. {
  3204. "time": 1.9667,
  3205. "angle": 0,
  3206. "curve": [ 0.25, 0, 0.75, 1 ]
  3207. },
  3208. {
  3209. "time": 2.3333,
  3210. "angle": 18.48,
  3211. "curve": [ 0.25, 0, 0.75, 1 ]
  3212. },
  3213. {
  3214. "time": 2.6333,
  3215. "angle": 0,
  3216. "curve": [ 0.25, 0, 0.75, 1 ]
  3217. },
  3218. {
  3219. "time": 3,
  3220. "angle": 18.48,
  3221. "curve": [ 0.25, 0, 0.75, 1 ]
  3222. },
  3223. { "time": 3.3, "angle": 0 }
  3224. ],
  3225. "translate": [
  3226. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3227. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3228. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3229. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3230. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3231. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3232. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  3233. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3234. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  3235. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3236. { "time": 3.3, "x": 0, "y": 0 }
  3237. ],
  3238. "scale": [
  3239. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3240. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3241. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3242. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3243. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3244. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3245. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  3246. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3247. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  3248. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3249. { "time": 3.3, "x": 1, "y": 1 }
  3250. ]
  3251. },
  3252. "bone38": {
  3253. "rotate": [
  3254. { "time": 0, "angle": 0 },
  3255. {
  3256. "time": 0.1667,
  3257. "angle": -7.91,
  3258. "curve": [ 0.25, 0, 0.75, 1 ]
  3259. },
  3260. {
  3261. "time": 0.3333,
  3262. "angle": -11.16,
  3263. "curve": [ 0.244, 0, 0.641, 0.57 ]
  3264. },
  3265. {
  3266. "time": 0.5,
  3267. "angle": -12.51,
  3268. "curve": [ 0.382, 0.56, 0.74, 1 ]
  3269. },
  3270. { "time": 0.7, "angle": -5.46 },
  3271. { "time": 1, "angle": -4.92 },
  3272. { "time": 1.6333, "angle": 1.54 },
  3273. { "time": 2.4667, "angle": -10.98 },
  3274. { "time": 3.3, "angle": 1.54 }
  3275. ],
  3276. "translate": [
  3277. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3278. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3279. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3280. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3281. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3282. { "time": 3.3, "x": 0, "y": 0 }
  3283. ],
  3284. "scale": [
  3285. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3286. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3287. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3288. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3289. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3290. { "time": 3.3, "x": 1, "y": 1 }
  3291. ]
  3292. },
  3293. "bone72": {
  3294. "rotate": [
  3295. { "time": 0, "angle": 0 },
  3296. { "time": 0.1667, "angle": 1.13, "curve": "stepped" },
  3297. { "time": 0.6, "angle": 1.13, "curve": "stepped" },
  3298. { "time": 0.7, "angle": 1.13, "curve": "stepped" },
  3299. { "time": 1.5333, "angle": 1.13, "curve": "stepped" },
  3300. { "time": 2.4333, "angle": 1.13, "curve": "stepped" },
  3301. { "time": 3.3, "angle": 1.13 }
  3302. ],
  3303. "translate": [
  3304. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3306. { "time": 0.6, "x": 0, "y": 0 },
  3307. { "time": 0.7, "x": -7.3, "y": -4.62 },
  3308. { "time": 1.5333, "x": -7.6, "y": -0.62 },
  3309. { "time": 2.4333, "x": -7.3, "y": -4.62 },
  3310. { "time": 3.3, "x": -7.6, "y": -0.62 }
  3311. ],
  3312. "scale": [
  3313. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3314. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3315. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3316. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3317. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3318. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3319. { "time": 3.3, "x": 1, "y": 1 }
  3320. ]
  3321. },
  3322. "long19": {
  3323. "rotate": [
  3324. { "time": 0, "angle": 0, "curve": "stepped" },
  3325. { "time": 0.1, "angle": 0 },
  3326. { "time": 0.1333, "angle": 21.31 },
  3327. { "time": 0.2333, "angle": -37.29 },
  3328. { "time": 0.3667, "angle": 0 },
  3329. { "time": 0.4333, "angle": 49.41 },
  3330. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  3331. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3332. { "time": 0.7333, "angle": 0 },
  3333. { "time": 0.7667, "angle": 21.31 },
  3334. { "time": 0.8667, "angle": -37.29 },
  3335. { "time": 1, "angle": 0 },
  3336. { "time": 1.0667, "angle": 49.41 },
  3337. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3338. { "time": 1.3, "angle": 0, "curve": "stepped" },
  3339. { "time": 1.4, "angle": 0 },
  3340. { "time": 1.4333, "angle": 21.31 },
  3341. { "time": 1.5333, "angle": -37.29 },
  3342. { "time": 1.6667, "angle": 0 },
  3343. { "time": 1.7333, "angle": 49.41 },
  3344. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  3345. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  3346. { "time": 2.0667, "angle": 0 },
  3347. { "time": 2.1, "angle": 21.31 },
  3348. { "time": 2.2, "angle": -37.29 },
  3349. { "time": 2.3333, "angle": 0 },
  3350. { "time": 2.4, "angle": 49.41 },
  3351. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  3352. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  3353. { "time": 2.7333, "angle": 0 },
  3354. { "time": 2.7667, "angle": 21.31 },
  3355. { "time": 2.8667, "angle": -37.29 },
  3356. { "time": 3, "angle": 0 },
  3357. { "time": 3.0667, "angle": 49.41 },
  3358. { "time": 3.2, "angle": 0, "curve": "stepped" },
  3359. { "time": 3.3, "angle": 0 }
  3360. ],
  3361. "translate": [
  3362. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3363. { "time": 0.1, "x": 0, "y": 0 },
  3364. { "time": 0.1333, "x": -2.46, "y": 1.03 },
  3365. { "time": 0.2333, "x": -3.28, "y": -0.05 },
  3366. { "time": 0.3667, "x": 0, "y": 0 },
  3367. { "time": 0.4333, "x": 0.19, "y": -1.31 },
  3368. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3369. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3370. { "time": 0.7333, "x": 0, "y": 0 },
  3371. { "time": 0.7667, "x": -2.46, "y": 1.03 },
  3372. { "time": 0.8667, "x": -3.28, "y": -0.05 },
  3373. { "time": 1, "x": 0, "y": 0 },
  3374. { "time": 1.0667, "x": 0.19, "y": -1.31 },
  3375. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3376. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3377. { "time": 1.4, "x": 0, "y": 0 },
  3378. { "time": 1.4333, "x": -2.46, "y": 1.03 },
  3379. { "time": 1.5333, "x": -3.28, "y": -0.05 },
  3380. { "time": 1.6667, "x": 0, "y": 0 },
  3381. { "time": 1.7333, "x": 0.19, "y": -1.31 },
  3382. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3383. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  3384. { "time": 2.0667, "x": 0, "y": 0 },
  3385. { "time": 2.1, "x": -2.46, "y": 1.03 },
  3386. { "time": 2.2, "x": -3.28, "y": -0.05 },
  3387. { "time": 2.3333, "x": 0, "y": 0 },
  3388. { "time": 2.4, "x": 0.19, "y": -1.31 },
  3389. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3390. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  3391. { "time": 2.7333, "x": 0, "y": 0 },
  3392. { "time": 2.7667, "x": -2.46, "y": 1.03 },
  3393. { "time": 2.8667, "x": -3.28, "y": -0.05 },
  3394. { "time": 3, "x": 0, "y": 0 },
  3395. { "time": 3.0667, "x": 0.19, "y": -1.31 },
  3396. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  3397. { "time": 3.3, "x": 0, "y": 0 }
  3398. ],
  3399. "scale": [
  3400. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3401. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3403. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3404. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  3405. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3406. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3407. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3408. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3409. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3411. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3412. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3413. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3414. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3415. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3416. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3417. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3418. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  3419. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3420. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3421. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3422. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  3423. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3424. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  3425. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  3426. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  3427. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3428. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3429. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3430. { "time": 3.3, "x": 1, "y": 1 }
  3431. ]
  3432. },
  3433. "bone42": {
  3434. "rotate": [
  3435. { "time": 0, "angle": 0 },
  3436. {
  3437. "time": 0.1667,
  3438. "angle": 5.21,
  3439. "curve": [ 0.25, 0, 0.75, 1 ]
  3440. },
  3441. {
  3442. "time": 0.3333,
  3443. "angle": -0.97,
  3444. "curve": [ 0.25, 0, 0.75, 1 ]
  3445. },
  3446. { "time": 0.6, "angle": -2.81 },
  3447. { "time": 0.7, "angle": 5.86 },
  3448. { "time": 1.6333, "angle": 15.09 },
  3449. { "time": 2.4667, "angle": 5.86 },
  3450. { "time": 3.3, "angle": 15.09 }
  3451. ],
  3452. "translate": [
  3453. { "time": 0, "x": 0, "y": 0 },
  3454. {
  3455. "time": 0.1667,
  3456. "x": 0.51,
  3457. "y": -1.7,
  3458. "curve": [ 0.25, 0, 0.75, 1 ]
  3459. },
  3460. { "time": 0.3333, "x": -1.56, "y": 0.57, "curve": "stepped" },
  3461. { "time": 0.6, "x": -1.56, "y": 0.57, "curve": "stepped" },
  3462. { "time": 0.7, "x": -1.56, "y": 0.57, "curve": "stepped" },
  3463. { "time": 1.6333, "x": -1.56, "y": 0.57, "curve": "stepped" },
  3464. { "time": 2.4667, "x": -1.56, "y": 0.57, "curve": "stepped" },
  3465. { "time": 3.3, "x": -1.56, "y": 0.57 }
  3466. ],
  3467. "scale": [
  3468. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3469. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3470. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3471. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3472. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3473. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3474. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3475. { "time": 3.3, "x": 1, "y": 1 }
  3476. ]
  3477. },
  3478. "bone14": {
  3479. "rotate": [
  3480. { "time": 0, "angle": 0 },
  3481. { "time": 0.1667, "angle": -8.61, "curve": "stepped" },
  3482. { "time": 0.6, "angle": -8.61 },
  3483. { "time": 0.7, "angle": 4.87 },
  3484. { "time": 1.5333, "angle": 0.9, "curve": "stepped" },
  3485. { "time": 2.4333, "angle": 0.9, "curve": "stepped" },
  3486. { "time": 3.3, "angle": 0.9 }
  3487. ],
  3488. "translate": [
  3489. { "time": 0, "x": 0, "y": 0 },
  3490. {
  3491. "time": 0.1667,
  3492. "x": 2.79,
  3493. "y": -2.91,
  3494. "curve": [ 0.25, 0, 0.75, 1 ]
  3495. },
  3496. { "time": 0.6, "x": -0.14, "y": -2.52 },
  3497. { "time": 0.7, "x": -3.9, "y": -0.76, "curve": "stepped" },
  3498. { "time": 1.5333, "x": -3.9, "y": -0.76, "curve": "stepped" },
  3499. { "time": 2.4333, "x": -3.9, "y": -0.76, "curve": "stepped" },
  3500. { "time": 3.3, "x": -3.9, "y": -0.76 }
  3501. ],
  3502. "scale": [
  3503. { "time": 0, "x": 1, "y": 1 },
  3504. {
  3505. "time": 0.1667,
  3506. "x": 1,
  3507. "y": 1.02,
  3508. "curve": [ 0.25, 0, 0.75, 1 ]
  3509. },
  3510. { "time": 0.6, "x": 1, "y": 0.89 },
  3511. { "time": 0.7, "x": 1, "y": 1.1 },
  3512. { "time": 1.5333, "x": 1, "y": 0.89 },
  3513. { "time": 2.4333, "x": 1, "y": 1.1 },
  3514. { "time": 3.3, "x": 1, "y": 0.89 }
  3515. ]
  3516. },
  3517. "long2": {
  3518. "rotate": [
  3519. { "time": 0, "angle": 0 },
  3520. { "time": 0.1, "angle": -4.04 },
  3521. { "time": 0.2333, "angle": -10.11 },
  3522. { "time": 0.3667, "angle": -16.18 },
  3523. { "time": 0.4333, "angle": -10.79 },
  3524. { "time": 0.5667, "angle": -5.39 },
  3525. { "time": 0.6667, "angle": 0 },
  3526. { "time": 0.7333, "angle": -4.04 },
  3527. { "time": 0.8667, "angle": -10.11 },
  3528. { "time": 1, "angle": -16.18 },
  3529. { "time": 1.0667, "angle": -10.79 },
  3530. { "time": 1.2, "angle": -5.39 },
  3531. { "time": 1.3, "angle": 0 },
  3532. { "time": 1.4, "angle": -4.04 },
  3533. { "time": 1.5333, "angle": -10.11 },
  3534. { "time": 1.6667, "angle": -16.18 },
  3535. { "time": 1.7333, "angle": -10.79 },
  3536. { "time": 1.8667, "angle": -5.39 },
  3537. { "time": 1.9667, "angle": 0 },
  3538. { "time": 2.0667, "angle": -4.04 },
  3539. { "time": 2.2, "angle": -10.11 },
  3540. { "time": 2.3333, "angle": -16.18 },
  3541. { "time": 2.4, "angle": -10.79 },
  3542. { "time": 2.5333, "angle": -5.39 },
  3543. { "time": 2.6333, "angle": 0 },
  3544. { "time": 2.7333, "angle": -4.04 },
  3545. { "time": 2.8667, "angle": -10.11 },
  3546. { "time": 3, "angle": -16.18 },
  3547. { "time": 3.0667, "angle": -10.79 },
  3548. { "time": 3.2, "angle": -5.39 },
  3549. { "time": 3.3, "angle": 0 }
  3550. ],
  3551. "translate": [
  3552. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3553. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3554. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  3555. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  3556. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  3557. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  3558. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3559. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3560. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3561. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3562. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3563. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3564. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  3565. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3566. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3567. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3568. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3570. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  3571. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3572. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  3573. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  3574. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  3575. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3576. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  3577. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  3578. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  3579. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3580. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  3581. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  3582. { "time": 3.3, "x": 0, "y": 0 }
  3583. ],
  3584. "scale": [
  3585. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3586. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  3587. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  3588. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  3589. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  3590. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  3591. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3592. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3593. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  3594. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3595. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3596. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  3597. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  3598. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3599. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3606. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  3607. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  3608. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3609. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  3610. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  3611. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  3612. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3613. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  3614. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  3615. { "time": 3.3, "x": 1, "y": 1 }
  3616. ]
  3617. },
  3618. "bone18": {
  3619. "rotate": [
  3620. { "time": 0, "angle": 0 },
  3621. {
  3622. "time": 0.1667,
  3623. "angle": 9.65,
  3624. "curve": [ 0.25, 0, 0.75, 1 ]
  3625. },
  3626. { "time": 0.6, "angle": 0 },
  3627. { "time": 0.7, "angle": 10.41 },
  3628. { "time": 1.5333, "angle": 1.61 },
  3629. { "time": 2.4333, "angle": 6.75 },
  3630. { "time": 3.3, "angle": 1.61 }
  3631. ],
  3632. "translate": [
  3633. { "time": 0, "x": 0, "y": 0 },
  3634. {
  3635. "time": 0.1667,
  3636. "x": 2.49,
  3637. "y": 0.48,
  3638. "curve": [ 0.25, 0, 0.75, 1 ]
  3639. },
  3640. { "time": 0.6, "x": 0, "y": 0 },
  3641. { "time": 0.7, "x": -0.58, "y": 4.95 },
  3642. { "time": 1.5333, "x": 0.14, "y": -0.66 },
  3643. { "time": 2.4333, "x": -0.22, "y": 1.56 },
  3644. { "time": 3.3, "x": 0.14, "y": -0.66 }
  3645. ],
  3646. "scale": [
  3647. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3648. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3649. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3650. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3651. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3652. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3653. { "time": 3.3, "x": 1, "y": 1 }
  3654. ]
  3655. },
  3656. "bone62": {
  3657. "rotate": [
  3658. { "time": 0, "angle": 0 },
  3659. {
  3660. "time": 0.1667,
  3661. "angle": 15.13,
  3662. "curve": [ 0.25, 0, 0.75, 1 ]
  3663. },
  3664. {
  3665. "time": 0.3333,
  3666. "angle": -7.64,
  3667. "curve": [ 0.25, 0, 0.75, 1 ]
  3668. },
  3669. { "time": 0.6, "angle": -1.57 },
  3670. { "time": 0.7, "angle": 5.9 },
  3671. { "time": 1, "angle": 9.12 },
  3672. { "time": 1.6333, "angle": 11.65 },
  3673. { "time": 2.4667, "angle": 5.9 },
  3674. { "time": 3.3, "angle": 11.65 }
  3675. ],
  3676. "translate": [
  3677. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3678. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3679. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3680. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3681. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  3682. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3683. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3684. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  3685. { "time": 3.3, "x": 0, "y": 0 }
  3686. ],
  3687. "scale": [
  3688. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3689. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3690. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3691. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3692. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3693. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3694. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3695. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  3696. { "time": 3.3, "x": 1, "y": 1 }
  3697. ]
  3698. },
  3699. "bone50": {
  3700. "rotate": [
  3701. { "time": 0, "angle": 0, "curve": "stepped" },
  3702. { "time": 0.1667, "angle": 0 },
  3703. { "time": 0.7, "angle": -334.61 },
  3704. { "time": 1, "angle": 7.69, "curve": "stepped" },
  3705. { "time": 1.6333, "angle": 7.69, "curve": "stepped" },
  3706. { "time": 2.4667, "angle": 7.69, "curve": "stepped" },
  3707. { "time": 3.3, "angle": 7.69 }
  3708. ],
  3709. "translate": [
  3710. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3711. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3712. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3713. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3714. { "time": 3.3, "x": 0, "y": 0 }
  3715. ],
  3716. "scale": [
  3717. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3718. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3719. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3720. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3721. { "time": 3.3, "x": 1, "y": 1 }
  3722. ]
  3723. },
  3724. "bone75": {
  3725. "rotate": [
  3726. { "time": 0, "angle": 0 },
  3727. {
  3728. "time": 0.1667,
  3729. "angle": 9.98,
  3730. "curve": [ 0.25, 0, 0.75, 1 ]
  3731. },
  3732. { "time": 0.6, "angle": 0 },
  3733. { "time": 0.7, "angle": 33.54 },
  3734. { "time": 1.5333, "angle": 21.35 },
  3735. { "time": 2.4333, "angle": 16.23 },
  3736. { "time": 3.3, "angle": 21.35 }
  3737. ],
  3738. "translate": [
  3739. { "time": 0, "x": 0, "y": 0 },
  3740. {
  3741. "time": 0.1667,
  3742. "x": 0.48,
  3743. "y": 1.22,
  3744. "curve": [ 0.25, 0, 0.75, 1 ]
  3745. },
  3746. { "time": 0.6, "x": 0, "y": 0 },
  3747. { "time": 0.7, "x": -1.16, "y": 5.22 },
  3748. { "time": 1.5333, "x": -2.04, "y": 0.93 },
  3749. { "time": 2.4333, "x": -0.56, "y": 2.53 },
  3750. { "time": 3.3, "x": -2.04, "y": 0.93 }
  3751. ],
  3752. "scale": [
  3753. { "time": 0, "x": 1, "y": 1 },
  3754. {
  3755. "time": 0.1667,
  3756. "x": 1,
  3757. "y": 1.2,
  3758. "curve": [ 0.25, 0, 0.75, 1 ]
  3759. },
  3760. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3761. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3762. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3763. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3764. { "time": 3.3, "x": 1, "y": 1 }
  3765. ]
  3766. },
  3767. "bone23": {
  3768. "rotate": [
  3769. { "time": 0, "angle": 0 },
  3770. { "time": 0.1667, "angle": -7.5, "curve": "stepped" },
  3771. { "time": 0.6, "angle": -7.5 },
  3772. { "time": 0.7, "angle": 11.68 },
  3773. { "time": 1.5333, "angle": 26.88 },
  3774. { "time": 2.4333, "angle": 11.68 },
  3775. { "time": 3.3, "angle": 26.88 }
  3776. ],
  3777. "translate": [
  3778. { "time": 0, "x": 0, "y": 0 },
  3779. {
  3780. "time": 0.1667,
  3781. "x": 3.48,
  3782. "y": 0.43,
  3783. "curve": [ 0.25, 0, 0.75, 1 ]
  3784. },
  3785. { "time": 0.6, "x": 2.31, "y": 2.33 },
  3786. { "time": 0.7, "x": -6.43, "y": -0.18 },
  3787. { "time": 1.5333, "x": -4.38, "y": 0.71 },
  3788. { "time": 2.4333, "x": -6.43, "y": -0.18 },
  3789. { "time": 3.3, "x": -4.38, "y": 0.71 }
  3790. ],
  3791. "scale": [
  3792. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3793. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3794. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3795. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3796. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3797. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3798. { "time": 3.3, "x": 1, "y": 1 }
  3799. ]
  3800. },
  3801. "bone11": {
  3802. "rotate": [
  3803. { "time": 0, "angle": 0 },
  3804. { "time": 0.1667, "angle": -11.32, "curve": "stepped" },
  3805. {
  3806. "time": 0.3333,
  3807. "angle": -11.32,
  3808. "curve": [ 0.25, 0, 0.75, 1 ]
  3809. },
  3810. { "time": 0.6, "angle": -21.22 },
  3811. { "time": 0.7, "angle": -11.32 }
  3812. ],
  3813. "translate": [
  3814. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3815. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3816. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3817. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3818. { "time": 0.7, "x": 0, "y": 0 }
  3819. ],
  3820. "scale": [
  3821. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3822. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3823. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3824. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3825. { "time": 0.7, "x": 1, "y": 1 }
  3826. ]
  3827. },
  3828. "bone51": {
  3829. "rotate": [
  3830. { "time": 0, "angle": 0 },
  3831. { "time": 0.1667, "angle": 3.22 },
  3832. { "time": 0.6, "angle": 1.68 },
  3833. { "time": 0.7, "angle": 16.37 },
  3834. { "time": 1, "angle": 25.52, "curve": "stepped" },
  3835. { "time": 1.6333, "angle": 25.52 },
  3836. { "time": 2.4667, "angle": 19.35 },
  3837. { "time": 3.3, "angle": 25.52 }
  3838. ],
  3839. "translate": [
  3840. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3841. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3842. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3843. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3844. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3845. { "time": 3.3, "x": 0, "y": 0 }
  3846. ],
  3847. "scale": [
  3848. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3849. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3850. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3851. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3852. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  3853. { "time": 3.3, "x": 1, "y": 1 }
  3854. ]
  3855. },
  3856. "bone5": {
  3857. "rotate": [
  3858. { "time": 0, "angle": 0, "curve": "stepped" },
  3859. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3860. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3861. { "time": 0.6, "angle": 0, "curve": "stepped" },
  3862. { "time": 0.7, "angle": 0 }
  3863. ],
  3864. "translate": [
  3865. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3866. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3867. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3868. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3869. { "time": 0.7, "x": 0, "y": 0 }
  3870. ],
  3871. "scale": [
  3872. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3873. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3874. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3875. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3876. { "time": 0.7, "x": 1, "y": 1 }
  3877. ]
  3878. },
  3879. "root": {
  3880. "rotate": [
  3881. { "time": 0, "angle": 0 }
  3882. ],
  3883. "translate": [
  3884. { "time": 0, "x": 0, "y": 0 }
  3885. ],
  3886. "scale": [
  3887. { "time": 0, "x": 0.65, "y": 0.65 }
  3888. ]
  3889. },
  3890. "bone3": {
  3891. "rotate": [
  3892. { "time": 0, "angle": 0 },
  3893. {
  3894. "time": 0.1667,
  3895. "angle": 8.36,
  3896. "curve": [ 0.25, 0, 0.75, 1 ]
  3897. },
  3898. {
  3899. "time": 0.3333,
  3900. "angle": 5.33,
  3901. "curve": [ 0.25, 0, 0.75, 1 ]
  3902. },
  3903. { "time": 0.6, "angle": 4.81 },
  3904. {
  3905. "time": 0.7,
  3906. "angle": 11.26,
  3907. "curve": [ 0.25, 0, 0.75, 1 ]
  3908. },
  3909. { "time": 0.8667, "angle": 12.42, "curve": "stepped" },
  3910. { "time": 1.2333, "angle": 12.42 },
  3911. { "time": 1.4667, "angle": 10.48 }
  3912. ],
  3913. "translate": [
  3914. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3915. { "time": 0.1667, "x": 0, "y": 0 },
  3916. {
  3917. "time": 0.3333,
  3918. "x": 1.94,
  3919. "y": -0.08,
  3920. "curve": [ 0.25, 0, 0.75, 1 ]
  3921. },
  3922. { "time": 0.6, "x": 2.97, "y": -2.39 },
  3923. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  3924. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  3925. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  3926. { "time": 1.4667, "x": 0, "y": 0 }
  3927. ],
  3928. "scale": [
  3929. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3930. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3931. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3932. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3933. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3934. { "time": 0.8667, "x": 1, "y": 1 }
  3935. ]
  3936. },
  3937. "bone64": {
  3938. "rotate": [
  3939. { "time": 0, "angle": 0, "curve": "stepped" },
  3940. { "time": 0.1667, "angle": 0 },
  3941. { "time": 0.6, "angle": 10.29 },
  3942. { "time": 0.7, "angle": 9.17, "curve": "stepped" },
  3943. { "time": 1.5333, "angle": 9.17, "curve": "stepped" },
  3944. { "time": 2.4333, "angle": 9.17, "curve": "stepped" },
  3945. { "time": 3.3, "angle": 9.17 }
  3946. ],
  3947. "translate": [
  3948. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3949. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3950. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  3951. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  3952. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3953. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  3954. { "time": 3.3, "x": 0, "y": 0 }
  3955. ],
  3956. "scale": [
  3957. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3958. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3959. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  3960. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  3961. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  3962. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  3963. { "time": 3.3, "x": 1, "y": 1 }
  3964. ]
  3965. },
  3966. "long31": {
  3967. "rotate": [
  3968. { "time": 0, "angle": 0 },
  3969. { "time": 0.1, "angle": 1.2 },
  3970. { "time": 0.1667, "angle": -14.23 },
  3971. { "time": 0.2333, "angle": -38.69 },
  3972. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  3973. { "time": 0.4333, "angle": 0 },
  3974. { "time": 0.5667, "angle": -32.2 },
  3975. { "time": 0.6667, "angle": 0 },
  3976. { "time": 0.7333, "angle": 1.2 },
  3977. { "time": 0.8, "angle": -14.23 },
  3978. { "time": 0.8667, "angle": -38.69 },
  3979. { "time": 1, "angle": 0, "curve": "stepped" },
  3980. { "time": 1.0667, "angle": 0 },
  3981. { "time": 1.2, "angle": -32.2 },
  3982. { "time": 1.3, "angle": 0 },
  3983. { "time": 1.4, "angle": 1.2 },
  3984. { "time": 1.4667, "angle": -14.23 },
  3985. { "time": 1.5333, "angle": -38.69 },
  3986. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3987. { "time": 1.7333, "angle": 0 },
  3988. { "time": 1.8667, "angle": -32.2 },
  3989. { "time": 1.9667, "angle": 0 },
  3990. { "time": 2.0667, "angle": 1.2 },
  3991. { "time": 2.1333, "angle": -14.23 },
  3992. { "time": 2.2, "angle": -38.69 },
  3993. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  3994. { "time": 2.4, "angle": 0 },
  3995. { "time": 2.5333, "angle": -32.2 },
  3996. { "time": 2.6333, "angle": 0 },
  3997. { "time": 2.7333, "angle": 1.2 },
  3998. { "time": 2.8, "angle": -14.23 },
  3999. { "time": 2.8667, "angle": -38.69 },
  4000. { "time": 3, "angle": 0, "curve": "stepped" },
  4001. { "time": 3.0667, "angle": 0 },
  4002. { "time": 3.2, "angle": -32.2 },
  4003. { "time": 3.3, "angle": 0 }
  4004. ],
  4005. "translate": [
  4006. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4007. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4008. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4009. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4010. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  4011. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4012. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4013. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4014. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4015. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4016. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4017. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4018. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4019. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  4020. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4021. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4022. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4023. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4024. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  4025. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4026. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4027. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4028. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  4029. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4030. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4031. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  4032. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4033. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4034. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4035. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4036. { "time": 3.3, "x": 0, "y": 0 }
  4037. ],
  4038. "scale": [
  4039. { "time": 0, "x": 1, "y": 1 },
  4040. { "time": 0.1, "x": 1, "y": 0.8 },
  4041. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4042. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4043. { "time": 0.4333, "x": 1, "y": 1 },
  4044. { "time": 0.5667, "x": 1, "y": 0.6 },
  4045. { "time": 0.6667, "x": 1, "y": 1 },
  4046. { "time": 0.7333, "x": 1, "y": 0.8 },
  4047. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4048. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4049. { "time": 1.0667, "x": 1, "y": 1 },
  4050. { "time": 1.2, "x": 1, "y": 0.6 },
  4051. { "time": 1.3, "x": 1, "y": 1 },
  4052. { "time": 1.4, "x": 1, "y": 0.8 },
  4053. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4054. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4055. { "time": 1.7333, "x": 1, "y": 1 },
  4056. { "time": 1.8667, "x": 1, "y": 0.6 },
  4057. { "time": 1.9667, "x": 1, "y": 1 },
  4058. { "time": 2.0667, "x": 1, "y": 0.8 },
  4059. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4060. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4061. { "time": 2.4, "x": 1, "y": 1 },
  4062. { "time": 2.5333, "x": 1, "y": 0.6 },
  4063. { "time": 2.6333, "x": 1, "y": 1 },
  4064. { "time": 2.7333, "x": 1, "y": 0.8 },
  4065. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4066. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4067. { "time": 3.0667, "x": 1, "y": 1 },
  4068. { "time": 3.2, "x": 1, "y": 0.6 },
  4069. { "time": 3.3, "x": 1, "y": 1 }
  4070. ]
  4071. },
  4072. "bone73": {
  4073. "rotate": [
  4074. { "time": 0, "angle": 0 },
  4075. { "time": 0.1667, "angle": -4.36, "curve": "stepped" },
  4076. { "time": 0.6, "angle": -4.36 },
  4077. { "time": 0.7, "angle": 14.28, "curve": "stepped" },
  4078. { "time": 1.5333, "angle": 14.28, "curve": "stepped" },
  4079. { "time": 2.4333, "angle": 14.28, "curve": "stepped" },
  4080. { "time": 3.3, "angle": 14.28 }
  4081. ],
  4082. "translate": [
  4083. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4084. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4085. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4086. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  4087. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4088. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4089. { "time": 3.3, "x": 0, "y": 0 }
  4090. ],
  4091. "scale": [
  4092. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4093. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4094. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4095. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4096. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4097. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4098. { "time": 3.3, "x": 1, "y": 1 }
  4099. ]
  4100. },
  4101. "long9": {
  4102. "rotate": [
  4103. {
  4104. "time": 0,
  4105. "angle": 0,
  4106. "curve": [ 0.25, 0, 0.75, 1 ]
  4107. },
  4108. {
  4109. "time": 0.3667,
  4110. "angle": 18.48,
  4111. "curve": [ 0.25, 0, 0.75, 1 ]
  4112. },
  4113. {
  4114. "time": 0.6667,
  4115. "angle": -8.22,
  4116. "curve": [ 0.258, 0, 0.619, 0.45 ]
  4117. },
  4118. {
  4119. "time": 0.8,
  4120. "angle": 18.92,
  4121. "curve": [ 0.363, 0.44, 0.755, 1 ]
  4122. },
  4123. {
  4124. "time": 1,
  4125. "angle": 18.48,
  4126. "curve": [ 0.25, 0, 0.75, 1 ]
  4127. },
  4128. {
  4129. "time": 1.3,
  4130. "angle": 0,
  4131. "curve": [ 0.25, 0, 0.75, 1 ]
  4132. },
  4133. {
  4134. "time": 1.6667,
  4135. "angle": 18.48,
  4136. "curve": [ 0.25, 0, 0.75, 1 ]
  4137. },
  4138. {
  4139. "time": 1.9667,
  4140. "angle": 0,
  4141. "curve": [ 0.25, 0, 0.75, 1 ]
  4142. },
  4143. {
  4144. "time": 2.3333,
  4145. "angle": 18.48,
  4146. "curve": [ 0.25, 0, 0.75, 1 ]
  4147. },
  4148. {
  4149. "time": 2.6333,
  4150. "angle": 0,
  4151. "curve": [ 0.25, 0, 0.75, 1 ]
  4152. },
  4153. {
  4154. "time": 3,
  4155. "angle": 18.48,
  4156. "curve": [ 0.25, 0, 0.75, 1 ]
  4157. },
  4158. { "time": 3.3, "angle": 0 }
  4159. ],
  4160. "translate": [
  4161. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4162. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4163. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4164. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4165. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4166. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4167. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  4168. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4169. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4170. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4171. { "time": 3.3, "x": 0, "y": 0 }
  4172. ],
  4173. "scale": [
  4174. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4175. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4176. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4177. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4178. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4179. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4180. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  4181. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4182. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4183. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4184. { "time": 3.3, "x": 1, "y": 1 }
  4185. ]
  4186. },
  4187. "bone26": {
  4188. "rotate": [
  4189. { "time": 0, "angle": 0 },
  4190. { "time": 0.1667, "angle": 16.59 },
  4191. { "time": 0.3667, "angle": 14.55 },
  4192. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4193. { "time": 0.6, "angle": 0 },
  4194. { "time": 0.7, "angle": 4.23 }
  4195. ],
  4196. "translate": [
  4197. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4198. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4199. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4200. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4201. { "time": 0.7, "x": 0, "y": 0 }
  4202. ],
  4203. "scale": [
  4204. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4205. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4206. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4207. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4208. { "time": 0.7, "x": 1, "y": 1 }
  4209. ]
  4210. },
  4211. "long5": {
  4212. "rotate": [
  4213. { "time": 0, "angle": 38.07 },
  4214. { "time": 0.1, "angle": 24.17 },
  4215. { "time": 0.2333, "angle": 2.96 },
  4216. { "time": 0.3667, "angle": -16.18 },
  4217. { "time": 0.4333, "angle": 7.09 },
  4218. { "time": 0.5667, "angle": 0.86 },
  4219. { "time": 0.6667, "angle": 38.07 },
  4220. { "time": 0.7333, "angle": 24.17 },
  4221. { "time": 0.8667, "angle": 2.96 },
  4222. { "time": 1, "angle": -16.18 },
  4223. { "time": 1.0667, "angle": 7.09 },
  4224. { "time": 1.2, "angle": 0.86 },
  4225. { "time": 1.3, "angle": 38.07 },
  4226. { "time": 1.4, "angle": 24.17 },
  4227. { "time": 1.5333, "angle": 2.96 },
  4228. { "time": 1.6667, "angle": -16.18 },
  4229. { "time": 1.7333, "angle": 7.09 },
  4230. { "time": 1.8667, "angle": 0.86 },
  4231. { "time": 1.9667, "angle": 38.07 },
  4232. { "time": 2.0667, "angle": 24.17 },
  4233. { "time": 2.2, "angle": 2.96 },
  4234. { "time": 2.3333, "angle": -16.18 },
  4235. { "time": 2.4, "angle": 7.09 },
  4236. { "time": 2.5333, "angle": 0.86 },
  4237. { "time": 2.6333, "angle": 38.07 },
  4238. { "time": 2.7333, "angle": 24.17 },
  4239. { "time": 2.8667, "angle": 2.96 },
  4240. { "time": 3, "angle": -16.18 },
  4241. { "time": 3.0667, "angle": 7.09 },
  4242. { "time": 3.2, "angle": 0.86 },
  4243. { "time": 3.3, "angle": 38.07 }
  4244. ],
  4245. "translate": [
  4246. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4247. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4248. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4249. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4250. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  4251. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4252. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4253. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4254. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4255. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4256. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4257. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4258. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4259. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  4260. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4261. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4262. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4263. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4264. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  4265. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4266. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4267. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4268. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  4269. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4270. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4271. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  4272. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4273. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4274. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4275. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4276. { "time": 3.3, "x": 0, "y": 0 }
  4277. ],
  4278. "scale": [
  4279. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4280. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4281. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4282. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4283. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  4284. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4285. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4286. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4287. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4288. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4289. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4290. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4291. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4292. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  4293. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4294. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4295. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4296. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4297. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  4298. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4299. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4300. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4301. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  4302. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4303. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4304. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  4305. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4306. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4307. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4308. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4309. { "time": 3.3, "x": 1, "y": 1 }
  4310. ]
  4311. },
  4312. "bone76": {
  4313. "rotate": [
  4314. { "time": 0, "angle": 0, "curve": "stepped" },
  4315. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4316. { "time": 0.6, "angle": 0 },
  4317. { "time": 0.7, "angle": 16.8 },
  4318. { "time": 1.5333, "angle": -9.54 },
  4319. { "time": 2.4333, "angle": 6.57 },
  4320. { "time": 3.3, "angle": -9.54 }
  4321. ],
  4322. "translate": [
  4323. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4324. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4325. { "time": 0.6, "x": 0, "y": 0 },
  4326. { "time": 0.7, "x": -3.46, "y": -0.67 },
  4327. { "time": 1.5333, "x": 0, "y": 0 },
  4328. { "time": 2.4333, "x": -4.75, "y": -3.56 },
  4329. { "time": 3.3, "x": 0, "y": 0 }
  4330. ],
  4331. "scale": [
  4332. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4333. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4334. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4335. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4336. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4337. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4338. { "time": 3.3, "x": 1, "y": 1 }
  4339. ]
  4340. },
  4341. "bone20": {
  4342. "rotate": [
  4343. { "time": 0, "angle": 0 },
  4344. {
  4345. "time": 0.1667,
  4346. "angle": 3.05,
  4347. "curve": [ 0.268, 0, 0.618, 0.42 ]
  4348. },
  4349. {
  4350. "time": 0.3,
  4351. "angle": 8.39,
  4352. "curve": [ 0.346, 0.38, 0.757, 1 ]
  4353. },
  4354. { "time": 0.6, "angle": 0 },
  4355. { "time": 0.7, "angle": 18.19 },
  4356. { "time": 1.5333, "angle": 0.73 },
  4357. { "time": 2.4333, "angle": 4.25 },
  4358. { "time": 3.3, "angle": -9.78 }
  4359. ],
  4360. "translate": [
  4361. { "time": 0, "x": 0, "y": 0 },
  4362. {
  4363. "time": 0.1667,
  4364. "x": -0.48,
  4365. "y": -0.07,
  4366. "curve": [ 0.25, 0, 0.75, 1 ]
  4367. },
  4368. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4369. { "time": 0.7, "x": 0, "y": 0 },
  4370. { "time": 1.5333, "x": -0.91, "y": -2.3 },
  4371. { "time": 2.4333, "x": 0, "y": 0 },
  4372. { "time": 3.3, "x": -0.91, "y": -2.3 }
  4373. ],
  4374. "scale": [
  4375. { "time": 0, "x": 1, "y": 1 },
  4376. {
  4377. "time": 0.1667,
  4378. "x": 1,
  4379. "y": 1.1,
  4380. "curve": [ 0.25, 0, 0.75, 1 ]
  4381. },
  4382. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4383. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4384. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4385. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4386. { "time": 3.3, "x": 1, "y": 1 }
  4387. ]
  4388. },
  4389. "long29": {
  4390. "rotate": [
  4391. { "time": 0, "angle": 0, "curve": "stepped" },
  4392. { "time": 0.1, "angle": 0 },
  4393. { "time": 0.2333, "angle": 35.67 },
  4394. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  4395. { "time": 0.4333, "angle": 0 },
  4396. { "time": 0.5667, "angle": 4.48 },
  4397. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4398. { "time": 0.7333, "angle": 0 },
  4399. { "time": 0.8667, "angle": 35.67 },
  4400. { "time": 1, "angle": 0, "curve": "stepped" },
  4401. { "time": 1.0667, "angle": 0 },
  4402. { "time": 1.2, "angle": 4.48 },
  4403. { "time": 1.3, "angle": 0, "curve": "stepped" },
  4404. { "time": 1.4, "angle": 0 },
  4405. { "time": 1.5333, "angle": 35.67 },
  4406. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4407. { "time": 1.7333, "angle": 0 },
  4408. { "time": 1.8667, "angle": 4.48 },
  4409. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  4410. { "time": 2.0667, "angle": 0 },
  4411. { "time": 2.2, "angle": 35.67 },
  4412. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  4413. { "time": 2.4, "angle": 0 },
  4414. { "time": 2.5333, "angle": 4.48 },
  4415. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  4416. { "time": 2.7333, "angle": 0 },
  4417. { "time": 2.8667, "angle": 35.67 },
  4418. { "time": 3, "angle": 0, "curve": "stepped" },
  4419. { "time": 3.0667, "angle": 0 },
  4420. { "time": 3.2, "angle": 4.48 },
  4421. { "time": 3.3, "angle": 0 }
  4422. ],
  4423. "translate": [
  4424. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4427. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4428. { "time": 0.4333, "x": 0, "y": 0 },
  4429. { "time": 0.5667, "x": 1.38, "y": -1.08 },
  4430. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4431. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4432. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4433. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4434. { "time": 1.0667, "x": 0, "y": 0 },
  4435. { "time": 1.2, "x": 1.38, "y": -1.08 },
  4436. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4437. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  4438. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4439. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4440. { "time": 1.7333, "x": 0, "y": 0 },
  4441. { "time": 1.8667, "x": 1.38, "y": -1.08 },
  4442. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  4443. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4444. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4445. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4446. { "time": 2.4, "x": 0, "y": 0 },
  4447. { "time": 2.5333, "x": 1.38, "y": -1.08 },
  4448. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4452. { "time": 3.0667, "x": 0, "y": 0 },
  4453. { "time": 3.2, "x": 1.38, "y": -1.08 },
  4454. { "time": 3.3, "x": 0, "y": 0 }
  4455. ],
  4456. "scale": [
  4457. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4458. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4459. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4460. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4461. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  4462. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4463. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4464. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4465. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4466. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4467. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4468. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4469. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4470. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  4471. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4472. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4473. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4474. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4475. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  4476. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4477. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4478. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4479. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  4480. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4481. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4482. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  4483. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4484. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4485. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4486. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4487. { "time": 3.3, "x": 1, "y": 1 }
  4488. ]
  4489. },
  4490. "bone": {
  4491. "rotate": [
  4492. { "time": 0, "angle": 0, "curve": "stepped" },
  4493. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4494. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4495. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4496. { "time": 0.7, "angle": 0 }
  4497. ],
  4498. "translate": [
  4499. { "time": 0, "x": 0, "y": 0 },
  4500. { "time": 0.1667, "x": 0, "y": -4.44 },
  4501. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4502. { "time": 0.6, "x": 0, "y": 0 },
  4503. { "time": 0.7, "x": -3.38, "y": 0 }
  4504. ],
  4505. "scale": [
  4506. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4507. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4508. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4509. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4510. { "time": 0.7, "x": 1, "y": 1 }
  4511. ]
  4512. },
  4513. "bone29": {
  4514. "rotate": [
  4515. { "time": 0, "angle": 0 },
  4516. { "time": 0.1667, "angle": 8.3 },
  4517. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4518. { "time": 0.6, "angle": 0 },
  4519. { "time": 0.7, "angle": -0.18 }
  4520. ],
  4521. "translate": [
  4522. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4523. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4524. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4525. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4526. { "time": 0.7, "x": 0, "y": 0 }
  4527. ],
  4528. "scale": [
  4529. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4530. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4531. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4532. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4533. { "time": 0.7, "x": 1, "y": 1 }
  4534. ]
  4535. },
  4536. "bone12": {
  4537. "rotate": [
  4538. { "time": 0, "angle": 0, "curve": "stepped" },
  4539. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4540. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4541. { "time": 0.7, "angle": 0, "curve": "stepped" },
  4542. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  4543. { "time": 2.4333, "angle": 0, "curve": "stepped" },
  4544. { "time": 3.3, "angle": 0 }
  4545. ],
  4546. "translate": [
  4547. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4548. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4550. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  4551. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4552. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  4553. { "time": 3.3, "x": 0, "y": 0 }
  4554. ],
  4555. "scale": [
  4556. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4557. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4558. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4559. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4560. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4561. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4562. { "time": 3.3, "x": 1, "y": 1 }
  4563. ]
  4564. },
  4565. "bone56": {
  4566. "rotate": [
  4567. { "time": 0, "angle": 0, "curve": "stepped" },
  4568. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4569. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4570. { "time": 0.6, "angle": 0, "curve": "stepped" },
  4571. { "time": 0.7, "angle": 0 },
  4572. { "time": 1, "angle": 1.91 },
  4573. { "time": 1.6333, "angle": 5.93 },
  4574. { "time": 2.4667, "angle": 0 },
  4575. { "time": 3.3, "angle": 5.93 }
  4576. ],
  4577. "translate": [
  4578. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4579. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4580. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4581. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4582. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  4583. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4584. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4585. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4586. { "time": 3.3, "x": 0, "y": 0 }
  4587. ],
  4588. "scale": [
  4589. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4590. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4591. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4592. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4596. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4597. { "time": 3.3, "x": 1, "y": 1 }
  4598. ]
  4599. },
  4600. "bone37": {
  4601. "rotate": [
  4602. { "time": 0, "angle": 0 },
  4603. {
  4604. "time": 0.1667,
  4605. "angle": -2.46,
  4606. "curve": [ 0.25, 0, 0.75, 1 ]
  4607. },
  4608. {
  4609. "time": 0.5,
  4610. "angle": -5.71,
  4611. "curve": [ 0.244, 0, 0.641, 0.57 ]
  4612. },
  4613. { "time": 0.7, "angle": 2.64 },
  4614. { "time": 1, "angle": -1.98 },
  4615. { "time": 1.6333, "angle": 14.49 },
  4616. { "time": 2.4667, "angle": 4.55 },
  4617. { "time": 3.3, "angle": 14.49 }
  4618. ],
  4619. "translate": [
  4620. { "time": 0, "x": 0, "y": 0 },
  4621. { "time": 0.7, "x": -0.62, "y": 0.61 },
  4622. { "time": 1, "x": -0.35, "y": -0.27, "curve": "stepped" },
  4623. { "time": 1.6333, "x": -0.35, "y": -0.27, "curve": "stepped" },
  4624. { "time": 3.3, "x": -0.35, "y": -0.27 }
  4625. ],
  4626. "scale": [
  4627. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4628. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4629. {
  4630. "time": 0.3333,
  4631. "x": 1,
  4632. "y": 1,
  4633. "curve": [ 0.25, 0, 0.75, 1 ]
  4634. },
  4635. { "time": 0.5, "x": 1, "y": 1.02 },
  4636. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4637. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4638. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4639. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4640. { "time": 3.3, "x": 1, "y": 1 }
  4641. ]
  4642. },
  4643. "long24": {
  4644. "rotate": [
  4645. { "time": 0, "angle": 0 },
  4646. { "time": 0.1, "angle": -8.69 },
  4647. { "time": 0.2333, "angle": -0.02 },
  4648. { "time": 0.2667, "angle": 329.23 },
  4649. { "time": 0.3667, "angle": 316.98 },
  4650. { "time": 0.4333, "angle": 23.06 },
  4651. { "time": 0.5667, "angle": -11.59 },
  4652. { "time": 0.6667, "angle": 0 },
  4653. { "time": 0.7333, "angle": -8.69 },
  4654. { "time": 0.8667, "angle": -0.02 },
  4655. { "time": 0.9, "angle": 329.23 },
  4656. { "time": 1, "angle": 316.98 },
  4657. { "time": 1.0667, "angle": 23.06 },
  4658. { "time": 1.2, "angle": -11.59 },
  4659. { "time": 1.3, "angle": 0 },
  4660. { "time": 1.4, "angle": -8.69 },
  4661. { "time": 1.5333, "angle": -0.02 },
  4662. { "time": 1.5667, "angle": 329.23 },
  4663. { "time": 1.6667, "angle": 316.98 },
  4664. { "time": 1.7333, "angle": 23.06 },
  4665. { "time": 1.8667, "angle": -11.59 },
  4666. { "time": 1.9667, "angle": 0 },
  4667. { "time": 2.0667, "angle": -8.69 },
  4668. { "time": 2.2, "angle": -0.02 },
  4669. { "time": 2.2333, "angle": 329.23 },
  4670. { "time": 2.3333, "angle": 316.98 },
  4671. { "time": 2.4, "angle": 23.06 },
  4672. { "time": 2.5333, "angle": -11.59 },
  4673. { "time": 2.6333, "angle": 0 },
  4674. { "time": 2.7333, "angle": -8.69 },
  4675. { "time": 2.8667, "angle": -0.02 },
  4676. { "time": 2.9, "angle": 329.23 },
  4677. { "time": 3, "angle": 316.98 },
  4678. { "time": 3.0667, "angle": 23.06 },
  4679. { "time": 3.2, "angle": -11.59 },
  4680. { "time": 3.3, "angle": 0 }
  4681. ],
  4682. "translate": [
  4683. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4684. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4685. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4686. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4687. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  4688. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4689. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4690. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4691. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4692. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4693. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4694. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4695. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4696. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  4697. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4698. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4699. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4700. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4701. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  4702. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4703. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4704. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4705. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  4706. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4707. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4708. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  4709. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4710. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4711. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4712. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4713. { "time": 3.3, "x": 0, "y": 0 }
  4714. ],
  4715. "scale": [
  4716. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4717. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4718. { "time": 0.2333, "x": 1, "y": 1 },
  4719. { "time": 0.2667, "x": 1, "y": 0.8 },
  4720. { "time": 0.3667, "x": 1, "y": 1 },
  4721. { "time": 0.4333, "x": 1, "y": 0.65 },
  4722. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4723. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4724. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4725. { "time": 0.8667, "x": 1, "y": 1 },
  4726. { "time": 0.9, "x": 1, "y": 0.8 },
  4727. { "time": 1, "x": 1, "y": 1 },
  4728. { "time": 1.0667, "x": 1, "y": 0.65 },
  4729. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4730. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4731. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  4732. { "time": 1.5333, "x": 1, "y": 1 },
  4733. { "time": 1.5667, "x": 1, "y": 0.8 },
  4734. { "time": 1.6667, "x": 1, "y": 1 },
  4735. { "time": 1.7333, "x": 1, "y": 0.65 },
  4736. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4737. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  4738. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4739. { "time": 2.2, "x": 1, "y": 1 },
  4740. { "time": 2.2333, "x": 1, "y": 0.8 },
  4741. { "time": 2.3333, "x": 1, "y": 1 },
  4742. { "time": 2.4, "x": 1, "y": 0.65 },
  4743. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4744. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4745. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  4746. { "time": 2.8667, "x": 1, "y": 1 },
  4747. { "time": 2.9, "x": 1, "y": 0.8 },
  4748. { "time": 3, "x": 1, "y": 1 },
  4749. { "time": 3.0667, "x": 1, "y": 0.65 },
  4750. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 3.3, "x": 1, "y": 1 }
  4752. ]
  4753. },
  4754. "long22": {
  4755. "rotate": [
  4756. { "time": 0, "angle": -6.24 },
  4757. { "time": 0.1, "angle": 7.6 },
  4758. { "time": 0.2333, "angle": 3.8 },
  4759. { "time": 0.3667, "angle": 0 },
  4760. { "time": 0.4333, "angle": -2.08 },
  4761. { "time": 0.5667, "angle": -15.73 },
  4762. { "time": 0.6667, "angle": -6.24 },
  4763. { "time": 0.7333, "angle": 7.6 },
  4764. { "time": 0.8667, "angle": 3.8 },
  4765. { "time": 1, "angle": 0 },
  4766. { "time": 1.0667, "angle": -2.08 },
  4767. { "time": 1.2, "angle": -15.73 },
  4768. { "time": 1.3, "angle": -6.24 },
  4769. { "time": 1.4, "angle": 7.6 },
  4770. { "time": 1.5333, "angle": 3.8 },
  4771. { "time": 1.6667, "angle": 0 },
  4772. { "time": 1.7333, "angle": -2.08 },
  4773. { "time": 1.8667, "angle": -15.73 },
  4774. { "time": 1.9667, "angle": -6.24 },
  4775. { "time": 2.0667, "angle": 7.6 },
  4776. { "time": 2.2, "angle": 3.8 },
  4777. { "time": 2.3333, "angle": 0 },
  4778. { "time": 2.4, "angle": -2.08 },
  4779. { "time": 2.5333, "angle": -15.73 },
  4780. { "time": 2.6333, "angle": -6.24 },
  4781. { "time": 2.7333, "angle": 7.6 },
  4782. { "time": 2.8667, "angle": 3.8 },
  4783. { "time": 3, "angle": 0 },
  4784. { "time": 3.0667, "angle": -2.08 },
  4785. { "time": 3.2, "angle": -15.73 },
  4786. { "time": 3.3, "angle": -6.24 }
  4787. ],
  4788. "translate": [
  4789. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4790. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4791. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  4792. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4793. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  4794. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  4795. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4796. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4797. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4798. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4799. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  4800. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4801. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4802. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  4803. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  4804. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4805. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  4806. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4807. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  4808. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4809. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4810. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4811. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  4812. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4813. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4814. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  4815. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  4816. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4817. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  4818. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4819. { "time": 3.3, "x": 0, "y": 0 }
  4820. ],
  4821. "scale": [
  4822. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4823. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4824. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  4825. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  4826. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  4827. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  4828. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4829. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4830. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4831. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4832. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  4833. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4834. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  4835. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  4836. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  4837. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4838. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  4839. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4840. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  4841. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4842. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4843. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  4844. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  4845. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4846. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  4847. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  4848. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4849. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4850. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  4851. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4852. { "time": 3.3, "x": 1, "y": 1 }
  4853. ]
  4854. },
  4855. "bone59": {
  4856. "rotate": [
  4857. { "time": 0, "angle": 0 },
  4858. {
  4859. "time": 0.1667,
  4860. "angle": -2.21,
  4861. "curve": [ 0.25, 0, 0.75, 1 ]
  4862. },
  4863. {
  4864. "time": 0.3333,
  4865. "angle": -2.46,
  4866. "curve": [ 0.25, 0, 0.75, 1 ]
  4867. },
  4868. { "time": 0.6, "angle": -14.7 },
  4869. { "time": 0.7, "angle": -0.56 },
  4870. { "time": 1, "angle": 2.66, "curve": "stepped" },
  4871. { "time": 1.6333, "angle": 2.66 },
  4872. { "time": 2.4667, "angle": -0.56 },
  4873. { "time": 3.3, "angle": 2.66 }
  4874. ],
  4875. "translate": [
  4876. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4877. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4878. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4879. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4880. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  4881. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4882. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  4883. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  4884. { "time": 3.3, "x": 0, "y": 0 }
  4885. ],
  4886. "scale": [
  4887. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4888. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4889. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4890. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4891. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4892. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4893. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 3.3, "x": 1, "y": 1 }
  4896. ]
  4897. },
  4898. "bone10": {
  4899. "rotate": [
  4900. { "time": 0, "angle": -22.54 },
  4901. {
  4902. "time": 0.1667,
  4903. "angle": -24.75,
  4904. "curve": [ 0.25, 0, 0.75, 1 ]
  4905. },
  4906. {
  4907. "time": 0.3333,
  4908. "angle": -48.36,
  4909. "curve": [ 0.25, 0, 0.75, 1 ]
  4910. },
  4911. { "time": 0.6, "angle": -55.59 },
  4912. { "time": 0.7, "angle": -24.75 }
  4913. ],
  4914. "translate": [
  4915. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4916. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4917. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4918. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  4919. { "time": 0.7, "x": 0, "y": 0 }
  4920. ],
  4921. "scale": [
  4922. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4923. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4924. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4925. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  4926. { "time": 0.7, "x": 1, "y": 1 }
  4927. ]
  4928. },
  4929. "long10": {
  4930. "rotate": [
  4931. {
  4932. "time": 0,
  4933. "angle": 0,
  4934. "curve": [ 0.25, 0, 0.75, 1 ]
  4935. },
  4936. {
  4937. "time": 0.3667,
  4938. "angle": -22.91,
  4939. "curve": [ 0.25, 0, 0.75, 1 ]
  4940. },
  4941. {
  4942. "time": 0.6667,
  4943. "angle": -99.35,
  4944. "curve": [ 0.269, 0, 0.618, 0.42 ]
  4945. },
  4946. {
  4947. "time": 0.7667,
  4948. "angle": -34.58,
  4949. "curve": [ 0.326, 0.31, 0.661, 0.65 ]
  4950. },
  4951. {
  4952. "time": 1,
  4953. "angle": 8.94,
  4954. "curve": [ 0.25, 0, 0.75, 1 ]
  4955. },
  4956. {
  4957. "time": 1.3,
  4958. "angle": 9.97,
  4959. "curve": [ 0.25, 0, 0.75, 1 ]
  4960. },
  4961. {
  4962. "time": 1.6667,
  4963. "angle": 8.94,
  4964. "curve": [ 0.25, 0, 0.75, 1 ]
  4965. },
  4966. {
  4967. "time": 1.9667,
  4968. "angle": 0,
  4969. "curve": [ 0.25, 0, 0.75, 1 ]
  4970. },
  4971. {
  4972. "time": 2.3333,
  4973. "angle": 9.97,
  4974. "curve": [ 0.25, 0, 0.75, 1 ]
  4975. },
  4976. {
  4977. "time": 2.6333,
  4978. "angle": 0,
  4979. "curve": [ 0.25, 0, 0.75, 1 ]
  4980. },
  4981. {
  4982. "time": 3,
  4983. "angle": 9.97,
  4984. "curve": [ 0.25, 0, 0.75, 1 ]
  4985. },
  4986. { "time": 3.3, "angle": 0 }
  4987. ],
  4988. "translate": [
  4989. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4990. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  4991. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4992. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4993. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  4994. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4995. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  4996. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  4997. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  4998. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4999. { "time": 3.3, "x": 0, "y": 0 }
  5000. ],
  5001. "scale": [
  5002. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5003. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5004. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5005. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5006. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5007. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5008. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  5009. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5010. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5011. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5012. { "time": 3.3, "x": 1, "y": 1 }
  5013. ]
  5014. },
  5015. "bone63": {
  5016. "rotate": [
  5017. { "time": 0, "angle": 0 },
  5018. {
  5019. "time": 0.1667,
  5020. "angle": 15.13,
  5021. "curve": [ 0.25, 0, 0.75, 1 ]
  5022. },
  5023. {
  5024. "time": 0.3333,
  5025. "angle": -7.64,
  5026. "curve": [ 0.25, 0, 0.75, 1 ]
  5027. },
  5028. { "time": 0.6, "angle": -40.55 },
  5029. { "time": 0.7, "angle": 5.9 },
  5030. { "time": 1, "angle": 9.12 },
  5031. { "time": 1.6333, "angle": -18.31 },
  5032. { "time": 2.4667, "angle": 5.9 },
  5033. { "time": 3.3, "angle": -18.31 }
  5034. ],
  5035. "translate": [
  5036. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5037. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5038. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5039. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  5040. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  5041. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5042. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5043. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5044. { "time": 3.3, "x": 0, "y": 0 }
  5045. ],
  5046. "scale": [
  5047. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5048. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5049. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5050. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5051. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  5052. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5053. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5054. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5055. { "time": 3.3, "x": 1, "y": 1 }
  5056. ]
  5057. },
  5058. "bone53": {
  5059. "rotate": [
  5060. { "time": 0, "angle": 0, "curve": "stepped" },
  5061. { "time": 0.1667, "angle": 0 },
  5062. { "time": 0.6, "angle": 8.93 },
  5063. { "time": 0.7, "angle": 11.44 },
  5064. { "time": 1, "angle": 3.77 },
  5065. { "time": 1.6333, "angle": 10.97 },
  5066. { "time": 2.4667, "angle": -2.4 },
  5067. { "time": 3.3, "angle": 10.97 }
  5068. ],
  5069. "translate": [
  5070. { "time": 0, "x": 0, "y": 0 },
  5071. { "time": 0.1667, "x": 0.98, "y": -1.28 },
  5072. { "time": 0.6, "x": -2.36, "y": -1 },
  5073. { "time": 1, "x": -1.59, "y": -2.73, "curve": "stepped" },
  5074. { "time": 1.6333, "x": -1.59, "y": -2.73, "curve": "stepped" },
  5075. { "time": 3.3, "x": -1.59, "y": -2.73 }
  5076. ],
  5077. "scale": [
  5078. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5079. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5080. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5081. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5082. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5083. { "time": 3.3, "x": 1, "y": 1 }
  5084. ]
  5085. },
  5086. "long26": {
  5087. "rotate": [
  5088. { "time": 0, "angle": 0, "curve": "stepped" },
  5089. { "time": 0.1, "angle": 0, "curve": "stepped" },
  5090. { "time": 0.2333, "angle": 0 },
  5091. { "time": 0.3667, "angle": -6.33 },
  5092. { "time": 0.4333, "angle": -41.06 },
  5093. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5094. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5095. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  5096. { "time": 0.8667, "angle": 0 },
  5097. { "time": 1, "angle": -6.33 },
  5098. { "time": 1.0667, "angle": -41.06 },
  5099. { "time": 1.2, "angle": 0, "curve": "stepped" },
  5100. { "time": 1.3, "angle": 0, "curve": "stepped" },
  5101. { "time": 1.4, "angle": 0, "curve": "stepped" },
  5102. { "time": 1.5333, "angle": 0 },
  5103. { "time": 1.6667, "angle": -6.33 },
  5104. { "time": 1.7333, "angle": -41.06 },
  5105. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  5106. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  5107. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  5108. { "time": 2.2, "angle": 0 },
  5109. { "time": 2.3333, "angle": -6.33 },
  5110. { "time": 2.4, "angle": -41.06 },
  5111. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  5112. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  5113. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  5114. { "time": 2.8667, "angle": 0 },
  5115. { "time": 3, "angle": -6.33 },
  5116. { "time": 3.0667, "angle": -41.06 },
  5117. { "time": 3.2, "angle": 0, "curve": "stepped" },
  5118. { "time": 3.3, "angle": 0 }
  5119. ],
  5120. "translate": [
  5121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5122. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  5123. { "time": 0.2333, "x": 0, "y": 0 },
  5124. { "time": 0.2667, "x": -1.08, "y": -0.42 },
  5125. { "time": 0.3667, "x": -0.14, "y": 1.4 },
  5126. { "time": 0.4333, "x": -6.77, "y": 1.14 },
  5127. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5128. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5129. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  5130. { "time": 0.8667, "x": 0, "y": 0 },
  5131. { "time": 0.9, "x": -1.08, "y": -0.42 },
  5132. { "time": 1, "x": -0.14, "y": 1.4 },
  5133. { "time": 1.0667, "x": -6.77, "y": 1.14 },
  5134. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  5135. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5136. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  5137. { "time": 1.5333, "x": 0, "y": 0 },
  5138. { "time": 1.5667, "x": -1.08, "y": -0.42 },
  5139. { "time": 1.6667, "x": -0.14, "y": 1.4 },
  5140. { "time": 1.7333, "x": -6.77, "y": 1.14 },
  5141. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5142. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  5143. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  5144. { "time": 2.2, "x": 0, "y": 0 },
  5145. { "time": 2.2333, "x": -1.08, "y": -0.42 },
  5146. { "time": 2.3333, "x": -0.14, "y": 1.4 },
  5147. { "time": 2.4, "x": -6.77, "y": 1.14 },
  5148. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5149. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5150. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  5151. { "time": 2.8667, "x": 0, "y": 0 },
  5152. { "time": 2.9, "x": -1.08, "y": -0.42 },
  5153. { "time": 3, "x": -0.14, "y": 1.4 },
  5154. { "time": 3.0667, "x": -6.77, "y": 1.14 },
  5155. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  5156. { "time": 3.3, "x": 0, "y": 0 }
  5157. ],
  5158. "scale": [
  5159. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5160. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  5161. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  5162. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5163. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  5164. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5165. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5166. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  5167. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  5168. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5169. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  5170. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  5171. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5172. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  5173. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5174. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5175. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5176. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5177. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  5178. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  5179. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5180. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5181. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  5182. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5183. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5184. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  5185. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  5186. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5189. { "time": 3.3, "x": 1, "y": 1 }
  5190. ]
  5191. },
  5192. "bone25": {
  5193. "rotate": [
  5194. { "time": 0, "angle": 4.44 },
  5195. { "time": 0.1667, "angle": -5.44 },
  5196. { "time": 0.5333, "angle": 14.99, "curve": "stepped" },
  5197. { "time": 0.6, "angle": 14.99 },
  5198. { "time": 0.7, "angle": 14.71 }
  5199. ],
  5200. "translate": [
  5201. { "time": 0, "x": 0, "y": 0 },
  5202. { "time": 0.1667, "x": 0.1, "y": 4.51 },
  5203. { "time": 0.3667, "x": -0.41, "y": 3.05 },
  5204. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  5205. { "time": 0.6, "x": 0, "y": 0 },
  5206. { "time": 0.7, "x": 3.26, "y": -0.82 }
  5207. ],
  5208. "scale": [
  5209. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5210. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5211. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5212. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5213. { "time": 0.7, "x": 1, "y": 1 }
  5214. ]
  5215. },
  5216. "long32": {
  5217. "rotate": [
  5218. { "time": 0, "angle": 0 },
  5219. { "time": 0.1, "angle": 18.8 },
  5220. { "time": 0.1667, "angle": 35.93 },
  5221. { "time": 0.2333, "angle": 46.31 },
  5222. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  5223. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  5224. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5225. { "time": 0.6667, "angle": 0 },
  5226. { "time": 0.7333, "angle": 18.8 },
  5227. { "time": 0.8, "angle": 35.93 },
  5228. { "time": 0.8667, "angle": 46.31 },
  5229. { "time": 1, "angle": 0, "curve": "stepped" },
  5230. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  5231. { "time": 1.2, "angle": 0, "curve": "stepped" },
  5232. { "time": 1.3, "angle": 0 },
  5233. { "time": 1.4, "angle": 18.8 },
  5234. { "time": 1.4667, "angle": 35.93 },
  5235. { "time": 1.5333, "angle": 46.31 },
  5236. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5237. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5238. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  5239. { "time": 1.9667, "angle": 0 },
  5240. { "time": 2.0667, "angle": 18.8 },
  5241. { "time": 2.1333, "angle": 35.93 },
  5242. { "time": 2.2, "angle": 46.31 },
  5243. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  5244. { "time": 2.4, "angle": 0, "curve": "stepped" },
  5245. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  5246. { "time": 2.6333, "angle": 0 },
  5247. { "time": 2.7333, "angle": 18.8 },
  5248. { "time": 2.8, "angle": 35.93 },
  5249. { "time": 2.8667, "angle": 46.31 },
  5250. { "time": 3, "angle": 0, "curve": "stepped" },
  5251. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  5252. { "time": 3.2, "angle": 0, "curve": "stepped" },
  5253. { "time": 3.3, "angle": 0 }
  5254. ],
  5255. "translate": [
  5256. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5257. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  5258. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  5259. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5260. { "time": 0.4333, "x": 0, "y": 0 },
  5261. { "time": 0.5667, "x": 0.81, "y": -1.06 },
  5262. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5263. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  5264. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  5265. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5266. { "time": 1.0667, "x": 0, "y": 0 },
  5267. { "time": 1.2, "x": 0.81, "y": -1.06 },
  5268. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5269. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  5270. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5271. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5272. { "time": 1.7333, "x": 0, "y": 0 },
  5273. { "time": 1.8667, "x": 0.81, "y": -1.06 },
  5274. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  5275. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  5276. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5277. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5278. { "time": 2.4, "x": 0, "y": 0 },
  5279. { "time": 2.5333, "x": 0.81, "y": -1.06 },
  5280. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5281. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  5282. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  5283. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5284. { "time": 3.0667, "x": 0, "y": 0 },
  5285. { "time": 3.2, "x": 0.81, "y": -1.06 },
  5286. { "time": 3.3, "x": 0, "y": 0 }
  5287. ],
  5288. "scale": [
  5289. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5290. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  5291. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  5292. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5293. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  5294. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5295. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5296. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  5297. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  5298. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5299. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  5300. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  5301. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5302. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  5303. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5304. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5305. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5306. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5307. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  5308. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  5309. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5310. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5311. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  5312. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5313. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5314. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  5315. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  5316. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5317. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5318. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5319. { "time": 3.3, "x": 1, "y": 1 }
  5320. ]
  5321. },
  5322. "long30": {
  5323. "rotate": [
  5324. { "time": 0, "angle": 17.38 },
  5325. { "time": 0.1, "angle": -4.75 },
  5326. { "time": 0.1667, "angle": -28.68 },
  5327. { "time": 0.2333, "angle": -54.49 },
  5328. { "time": 0.3667, "angle": 0 },
  5329. { "time": 0.4333, "angle": 5.79 },
  5330. { "time": 0.5667, "angle": 11.59 },
  5331. { "time": 0.6667, "angle": 17.38 },
  5332. { "time": 0.7333, "angle": -4.75 },
  5333. { "time": 0.8, "angle": -28.68 },
  5334. { "time": 0.8667, "angle": -54.49 },
  5335. { "time": 1, "angle": 0 },
  5336. { "time": 1.0667, "angle": 5.79 },
  5337. { "time": 1.2, "angle": 11.59 },
  5338. { "time": 1.3, "angle": 17.38 },
  5339. { "time": 1.4, "angle": -4.75 },
  5340. { "time": 1.4667, "angle": -28.68 },
  5341. { "time": 1.5333, "angle": -54.49 },
  5342. { "time": 1.6667, "angle": 0 },
  5343. { "time": 1.7333, "angle": 5.79 },
  5344. { "time": 1.8667, "angle": 11.59 },
  5345. { "time": 1.9667, "angle": 17.38 },
  5346. { "time": 2.0667, "angle": -4.75 },
  5347. { "time": 2.1333, "angle": -28.68 },
  5348. { "time": 2.2, "angle": -54.49 },
  5349. { "time": 2.3333, "angle": 0 },
  5350. { "time": 2.4, "angle": 5.79 },
  5351. { "time": 2.5333, "angle": 11.59 },
  5352. { "time": 2.6333, "angle": 17.38 },
  5353. { "time": 2.7333, "angle": -4.75 },
  5354. { "time": 2.8, "angle": -28.68 },
  5355. { "time": 2.8667, "angle": -54.49 },
  5356. { "time": 3, "angle": 0 },
  5357. { "time": 3.0667, "angle": 5.79 },
  5358. { "time": 3.2, "angle": 11.59 },
  5359. { "time": 3.3, "angle": 17.38 }
  5360. ],
  5361. "translate": [
  5362. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5363. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  5364. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  5365. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5366. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  5367. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5368. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5369. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  5370. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  5371. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5372. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  5373. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  5374. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5375. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  5376. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5377. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5378. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5379. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5380. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  5381. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  5382. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5383. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5384. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  5385. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5386. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5387. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  5388. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  5389. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5390. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5391. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  5392. { "time": 3.3, "x": 0, "y": 0 }
  5393. ],
  5394. "scale": [
  5395. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5396. { "time": 0.1, "x": 1, "y": 1 },
  5397. { "time": 0.2333, "x": 1, "y": 0.65 },
  5398. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5399. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5401. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5402. { "time": 0.7333, "x": 1, "y": 1 },
  5403. { "time": 0.8667, "x": 1, "y": 0.65 },
  5404. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5405. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  5406. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  5407. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5408. { "time": 1.4, "x": 1, "y": 1 },
  5409. { "time": 1.5333, "x": 1, "y": 0.65 },
  5410. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5411. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5412. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5413. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  5414. { "time": 2.0667, "x": 1, "y": 1 },
  5415. { "time": 2.2, "x": 1, "y": 0.65 },
  5416. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5417. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  5418. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5419. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5420. { "time": 2.7333, "x": 1, "y": 1 },
  5421. { "time": 2.8667, "x": 1, "y": 0.65 },
  5422. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5423. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5424. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5425. { "time": 3.3, "x": 1, "y": 1 }
  5426. ]
  5427. },
  5428. "long15": {
  5429. "rotate": [
  5430. {
  5431. "time": 0,
  5432. "angle": 0,
  5433. "curve": [ 0.25, 0, 0.75, 1 ]
  5434. },
  5435. {
  5436. "time": 0.3667,
  5437. "angle": -31.57,
  5438. "curve": [ 0.25, 0, 0.75, 1 ]
  5439. },
  5440. {
  5441. "time": 0.6667,
  5442. "angle": 0,
  5443. "curve": [ 0.258, 0, 0.619, 0.45 ]
  5444. },
  5445. {
  5446. "time": 0.8,
  5447. "angle": -35.84,
  5448. "curve": [ 0.363, 0.44, 0.755, 1 ]
  5449. },
  5450. {
  5451. "time": 1,
  5452. "angle": -48.89,
  5453. "curve": [ 0.363, 0.44, 0.755, 1 ]
  5454. },
  5455. {
  5456. "time": 1.3,
  5457. "angle": 0,
  5458. "curve": [ 0.25, 0, 0.75, 1 ]
  5459. },
  5460. {
  5461. "time": 1.6667,
  5462. "angle": -31.57,
  5463. "curve": [ 0.25, 0, 0.75, 1 ]
  5464. },
  5465. {
  5466. "time": 1.9667,
  5467. "angle": 0,
  5468. "curve": [ 0.25, 0, 0.75, 1 ]
  5469. },
  5470. {
  5471. "time": 2.3333,
  5472. "angle": -31.57,
  5473. "curve": [ 0.25, 0, 0.75, 1 ]
  5474. },
  5475. {
  5476. "time": 2.6333,
  5477. "angle": 0,
  5478. "curve": [ 0.25, 0, 0.75, 1 ]
  5479. },
  5480. {
  5481. "time": 3,
  5482. "angle": -31.57,
  5483. "curve": [ 0.25, 0, 0.75, 1 ]
  5484. },
  5485. { "time": 3.3, "angle": 0 }
  5486. ],
  5487. "translate": [
  5488. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5489. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5490. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5491. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5492. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5493. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5494. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  5495. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5496. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5497. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5498. { "time": 3.3, "x": 0, "y": 0 }
  5499. ],
  5500. "scale": [
  5501. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5502. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5503. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5504. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5505. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5506. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5507. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  5508. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5509. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5510. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5511. { "time": 3.3, "x": 1, "y": 1 }
  5512. ]
  5513. },
  5514. "long28": {
  5515. "rotate": [
  5516. { "time": 0, "angle": 0, "curve": "stepped" },
  5517. { "time": 0.1, "angle": 0 },
  5518. { "time": 0.2333, "angle": 23.34 },
  5519. { "time": 0.3667, "angle": 0 },
  5520. { "time": 0.4333, "angle": -27.58 },
  5521. { "time": 0.5667, "angle": 3.75 },
  5522. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5523. { "time": 0.7333, "angle": 0 },
  5524. { "time": 0.8667, "angle": 23.34 },
  5525. { "time": 1, "angle": 0 },
  5526. { "time": 1.0667, "angle": -27.58 },
  5527. { "time": 1.2, "angle": 3.75 },
  5528. { "time": 1.3, "angle": 0, "curve": "stepped" },
  5529. { "time": 1.4, "angle": 0 },
  5530. { "time": 1.5333, "angle": 23.34 },
  5531. { "time": 1.6667, "angle": 0 },
  5532. { "time": 1.7333, "angle": -27.58 },
  5533. { "time": 1.8667, "angle": 3.75 },
  5534. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  5535. { "time": 2.0667, "angle": 0 },
  5536. { "time": 2.2, "angle": 23.34 },
  5537. { "time": 2.3333, "angle": 0 },
  5538. { "time": 2.4, "angle": -27.58 },
  5539. { "time": 2.5333, "angle": 3.75 },
  5540. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  5541. { "time": 2.7333, "angle": 0 },
  5542. { "time": 2.8667, "angle": 23.34 },
  5543. { "time": 3, "angle": 0 },
  5544. { "time": 3.0667, "angle": -27.58 },
  5545. { "time": 3.2, "angle": 3.75 },
  5546. { "time": 3.3, "angle": 0 }
  5547. ],
  5548. "translate": [
  5549. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5550. { "time": 0.1, "x": 0, "y": 0 },
  5551. { "time": 0.2333, "x": 2.87, "y": 0.65 },
  5552. { "time": 0.3667, "x": 0, "y": 0 },
  5553. { "time": 0.4333, "x": 1.62, "y": -0.65 },
  5554. { "time": 0.5667, "x": 1.17, "y": -0.05 },
  5555. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5556. { "time": 0.7333, "x": 0, "y": 0 },
  5557. { "time": 0.8667, "x": 2.87, "y": 0.65 },
  5558. { "time": 1, "x": 0, "y": 0 },
  5559. { "time": 1.0667, "x": 1.62, "y": -0.65 },
  5560. { "time": 1.2, "x": 1.17, "y": -0.05 },
  5561. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5562. { "time": 1.4, "x": 0, "y": 0 },
  5563. { "time": 1.5333, "x": 2.87, "y": 0.65 },
  5564. { "time": 1.6667, "x": 0, "y": 0 },
  5565. { "time": 1.7333, "x": 1.62, "y": -0.65 },
  5566. { "time": 1.8667, "x": 1.17, "y": -0.05 },
  5567. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  5568. { "time": 2.0667, "x": 0, "y": 0 },
  5569. { "time": 2.2, "x": 2.87, "y": 0.65 },
  5570. { "time": 2.3333, "x": 0, "y": 0 },
  5571. { "time": 2.4, "x": 1.62, "y": -0.65 },
  5572. { "time": 2.5333, "x": 1.17, "y": -0.05 },
  5573. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5574. { "time": 2.7333, "x": 0, "y": 0 },
  5575. { "time": 2.8667, "x": 2.87, "y": 0.65 },
  5576. { "time": 3, "x": 0, "y": 0 },
  5577. { "time": 3.0667, "x": 1.62, "y": -0.65 },
  5578. { "time": 3.2, "x": 1.17, "y": -0.05 },
  5579. { "time": 3.3, "x": 0, "y": 0 }
  5580. ],
  5581. "scale": [
  5582. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5583. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  5584. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  5585. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5586. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  5587. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5588. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5589. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  5590. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  5591. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5592. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5595. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  5596. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5597. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5598. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5599. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5600. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  5601. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  5602. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5603. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5604. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  5605. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5606. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5607. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  5608. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  5609. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5610. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5611. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5612. { "time": 3.3, "x": 1, "y": 1 }
  5613. ]
  5614. },
  5615. "bone24": {
  5616. "rotate": [
  5617. { "time": 0, "angle": 0 },
  5618. { "time": 0.1667, "angle": -7.5, "curve": "stepped" },
  5619. { "time": 0.6, "angle": -7.5 },
  5620. { "time": 0.7, "angle": 11.64 },
  5621. { "time": 1.5333, "angle": 26.88 },
  5622. { "time": 2.4333, "angle": 11.64 },
  5623. { "time": 3.3, "angle": 26.88 }
  5624. ],
  5625. "translate": [
  5626. { "time": 0, "x": 0, "y": 0 },
  5627. { "time": 0.1667, "x": -2.43, "y": 1.11, "curve": "stepped" },
  5628. { "time": 0.6, "x": -2.43, "y": 1.11, "curve": "stepped" },
  5629. { "time": 0.7, "x": -2.43, "y": 1.11 },
  5630. { "time": 1.5333, "x": -0.83, "y": -4.31 },
  5631. { "time": 2.4333, "x": -2.43, "y": 1.11 },
  5632. { "time": 3.3, "x": -0.83, "y": -4.31 }
  5633. ],
  5634. "scale": [
  5635. { "time": 0, "x": 1, "y": 1 },
  5636. { "time": 0.1667, "x": 0.9, "y": 1, "curve": "stepped" },
  5637. { "time": 0.6, "x": 0.9, "y": 1, "curve": "stepped" },
  5638. { "time": 0.7, "x": 0.9, "y": 1, "curve": "stepped" },
  5639. { "time": 1.5333, "x": 0.9, "y": 1, "curve": "stepped" },
  5640. { "time": 2.4333, "x": 0.9, "y": 1, "curve": "stepped" },
  5641. { "time": 3.3, "x": 0.9, "y": 1 }
  5642. ]
  5643. },
  5644. "long12": {
  5645. "rotate": [
  5646. {
  5647. "time": 0,
  5648. "angle": 0,
  5649. "curve": [ 0.25, 0, 0.75, 1 ]
  5650. },
  5651. {
  5652. "time": 0.3667,
  5653. "angle": 18.84,
  5654. "curve": [ 0.25, 0, 0.75, 1 ]
  5655. },
  5656. {
  5657. "time": 0.6667,
  5658. "angle": 0,
  5659. "curve": [ 0.25, 0, 0.75, 1 ]
  5660. },
  5661. {
  5662. "time": 1,
  5663. "angle": 18.84,
  5664. "curve": [ 0.25, 0, 0.75, 1 ]
  5665. },
  5666. {
  5667. "time": 1.3,
  5668. "angle": 0,
  5669. "curve": [ 0.25, 0, 0.75, 1 ]
  5670. },
  5671. {
  5672. "time": 1.6667,
  5673. "angle": 18.84,
  5674. "curve": [ 0.25, 0, 0.75, 1 ]
  5675. },
  5676. {
  5677. "time": 1.9667,
  5678. "angle": 0,
  5679. "curve": [ 0.25, 0, 0.75, 1 ]
  5680. },
  5681. {
  5682. "time": 2.3333,
  5683. "angle": 18.84,
  5684. "curve": [ 0.25, 0, 0.75, 1 ]
  5685. },
  5686. {
  5687. "time": 2.6333,
  5688. "angle": 0,
  5689. "curve": [ 0.25, 0, 0.75, 1 ]
  5690. },
  5691. {
  5692. "time": 3,
  5693. "angle": 18.84,
  5694. "curve": [ 0.25, 0, 0.75, 1 ]
  5695. },
  5696. { "time": 3.3, "angle": 0 }
  5697. ],
  5698. "translate": [
  5699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5700. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5701. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5702. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5703. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5704. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5705. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  5706. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5707. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5708. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5709. { "time": 3.3, "x": 0, "y": 0 }
  5710. ],
  5711. "scale": [
  5712. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5713. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5714. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5715. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5716. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5717. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5718. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  5719. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5720. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5721. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5722. { "time": 3.3, "x": 1, "y": 1 }
  5723. ]
  5724. },
  5725. "bone46": {
  5726. "rotate": [
  5727. { "time": 0, "angle": 0 },
  5728. { "time": 0.1667, "angle": -4.79, "curve": "stepped" },
  5729. { "time": 0.3333, "angle": -4.79, "curve": "stepped" },
  5730. { "time": 0.6, "angle": -4.79 },
  5731. { "time": 0.7, "angle": 329.52 },
  5732. { "time": 1, "angle": -28.23 },
  5733. { "time": 1.6333, "angle": 326.48 },
  5734. { "time": 2.4667, "angle": -4.79 },
  5735. { "time": 3.3, "angle": 326.48 }
  5736. ],
  5737. "translate": [
  5738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5739. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5740. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5741. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  5742. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  5743. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5744. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5745. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  5746. { "time": 3.3, "x": 0, "y": 0 }
  5747. ],
  5748. "scale": [
  5749. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5750. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5751. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5752. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5753. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  5754. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5755. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5756. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  5757. { "time": 3.3, "x": 1, "y": 1 }
  5758. ]
  5759. },
  5760. "long7": {
  5761. "rotate": [
  5762. { "time": 0, "angle": 0 },
  5763. { "time": 0.1, "angle": 1.75 },
  5764. { "time": 0.2333, "angle": 4.36 },
  5765. { "time": 0.3667, "angle": 6.98 },
  5766. { "time": 0.4333, "angle": 4.66 },
  5767. { "time": 0.5667, "angle": 2.33 },
  5768. { "time": 0.6667, "angle": 0 },
  5769. { "time": 0.7333, "angle": 1.75 },
  5770. { "time": 0.8667, "angle": 4.36 },
  5771. { "time": 1, "angle": 6.98 },
  5772. { "time": 1.0667, "angle": 4.66 },
  5773. { "time": 1.2, "angle": 2.33 },
  5774. { "time": 1.3, "angle": 0 },
  5775. { "time": 1.4, "angle": 1.75 },
  5776. { "time": 1.5333, "angle": 4.36 },
  5777. { "time": 1.6667, "angle": 6.98 },
  5778. { "time": 1.7333, "angle": 4.66 },
  5779. { "time": 1.8667, "angle": 2.33 },
  5780. { "time": 1.9667, "angle": 0 },
  5781. { "time": 2.0667, "angle": 1.75 },
  5782. { "time": 2.2, "angle": 4.36 },
  5783. { "time": 2.3333, "angle": 6.98 },
  5784. { "time": 2.4, "angle": 4.66 },
  5785. { "time": 2.5333, "angle": 2.33 },
  5786. { "time": 2.6333, "angle": 0 },
  5787. { "time": 2.7333, "angle": 1.75 },
  5788. { "time": 2.8667, "angle": 4.36 },
  5789. { "time": 3, "angle": 6.98 },
  5790. { "time": 3.0667, "angle": 4.66 },
  5791. { "time": 3.2, "angle": 2.33 },
  5792. { "time": 3.3, "angle": 0 }
  5793. ],
  5794. "translate": [
  5795. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5796. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  5797. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  5798. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5799. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  5800. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5801. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5802. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  5803. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  5804. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5805. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  5806. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  5807. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5808. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  5809. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5810. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5811. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  5812. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5813. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  5814. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  5815. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5816. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  5817. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  5818. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5819. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  5820. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  5821. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  5822. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  5823. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5824. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  5825. { "time": 3.3, "x": 0, "y": 0 }
  5826. ],
  5827. "scale": [
  5828. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5829. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  5830. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  5831. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5832. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  5833. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5834. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5835. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  5836. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  5837. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5838. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  5839. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  5840. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5841. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  5842. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5843. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5844. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5845. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5846. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  5847. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  5848. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5849. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  5850. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  5851. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5852. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  5853. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  5854. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  5855. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  5856. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5857. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  5858. { "time": 3.3, "x": 1, "y": 1 }
  5859. ]
  5860. },
  5861. "long17": {
  5862. "scale": [
  5863. { "time": 1.3, "x": 0.5, "y": 1 },
  5864. { "time": 1.3667, "x": 1, "y": 1 },
  5865. { "time": 1.4667, "x": 0.5, "y": 1 }
  5866. ]
  5867. },
  5868. "bone22": {
  5869. "rotate": [
  5870. { "time": 0, "angle": 0, "curve": "stepped" },
  5871. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5872. { "time": 0.6, "angle": 0 },
  5873. { "time": 0.7, "angle": 10.52 },
  5874. { "time": 1.5333, "angle": 0 },
  5875. { "time": 2.4333, "angle": 10.52 },
  5876. { "time": 3.3, "angle": 0 }
  5877. ],
  5878. "translate": [
  5879. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5880. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5881. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  5882. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  5883. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  5884. { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
  5885. { "time": 3.3, "x": 0, "y": 0 }
  5886. ],
  5887. "scale": [
  5888. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5889. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5890. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5891. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  5892. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  5893. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  5894. { "time": 3.3, "x": 1, "y": 1 }
  5895. ]
  5896. },
  5897. "bone52": {
  5898. "rotate": [
  5899. { "time": 0, "angle": 0, "curve": "stepped" },
  5900. { "time": 0.1667, "angle": 0 },
  5901. { "time": 0.6, "angle": -0.6 },
  5902. { "time": 0.7, "angle": -21.23 },
  5903. { "time": 1, "angle": 17.59 },
  5904. { "time": 1.6333, "angle": 3.51 },
  5905. { "time": 2.4667, "angle": 11.42 },
  5906. { "time": 3.3, "angle": 3.51 }
  5907. ],
  5908. "translate": [
  5909. { "time": 0, "x": 0, "y": 0 },
  5910. { "time": 0.1667, "x": 1.43, "y": -1.12 },
  5911. { "time": 0.6, "x": 0.41, "y": 0.35 },
  5912. { "time": 1, "x": 1.43, "y": -1.12, "curve": "stepped" },
  5913. { "time": 1.6333, "x": 1.43, "y": -1.12, "curve": "stepped" },
  5914. { "time": 3.3, "x": 1.43, "y": -1.12 }
  5915. ],
  5916. "scale": [
  5917. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5918. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5919. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  5920. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5921. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5922. { "time": 3.3, "x": 1, "y": 1 }
  5923. ]
  5924. },
  5925. "bone36": {
  5926. "rotate": [
  5927. { "time": 0, "angle": 0, "curve": "stepped" },
  5928. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5929. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5930. { "time": 1, "angle": 0, "curve": "stepped" },
  5931. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  5932. { "time": 3.3, "angle": 0 }
  5933. ],
  5934. "translate": [
  5935. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5936. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5937. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5938. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5939. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  5940. { "time": 3.3, "x": 0, "y": 0 }
  5941. ],
  5942. "scale": [
  5943. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5944. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5945. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5946. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5947. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  5948. { "time": 3.3, "x": 1, "y": 1 }
  5949. ]
  5950. },
  5951. "long6": {
  5952. "rotate": [
  5953. { "time": 0, "angle": 38.07 },
  5954. { "time": 0.1, "angle": 47.46 },
  5955. { "time": 0.2333, "angle": 40.14 },
  5956. { "time": 0.3667, "angle": -16.18 },
  5957. { "time": 0.4333, "angle": 16.29 },
  5958. { "time": 0.5667, "angle": 29.33 },
  5959. { "time": 0.6667, "angle": 38.07 },
  5960. { "time": 0.7333, "angle": 47.46 },
  5961. { "time": 0.8667, "angle": 40.14 },
  5962. { "time": 1, "angle": -16.18 },
  5963. { "time": 1.0667, "angle": 16.29 },
  5964. { "time": 1.2, "angle": 29.33 },
  5965. { "time": 1.3, "angle": 38.07 },
  5966. { "time": 1.4, "angle": 47.46 },
  5967. { "time": 1.5333, "angle": 40.14 },
  5968. { "time": 1.6667, "angle": -16.18 },
  5969. { "time": 1.7333, "angle": 16.29 },
  5970. { "time": 1.8667, "angle": 29.33 },
  5971. { "time": 1.9667, "angle": 38.07 },
  5972. { "time": 2.0667, "angle": 47.46 },
  5973. { "time": 2.2, "angle": 40.14 },
  5974. { "time": 2.3333, "angle": -16.18 },
  5975. { "time": 2.4, "angle": 16.29 },
  5976. { "time": 2.5333, "angle": 29.33 },
  5977. { "time": 2.6333, "angle": 38.07 },
  5978. { "time": 2.7333, "angle": 47.46 },
  5979. { "time": 2.8667, "angle": 40.14 },
  5980. { "time": 3, "angle": -16.18 },
  5981. { "time": 3.0667, "angle": 16.29 },
  5982. { "time": 3.2, "angle": 29.33 },
  5983. { "time": 3.3, "angle": 38.07 }
  5984. ],
  5985. "translate": [
  5986. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5987. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  5988. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  5989. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  5990. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  5991. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5992. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5993. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  5994. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  5995. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5996. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  5997. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  5998. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5999. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  6000. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6001. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6002. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  6003. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6004. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  6005. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  6006. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6007. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  6008. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  6009. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6010. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6011. { "time": 2.7333, "x": 0, "y": 0, "curve": "stepped" },
  6012. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  6013. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6014. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  6015. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  6016. { "time": 3.3, "x": 0, "y": 0 }
  6017. ],
  6018. "scale": [
  6019. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6020. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  6021. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  6022. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  6023. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  6024. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  6025. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6026. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  6027. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  6028. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6029. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  6030. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  6031. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  6032. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  6033. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6034. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6035. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  6036. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6037. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  6038. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  6039. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6040. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  6041. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  6042. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6043. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6044. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  6045. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  6046. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6047. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  6048. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  6049. { "time": 3.3, "x": 1, "y": 1 }
  6050. ]
  6051. },
  6052. "bone45": {
  6053. "rotate": [
  6054. { "time": 0, "angle": 0 },
  6055. {
  6056. "time": 0.1667,
  6057. "angle": -9.02,
  6058. "curve": [ 0.25, 0, 0.75, 1 ]
  6059. },
  6060. {
  6061. "time": 0.3333,
  6062. "angle": 7.79,
  6063. "curve": [ 0.25, 0, 0.75, 1 ]
  6064. },
  6065. { "time": 0.6, "angle": -9.02 },
  6066. { "time": 0.7, "angle": -0.36 },
  6067. { "time": 1.6333, "angle": 6.79 },
  6068. { "time": 2.4667, "angle": -0.36 },
  6069. { "time": 3.3, "angle": 6.79 }
  6070. ],
  6071. "translate": [
  6072. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6073. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6074. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6075. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  6076. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  6077. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6078. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6079. { "time": 3.3, "x": 0, "y": 0 }
  6080. ],
  6081. "scale": [
  6082. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6083. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6084. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6085. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6086. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  6087. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6088. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6089. { "time": 3.3, "x": 1, "y": 1 }
  6090. ]
  6091. },
  6092. "bone17": {
  6093. "rotate": [
  6094. { "time": 0, "angle": 0, "curve": "stepped" },
  6095. {
  6096. "time": 0.1667,
  6097. "angle": 0,
  6098. "curve": [ 0.25, 0, 0.75, 1 ]
  6099. },
  6100. { "time": 0.6, "angle": 3.59 },
  6101. { "time": 0.7, "angle": 21.78 },
  6102. { "time": 1.5333, "angle": 31.02 },
  6103. { "time": 2.4333, "angle": 6.75 },
  6104. { "time": 3.3, "angle": 31.02 }
  6105. ],
  6106. "translate": [
  6107. { "time": 0, "x": 0, "y": 0 },
  6108. {
  6109. "time": 0.1667,
  6110. "x": 1.9,
  6111. "y": 0.95,
  6112. "curve": [ 0.25, 0, 0.75, 1 ]
  6113. },
  6114. { "time": 0.6, "x": 0, "y": 0 },
  6115. { "time": 0.7, "x": -1.81, "y": 1.61 },
  6116. { "time": 1.5333, "x": 0, "y": 0 },
  6117. { "time": 2.4333, "x": 2.32, "y": 1.52 },
  6118. { "time": 3.3, "x": 0, "y": 0 }
  6119. ],
  6120. "scale": [
  6121. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6122. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6123. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6124. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  6125. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6126. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  6127. { "time": 3.3, "x": 1, "y": 1 }
  6128. ]
  6129. },
  6130. "bone58": {
  6131. "rotate": [
  6132. { "time": 0, "angle": 0 },
  6133. {
  6134. "time": 0.1667,
  6135. "angle": -7.81,
  6136. "curve": [ 0.25, 0, 0.75, 1 ]
  6137. },
  6138. {
  6139. "time": 0.3333,
  6140. "angle": -6.6,
  6141. "curve": [ 0.25, 0, 0.75, 1 ]
  6142. },
  6143. { "time": 0.6, "angle": 9.1 },
  6144. { "time": 0.7, "angle": 7.19 },
  6145. { "time": 1, "angle": 6.83, "curve": "stepped" },
  6146. { "time": 1.6333, "angle": 6.83 },
  6147. { "time": 2.4667, "angle": 7.19 },
  6148. { "time": 3.3, "angle": 6.83 }
  6149. ],
  6150. "translate": [
  6151. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6152. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6153. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6154. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  6155. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  6156. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6157. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6158. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6159. { "time": 3.3, "x": 0, "y": 0 }
  6160. ],
  6161. "scale": [
  6162. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6163. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6164. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6165. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6166. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  6167. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6168. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6169. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6170. { "time": 3.3, "x": 1, "y": 1 }
  6171. ]
  6172. },
  6173. "bone30": {
  6174. "rotate": [
  6175. { "time": 0, "angle": 0, "curve": "stepped" },
  6176. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6177. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6178. { "time": 0.6, "angle": 0 },
  6179. { "time": 0.7, "angle": -0.9 }
  6180. ],
  6181. "translate": [
  6182. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6183. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6184. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6185. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  6186. { "time": 0.7, "x": 0, "y": 0 }
  6187. ],
  6188. "scale": [
  6189. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6190. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6191. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6192. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6193. { "time": 0.7, "x": 1, "y": 1 }
  6194. ]
  6195. },
  6196. "bone70": {
  6197. "rotate": [
  6198. { "time": 0, "angle": 0 },
  6199. {
  6200. "time": 0.1667,
  6201. "angle": -11.13,
  6202. "curve": [ 0.25, 0, 0.75, 1 ]
  6203. },
  6204. {
  6205. "time": 0.3333,
  6206. "angle": 23.75,
  6207. "curve": [ 0.25, 0, 0.75, 1 ]
  6208. },
  6209. { "time": 0.6, "angle": -11.13 },
  6210. { "time": 0.7, "angle": 1.73 },
  6211. { "time": 1, "angle": 0.1 },
  6212. { "time": 1.6333, "angle": -3.35 },
  6213. { "time": 2.4667, "angle": 1.73 },
  6214. { "time": 3.3, "angle": -3.35 }
  6215. ],
  6216. "translate": [
  6217. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6218. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6219. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6220. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  6221. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  6222. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6223. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6224. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6225. { "time": 3.3, "x": 0, "y": 0 }
  6226. ],
  6227. "scale": [
  6228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6229. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6230. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6231. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6232. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  6233. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6234. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6235. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6236. { "time": 3.3, "x": 1, "y": 1 }
  6237. ]
  6238. },
  6239. "long20": {
  6240. "rotate": [
  6241. { "time": 0, "angle": 0, "curve": "stepped" },
  6242. { "time": 0.1, "angle": 0 },
  6243. { "time": 0.1333, "angle": -65.87 },
  6244. { "time": 0.2333, "angle": -56.29 },
  6245. { "time": 0.3667, "angle": 0 },
  6246. { "time": 0.4333, "angle": 11.71 },
  6247. { "time": 0.5667, "angle": -34.21 },
  6248. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6249. { "time": 0.7333, "angle": 0 },
  6250. { "time": 0.7667, "angle": -65.87 },
  6251. { "time": 0.8667, "angle": -56.29 },
  6252. { "time": 1, "angle": 0 },
  6253. { "time": 1.0667, "angle": 11.71 },
  6254. { "time": 1.2, "angle": -34.21 },
  6255. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6256. { "time": 1.4, "angle": 0 },
  6257. { "time": 1.4333, "angle": -65.87 },
  6258. { "time": 1.5333, "angle": -56.29 },
  6259. { "time": 1.6667, "angle": 0 },
  6260. { "time": 1.7333, "angle": 11.71 },
  6261. { "time": 1.8667, "angle": -34.21 },
  6262. { "time": 1.9667, "angle": 0, "curve": "stepped" },
  6263. { "time": 2.0667, "angle": 0 },
  6264. { "time": 2.1, "angle": -65.87 },
  6265. { "time": 2.2, "angle": -56.29 },
  6266. { "time": 2.3333, "angle": 0 },
  6267. { "time": 2.4, "angle": 11.71 },
  6268. { "time": 2.5333, "angle": -34.21 },
  6269. { "time": 2.6333, "angle": 0, "curve": "stepped" },
  6270. { "time": 2.7333, "angle": 0 },
  6271. { "time": 2.7667, "angle": -65.87 },
  6272. { "time": 2.8667, "angle": -56.29 },
  6273. { "time": 3, "angle": 0 },
  6274. { "time": 3.0667, "angle": 11.71 },
  6275. { "time": 3.2, "angle": -34.21 },
  6276. { "time": 3.3, "angle": 0 }
  6277. ],
  6278. "translate": [
  6279. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6280. { "time": 0.1, "x": 0, "y": 0 },
  6281. { "time": 0.1333, "x": -3.82, "y": 0.37 },
  6282. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  6283. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  6284. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  6285. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  6286. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6287. { "time": 0.7333, "x": 0, "y": 0 },
  6288. { "time": 0.7667, "x": -3.82, "y": 0.37 },
  6289. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  6290. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6291. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  6292. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  6293. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6294. { "time": 1.4, "x": 0, "y": 0 },
  6295. { "time": 1.4333, "x": -3.82, "y": 0.37 },
  6296. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6297. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6298. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  6299. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6300. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  6301. { "time": 2.0667, "x": 0, "y": 0 },
  6302. { "time": 2.1, "x": -3.82, "y": 0.37 },
  6303. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6304. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  6305. { "time": 2.4, "x": 0, "y": 0, "curve": "stepped" },
  6306. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6307. { "time": 2.6333, "x": 0, "y": 0, "curve": "stepped" },
  6308. { "time": 2.7333, "x": 0, "y": 0 },
  6309. { "time": 2.7667, "x": -3.82, "y": 0.37 },
  6310. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  6311. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6312. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  6313. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  6314. { "time": 3.3, "x": 0, "y": 0 }
  6315. ],
  6316. "scale": [
  6317. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6318. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  6319. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  6320. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  6321. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  6322. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  6323. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6324. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  6325. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  6326. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6327. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  6328. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  6329. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  6330. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  6331. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  6332. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6333. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  6334. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6335. { "time": 1.9667, "x": 1, "y": 1, "curve": "stepped" },
  6336. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  6337. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6338. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  6339. { "time": 2.4, "x": 1, "y": 1, "curve": "stepped" },
  6340. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6341. { "time": 2.6333, "x": 1, "y": 1, "curve": "stepped" },
  6342. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  6343. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  6344. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6345. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  6346. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  6347. { "time": 3.3, "x": 1, "y": 1 }
  6348. ]
  6349. },
  6350. "bone27": {
  6351. "rotate": [
  6352. { "time": 0, "angle": 0, "curve": "stepped" },
  6353. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6354. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  6355. { "time": 0.6, "angle": 0, "curve": "stepped" },
  6356. { "time": 0.7, "angle": 0 }
  6357. ],
  6358. "translate": [
  6359. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6360. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6361. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  6362. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  6363. { "time": 0.7, "x": 0, "y": 0 }
  6364. ],
  6365. "scale": [
  6366. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6367. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6368. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6369. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6370. { "time": 0.7, "x": 1, "y": 1 }
  6371. ]
  6372. },
  6373. "bone55": {
  6374. "rotate": [
  6375. { "time": 0, "angle": 0 },
  6376. { "time": 0.1667, "angle": -17.56 },
  6377. { "time": 0.6, "angle": -31.98 },
  6378. { "time": 0.7, "angle": -36.47 },
  6379. { "time": 1, "angle": -13.79 },
  6380. { "time": 1.6333, "angle": -31.65 },
  6381. { "time": 2.4667, "angle": -19.96 },
  6382. { "time": 3.3, "angle": -13.79 }
  6383. ],
  6384. "translate": [
  6385. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6386. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6387. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  6388. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6389. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6390. { "time": 3.3, "x": 0, "y": 0 }
  6391. ],
  6392. "scale": [
  6393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6394. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6395. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6396. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6397. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6398. { "time": 3.3, "x": 1, "y": 1 }
  6399. ]
  6400. },
  6401. "dro": {
  6402. "rotate": [
  6403. {
  6404. "time": 0,
  6405. "angle": 0,
  6406. "curve": [ 0.25, 0, 0.75, 1 ]
  6407. },
  6408. { "time": 0.6667, "angle": -40 },
  6409. { "time": 0.8333, "angle": 10 },
  6410. { "time": 1.1667, "angle": 0 }
  6411. ],
  6412. "translate": [
  6413. { "time": 0, "x": 12.79, "y": -2.5, "curve": "stepped" },
  6414. { "time": 0.5667, "x": 12.79, "y": -2.5 },
  6415. { "time": 0.6667, "x": 16.92, "y": -2.5 },
  6416. { "time": 0.7667, "x": 5.48, "y": -6.03 },
  6417. { "time": 1, "x": 12.79, "y": -2.5 }
  6418. ],
  6419. "scale": [
  6420. { "time": 0, "x": 1, "y": 1 }
  6421. ]
  6422. },
  6423. "bone68": {
  6424. "rotate": [
  6425. { "time": 0, "angle": 0 },
  6426. {
  6427. "time": 0.1667,
  6428. "angle": -11.13,
  6429. "curve": [ 0.25, 0, 0.75, 1 ]
  6430. },
  6431. {
  6432. "time": 0.3333,
  6433. "angle": 8.55,
  6434. "curve": [ 0.25, 0, 0.75, 1 ]
  6435. },
  6436. { "time": 0.6, "angle": -11.13 },
  6437. { "time": 0.7, "angle": 1.73 },
  6438. { "time": 1, "angle": -2.11 },
  6439. { "time": 1.6333, "angle": -10.22 },
  6440. { "time": 2.4667, "angle": 1.73 },
  6441. { "time": 3.3, "angle": -10.22 }
  6442. ],
  6443. "translate": [
  6444. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6445. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6446. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6447. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  6448. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  6449. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6450. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6451. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6452. { "time": 3.3, "x": 0, "y": 0 }
  6453. ],
  6454. "scale": [
  6455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6456. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6457. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6458. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  6459. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  6460. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6461. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6462. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6463. { "time": 3.3, "x": 1, "y": 1 }
  6464. ]
  6465. },
  6466. "bone31": {
  6467. "rotate": [
  6468. { "time": 0, "angle": 0, "curve": "stepped" },
  6469. { "time": 0.1, "angle": 0, "curve": "stepped" },
  6470. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  6471. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6472. { "time": 1.4, "angle": 0, "curve": "stepped" },
  6473. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6474. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6475. { "time": 2.5667, "angle": 0, "curve": "stepped" },
  6476. { "time": 2.6667, "angle": 0 }
  6477. ],
  6478. "translate": [
  6479. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6480. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  6481. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  6482. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6483. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6484. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  6485. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6486. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6487. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6488. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  6489. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6490. { "time": 2.8, "x": 0, "y": 0 }
  6491. ],
  6492. "scale": [
  6493. { "time": 0, "x": 1, "y": 1 },
  6494. { "time": 0.1, "x": 0.269, "y": 1, "curve": "stepped" },
  6495. { "time": 0.4333, "x": 0.269, "y": 1 },
  6496. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6497. { "time": 1.3, "x": 1, "y": 1 },
  6498. { "time": 1.4, "x": 0.269, "y": 1, "curve": "stepped" },
  6499. { "time": 1.5, "x": 0.269, "y": 1 },
  6500. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6501. { "time": 2.4667, "x": 1, "y": 1 },
  6502. { "time": 2.5667, "x": 0.269, "y": 1, "curve": "stepped" },
  6503. { "time": 2.6667, "x": 0.269, "y": 1 },
  6504. { "time": 2.8, "x": 1, "y": 1 }
  6505. ]
  6506. },
  6507. "bone34": {
  6508. "rotate": [
  6509. { "time": 0, "angle": 0, "curve": "stepped" },
  6510. { "time": 0.1, "angle": 0, "curve": "stepped" },
  6511. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6512. { "time": 1.4, "angle": 0, "curve": "stepped" },
  6513. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6514. { "time": 2.5667, "angle": 0 }
  6515. ],
  6516. "translate": [
  6517. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6518. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  6519. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  6520. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6521. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6522. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  6523. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6524. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6525. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6526. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  6527. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6528. { "time": 2.8, "x": 0, "y": 0 }
  6529. ],
  6530. "scale": [
  6531. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6532. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  6533. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  6534. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6535. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  6536. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  6537. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6538. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6539. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6540. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  6541. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6542. { "time": 2.8, "x": 1, "y": 1 }
  6543. ]
  6544. },
  6545. "bone33": {
  6546. "rotate": [
  6547. { "time": 0, "angle": 0, "curve": "stepped" },
  6548. { "time": 0.1, "angle": 0, "curve": "stepped" },
  6549. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  6550. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6551. { "time": 1.4, "angle": 0, "curve": "stepped" },
  6552. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6553. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6554. { "time": 2.5667, "angle": 0, "curve": "stepped" },
  6555. { "time": 2.6667, "angle": 0 }
  6556. ],
  6557. "translate": [
  6558. { "time": 0, "x": 0, "y": 0 },
  6559. { "time": 0.1, "x": -2.01, "y": 0, "curve": "stepped" },
  6560. { "time": 0.4333, "x": -2.01, "y": 0 },
  6561. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6562. { "time": 1.3, "x": 0, "y": 0 },
  6563. { "time": 1.4, "x": -2.01, "y": 0, "curve": "stepped" },
  6564. { "time": 1.5, "x": -2.01, "y": 0 },
  6565. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6566. { "time": 2.4667, "x": 0, "y": 0 },
  6567. { "time": 2.5667, "x": -2.01, "y": 0, "curve": "stepped" },
  6568. { "time": 2.6667, "x": -2.01, "y": 0 },
  6569. { "time": 2.8, "x": 0, "y": 0 }
  6570. ],
  6571. "scale": [
  6572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6573. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  6574. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  6575. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6576. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  6577. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  6578. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6579. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6580. { "time": 2.4667, "x": 1, "y": 1, "curve": "stepped" },
  6581. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  6582. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6583. { "time": 2.8, "x": 1, "y": 1 }
  6584. ]
  6585. },
  6586. "bone32": {
  6587. "rotate": [
  6588. { "time": 0, "angle": 0, "curve": "stepped" },
  6589. { "time": 0.1, "angle": 0, "curve": "stepped" },
  6590. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  6591. { "time": 1.3, "angle": 0, "curve": "stepped" },
  6592. { "time": 1.4, "angle": 0, "curve": "stepped" },
  6593. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6594. { "time": 2.4667, "angle": 0, "curve": "stepped" },
  6595. { "time": 2.5667, "angle": 0, "curve": "stepped" },
  6596. { "time": 2.6667, "angle": 0 }
  6597. ],
  6598. "translate": [
  6599. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6600. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  6601. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  6602. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6603. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  6604. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  6605. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6606. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6607. { "time": 2.4667, "x": 0, "y": 0, "curve": "stepped" },
  6608. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  6609. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6610. { "time": 2.8, "x": 0, "y": 0 }
  6611. ],
  6612. "scale": [
  6613. { "time": 0, "x": 1, "y": 1 },
  6614. { "time": 0.1, "x": 0.269, "y": 1, "curve": "stepped" },
  6615. { "time": 0.4333, "x": 0.269, "y": 1 },
  6616. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6617. { "time": 1.3, "x": 1, "y": 1 },
  6618. { "time": 1.4, "x": 0.269, "y": 1, "curve": "stepped" },
  6619. { "time": 1.5, "x": 0.269, "y": 1 },
  6620. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  6621. { "time": 2.4667, "x": 1, "y": 1 },
  6622. { "time": 2.5667, "x": 0.269, "y": 1, "curve": "stepped" },
  6623. { "time": 2.6667, "x": 0.269, "y": 1 },
  6624. { "time": 2.8, "x": 1, "y": 1 }
  6625. ]
  6626. },
  6627. "bone78": {
  6628. "translate": [
  6629. { "time": 0.8, "x": 5.79, "y": 5.7 },
  6630. { "time": 1.0333, "x": 3.25, "y": 5.7 }
  6631. ],
  6632. "scale": [
  6633. { "time": 0.8, "x": 1.2, "y": 1 }
  6634. ]
  6635. },
  6636. "bone79": {
  6637. "rotate": [
  6638. { "time": 0, "angle": -269.16 }
  6639. ],
  6640. "translate": [
  6641. { "time": 0, "x": 14.41, "y": 113.84 }
  6642. ]
  6643. }
  6644. },
  6645. "deform": {
  6646. "default": {
  6647. "guang2": {
  6648. "guang": [
  6649. { "time": 0.8333 },
  6650. {
  6651. "time": 1,
  6652. "vertices": [ -3.52642, 25.47514, 13.89556, -2.37687, -1.76147, -28.65221, -22.31884, -8.32212 ]
  6653. },
  6654. { "time": 1.3 }
  6655. ]
  6656. },
  6657. "l_cibang2": {
  6658. "l_cibang2": [
  6659. { "time": 0.4333, "curve": "stepped" },
  6660. { "time": 1.0667, "curve": "stepped" },
  6661. { "time": 1.7333, "curve": "stepped" },
  6662. { "time": 2.4, "curve": "stepped" },
  6663. { "time": 3.0667 }
  6664. ]
  6665. },
  6666. "l_longtou": {
  6667. "l_longtou": [
  6668. {
  6669. "time": 0.6667,
  6670. "offset": 52,
  6671. "vertices": [ 1.25447, -3.22032, 0.68445, -3.16769 ]
  6672. }
  6673. ]
  6674. },
  6675. "qunzi": {
  6676. "qunzi": [
  6677. { "time": 0.6 },
  6678. {
  6679. "time": 0.7,
  6680. "offset": 4,
  6681. "vertices": [ 3.77094, -5.53513, 2.57589, -6.18232, -3.85993, -3.43337, -4.47367, -2.58339, -4.84232, -1.79963 ]
  6682. }
  6683. ]
  6684. },
  6685. "shangshen": {
  6686. "shangshen": [
  6687. {
  6688. "time": 0,
  6689. "vertices": [ 0.48099, 1.20713, 0.30814, 1.26237, 0.35611, 1.24968, 0.50062, 1.07406, 0.34611, 1.13333, 0.38914, 1.11929, 0.52676, 0.89678, 0.3967, 0.96142, 0.43313, 0.94557, 1.15471, 0.72714, 1.04215, 0.88091, 1.07504, 0.84048, 1.13751, 0.22825, 1.09462, 0.38449, 1.10851, 0.34241, 0.83389, -0.39026, 0.88012, -0.27029, 0.81085, -0.55842, 0.88073, -0.44002, 0.78375, -0.75619, 0.88144, -0.63964, 0.75148, -0.99173, 0.8823, -0.87737, 0.77722, -1.27264, 0.94692, -1.15196, -0.2313, -1.2379, -1.00735, -1.21115, -0.99772, -0.97824, -0.85173, -1.10769, -0.98663, -0.70957, -0.87817, -0.84009, -0.97904, -0.52616, -0.8962, -0.65741, -0.9701, -0.30957, -0.91753, -0.44169, -1.11237, 0.00982, -1.1029, -0.14523, -1.099, 0.39785, -1.14371, 0.24087, -0.72247, 0.88294, -0.68822, 0.90988, -0.61074, 1.05325, -0.57008, 1.0758, -0.61684, 1.1659, -0.57188, 1.18861, -0.62379, 1.29401, -0.57392, 1.31689, -0.22958, 1.34003, 0.27099, 1.38859, 0.32381, 1.37723, -0.16066, 2.10493, -0.45235, 2.06202, -0.18195, 1.70688, -0.41798, 1.66489, -0.19743, 1.41758, 0.01187, 1.52186, -0.20029, 1.50867, -0.24529, 0.92233, -0.20988, 0.93102, -0.21793, 1.09801, -0.22337, 1.21117, -0.50582, 1.30095, -0.68214, 1.2178, 0.5816, 2.7122, 0.19807, 2.76678, 0.30374, 2.7572, -1.06026, 2.15222, -1.34977, 1.98353, -1.27292, 2.03362 ]
  6690. },
  6691. {
  6692. "time": 0.1667,
  6693. "offset": 100,
  6694. "vertices": [ 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, 0.30986, 2.04209, 0.02233, 2.06535, 0, 0, 0, 0, 0, 0, 0, 0, 0.26506, 1.29546, 0.08199, 1.31975, 0.35467, 2.78876, -0.03732, 2.81098, 0.07021, 2.81035, -0.83253, 1.73598, -1.06626, 1.60307, -1.00415, 1.64261 ]
  6695. },
  6696. {
  6697. "time": 0.6,
  6698. "offset": 100,
  6699. "vertices": [ 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, 0.30986, 2.04209, 0.02233, 2.06535, 0, 0, 0, 0, 0, 0, 0, 0, 3.93712, 1.07514, 3.76064, 1.30429, 4.11408, 2.56319, 3.72883, 2.79515, 3.83305, 2.65077, -0.09846, 1.3823, -0.31366, 1.29081, -0.26407, 1.3019 ]
  6700. },
  6701. {
  6702. "time": 0.7667,
  6703. "offset": 50,
  6704. "vertices": [ -0.25499, 3.22722, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.09191, 1.83771, 0.02624, 1.83981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.21793, 3.63367, -0.06303, 3.62544, 0.21793, 3.63367, -0.06303, 3.62544, 0.21793, 3.63367, 0.38219, 3.24913, 0.15318, 3.26753, 0, 0, 0, 0, 0, 0, 0, 0, 2.6304, 3.7283, 2.60815, 4.03813, 2.80737, 5.21635, 2.57635, 5.52898, 2.78577, 5.42661, 0.05542, 3.94783, -0.01428, 3.84346, 0.13254, 3.84126 ]
  6705. }
  6706. ]
  6707. }
  6708. }
  6709. }
  6710. },
  6711. "walk1": {
  6712. "slots": {
  6713. "biyan": {
  6714. "attachment": [
  6715. { "time": 1.1667, "name": "biyan" },
  6716. { "time": 1.2667, "name": null }
  6717. ]
  6718. },
  6719. "guang": {
  6720. "color": [
  6721. { "time": 0, "color": "eae6269c", "curve": "stepped" },
  6722. { "time": 0.6667, "color": "eae6269c", "curve": "stepped" },
  6723. { "time": 1.3333, "color": "eae6269c" }
  6724. ],
  6725. "attachment": [
  6726. { "time": 0, "name": "guang" },
  6727. { "time": 0.6667, "name": "guang" },
  6728. { "time": 1.3333, "name": "guang" }
  6729. ]
  6730. },
  6731. "guang2": {
  6732. "attachment": [
  6733. { "time": 0, "name": null },
  6734. { "time": 0.6667, "name": null },
  6735. { "time": 1.3333, "name": null }
  6736. ]
  6737. },
  6738. "huo_0": {
  6739. "attachment": [
  6740. { "time": 0, "name": null }
  6741. ]
  6742. },
  6743. "huo_1": {
  6744. "attachment": [
  6745. { "time": 0, "name": null }
  6746. ]
  6747. },
  6748. "l_biyan": {
  6749. "attachment": [
  6750. { "time": 0, "name": null },
  6751. { "time": 1.3333, "name": "l_biyan" },
  6752. { "time": 1.5, "name": null }
  6753. ]
  6754. },
  6755. "l_chibang1": {
  6756. "attachment": [
  6757. { "time": 0, "name": null },
  6758. { "time": 0.2333, "name": "l_chibang1" },
  6759. { "time": 0.2667, "name": null },
  6760. { "time": 0.4333, "name": "l_chibang1" },
  6761. { "time": 0.5667, "name": null },
  6762. { "time": 0.6667, "name": null },
  6763. { "time": 0.9, "name": "l_chibang1" },
  6764. { "time": 0.9333, "name": null },
  6765. { "time": 1.1, "name": "l_chibang1" },
  6766. { "time": 1.2333, "name": null },
  6767. { "time": 1.3333, "name": null },
  6768. { "time": 1.5667, "name": "l_chibang1" },
  6769. { "time": 1.6, "name": null },
  6770. { "time": 1.7667, "name": "l_chibang1" },
  6771. { "time": 1.9, "name": null },
  6772. { "time": 2, "name": null }
  6773. ]
  6774. },
  6775. "l_cibanag6": {
  6776. "attachment": [
  6777. { "time": 0, "name": "l_cibanag6" },
  6778. { "time": 0.1333, "name": null },
  6779. { "time": 0.3667, "name": null },
  6780. { "time": 0.5, "name": null },
  6781. { "time": 0.5667, "name": "l_cibanag6" },
  6782. { "time": 0.6667, "name": "l_cibanag6" },
  6783. { "time": 0.8, "name": null },
  6784. { "time": 1.0333, "name": null },
  6785. { "time": 1.1667, "name": null },
  6786. { "time": 1.2333, "name": "l_cibanag6" },
  6787. { "time": 1.3333, "name": "l_cibanag6" },
  6788. { "time": 1.4667, "name": null },
  6789. { "time": 1.7, "name": null },
  6790. { "time": 1.8333, "name": null },
  6791. { "time": 1.9, "name": "l_cibanag6" },
  6792. { "time": 2, "name": "l_cibanag6" }
  6793. ]
  6794. },
  6795. "l_cibang2": {
  6796. "attachment": [
  6797. { "time": 0, "name": null },
  6798. { "time": 0.2333, "name": null },
  6799. { "time": 0.2667, "name": "l_cibang2" },
  6800. { "time": 0.3667, "name": "l_cibang2" },
  6801. { "time": 0.4333, "name": null },
  6802. { "time": 0.5, "name": null },
  6803. { "time": 0.6667, "name": null },
  6804. { "time": 0.9, "name": null },
  6805. { "time": 0.9333, "name": "l_cibang2" },
  6806. { "time": 1.0333, "name": "l_cibang2" },
  6807. { "time": 1.1, "name": null },
  6808. { "time": 1.1667, "name": null },
  6809. { "time": 1.3333, "name": null },
  6810. { "time": 1.5667, "name": null },
  6811. { "time": 1.6, "name": "l_cibang2" },
  6812. { "time": 1.7, "name": "l_cibang2" },
  6813. { "time": 1.7667, "name": null },
  6814. { "time": 1.8333, "name": null },
  6815. { "time": 2, "name": null }
  6816. ]
  6817. },
  6818. "l_cibang3": {
  6819. "attachment": [
  6820. { "time": 0.2333, "name": null },
  6821. { "time": 0.3667, "name": null },
  6822. { "time": 0.5667, "name": "l_cibang3" },
  6823. { "time": 0.6667, "name": "l_cibang3" },
  6824. { "time": 0.9, "name": null },
  6825. { "time": 1.0333, "name": null },
  6826. { "time": 1.2333, "name": "l_cibang3" },
  6827. { "time": 1.3333, "name": "l_cibang3" },
  6828. { "time": 1.5667, "name": null },
  6829. { "time": 1.7, "name": null },
  6830. { "time": 1.9, "name": "l_cibang3" },
  6831. { "time": 2, "name": "l_cibang3" }
  6832. ]
  6833. },
  6834. "l_cibang5": {
  6835. "attachment": [
  6836. { "time": 0, "name": null },
  6837. { "time": 0.1333, "name": "l_cibang5" },
  6838. { "time": 0.2333, "name": "l_cibang5" },
  6839. { "time": 0.3667, "name": "l_cibang5" },
  6840. { "time": 0.5667, "name": null },
  6841. { "time": 0.6667, "name": null },
  6842. { "time": 0.8, "name": "l_cibang5" },
  6843. { "time": 0.9, "name": "l_cibang5" },
  6844. { "time": 1.0333, "name": "l_cibang5" },
  6845. { "time": 1.2333, "name": null },
  6846. { "time": 1.3333, "name": null },
  6847. { "time": 1.4667, "name": "l_cibang5" },
  6848. { "time": 1.5667, "name": "l_cibang5" },
  6849. { "time": 1.7, "name": "l_cibang5" },
  6850. { "time": 1.9, "name": null },
  6851. { "time": 2, "name": null }
  6852. ]
  6853. },
  6854. "youyan": {
  6855. "attachment": [
  6856. { "time": 1.1667, "name": null },
  6857. { "time": 1.2667, "name": "youyan" }
  6858. ]
  6859. },
  6860. "zuoyan": {
  6861. "attachment": [
  6862. { "time": 1.1667, "name": null },
  6863. { "time": 1.2667, "name": "zuoyan" }
  6864. ]
  6865. }
  6866. },
  6867. "bones": {
  6868. "root": {
  6869. "rotate": [
  6870. { "time": 0, "angle": 0 }
  6871. ],
  6872. "translate": [
  6873. { "time": 0, "x": 0, "y": 0 }
  6874. ],
  6875. "scale": [
  6876. { "time": 0, "x": 0.65, "y": 0.65 }
  6877. ]
  6878. },
  6879. "bone": {
  6880. "rotate": [
  6881. { "time": 0, "angle": 0, "curve": "stepped" },
  6882. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6883. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6884. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6885. { "time": 1, "angle": 0, "curve": "stepped" },
  6886. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6887. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6888. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6889. { "time": 2, "angle": 0 }
  6890. ],
  6891. "translate": [
  6892. { "time": 0, "x": 0, "y": 0 },
  6893. { "time": 0.1667, "x": 0, "y": 1.29 },
  6894. { "time": 0.5, "x": 0, "y": 0 },
  6895. { "time": 0.6667, "x": 0, "y": 1.29 },
  6896. { "time": 1, "x": 0, "y": 0 },
  6897. { "time": 1.1667, "x": 0, "y": 1.29 },
  6898. { "time": 1.5, "x": 0, "y": 0 },
  6899. { "time": 1.6667, "x": 0, "y": 1.29 },
  6900. { "time": 2, "x": 0, "y": 0 }
  6901. ],
  6902. "scale": [
  6903. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6904. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6905. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6906. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6907. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6908. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6909. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6910. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6911. { "time": 2, "x": 1, "y": 1 }
  6912. ]
  6913. },
  6914. "bone2": {
  6915. "rotate": [
  6916. { "time": 0, "angle": 0, "curve": "stepped" },
  6917. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6918. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6919. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6920. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6921. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6922. { "time": 1, "angle": 0, "curve": "stepped" },
  6923. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6924. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6925. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6926. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6927. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6928. { "time": 2, "angle": 0 }
  6929. ],
  6930. "translate": [
  6931. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6932. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6933. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6934. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6935. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6936. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6937. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6938. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6939. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6940. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6941. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6942. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6943. { "time": 2, "x": 0, "y": 0 }
  6944. ],
  6945. "scale": [
  6946. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6947. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6948. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6949. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6950. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6951. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6952. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6953. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6954. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6955. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6956. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6957. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6958. { "time": 2, "x": 1, "y": 1 }
  6959. ]
  6960. },
  6961. "bone3": {
  6962. "rotate": [
  6963. {
  6964. "time": 0,
  6965. "angle": -0.39,
  6966. "curve": [ 0.25, 0, 0.75, 1 ]
  6967. },
  6968. {
  6969. "time": 0.5,
  6970. "angle": 0.21,
  6971. "curve": [ 0.25, 0, 0.75, 1 ]
  6972. },
  6973. {
  6974. "time": 1,
  6975. "angle": -0.39,
  6976. "curve": [ 0.25, 0, 0.75, 1 ]
  6977. },
  6978. {
  6979. "time": 1.5,
  6980. "angle": 0.21,
  6981. "curve": [ 0.25, 0, 0.75, 1 ]
  6982. },
  6983. { "time": 2, "angle": -0.39 }
  6984. ],
  6985. "translate": [
  6986. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6987. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6988. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6989. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6990. { "time": 2, "x": 0, "y": 0 }
  6991. ],
  6992. "scale": [
  6993. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6994. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6995. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6996. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6997. { "time": 2, "x": 1, "y": 1 }
  6998. ]
  6999. },
  7000. "bone4": {
  7001. "rotate": [
  7002. { "time": 0, "angle": 0, "curve": "stepped" },
  7003. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7004. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7005. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7006. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7007. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7008. { "time": 1, "angle": 0, "curve": "stepped" },
  7009. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7010. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7011. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7012. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7013. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7014. { "time": 2, "angle": 0 }
  7015. ],
  7016. "translate": [
  7017. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7018. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7019. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7020. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7021. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7022. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7023. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7024. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7025. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7026. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7027. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7028. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7029. { "time": 2, "x": 0, "y": 0 }
  7030. ],
  7031. "scale": [
  7032. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7033. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7034. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7035. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7036. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7037. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7038. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7039. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7040. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7041. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7042. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7043. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7044. { "time": 2, "x": 1, "y": 1 }
  7045. ]
  7046. },
  7047. "bone5": {
  7048. "rotate": [
  7049. { "time": 0, "angle": 0, "curve": "stepped" },
  7050. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7051. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7052. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7053. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7054. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7055. { "time": 1, "angle": 0, "curve": "stepped" },
  7056. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7057. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7058. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7059. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7060. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7061. { "time": 2, "angle": 0 }
  7062. ],
  7063. "translate": [
  7064. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7065. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7066. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7067. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7068. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7069. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7070. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7071. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7072. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7073. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7074. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7075. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7076. { "time": 2, "x": 0, "y": 0 }
  7077. ],
  7078. "scale": [
  7079. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7080. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7081. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7082. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7083. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7084. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7085. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7086. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7087. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7088. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7089. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7090. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7091. { "time": 2, "x": 1, "y": 1 }
  7092. ]
  7093. },
  7094. "bone6": {
  7095. "rotate": [
  7096. {
  7097. "time": 0,
  7098. "angle": -305.94,
  7099. "curve": [ 0.25, 0, 0.75, 1 ]
  7100. },
  7101. {
  7102. "time": 0.5,
  7103. "angle": 22.05,
  7104. "curve": [ 0.25, 0, 0.75, 1 ]
  7105. },
  7106. {
  7107. "time": 1,
  7108. "angle": -305.94,
  7109. "curve": [ 0.25, 0, 0.75, 1 ]
  7110. },
  7111. {
  7112. "time": 1.5,
  7113. "angle": 22.05,
  7114. "curve": [ 0.25, 0, 0.75, 1 ]
  7115. },
  7116. { "time": 2, "angle": -305.94 }
  7117. ],
  7118. "translate": [
  7119. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7120. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7121. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7122. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7123. { "time": 2, "x": 0, "y": 0 }
  7124. ],
  7125. "scale": [
  7126. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7127. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7128. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7129. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7130. { "time": 2, "x": 1, "y": 1 }
  7131. ]
  7132. },
  7133. "bone7": {
  7134. "rotate": [
  7135. {
  7136. "time": 0,
  7137. "angle": -14.85,
  7138. "curve": [ 0.25, 0, 0.75, 1 ]
  7139. },
  7140. {
  7141. "time": 0.5,
  7142. "angle": -13.88,
  7143. "curve": [ 0.25, 0, 0.75, 1 ]
  7144. },
  7145. {
  7146. "time": 1,
  7147. "angle": -14.85,
  7148. "curve": [ 0.25, 0, 0.75, 1 ]
  7149. },
  7150. {
  7151. "time": 1.5,
  7152. "angle": -13.88,
  7153. "curve": [ 0.25, 0, 0.75, 1 ]
  7154. },
  7155. { "time": 2, "angle": -14.85 }
  7156. ],
  7157. "translate": [
  7158. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7159. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7160. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7161. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7162. { "time": 2, "x": 0, "y": 0 }
  7163. ],
  7164. "scale": [
  7165. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7166. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7167. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7168. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7169. { "time": 2, "x": 1, "y": 1 }
  7170. ]
  7171. },
  7172. "bone8": {
  7173. "rotate": [
  7174. {
  7175. "time": 0,
  7176. "angle": 0,
  7177. "curve": [ 0.25, 0, 0.75, 1 ]
  7178. },
  7179. {
  7180. "time": 0.5,
  7181. "angle": -10.99,
  7182. "curve": [ 0.25, 0, 0.75, 1 ]
  7183. },
  7184. {
  7185. "time": 1,
  7186. "angle": 0,
  7187. "curve": [ 0.25, 0, 0.75, 1 ]
  7188. },
  7189. {
  7190. "time": 1.5,
  7191. "angle": -10.99,
  7192. "curve": [ 0.25, 0, 0.75, 1 ]
  7193. },
  7194. { "time": 2, "angle": 0 }
  7195. ],
  7196. "translate": [
  7197. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7198. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7199. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7200. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7201. { "time": 2, "x": 0, "y": 0 }
  7202. ],
  7203. "scale": [
  7204. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7205. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7206. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7207. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7208. { "time": 2, "x": 1, "y": 1 }
  7209. ]
  7210. },
  7211. "bone9": {
  7212. "rotate": [
  7213. {
  7214. "time": 0,
  7215. "angle": -42.4,
  7216. "curve": [ 0.25, 0, 0.75, 1 ]
  7217. },
  7218. {
  7219. "time": 0.5,
  7220. "angle": -11.64,
  7221. "curve": [ 0.25, 0, 0.75, 1 ]
  7222. },
  7223. {
  7224. "time": 1,
  7225. "angle": -42.4,
  7226. "curve": [ 0.25, 0, 0.75, 1 ]
  7227. },
  7228. {
  7229. "time": 1.5,
  7230. "angle": -11.64,
  7231. "curve": [ 0.25, 0, 0.75, 1 ]
  7232. },
  7233. { "time": 2, "angle": -42.4 }
  7234. ],
  7235. "translate": [
  7236. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7237. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7238. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7239. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7240. { "time": 2, "x": 0, "y": 0 }
  7241. ],
  7242. "scale": [
  7243. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7244. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7245. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7246. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7247. { "time": 2, "x": 1, "y": 1 }
  7248. ]
  7249. },
  7250. "bone10": {
  7251. "rotate": [
  7252. {
  7253. "time": 0,
  7254. "angle": -29.34,
  7255. "curve": [ 0.25, 0, 0.75, 1 ]
  7256. },
  7257. {
  7258. "time": 0.4667,
  7259. "angle": -17.83,
  7260. "curve": [ 0.25, 0, 0.75, 1 ]
  7261. },
  7262. {
  7263. "time": 1,
  7264. "angle": -29.34,
  7265. "curve": [ 0.25, 0, 0.75, 1 ]
  7266. },
  7267. {
  7268. "time": 1.4667,
  7269. "angle": -17.83,
  7270. "curve": [ 0.25, 0, 0.75, 1 ]
  7271. },
  7272. { "time": 2, "angle": -29.34 }
  7273. ],
  7274. "translate": [
  7275. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7276. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  7277. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7278. { "time": 1.4667, "x": 0, "y": 0, "curve": "stepped" },
  7279. { "time": 2, "x": 0, "y": 0 }
  7280. ],
  7281. "scale": [
  7282. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7283. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  7284. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7285. { "time": 1.4667, "x": 1, "y": 1, "curve": "stepped" },
  7286. { "time": 2, "x": 1, "y": 1 }
  7287. ]
  7288. },
  7289. "bone11": {
  7290. "rotate": [
  7291. {
  7292. "time": 0,
  7293. "angle": -11.32,
  7294. "curve": [ 0.25, 0, 0.75, 1 ]
  7295. },
  7296. {
  7297. "time": 0.5,
  7298. "angle": -14.5,
  7299. "curve": [ 0.25, 0, 0.75, 1 ]
  7300. },
  7301. {
  7302. "time": 1,
  7303. "angle": -11.32,
  7304. "curve": [ 0.25, 0, 0.75, 1 ]
  7305. },
  7306. {
  7307. "time": 1.5,
  7308. "angle": -14.5,
  7309. "curve": [ 0.25, 0, 0.75, 1 ]
  7310. },
  7311. { "time": 2, "angle": -11.32 }
  7312. ],
  7313. "translate": [
  7314. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7315. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7316. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7317. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7318. { "time": 2, "x": 0, "y": 0 }
  7319. ],
  7320. "scale": [
  7321. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7322. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7323. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7324. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7325. { "time": 2, "x": 1, "y": 1 }
  7326. ]
  7327. },
  7328. "bone12": {
  7329. "rotate": [
  7330. { "time": 0, "angle": 0, "curve": "stepped" },
  7331. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7332. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7333. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7334. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7335. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7336. { "time": 1, "angle": 0, "curve": "stepped" },
  7337. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7338. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7339. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7340. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7341. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7342. { "time": 2, "angle": 0 }
  7343. ],
  7344. "translate": [
  7345. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7346. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7347. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7348. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7349. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7350. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7351. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7352. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7353. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7354. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7355. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7356. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7357. { "time": 2, "x": 0, "y": 0 }
  7358. ],
  7359. "scale": [
  7360. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7361. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7362. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7363. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7364. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7365. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7366. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7367. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7368. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7369. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7370. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7371. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7372. { "time": 2, "x": 1, "y": 1 }
  7373. ]
  7374. },
  7375. "bone13": {
  7376. "rotate": [
  7377. { "time": 0, "angle": 0, "curve": "stepped" },
  7378. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7379. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7380. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7381. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7382. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7383. { "time": 1, "angle": 0, "curve": "stepped" },
  7384. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7385. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7386. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7387. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7388. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7389. { "time": 2, "angle": 0 }
  7390. ],
  7391. "translate": [
  7392. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7393. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7394. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7395. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7396. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7397. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7398. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7399. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7400. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7401. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7402. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7403. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7404. { "time": 2, "x": 0, "y": 0 }
  7405. ],
  7406. "scale": [
  7407. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7408. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7409. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7410. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7411. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7412. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7413. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7414. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7415. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7416. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7417. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7418. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7419. { "time": 2, "x": 1, "y": 1 }
  7420. ]
  7421. },
  7422. "bone14": {
  7423. "rotate": [
  7424. {
  7425. "time": 0,
  7426. "angle": -8.61,
  7427. "curve": [ 0.25, 0, 0.75, 1 ]
  7428. },
  7429. {
  7430. "time": 0.5,
  7431. "angle": 0,
  7432. "curve": [ 0.25, 0, 0.75, 1 ]
  7433. },
  7434. {
  7435. "time": 1,
  7436. "angle": -8.61,
  7437. "curve": [ 0.25, 0, 0.75, 1 ]
  7438. },
  7439. {
  7440. "time": 1.5,
  7441. "angle": 0,
  7442. "curve": [ 0.25, 0, 0.75, 1 ]
  7443. },
  7444. { "time": 2, "angle": -8.61 }
  7445. ],
  7446. "translate": [
  7447. {
  7448. "time": 0,
  7449. "x": -0.14,
  7450. "y": -2.52,
  7451. "curve": [ 0.25, 0, 0.75, 1 ]
  7452. },
  7453. {
  7454. "time": 0.5,
  7455. "x": 0,
  7456. "y": 0,
  7457. "curve": [ 0.25, 0, 0.75, 1 ]
  7458. },
  7459. {
  7460. "time": 1,
  7461. "x": -0.14,
  7462. "y": -2.52,
  7463. "curve": [ 0.25, 0, 0.75, 1 ]
  7464. },
  7465. {
  7466. "time": 1.5,
  7467. "x": 0,
  7468. "y": 0,
  7469. "curve": [ 0.25, 0, 0.75, 1 ]
  7470. },
  7471. { "time": 2, "x": -0.14, "y": -2.52 }
  7472. ],
  7473. "scale": [
  7474. {
  7475. "time": 0,
  7476. "x": 1,
  7477. "y": 0.89,
  7478. "curve": [ 0.25, 0, 0.75, 1 ]
  7479. },
  7480. {
  7481. "time": 0.5,
  7482. "x": 1,
  7483. "y": 1,
  7484. "curve": [ 0.25, 0, 0.75, 1 ]
  7485. },
  7486. {
  7487. "time": 1,
  7488. "x": 1,
  7489. "y": 0.89,
  7490. "curve": [ 0.25, 0, 0.75, 1 ]
  7491. },
  7492. {
  7493. "time": 1.5,
  7494. "x": 1,
  7495. "y": 1,
  7496. "curve": [ 0.25, 0, 0.75, 1 ]
  7497. },
  7498. { "time": 2, "x": 1, "y": 0.89 }
  7499. ]
  7500. },
  7501. "bone15": {
  7502. "rotate": [
  7503. {
  7504. "time": 0,
  7505. "angle": 3.52,
  7506. "curve": [ 0.25, 0, 0.75, 1 ]
  7507. },
  7508. {
  7509. "time": 0.5,
  7510. "angle": 0,
  7511. "curve": [ 0.25, 0, 0.75, 1 ]
  7512. },
  7513. {
  7514. "time": 1,
  7515. "angle": 3.52,
  7516. "curve": [ 0.25, 0, 0.75, 1 ]
  7517. },
  7518. {
  7519. "time": 1.5,
  7520. "angle": 0,
  7521. "curve": [ 0.25, 0, 0.75, 1 ]
  7522. },
  7523. { "time": 2, "angle": 3.52 }
  7524. ],
  7525. "translate": [
  7526. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7527. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7528. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7529. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7530. { "time": 2, "x": 0, "y": 0 }
  7531. ],
  7532. "scale": [
  7533. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7534. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7535. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7536. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7537. { "time": 2, "x": 1, "y": 1 }
  7538. ]
  7539. },
  7540. "bone16": {
  7541. "rotate": [
  7542. {
  7543. "time": 0,
  7544. "angle": -2.59,
  7545. "curve": [ 0.25, 0, 0.75, 1 ]
  7546. },
  7547. {
  7548. "time": 0.5,
  7549. "angle": 0,
  7550. "curve": [ 0.25, 0, 0.75, 1 ]
  7551. },
  7552. {
  7553. "time": 1,
  7554. "angle": -2.59,
  7555. "curve": [ 0.25, 0, 0.75, 1 ]
  7556. },
  7557. {
  7558. "time": 1.5,
  7559. "angle": 0,
  7560. "curve": [ 0.25, 0, 0.75, 1 ]
  7561. },
  7562. { "time": 2, "angle": -2.59 }
  7563. ],
  7564. "translate": [
  7565. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7566. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7567. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7568. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7569. { "time": 2, "x": 0, "y": 0 }
  7570. ],
  7571. "scale": [
  7572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7573. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7574. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7575. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7576. { "time": 2, "x": 1, "y": 1 }
  7577. ]
  7578. },
  7579. "bone17": {
  7580. "rotate": [
  7581. { "time": 0, "angle": 0, "curve": "stepped" },
  7582. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7583. { "time": 1, "angle": 0, "curve": "stepped" },
  7584. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7585. { "time": 2, "angle": 0 }
  7586. ],
  7587. "translate": [
  7588. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7589. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7590. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7591. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7592. { "time": 2, "x": 0, "y": 0 }
  7593. ],
  7594. "scale": [
  7595. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7596. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7597. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7598. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7599. { "time": 2, "x": 1, "y": 1 }
  7600. ]
  7601. },
  7602. "bone18": {
  7603. "rotate": [
  7604. {
  7605. "time": 0,
  7606. "angle": 0,
  7607. "curve": [ 0.25, 0, 0.75, 1 ]
  7608. },
  7609. {
  7610. "time": 0.5,
  7611. "angle": 4.43,
  7612. "curve": [ 0.25, 0, 0.75, 1 ]
  7613. },
  7614. {
  7615. "time": 1,
  7616. "angle": 0,
  7617. "curve": [ 0.25, 0, 0.75, 1 ]
  7618. },
  7619. {
  7620. "time": 1.5,
  7621. "angle": 4.43,
  7622. "curve": [ 0.25, 0, 0.75, 1 ]
  7623. },
  7624. { "time": 2, "angle": 0 }
  7625. ],
  7626. "translate": [
  7627. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7628. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7629. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7630. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7631. { "time": 2, "x": 0, "y": 0 }
  7632. ],
  7633. "scale": [
  7634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7635. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7636. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7637. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7638. { "time": 2, "x": 1, "y": 1 }
  7639. ]
  7640. },
  7641. "bone19": {
  7642. "rotate": [
  7643. {
  7644. "time": 0,
  7645. "angle": 0,
  7646. "curve": [ 0.25, 0, 0.75, 1 ]
  7647. },
  7648. {
  7649. "time": 0.5,
  7650. "angle": 4.43,
  7651. "curve": [ 0.25, 0, 0.75, 1 ]
  7652. },
  7653. {
  7654. "time": 1,
  7655. "angle": 0,
  7656. "curve": [ 0.25, 0, 0.75, 1 ]
  7657. },
  7658. {
  7659. "time": 1.5,
  7660. "angle": 4.43,
  7661. "curve": [ 0.25, 0, 0.75, 1 ]
  7662. },
  7663. { "time": 2, "angle": 0 }
  7664. ],
  7665. "translate": [
  7666. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7667. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7668. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7669. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7670. { "time": 2, "x": 0, "y": 0 }
  7671. ],
  7672. "scale": [
  7673. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7674. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7675. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7676. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7677. { "time": 2, "x": 1, "y": 1 }
  7678. ]
  7679. },
  7680. "bone20": {
  7681. "rotate": [
  7682. {
  7683. "time": 0,
  7684. "angle": 0,
  7685. "curve": [ 0.25, 0, 0.75, 1 ]
  7686. },
  7687. {
  7688. "time": 0.5,
  7689. "angle": 4.43,
  7690. "curve": [ 0.25, 0, 0.75, 1 ]
  7691. },
  7692. {
  7693. "time": 1,
  7694. "angle": 0,
  7695. "curve": [ 0.25, 0, 0.75, 1 ]
  7696. },
  7697. {
  7698. "time": 1.5,
  7699. "angle": 4.43,
  7700. "curve": [ 0.25, 0, 0.75, 1 ]
  7701. },
  7702. { "time": 2, "angle": 0 }
  7703. ],
  7704. "translate": [
  7705. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7706. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7707. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7708. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7709. { "time": 2, "x": 0, "y": 0 }
  7710. ],
  7711. "scale": [
  7712. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7713. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7714. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7715. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7716. { "time": 2, "x": 1, "y": 1 }
  7717. ]
  7718. },
  7719. "bone21": {
  7720. "rotate": [
  7721. {
  7722. "time": 0,
  7723. "angle": 0,
  7724. "curve": [ 0.25, 0, 0.75, 1 ]
  7725. },
  7726. {
  7727. "time": 0.5,
  7728. "angle": 4.43,
  7729. "curve": [ 0.25, 0, 0.75, 1 ]
  7730. },
  7731. {
  7732. "time": 1,
  7733. "angle": 0,
  7734. "curve": [ 0.25, 0, 0.75, 1 ]
  7735. },
  7736. {
  7737. "time": 1.5,
  7738. "angle": 4.43,
  7739. "curve": [ 0.25, 0, 0.75, 1 ]
  7740. },
  7741. { "time": 2, "angle": 0 }
  7742. ],
  7743. "translate": [
  7744. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7745. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7746. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7747. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7748. { "time": 2, "x": 0, "y": 0 }
  7749. ],
  7750. "scale": [
  7751. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7752. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7753. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7754. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7755. { "time": 2, "x": 1, "y": 1 }
  7756. ]
  7757. },
  7758. "bone22": {
  7759. "rotate": [
  7760. { "time": 0, "angle": 0, "curve": "stepped" },
  7761. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7762. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7763. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7764. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7765. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7766. { "time": 1, "angle": 0, "curve": "stepped" },
  7767. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7768. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7769. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7770. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7771. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7772. { "time": 2, "angle": 0 }
  7773. ],
  7774. "translate": [
  7775. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7776. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7777. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7778. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7779. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7780. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7781. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7782. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7783. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7784. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7785. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7786. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7787. { "time": 2, "x": 0, "y": 0 }
  7788. ],
  7789. "scale": [
  7790. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7791. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7792. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7793. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7794. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7795. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7796. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7797. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7798. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7799. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7800. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7801. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7802. { "time": 2, "x": 1, "y": 1 }
  7803. ]
  7804. },
  7805. "bone23": {
  7806. "rotate": [
  7807. {
  7808. "time": 0,
  7809. "angle": -7.5,
  7810. "curve": [ 0.25, 0, 0.75, 1 ]
  7811. },
  7812. {
  7813. "time": 0.5,
  7814. "angle": 4.43,
  7815. "curve": [ 0.25, 0, 0.75, 1 ]
  7816. },
  7817. {
  7818. "time": 1,
  7819. "angle": -7.5,
  7820. "curve": [ 0.25, 0, 0.75, 1 ]
  7821. },
  7822. {
  7823. "time": 1.5,
  7824. "angle": 4.43,
  7825. "curve": [ 0.25, 0, 0.75, 1 ]
  7826. },
  7827. { "time": 2, "angle": -7.5 }
  7828. ],
  7829. "translate": [
  7830. {
  7831. "time": 0,
  7832. "x": 2.31,
  7833. "y": 2.33,
  7834. "curve": [ 0.25, 0, 0.75, 1 ]
  7835. },
  7836. {
  7837. "time": 0.5,
  7838. "x": 0,
  7839. "y": 0,
  7840. "curve": [ 0.25, 0, 0.75, 1 ]
  7841. },
  7842. {
  7843. "time": 1,
  7844. "x": 2.31,
  7845. "y": 2.33,
  7846. "curve": [ 0.25, 0, 0.75, 1 ]
  7847. },
  7848. {
  7849. "time": 1.5,
  7850. "x": 0,
  7851. "y": 0,
  7852. "curve": [ 0.25, 0, 0.75, 1 ]
  7853. },
  7854. { "time": 2, "x": 2.31, "y": 2.33 }
  7855. ],
  7856. "scale": [
  7857. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7858. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7859. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7860. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7861. { "time": 2, "x": 1, "y": 1 }
  7862. ]
  7863. },
  7864. "bone24": {
  7865. "rotate": [
  7866. {
  7867. "time": 0,
  7868. "angle": -7.5,
  7869. "curve": [ 0.25, 0, 0.75, 1 ]
  7870. },
  7871. {
  7872. "time": 0.5,
  7873. "angle": 4.43,
  7874. "curve": [ 0.25, 0, 0.75, 1 ]
  7875. },
  7876. {
  7877. "time": 1,
  7878. "angle": -7.5,
  7879. "curve": [ 0.25, 0, 0.75, 1 ]
  7880. },
  7881. {
  7882. "time": 1.5,
  7883. "angle": 4.43,
  7884. "curve": [ 0.25, 0, 0.75, 1 ]
  7885. },
  7886. { "time": 2, "angle": -7.5 }
  7887. ],
  7888. "translate": [
  7889. {
  7890. "time": 0,
  7891. "x": -2.43,
  7892. "y": 1.11,
  7893. "curve": [ 0.25, 0, 0.75, 1 ]
  7894. },
  7895. {
  7896. "time": 0.5,
  7897. "x": -5.17,
  7898. "y": -0.36,
  7899. "curve": [ 0.25, 0, 0.75, 1 ]
  7900. },
  7901. {
  7902. "time": 1,
  7903. "x": -2.43,
  7904. "y": 1.11,
  7905. "curve": [ 0.25, 0, 0.75, 1 ]
  7906. },
  7907. {
  7908. "time": 1.5,
  7909. "x": -5.17,
  7910. "y": -0.36,
  7911. "curve": [ 0.25, 0, 0.75, 1 ]
  7912. },
  7913. { "time": 2, "x": -2.43, "y": 1.11 }
  7914. ],
  7915. "scale": [
  7916. {
  7917. "time": 0,
  7918. "x": 0.9,
  7919. "y": 1,
  7920. "curve": [ 0.25, 0, 0.75, 1 ]
  7921. },
  7922. {
  7923. "time": 0.5,
  7924. "x": 1,
  7925. "y": 1,
  7926. "curve": [ 0.25, 0, 0.75, 1 ]
  7927. },
  7928. {
  7929. "time": 1,
  7930. "x": 0.9,
  7931. "y": 1,
  7932. "curve": [ 0.25, 0, 0.75, 1 ]
  7933. },
  7934. {
  7935. "time": 1.5,
  7936. "x": 1,
  7937. "y": 1,
  7938. "curve": [ 0.25, 0, 0.75, 1 ]
  7939. },
  7940. { "time": 2, "x": 0.9, "y": 1 }
  7941. ]
  7942. },
  7943. "bone25": {
  7944. "rotate": [
  7945. { "time": 0, "angle": 19.65 },
  7946. { "time": 0.1667, "angle": -7.44 },
  7947. { "time": 0.3333, "angle": -31.47 },
  7948. { "time": 0.5, "angle": -27.57 },
  7949. { "time": 0.6667, "angle": -23.01 },
  7950. { "time": 0.8333, "angle": 7.05 },
  7951. { "time": 1, "angle": 19.65 },
  7952. { "time": 1.1667, "angle": -7.44 },
  7953. { "time": 1.3333, "angle": -31.47 },
  7954. { "time": 1.5, "angle": -27.57 },
  7955. { "time": 1.6667, "angle": -23.01 },
  7956. { "time": 1.8333, "angle": 7.05 },
  7957. { "time": 2, "angle": 19.65 }
  7958. ],
  7959. "translate": [
  7960. { "time": 0, "x": 0, "y": 0 },
  7961. { "time": 0.1667, "x": -2.46, "y": 0.21 },
  7962. { "time": 0.3333, "x": 0, "y": 0 },
  7963. { "time": 0.5, "x": -0.97, "y": -2.24 },
  7964. { "time": 0.6667, "x": -2.69, "y": -1.72 },
  7965. { "time": 0.8333, "x": 0.15, "y": -1.07 },
  7966. { "time": 1, "x": 0, "y": 0 },
  7967. { "time": 1.1667, "x": -2.46, "y": 0.21 },
  7968. { "time": 1.3333, "x": 0, "y": 0 },
  7969. { "time": 1.5, "x": -0.97, "y": -2.24 },
  7970. { "time": 1.6667, "x": -2.69, "y": -1.72 },
  7971. { "time": 1.8333, "x": 0.15, "y": -1.07 },
  7972. { "time": 2, "x": 0, "y": 0 }
  7973. ],
  7974. "scale": [
  7975. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7976. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7977. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7978. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7979. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7980. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7981. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7982. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7983. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7984. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7985. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7986. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7987. { "time": 2, "x": 1, "y": 1 }
  7988. ]
  7989. },
  7990. "bone26": {
  7991. "rotate": [
  7992. { "time": 0, "angle": 0 },
  7993. { "time": 0.1667, "angle": 51.98 },
  7994. { "time": 0.3333, "angle": 44.29 },
  7995. { "time": 0.5, "angle": 0 },
  7996. { "time": 0.6667, "angle": 30.51 },
  7997. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7998. { "time": 1, "angle": 0 },
  7999. { "time": 1.1667, "angle": 51.98 },
  8000. { "time": 1.3333, "angle": 44.29 },
  8001. { "time": 1.5, "angle": 0 },
  8002. { "time": 1.6667, "angle": 30.51 },
  8003. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8004. { "time": 2, "angle": 0 }
  8005. ],
  8006. "translate": [
  8007. { "time": 0, "x": 0, "y": 0 },
  8008. { "time": 0.1667, "x": -5.42, "y": -0.76 },
  8009. { "time": 0.3333, "x": -2.09, "y": -1.84 },
  8010. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8011. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8012. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8013. { "time": 1, "x": 0, "y": 0 },
  8014. { "time": 1.1667, "x": -5.42, "y": -0.76 },
  8015. { "time": 1.3333, "x": -2.09, "y": -1.84 },
  8016. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8017. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8018. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8019. { "time": 2, "x": 0, "y": 0 }
  8020. ],
  8021. "scale": [
  8022. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8023. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8024. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8025. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8026. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8027. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8028. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8029. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8030. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8031. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8032. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8033. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8034. { "time": 2, "x": 1, "y": 1 }
  8035. ]
  8036. },
  8037. "bone27": {
  8038. "rotate": [
  8039. { "time": 0, "angle": 0, "curve": "stepped" },
  8040. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8041. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8042. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8043. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8044. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8045. { "time": 1, "angle": 0, "curve": "stepped" },
  8046. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8047. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8048. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8049. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8050. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8051. { "time": 2, "angle": 0 }
  8052. ],
  8053. "translate": [
  8054. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8055. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8056. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8057. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8058. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8059. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8060. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8061. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8062. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8063. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8064. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8065. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8066. { "time": 2, "x": 0, "y": 0 }
  8067. ],
  8068. "scale": [
  8069. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8070. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8071. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8072. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8073. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8074. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8075. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8076. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8077. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8078. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8079. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8080. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8081. { "time": 2, "x": 1, "y": 1 }
  8082. ]
  8083. },
  8084. "bone28": {
  8085. "rotate": [
  8086. { "time": 0, "angle": -14.7 },
  8087. { "time": 0.1667, "angle": -5.18 },
  8088. { "time": 0.3333, "angle": 20.43 },
  8089. { "time": 0.5, "angle": 43.81 },
  8090. { "time": 0.6667, "angle": 13.78 },
  8091. { "time": 0.8333, "angle": 0.57 },
  8092. { "time": 1, "angle": -14.7 },
  8093. { "time": 1.1667, "angle": -5.18 },
  8094. { "time": 1.3333, "angle": 20.43 },
  8095. { "time": 1.5, "angle": 43.81 },
  8096. { "time": 1.6667, "angle": 13.78 },
  8097. { "time": 1.8333, "angle": 0.57 },
  8098. { "time": 2, "angle": -14.7 }
  8099. ],
  8100. "translate": [
  8101. { "time": 0, "x": 0, "y": 0 },
  8102. { "time": 0.1667, "x": 1.41, "y": 1.1 },
  8103. { "time": 0.3333, "x": 2.83, "y": 2.2 },
  8104. { "time": 0.5, "x": 4.24, "y": 0.8 },
  8105. { "time": 0.6667, "x": 2.83, "y": 2.35 },
  8106. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8107. { "time": 1, "x": 0, "y": 0 },
  8108. { "time": 1.1667, "x": 1.41, "y": 1.1 },
  8109. { "time": 1.3333, "x": 2.83, "y": 2.2 },
  8110. { "time": 1.5, "x": 4.24, "y": 0.8 },
  8111. { "time": 1.6667, "x": 2.83, "y": 2.35 },
  8112. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8113. { "time": 2, "x": 0, "y": 0 }
  8114. ],
  8115. "scale": [
  8116. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8117. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8118. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8119. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8120. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8121. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8122. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8123. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8124. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8125. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8126. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8127. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8128. { "time": 2, "x": 1, "y": 1 }
  8129. ]
  8130. },
  8131. "bone29": {
  8132. "rotate": [
  8133. { "time": 0, "angle": 0 },
  8134. { "time": 0.1667, "angle": 16.36 },
  8135. { "time": 0.3333, "angle": 11.36 },
  8136. { "time": 0.5, "angle": 0 },
  8137. { "time": 0.6667, "angle": 46.72 },
  8138. { "time": 0.8333, "angle": 28.13 },
  8139. { "time": 1, "angle": 0 },
  8140. { "time": 1.1667, "angle": 16.36 },
  8141. { "time": 1.3333, "angle": 11.36 },
  8142. { "time": 1.5, "angle": 0 },
  8143. { "time": 1.6667, "angle": 46.72 },
  8144. { "time": 1.8333, "angle": 28.13 },
  8145. { "time": 2, "angle": 0 }
  8146. ],
  8147. "translate": [
  8148. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8149. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8150. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8151. { "time": 0.5, "x": 0, "y": 0 },
  8152. { "time": 0.6667, "x": -2.28, "y": -2.23 },
  8153. { "time": 0.8333, "x": -4.98, "y": -2.4 },
  8154. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8155. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8156. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8157. { "time": 1.5, "x": 0, "y": 0 },
  8158. { "time": 1.6667, "x": -2.28, "y": -2.23 },
  8159. { "time": 1.8333, "x": -4.98, "y": -2.4 },
  8160. { "time": 2, "x": 0, "y": 0 }
  8161. ],
  8162. "scale": [
  8163. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8164. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8165. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8166. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8167. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8168. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8169. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8170. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8171. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8172. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8173. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8174. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8175. { "time": 2, "x": 1, "y": 1 }
  8176. ]
  8177. },
  8178. "bone30": {
  8179. "rotate": [
  8180. { "time": 0, "angle": 0 },
  8181. { "time": 0.1667, "angle": -7.77 },
  8182. { "time": 0.3333, "angle": -26.43 },
  8183. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8184. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8185. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8186. { "time": 1, "angle": 0 },
  8187. { "time": 1.1667, "angle": -7.77 },
  8188. { "time": 1.3333, "angle": -26.43 },
  8189. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8190. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8191. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8192. { "time": 2, "angle": 0 }
  8193. ],
  8194. "translate": [
  8195. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8196. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8197. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8198. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8199. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8200. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8201. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8202. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8203. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8204. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8205. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8206. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8207. { "time": 2, "x": 0, "y": 0 }
  8208. ],
  8209. "scale": [
  8210. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8211. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8212. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8213. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8214. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8215. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8216. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8217. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8218. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8219. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8220. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8221. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8222. { "time": 2, "x": 1, "y": 1 }
  8223. ]
  8224. },
  8225. "bone31": {
  8226. "rotate": [
  8227. { "time": 0, "angle": 0, "curve": "stepped" },
  8228. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  8229. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8230. { "time": 1.2667, "angle": 0 }
  8231. ],
  8232. "translate": [
  8233. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8234. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  8235. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8236. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  8237. { "time": 1.4, "x": 0, "y": 0 }
  8238. ],
  8239. "scale": [
  8240. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8241. { "time": 1.0667, "x": 1, "y": 1 },
  8242. { "time": 1.1667, "x": 0.269, "y": 1, "curve": "stepped" },
  8243. { "time": 1.2667, "x": 0.269, "y": 1 },
  8244. { "time": 1.4, "x": 1, "y": 1 }
  8245. ]
  8246. },
  8247. "bone32": {
  8248. "rotate": [
  8249. { "time": 0, "angle": 0, "curve": "stepped" },
  8250. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  8251. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8252. { "time": 1.2667, "angle": 0 }
  8253. ],
  8254. "translate": [
  8255. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8256. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  8257. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8258. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  8259. { "time": 1.4, "x": 0, "y": 0 }
  8260. ],
  8261. "scale": [
  8262. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8263. { "time": 1.0667, "x": 1, "y": 1 },
  8264. { "time": 1.1667, "x": 0.269, "y": 1, "curve": "stepped" },
  8265. { "time": 1.2667, "x": 0.269, "y": 1 },
  8266. { "time": 1.4, "x": 1, "y": 1 }
  8267. ]
  8268. },
  8269. "bone33": {
  8270. "rotate": [
  8271. { "time": 0, "angle": 0, "curve": "stepped" },
  8272. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  8273. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8274. { "time": 1.2667, "angle": 0 }
  8275. ],
  8276. "translate": [
  8277. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8278. { "time": 1.0667, "x": 0, "y": 0 },
  8279. { "time": 1.1667, "x": -2.01, "y": 0, "curve": "stepped" },
  8280. { "time": 1.2667, "x": -2.01, "y": 0 },
  8281. { "time": 1.4, "x": 0, "y": 0 }
  8282. ],
  8283. "scale": [
  8284. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8285. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  8286. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8287. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  8288. { "time": 1.4, "x": 1, "y": 1 }
  8289. ]
  8290. },
  8291. "bone34": {
  8292. "rotate": [
  8293. { "time": 0, "angle": 0, "curve": "stepped" },
  8294. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  8295. { "time": 1.1667, "angle": 0 }
  8296. ],
  8297. "translate": [
  8298. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8299. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  8300. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8301. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  8302. { "time": 1.4, "x": 0, "y": 0 }
  8303. ],
  8304. "scale": [
  8305. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8306. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  8307. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8308. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  8309. { "time": 1.4, "x": 1, "y": 1 }
  8310. ]
  8311. },
  8312. "bone35": {
  8313. "rotate": [
  8314. { "time": 0, "angle": 0, "curve": "stepped" },
  8315. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8316. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8317. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8318. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8319. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8320. { "time": 1, "angle": 0, "curve": "stepped" },
  8321. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8322. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8323. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8324. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8325. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8326. { "time": 2, "angle": 0 }
  8327. ],
  8328. "translate": [
  8329. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8330. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8331. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8332. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8333. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8334. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8335. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8336. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8337. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8338. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8339. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8340. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8341. { "time": 2, "x": 0, "y": 0 }
  8342. ],
  8343. "scale": [
  8344. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8345. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8346. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8347. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8348. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8349. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8350. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8351. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8352. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8353. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8354. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8355. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8356. { "time": 2, "x": 1, "y": 1 }
  8357. ]
  8358. },
  8359. "bone36": {
  8360. "rotate": [
  8361. { "time": 0, "angle": 0, "curve": "stepped" },
  8362. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8363. { "time": 1, "angle": 0, "curve": "stepped" },
  8364. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8365. { "time": 2, "angle": 0 }
  8366. ],
  8367. "translate": [
  8368. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8369. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8370. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8371. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8372. { "time": 2, "x": 0, "y": 0 }
  8373. ],
  8374. "scale": [
  8375. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8376. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8377. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8378. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8379. { "time": 2, "x": 1, "y": 1 }
  8380. ]
  8381. },
  8382. "bone37": {
  8383. "rotate": [
  8384. {
  8385. "time": 0,
  8386. "angle": -2.46,
  8387. "curve": [ 0.25, 0, 0.75, 1 ]
  8388. },
  8389. {
  8390. "time": 0.5,
  8391. "angle": 1.73,
  8392. "curve": [ 0.25, 0, 0.75, 1 ]
  8393. },
  8394. {
  8395. "time": 1,
  8396. "angle": -2.46,
  8397. "curve": [ 0.25, 0, 0.75, 1 ]
  8398. },
  8399. {
  8400. "time": 1.5,
  8401. "angle": 1.73,
  8402. "curve": [ 0.25, 0, 0.75, 1 ]
  8403. },
  8404. { "time": 2, "angle": -2.46 }
  8405. ],
  8406. "translate": [
  8407. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8408. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8409. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8410. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8411. { "time": 2, "x": 0, "y": 0 }
  8412. ],
  8413. "scale": [
  8414. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8415. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8416. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8417. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8418. { "time": 2, "x": 1, "y": 1 }
  8419. ]
  8420. },
  8421. "bone38": {
  8422. "rotate": [
  8423. {
  8424. "time": 0,
  8425. "angle": -7.91,
  8426. "curve": [ 0.25, 0, 0.75, 1 ]
  8427. },
  8428. {
  8429. "time": 0.5,
  8430. "angle": 1.73,
  8431. "curve": [ 0.25, 0, 0.75, 1 ]
  8432. },
  8433. {
  8434. "time": 1,
  8435. "angle": -7.91,
  8436. "curve": [ 0.25, 0, 0.75, 1 ]
  8437. },
  8438. {
  8439. "time": 1.5,
  8440. "angle": 1.73,
  8441. "curve": [ 0.25, 0, 0.75, 1 ]
  8442. },
  8443. { "time": 2, "angle": -7.91 }
  8444. ],
  8445. "translate": [
  8446. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8447. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8448. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8449. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8450. { "time": 2, "x": 0, "y": 0 }
  8451. ],
  8452. "scale": [
  8453. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8454. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8455. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8456. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8457. { "time": 2, "x": 1, "y": 1 }
  8458. ]
  8459. },
  8460. "bone39": {
  8461. "rotate": [
  8462. { "time": 0, "angle": 0, "curve": "stepped" },
  8463. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8464. { "time": 1, "angle": 0, "curve": "stepped" },
  8465. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8466. { "time": 2, "angle": 0 }
  8467. ],
  8468. "translate": [
  8469. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8470. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8471. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8472. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8473. { "time": 2, "x": 0, "y": 0 }
  8474. ],
  8475. "scale": [
  8476. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8477. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8478. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8479. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8480. { "time": 2, "x": 1, "y": 1 }
  8481. ]
  8482. },
  8483. "bone40": {
  8484. "rotate": [
  8485. {
  8486. "time": 0,
  8487. "angle": -3.55,
  8488. "curve": [ 0.25, 0, 0.75, 1 ]
  8489. },
  8490. {
  8491. "time": 0.5,
  8492. "angle": 0,
  8493. "curve": [ 0.25, 0, 0.75, 1 ]
  8494. },
  8495. {
  8496. "time": 1,
  8497. "angle": -3.55,
  8498. "curve": [ 0.25, 0, 0.75, 1 ]
  8499. },
  8500. {
  8501. "time": 1.5,
  8502. "angle": 0,
  8503. "curve": [ 0.25, 0, 0.75, 1 ]
  8504. },
  8505. { "time": 2, "angle": -3.55 }
  8506. ],
  8507. "translate": [
  8508. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8509. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8510. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8511. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8512. { "time": 2, "x": 0, "y": 0 }
  8513. ],
  8514. "scale": [
  8515. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8516. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8517. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8518. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8519. { "time": 2, "x": 1, "y": 1 }
  8520. ]
  8521. },
  8522. "bone41": {
  8523. "rotate": [
  8524. {
  8525. "time": 0,
  8526. "angle": -2.81,
  8527. "curve": [ 0.25, 0, 0.75, 1 ]
  8528. },
  8529. {
  8530. "time": 0.5,
  8531. "angle": 0,
  8532. "curve": [ 0.25, 0, 0.75, 1 ]
  8533. },
  8534. {
  8535. "time": 1,
  8536. "angle": -2.81,
  8537. "curve": [ 0.25, 0, 0.75, 1 ]
  8538. },
  8539. {
  8540. "time": 1.5,
  8541. "angle": 0,
  8542. "curve": [ 0.25, 0, 0.75, 1 ]
  8543. },
  8544. { "time": 2, "angle": -2.81 }
  8545. ],
  8546. "translate": [
  8547. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8548. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8549. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8550. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8551. { "time": 2, "x": 0, "y": 0 }
  8552. ],
  8553. "scale": [
  8554. {
  8555. "time": 0,
  8556. "x": 1,
  8557. "y": 1,
  8558. "curve": [ 0.25, 0, 0.75, 1 ]
  8559. },
  8560. {
  8561. "time": 0.5,
  8562. "x": 1,
  8563. "y": 0.9,
  8564. "curve": [ 0.25, 0, 0.75, 1 ]
  8565. },
  8566. {
  8567. "time": 1,
  8568. "x": 1,
  8569. "y": 1,
  8570. "curve": [ 0.25, 0, 0.75, 1 ]
  8571. },
  8572. {
  8573. "time": 1.5,
  8574. "x": 1,
  8575. "y": 0.9,
  8576. "curve": [ 0.25, 0, 0.75, 1 ]
  8577. },
  8578. { "time": 2, "x": 1, "y": 1 }
  8579. ]
  8580. },
  8581. "bone42": {
  8582. "rotate": [
  8583. {
  8584. "time": 0,
  8585. "angle": -2.81,
  8586. "curve": [ 0.25, 0, 0.75, 1 ]
  8587. },
  8588. {
  8589. "time": 0.5,
  8590. "angle": 4.09,
  8591. "curve": [ 0.25, 0, 0.75, 1 ]
  8592. },
  8593. {
  8594. "time": 1,
  8595. "angle": -2.81,
  8596. "curve": [ 0.25, 0, 0.75, 1 ]
  8597. },
  8598. {
  8599. "time": 1.5,
  8600. "angle": 4.09,
  8601. "curve": [ 0.25, 0, 0.75, 1 ]
  8602. },
  8603. { "time": 2, "angle": -2.81 }
  8604. ],
  8605. "translate": [
  8606. {
  8607. "time": 0,
  8608. "x": -1.56,
  8609. "y": 0.57,
  8610. "curve": [ 0.25, 0, 0.75, 1 ]
  8611. },
  8612. {
  8613. "time": 0.5,
  8614. "x": 0,
  8615. "y": 0,
  8616. "curve": [ 0.25, 0, 0.75, 1 ]
  8617. },
  8618. {
  8619. "time": 1,
  8620. "x": -1.56,
  8621. "y": 0.57,
  8622. "curve": [ 0.25, 0, 0.75, 1 ]
  8623. },
  8624. {
  8625. "time": 1.5,
  8626. "x": 0,
  8627. "y": 0,
  8628. "curve": [ 0.25, 0, 0.75, 1 ]
  8629. },
  8630. { "time": 2, "x": -1.56, "y": 0.57 }
  8631. ],
  8632. "scale": [
  8633. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8634. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8635. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8636. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8637. { "time": 2, "x": 1, "y": 1 }
  8638. ]
  8639. },
  8640. "bone43": {
  8641. "rotate": [
  8642. {
  8643. "time": 0,
  8644. "angle": -9.02,
  8645. "curve": [ 0.25, 0, 0.75, 1 ]
  8646. },
  8647. {
  8648. "time": 0.5,
  8649. "angle": -15.44,
  8650. "curve": [ 0.25, 0, 0.75, 1 ]
  8651. },
  8652. {
  8653. "time": 1,
  8654. "angle": -9.02,
  8655. "curve": [ 0.25, 0, 0.75, 1 ]
  8656. },
  8657. {
  8658. "time": 1.5,
  8659. "angle": -15.44,
  8660. "curve": [ 0.25, 0, 0.75, 1 ]
  8661. },
  8662. { "time": 2, "angle": -9.02 }
  8663. ],
  8664. "translate": [
  8665. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8666. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8667. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8668. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8669. { "time": 2, "x": 0, "y": 0 }
  8670. ],
  8671. "scale": [
  8672. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8673. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8674. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8675. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8676. { "time": 2, "x": 1, "y": 1 }
  8677. ]
  8678. },
  8679. "bone44": {
  8680. "rotate": [
  8681. {
  8682. "time": 0,
  8683. "angle": -9.02,
  8684. "curve": [ 0.25, 0, 0.75, 1 ]
  8685. },
  8686. {
  8687. "time": 0.5,
  8688. "angle": -15.44,
  8689. "curve": [ 0.25, 0, 0.75, 1 ]
  8690. },
  8691. {
  8692. "time": 1,
  8693. "angle": -9.02,
  8694. "curve": [ 0.25, 0, 0.75, 1 ]
  8695. },
  8696. {
  8697. "time": 1.5,
  8698. "angle": -15.44,
  8699. "curve": [ 0.25, 0, 0.75, 1 ]
  8700. },
  8701. { "time": 2, "angle": -9.02 }
  8702. ],
  8703. "translate": [
  8704. {
  8705. "time": 0,
  8706. "x": -2.71,
  8707. "y": 0.44,
  8708. "curve": [ 0.25, 0, 0.75, 1 ]
  8709. },
  8710. {
  8711. "time": 0.5,
  8712. "x": 0,
  8713. "y": 0,
  8714. "curve": [ 0.25, 0, 0.75, 1 ]
  8715. },
  8716. {
  8717. "time": 1,
  8718. "x": -2.71,
  8719. "y": 0.44,
  8720. "curve": [ 0.25, 0, 0.75, 1 ]
  8721. },
  8722. {
  8723. "time": 1.5,
  8724. "x": 0,
  8725. "y": 0,
  8726. "curve": [ 0.25, 0, 0.75, 1 ]
  8727. },
  8728. { "time": 2, "x": -2.71, "y": 0.44 }
  8729. ],
  8730. "scale": [
  8731. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8732. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8733. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8734. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8735. { "time": 2, "x": 1, "y": 1 }
  8736. ]
  8737. },
  8738. "bone45": {
  8739. "rotate": [
  8740. {
  8741. "time": 0,
  8742. "angle": -9.02,
  8743. "curve": [ 0.25, 0, 0.75, 1 ]
  8744. },
  8745. {
  8746. "time": 0.5,
  8747. "angle": 0,
  8748. "curve": [ 0.25, 0, 0.75, 1 ]
  8749. },
  8750. {
  8751. "time": 1,
  8752. "angle": -9.02,
  8753. "curve": [ 0.25, 0, 0.75, 1 ]
  8754. },
  8755. {
  8756. "time": 1.5,
  8757. "angle": 0,
  8758. "curve": [ 0.25, 0, 0.75, 1 ]
  8759. },
  8760. { "time": 2, "angle": -9.02 }
  8761. ],
  8762. "translate": [
  8763. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8764. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8765. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8766. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8767. { "time": 2, "x": 0, "y": 0 }
  8768. ],
  8769. "scale": [
  8770. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8771. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8772. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8773. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8774. { "time": 2, "x": 1, "y": 1 }
  8775. ]
  8776. },
  8777. "bone46": {
  8778. "rotate": [
  8779. {
  8780. "time": 0,
  8781. "angle": -4.79,
  8782. "curve": [ 0.25, 0, 0.75, 1 ]
  8783. },
  8784. {
  8785. "time": 0.5,
  8786. "angle": 0,
  8787. "curve": [ 0.25, 0, 0.75, 1 ]
  8788. },
  8789. {
  8790. "time": 1,
  8791. "angle": -4.79,
  8792. "curve": [ 0.25, 0, 0.75, 1 ]
  8793. },
  8794. {
  8795. "time": 1.5,
  8796. "angle": 0,
  8797. "curve": [ 0.25, 0, 0.75, 1 ]
  8798. },
  8799. { "time": 2, "angle": -4.79 }
  8800. ],
  8801. "translate": [
  8802. {
  8803. "time": 0,
  8804. "x": 0,
  8805. "y": 0,
  8806. "curve": [ 0.25, 0, 0.75, 1 ]
  8807. },
  8808. {
  8809. "time": 0.5,
  8810. "x": 0.07,
  8811. "y": -1.78,
  8812. "curve": [ 0.25, 0, 0.75, 1 ]
  8813. },
  8814. {
  8815. "time": 1,
  8816. "x": 0,
  8817. "y": 0,
  8818. "curve": [ 0.25, 0, 0.75, 1 ]
  8819. },
  8820. {
  8821. "time": 1.5,
  8822. "x": 0.07,
  8823. "y": -1.78,
  8824. "curve": [ 0.25, 0, 0.75, 1 ]
  8825. },
  8826. { "time": 2, "x": 0, "y": 0 }
  8827. ],
  8828. "scale": [
  8829. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8830. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8831. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8832. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8833. { "time": 2, "x": 1, "y": 1 }
  8834. ]
  8835. },
  8836. "bone47": {
  8837. "rotate": [
  8838. {
  8839. "time": 0,
  8840. "angle": -4.79,
  8841. "curve": [ 0.25, 0, 0.75, 1 ]
  8842. },
  8843. {
  8844. "time": 0.5,
  8845. "angle": 0,
  8846. "curve": [ 0.25, 0, 0.75, 1 ]
  8847. },
  8848. {
  8849. "time": 1,
  8850. "angle": -4.79,
  8851. "curve": [ 0.25, 0, 0.75, 1 ]
  8852. },
  8853. {
  8854. "time": 1.5,
  8855. "angle": 0,
  8856. "curve": [ 0.25, 0, 0.75, 1 ]
  8857. },
  8858. { "time": 2, "angle": -4.79 }
  8859. ],
  8860. "translate": [
  8861. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8862. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8863. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8864. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8865. { "time": 2, "x": 0, "y": 0 }
  8866. ],
  8867. "scale": [
  8868. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8869. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8870. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8871. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8872. { "time": 2, "x": 1, "y": 1 }
  8873. ]
  8874. },
  8875. "bone48": {
  8876. "rotate": [
  8877. {
  8878. "time": 0,
  8879. "angle": -4.79,
  8880. "curve": [ 0.25, 0, 0.75, 1 ]
  8881. },
  8882. {
  8883. "time": 0.5,
  8884. "angle": 0,
  8885. "curve": [ 0.25, 0, 0.75, 1 ]
  8886. },
  8887. {
  8888. "time": 1,
  8889. "angle": -4.79,
  8890. "curve": [ 0.25, 0, 0.75, 1 ]
  8891. },
  8892. {
  8893. "time": 1.5,
  8894. "angle": 0,
  8895. "curve": [ 0.25, 0, 0.75, 1 ]
  8896. },
  8897. { "time": 2, "angle": -4.79 }
  8898. ],
  8899. "translate": [
  8900. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8901. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8902. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8903. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8904. { "time": 2, "x": 0, "y": 0 }
  8905. ],
  8906. "scale": [
  8907. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8908. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8909. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8910. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8911. { "time": 2, "x": 1, "y": 1 }
  8912. ]
  8913. },
  8914. "bone49": {
  8915. "rotate": [
  8916. {
  8917. "time": 0,
  8918. "angle": -4.79,
  8919. "curve": [ 0.25, 0, 0.75, 1 ]
  8920. },
  8921. {
  8922. "time": 0.5,
  8923. "angle": 0,
  8924. "curve": [ 0.25, 0, 0.75, 1 ]
  8925. },
  8926. {
  8927. "time": 1,
  8928. "angle": -4.79,
  8929. "curve": [ 0.25, 0, 0.75, 1 ]
  8930. },
  8931. {
  8932. "time": 1.5,
  8933. "angle": 0,
  8934. "curve": [ 0.25, 0, 0.75, 1 ]
  8935. },
  8936. { "time": 2, "angle": -4.79 }
  8937. ],
  8938. "translate": [
  8939. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8940. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8941. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8942. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8943. { "time": 2, "x": 0, "y": 0 }
  8944. ],
  8945. "scale": [
  8946. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8947. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8948. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8949. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8950. { "time": 2, "x": 1, "y": 1 }
  8951. ]
  8952. },
  8953. "bone50": {
  8954. "rotate": [
  8955. {
  8956. "time": 0,
  8957. "angle": 2.6,
  8958. "curve": [ 0.25, 0, 0.75, 1 ]
  8959. },
  8960. {
  8961. "time": 0.5,
  8962. "angle": 0,
  8963. "curve": [ 0.25, 0, 0.75, 1 ]
  8964. },
  8965. {
  8966. "time": 1,
  8967. "angle": 2.6,
  8968. "curve": [ 0.25, 0, 0.75, 1 ]
  8969. },
  8970. {
  8971. "time": 1.5,
  8972. "angle": 0,
  8973. "curve": [ 0.25, 0, 0.75, 1 ]
  8974. },
  8975. { "time": 2, "angle": 2.6 }
  8976. ],
  8977. "translate": [
  8978. {
  8979. "time": 0,
  8980. "x": 0,
  8981. "y": 0,
  8982. "curve": [ 0.25, 0, 0.75, 1 ]
  8983. },
  8984. {
  8985. "time": 0.5,
  8986. "x": 1.58,
  8987. "y": -1.75,
  8988. "curve": [ 0.25, 0, 0.75, 1 ]
  8989. },
  8990. {
  8991. "time": 1,
  8992. "x": 0,
  8993. "y": 0,
  8994. "curve": [ 0.25, 0, 0.75, 1 ]
  8995. },
  8996. {
  8997. "time": 1.5,
  8998. "x": 1.58,
  8999. "y": -1.75,
  9000. "curve": [ 0.25, 0, 0.75, 1 ]
  9001. },
  9002. { "time": 2, "x": 0, "y": 0 }
  9003. ],
  9004. "scale": [
  9005. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9006. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9007. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9008. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9009. { "time": 2, "x": 1, "y": 1 }
  9010. ]
  9011. },
  9012. "bone51": {
  9013. "rotate": [
  9014. {
  9015. "time": 0,
  9016. "angle": -0.36,
  9017. "curve": [ 0.25, 0, 0.75, 1 ]
  9018. },
  9019. {
  9020. "time": 0.5,
  9021. "angle": 5.5,
  9022. "curve": [ 0.25, 0, 0.75, 1 ]
  9023. },
  9024. {
  9025. "time": 1,
  9026. "angle": -0.36,
  9027. "curve": [ 0.25, 0, 0.75, 1 ]
  9028. },
  9029. {
  9030. "time": 1.5,
  9031. "angle": 5.5,
  9032. "curve": [ 0.25, 0, 0.75, 1 ]
  9033. },
  9034. { "time": 2, "angle": -0.36 }
  9035. ],
  9036. "translate": [
  9037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9038. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9039. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9040. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9041. { "time": 2, "x": 0, "y": 0 }
  9042. ],
  9043. "scale": [
  9044. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9045. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9046. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9047. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9048. { "time": 2, "x": 1, "y": 1 }
  9049. ]
  9050. },
  9051. "bone52": {
  9052. "rotate": [
  9053. {
  9054. "time": 0,
  9055. "angle": -0.36,
  9056. "curve": [ 0.25, 0, 0.75, 1 ]
  9057. },
  9058. {
  9059. "time": 0.5,
  9060. "angle": 2.06,
  9061. "curve": [ 0.25, 0, 0.75, 1 ]
  9062. },
  9063. {
  9064. "time": 1,
  9065. "angle": -0.36,
  9066. "curve": [ 0.25, 0, 0.75, 1 ]
  9067. },
  9068. {
  9069. "time": 1.5,
  9070. "angle": 2.06,
  9071. "curve": [ 0.25, 0, 0.75, 1 ]
  9072. },
  9073. { "time": 2, "angle": -0.36 }
  9074. ],
  9075. "translate": [
  9076. {
  9077. "time": 0,
  9078. "x": -2,
  9079. "y": -0.43,
  9080. "curve": [ 0.25, 0, 0.75, 1 ]
  9081. },
  9082. {
  9083. "time": 0.5,
  9084. "x": -1.19,
  9085. "y": 0.78,
  9086. "curve": [ 0.25, 0, 0.75, 1 ]
  9087. },
  9088. {
  9089. "time": 1,
  9090. "x": -2,
  9091. "y": -0.43,
  9092. "curve": [ 0.25, 0, 0.75, 1 ]
  9093. },
  9094. {
  9095. "time": 1.5,
  9096. "x": -1.19,
  9097. "y": 0.78,
  9098. "curve": [ 0.25, 0, 0.75, 1 ]
  9099. },
  9100. { "time": 2, "x": -2, "y": -0.43 }
  9101. ],
  9102. "scale": [
  9103. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9104. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9105. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9106. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9107. { "time": 2, "x": 1, "y": 1 }
  9108. ]
  9109. },
  9110. "bone53": {
  9111. "rotate": [
  9112. {
  9113. "time": 0,
  9114. "angle": -11.25,
  9115. "curve": [ 0.25, 0, 0.75, 1 ]
  9116. },
  9117. {
  9118. "time": 0.5,
  9119. "angle": -16.35,
  9120. "curve": [ 0.25, 0, 0.75, 1 ]
  9121. },
  9122. {
  9123. "time": 1,
  9124. "angle": -11.25,
  9125. "curve": [ 0.25, 0, 0.75, 1 ]
  9126. },
  9127. {
  9128. "time": 1.5,
  9129. "angle": -16.35,
  9130. "curve": [ 0.25, 0, 0.75, 1 ]
  9131. },
  9132. { "time": 2, "angle": -11.25 }
  9133. ],
  9134. "translate": [
  9135. {
  9136. "time": 0,
  9137. "x": -4.06,
  9138. "y": 0,
  9139. "curve": [ 0.25, 0, 0.75, 1 ]
  9140. },
  9141. {
  9142. "time": 0.5,
  9143. "x": -1.86,
  9144. "y": 1.76,
  9145. "curve": [ 0.25, 0, 0.75, 1 ]
  9146. },
  9147. {
  9148. "time": 1,
  9149. "x": -4.06,
  9150. "y": 0,
  9151. "curve": [ 0.25, 0, 0.75, 1 ]
  9152. },
  9153. {
  9154. "time": 1.5,
  9155. "x": -1.86,
  9156. "y": 1.76,
  9157. "curve": [ 0.25, 0, 0.75, 1 ]
  9158. },
  9159. { "time": 2, "x": -4.06, "y": 0 }
  9160. ],
  9161. "scale": [
  9162. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9163. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9164. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9165. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9166. { "time": 2, "x": 1, "y": 1 }
  9167. ]
  9168. },
  9169. "bone54": {
  9170. "rotate": [
  9171. {
  9172. "time": 0,
  9173. "angle": -8.29,
  9174. "curve": [ 0.25, 0, 0.75, 1 ]
  9175. },
  9176. {
  9177. "time": 0.5,
  9178. "angle": -9.44,
  9179. "curve": [ 0.25, 0, 0.75, 1 ]
  9180. },
  9181. {
  9182. "time": 1,
  9183. "angle": -8.29,
  9184. "curve": [ 0.25, 0, 0.75, 1 ]
  9185. },
  9186. {
  9187. "time": 1.5,
  9188. "angle": -9.44,
  9189. "curve": [ 0.25, 0, 0.75, 1 ]
  9190. },
  9191. { "time": 2, "angle": -8.29 }
  9192. ],
  9193. "translate": [
  9194. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9195. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9196. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9197. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9198. { "time": 2, "x": 0, "y": 0 }
  9199. ],
  9200. "scale": [
  9201. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9202. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9203. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9204. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9205. { "time": 2, "x": 1, "y": 1 }
  9206. ]
  9207. },
  9208. "bone55": {
  9209. "rotate": [
  9210. {
  9211. "time": 0,
  9212. "angle": -0.83,
  9213. "curve": [ 0.25, 0, 0.75, 1 ]
  9214. },
  9215. {
  9216. "time": 0.5,
  9217. "angle": -2,
  9218. "curve": [ 0.25, 0, 0.75, 1 ]
  9219. },
  9220. {
  9221. "time": 1,
  9222. "angle": -0.83,
  9223. "curve": [ 0.25, 0, 0.75, 1 ]
  9224. },
  9225. {
  9226. "time": 1.5,
  9227. "angle": -2,
  9228. "curve": [ 0.25, 0, 0.75, 1 ]
  9229. },
  9230. { "time": 2, "angle": -0.83 }
  9231. ],
  9232. "translate": [
  9233. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9234. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9235. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9236. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9237. { "time": 2, "x": 0, "y": 0 }
  9238. ],
  9239. "scale": [
  9240. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9241. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9242. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9243. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9244. { "time": 2, "x": 1, "y": 1 }
  9245. ]
  9246. },
  9247. "bone56": {
  9248. "rotate": [
  9249. { "time": 0, "angle": 0, "curve": "stepped" },
  9250. { "time": 0.5, "angle": 0, "curve": "stepped" },
  9251. { "time": 1, "angle": 0, "curve": "stepped" },
  9252. { "time": 1.5, "angle": 0, "curve": "stepped" },
  9253. { "time": 2, "angle": 0 }
  9254. ],
  9255. "translate": [
  9256. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9257. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9258. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9259. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9260. { "time": 2, "x": 0, "y": 0 }
  9261. ],
  9262. "scale": [
  9263. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9264. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9265. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9266. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9267. { "time": 2, "x": 1, "y": 1 }
  9268. ]
  9269. },
  9270. "bone57": {
  9271. "rotate": [
  9272. {
  9273. "time": 0,
  9274. "angle": -5.48,
  9275. "curve": [ 0.25, 0, 0.75, 1 ]
  9276. },
  9277. {
  9278. "time": 0.5,
  9279. "angle": 0,
  9280. "curve": [ 0.25, 0, 0.75, 1 ]
  9281. },
  9282. {
  9283. "time": 1,
  9284. "angle": -5.48,
  9285. "curve": [ 0.25, 0, 0.75, 1 ]
  9286. },
  9287. {
  9288. "time": 1.5,
  9289. "angle": 0,
  9290. "curve": [ 0.25, 0, 0.75, 1 ]
  9291. },
  9292. { "time": 2, "angle": -5.48 }
  9293. ],
  9294. "translate": [
  9295. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9296. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9297. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9298. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9299. { "time": 2, "x": 0, "y": 0 }
  9300. ],
  9301. "scale": [
  9302. {
  9303. "time": 0,
  9304. "x": 1,
  9305. "y": 1,
  9306. "curve": [ 0.25, 0, 0.75, 1 ]
  9307. },
  9308. {
  9309. "time": 0.5,
  9310. "x": 1,
  9311. "y": 0.9,
  9312. "curve": [ 0.25, 0, 0.75, 1 ]
  9313. },
  9314. {
  9315. "time": 1,
  9316. "x": 1,
  9317. "y": 1,
  9318. "curve": [ 0.25, 0, 0.75, 1 ]
  9319. },
  9320. {
  9321. "time": 1.5,
  9322. "x": 1,
  9323. "y": 0.9,
  9324. "curve": [ 0.25, 0, 0.75, 1 ]
  9325. },
  9326. { "time": 2, "x": 1, "y": 1 }
  9327. ]
  9328. },
  9329. "bone58": {
  9330. "rotate": [
  9331. {
  9332. "time": 0,
  9333. "angle": -1.12,
  9334. "curve": [ 0.25, 0, 0.75, 1 ]
  9335. },
  9336. {
  9337. "time": 0.5,
  9338. "angle": 0,
  9339. "curve": [ 0.25, 0, 0.75, 1 ]
  9340. },
  9341. {
  9342. "time": 1,
  9343. "angle": -1.12,
  9344. "curve": [ 0.25, 0, 0.75, 1 ]
  9345. },
  9346. {
  9347. "time": 1.5,
  9348. "angle": 0,
  9349. "curve": [ 0.25, 0, 0.75, 1 ]
  9350. },
  9351. { "time": 2, "angle": -1.12 }
  9352. ],
  9353. "translate": [
  9354. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9355. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9356. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9357. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9358. { "time": 2, "x": 0, "y": 0 }
  9359. ],
  9360. "scale": [
  9361. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9362. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9363. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9364. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9365. { "time": 2, "x": 1, "y": 1 }
  9366. ]
  9367. },
  9368. "bone59": {
  9369. "rotate": [
  9370. {
  9371. "time": 0,
  9372. "angle": -5.3,
  9373. "curve": [ 0.25, 0, 0.75, 1 ]
  9374. },
  9375. {
  9376. "time": 0.5,
  9377. "angle": 0,
  9378. "curve": [ 0.25, 0, 0.75, 1 ]
  9379. },
  9380. {
  9381. "time": 1,
  9382. "angle": -5.3,
  9383. "curve": [ 0.25, 0, 0.75, 1 ]
  9384. },
  9385. {
  9386. "time": 1.5,
  9387. "angle": 0,
  9388. "curve": [ 0.25, 0, 0.75, 1 ]
  9389. },
  9390. { "time": 2, "angle": -5.3 }
  9391. ],
  9392. "translate": [
  9393. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9394. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9395. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9396. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9397. { "time": 2, "x": 0, "y": 0 }
  9398. ],
  9399. "scale": [
  9400. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9401. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9402. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9403. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9404. { "time": 2, "x": 1, "y": 1 }
  9405. ]
  9406. },
  9407. "bone60": {
  9408. "rotate": [
  9409. {
  9410. "time": 0,
  9411. "angle": -8.7,
  9412. "curve": [ 0.25, 0, 0.75, 1 ]
  9413. },
  9414. {
  9415. "time": 0.5,
  9416. "angle": 0,
  9417. "curve": [ 0.25, 0, 0.75, 1 ]
  9418. },
  9419. {
  9420. "time": 1,
  9421. "angle": -8.7,
  9422. "curve": [ 0.25, 0, 0.75, 1 ]
  9423. },
  9424. {
  9425. "time": 1.5,
  9426. "angle": 0,
  9427. "curve": [ 0.25, 0, 0.75, 1 ]
  9428. },
  9429. { "time": 2, "angle": -8.7 }
  9430. ],
  9431. "translate": [
  9432. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9433. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9434. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9435. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9436. { "time": 2, "x": 0, "y": 0 }
  9437. ],
  9438. "scale": [
  9439. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9441. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9442. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9443. { "time": 2, "x": 1, "y": 1 }
  9444. ]
  9445. },
  9446. "bone61": {
  9447. "rotate": [
  9448. {
  9449. "time": 0,
  9450. "angle": 1.16,
  9451. "curve": [ 0.25, 0, 0.75, 1 ]
  9452. },
  9453. {
  9454. "time": 0.5,
  9455. "angle": 0,
  9456. "curve": [ 0.25, 0, 0.75, 1 ]
  9457. },
  9458. {
  9459. "time": 1,
  9460. "angle": 1.16,
  9461. "curve": [ 0.25, 0, 0.75, 1 ]
  9462. },
  9463. {
  9464. "time": 1.5,
  9465. "angle": 0,
  9466. "curve": [ 0.25, 0, 0.75, 1 ]
  9467. },
  9468. { "time": 2, "angle": 1.16 }
  9469. ],
  9470. "translate": [
  9471. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9472. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9473. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9474. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9475. { "time": 2, "x": 0, "y": 0 }
  9476. ],
  9477. "scale": [
  9478. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9479. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9480. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9481. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9482. { "time": 2, "x": 1, "y": 1 }
  9483. ]
  9484. },
  9485. "bone62": {
  9486. "rotate": [
  9487. {
  9488. "time": 0,
  9489. "angle": 1.16,
  9490. "curve": [ 0.25, 0, 0.75, 1 ]
  9491. },
  9492. {
  9493. "time": 0.5,
  9494. "angle": 0,
  9495. "curve": [ 0.25, 0, 0.75, 1 ]
  9496. },
  9497. {
  9498. "time": 1,
  9499. "angle": 1.16,
  9500. "curve": [ 0.25, 0, 0.75, 1 ]
  9501. },
  9502. {
  9503. "time": 1.5,
  9504. "angle": 0,
  9505. "curve": [ 0.25, 0, 0.75, 1 ]
  9506. },
  9507. { "time": 2, "angle": 1.16 }
  9508. ],
  9509. "translate": [
  9510. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9511. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9512. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9513. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9514. { "time": 2, "x": 0, "y": 0 }
  9515. ],
  9516. "scale": [
  9517. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9518. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9519. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9520. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9521. { "time": 2, "x": 1, "y": 1 }
  9522. ]
  9523. },
  9524. "bone63": {
  9525. "rotate": [
  9526. {
  9527. "time": 0,
  9528. "angle": 1.16,
  9529. "curve": [ 0.25, 0, 0.75, 1 ]
  9530. },
  9531. {
  9532. "time": 0.5,
  9533. "angle": 0,
  9534. "curve": [ 0.25, 0, 0.75, 1 ]
  9535. },
  9536. {
  9537. "time": 1,
  9538. "angle": 1.16,
  9539. "curve": [ 0.25, 0, 0.75, 1 ]
  9540. },
  9541. {
  9542. "time": 1.5,
  9543. "angle": 0,
  9544. "curve": [ 0.25, 0, 0.75, 1 ]
  9545. },
  9546. { "time": 2, "angle": 1.16 }
  9547. ],
  9548. "translate": [
  9549. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9550. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9551. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9552. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9553. { "time": 2, "x": 0, "y": 0 }
  9554. ],
  9555. "scale": [
  9556. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9557. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9558. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9559. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9560. { "time": 2, "x": 1, "y": 1 }
  9561. ]
  9562. },
  9563. "bone65": {
  9564. "rotate": [
  9565. { "time": 0, "angle": 0, "curve": "stepped" },
  9566. { "time": 1, "angle": 0, "curve": "stepped" },
  9567. { "time": 2, "angle": 0 }
  9568. ],
  9569. "translate": [
  9570. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9571. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9572. { "time": 2, "x": 0, "y": 0 }
  9573. ],
  9574. "scale": [
  9575. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9576. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9577. { "time": 2, "x": 1, "y": 1 }
  9578. ]
  9579. },
  9580. "bone66": {
  9581. "rotate": [
  9582. {
  9583. "time": 0,
  9584. "angle": -2.42,
  9585. "curve": [ 0.25, 0, 0.75, 1 ]
  9586. },
  9587. {
  9588. "time": 0.5,
  9589. "angle": 0,
  9590. "curve": [ 0.25, 0, 0.75, 1 ]
  9591. },
  9592. {
  9593. "time": 1,
  9594. "angle": -2.42,
  9595. "curve": [ 0.25, 0, 0.75, 1 ]
  9596. },
  9597. {
  9598. "time": 1.5,
  9599. "angle": 0,
  9600. "curve": [ 0.25, 0, 0.75, 1 ]
  9601. },
  9602. { "time": 2, "angle": -2.42 }
  9603. ],
  9604. "translate": [
  9605. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9606. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9607. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9608. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9609. { "time": 2, "x": 0, "y": 0 }
  9610. ],
  9611. "scale": [
  9612. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9613. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9614. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9615. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9616. { "time": 2, "x": 1, "y": 1 }
  9617. ]
  9618. },
  9619. "bone67": {
  9620. "rotate": [
  9621. {
  9622. "time": 0,
  9623. "angle": -2.42,
  9624. "curve": [ 0.25, 0, 0.75, 1 ]
  9625. },
  9626. {
  9627. "time": 0.5,
  9628. "angle": 0,
  9629. "curve": [ 0.25, 0, 0.75, 1 ]
  9630. },
  9631. {
  9632. "time": 1,
  9633. "angle": -2.42,
  9634. "curve": [ 0.25, 0, 0.75, 1 ]
  9635. },
  9636. {
  9637. "time": 1.5,
  9638. "angle": 0,
  9639. "curve": [ 0.25, 0, 0.75, 1 ]
  9640. },
  9641. { "time": 2, "angle": -2.42 }
  9642. ],
  9643. "translate": [
  9644. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9645. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9646. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9647. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9648. { "time": 2, "x": 0, "y": 0 }
  9649. ],
  9650. "scale": [
  9651. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9652. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9653. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9654. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9655. { "time": 2, "x": 1, "y": 1 }
  9656. ]
  9657. },
  9658. "bone68": {
  9659. "rotate": [
  9660. {
  9661. "time": 0,
  9662. "angle": -11.13,
  9663. "curve": [ 0.25, 0, 0.75, 1 ]
  9664. },
  9665. {
  9666. "time": 0.5,
  9667. "angle": 0,
  9668. "curve": [ 0.25, 0, 0.75, 1 ]
  9669. },
  9670. {
  9671. "time": 1,
  9672. "angle": -11.13,
  9673. "curve": [ 0.25, 0, 0.75, 1 ]
  9674. },
  9675. {
  9676. "time": 1.5,
  9677. "angle": 0,
  9678. "curve": [ 0.25, 0, 0.75, 1 ]
  9679. },
  9680. { "time": 2, "angle": -11.13 }
  9681. ],
  9682. "translate": [
  9683. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9684. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9685. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9686. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9687. { "time": 2, "x": 0, "y": 0 }
  9688. ],
  9689. "scale": [
  9690. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9691. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9692. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9693. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9694. { "time": 2, "x": 1, "y": 1 }
  9695. ]
  9696. },
  9697. "bone69": {
  9698. "rotate": [
  9699. {
  9700. "time": 0,
  9701. "angle": -11.13,
  9702. "curve": [ 0.25, 0, 0.75, 1 ]
  9703. },
  9704. {
  9705. "time": 0.5,
  9706. "angle": 0,
  9707. "curve": [ 0.25, 0, 0.75, 1 ]
  9708. },
  9709. {
  9710. "time": 1,
  9711. "angle": -11.13,
  9712. "curve": [ 0.25, 0, 0.75, 1 ]
  9713. },
  9714. {
  9715. "time": 1.5,
  9716. "angle": 0,
  9717. "curve": [ 0.25, 0, 0.75, 1 ]
  9718. },
  9719. { "time": 2, "angle": -11.13 }
  9720. ],
  9721. "translate": [
  9722. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9723. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9724. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9725. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9726. { "time": 2, "x": 0, "y": 0 }
  9727. ],
  9728. "scale": [
  9729. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9730. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9731. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9732. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9733. { "time": 2, "x": 1, "y": 1 }
  9734. ]
  9735. },
  9736. "bone70": {
  9737. "rotate": [
  9738. {
  9739. "time": 0,
  9740. "angle": -11.13,
  9741. "curve": [ 0.25, 0, 0.75, 1 ]
  9742. },
  9743. {
  9744. "time": 0.5,
  9745. "angle": 0,
  9746. "curve": [ 0.25, 0, 0.75, 1 ]
  9747. },
  9748. {
  9749. "time": 1,
  9750. "angle": -11.13,
  9751. "curve": [ 0.25, 0, 0.75, 1 ]
  9752. },
  9753. {
  9754. "time": 1.5,
  9755. "angle": 0,
  9756. "curve": [ 0.25, 0, 0.75, 1 ]
  9757. },
  9758. { "time": 2, "angle": -11.13 }
  9759. ],
  9760. "translate": [
  9761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9762. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9763. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9764. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9765. { "time": 2, "x": 0, "y": 0 }
  9766. ],
  9767. "scale": [
  9768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9769. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9770. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9771. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9772. { "time": 2, "x": 1, "y": 1 }
  9773. ]
  9774. },
  9775. "bone74": {
  9776. "rotate": [
  9777. { "time": 0, "angle": 0, "curve": "stepped" },
  9778. { "time": 0.5, "angle": 0, "curve": "stepped" },
  9779. { "time": 1, "angle": 0, "curve": "stepped" },
  9780. { "time": 1.5, "angle": 0, "curve": "stepped" },
  9781. { "time": 2, "angle": 0 }
  9782. ],
  9783. "translate": [
  9784. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9785. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9786. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9787. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9788. { "time": 2, "x": 0, "y": 0 }
  9789. ],
  9790. "scale": [
  9791. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9792. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9793. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9794. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9795. { "time": 2, "x": 1, "y": 1 }
  9796. ]
  9797. },
  9798. "bone75": {
  9799. "rotate": [
  9800. {
  9801. "time": 0,
  9802. "angle": 0,
  9803. "curve": [ 0.25, 0, 0.75, 1 ]
  9804. },
  9805. {
  9806. "time": 0.5,
  9807. "angle": 4.43,
  9808. "curve": [ 0.25, 0, 0.75, 1 ]
  9809. },
  9810. {
  9811. "time": 1,
  9812. "angle": 0,
  9813. "curve": [ 0.25, 0, 0.75, 1 ]
  9814. },
  9815. {
  9816. "time": 1.5,
  9817. "angle": 4.43,
  9818. "curve": [ 0.25, 0, 0.75, 1 ]
  9819. },
  9820. { "time": 2, "angle": 0 }
  9821. ],
  9822. "translate": [
  9823. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9824. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9825. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9826. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9827. { "time": 2, "x": 0, "y": 0 }
  9828. ],
  9829. "scale": [
  9830. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9831. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9832. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9833. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9834. { "time": 2, "x": 1, "y": 1 }
  9835. ]
  9836. },
  9837. "bone76": {
  9838. "rotate": [
  9839. {
  9840. "time": 0,
  9841. "angle": 0,
  9842. "curve": [ 0.25, 0, 0.75, 1 ]
  9843. },
  9844. {
  9845. "time": 0.5,
  9846. "angle": 4.43,
  9847. "curve": [ 0.25, 0, 0.75, 1 ]
  9848. },
  9849. {
  9850. "time": 1,
  9851. "angle": 0,
  9852. "curve": [ 0.25, 0, 0.75, 1 ]
  9853. },
  9854. {
  9855. "time": 1.5,
  9856. "angle": 4.43,
  9857. "curve": [ 0.25, 0, 0.75, 1 ]
  9858. },
  9859. { "time": 2, "angle": 0 }
  9860. ],
  9861. "translate": [
  9862. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9863. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9864. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9865. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9866. { "time": 2, "x": 0, "y": 0 }
  9867. ],
  9868. "scale": [
  9869. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9870. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9871. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9872. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9873. { "time": 2, "x": 1, "y": 1 }
  9874. ]
  9875. },
  9876. "bone77": {
  9877. "rotate": [
  9878. {
  9879. "time": 0,
  9880. "angle": 0,
  9881. "curve": [ 0.25, 0, 0.75, 1 ]
  9882. },
  9883. {
  9884. "time": 0.5,
  9885. "angle": 4.43,
  9886. "curve": [ 0.25, 0, 0.75, 1 ]
  9887. },
  9888. {
  9889. "time": 1,
  9890. "angle": 0,
  9891. "curve": [ 0.25, 0, 0.75, 1 ]
  9892. },
  9893. {
  9894. "time": 1.5,
  9895. "angle": 4.43,
  9896. "curve": [ 0.25, 0, 0.75, 1 ]
  9897. },
  9898. { "time": 2, "angle": 0 }
  9899. ],
  9900. "translate": [
  9901. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9902. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9903. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9904. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9905. { "time": 2, "x": 0, "y": 0 }
  9906. ],
  9907. "scale": [
  9908. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9909. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9910. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9911. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9912. { "time": 2, "x": 1, "y": 1 }
  9913. ]
  9914. },
  9915. "bone64": {
  9916. "rotate": [
  9917. { "time": 0, "angle": 0, "curve": "stepped" },
  9918. { "time": 0.5, "angle": 0, "curve": "stepped" },
  9919. { "time": 1, "angle": 0, "curve": "stepped" },
  9920. { "time": 1.5, "angle": 0, "curve": "stepped" },
  9921. { "time": 2, "angle": 0 }
  9922. ],
  9923. "translate": [
  9924. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9925. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9926. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9927. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9928. { "time": 2, "x": 0, "y": 0 }
  9929. ],
  9930. "scale": [
  9931. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9932. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9933. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9934. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9935. { "time": 2, "x": 1, "y": 1 }
  9936. ]
  9937. },
  9938. "bone71": {
  9939. "rotate": [
  9940. {
  9941. "time": 0,
  9942. "angle": -7.89,
  9943. "curve": [ 0.25, 0, 0.75, 1 ]
  9944. },
  9945. {
  9946. "time": 0.5,
  9947. "angle": 0,
  9948. "curve": [ 0.25, 0, 0.75, 1 ]
  9949. },
  9950. {
  9951. "time": 1,
  9952. "angle": -7.89,
  9953. "curve": [ 0.25, 0, 0.75, 1 ]
  9954. },
  9955. {
  9956. "time": 1.5,
  9957. "angle": 0,
  9958. "curve": [ 0.25, 0, 0.75, 1 ]
  9959. },
  9960. { "time": 2, "angle": -7.89 }
  9961. ],
  9962. "translate": [
  9963. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9964. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9965. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9966. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9967. { "time": 2, "x": 0, "y": 0 }
  9968. ],
  9969. "scale": [
  9970. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9971. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9972. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9973. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9974. { "time": 2, "x": 1, "y": 1 }
  9975. ]
  9976. },
  9977. "bone72": {
  9978. "rotate": [
  9979. {
  9980. "time": 0,
  9981. "angle": 1.13,
  9982. "curve": [ 0.25, 0, 0.75, 1 ]
  9983. },
  9984. {
  9985. "time": 0.5,
  9986. "angle": 0,
  9987. "curve": [ 0.25, 0, 0.75, 1 ]
  9988. },
  9989. {
  9990. "time": 1,
  9991. "angle": 1.13,
  9992. "curve": [ 0.25, 0, 0.75, 1 ]
  9993. },
  9994. {
  9995. "time": 1.5,
  9996. "angle": 0,
  9997. "curve": [ 0.25, 0, 0.75, 1 ]
  9998. },
  9999. { "time": 2, "angle": 1.13 }
  10000. ],
  10001. "translate": [
  10002. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10003. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10004. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10005. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10006. { "time": 2, "x": 0, "y": 0 }
  10007. ],
  10008. "scale": [
  10009. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10010. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10011. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10012. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10013. { "time": 2, "x": 1, "y": 1 }
  10014. ]
  10015. },
  10016. "bone73": {
  10017. "rotate": [
  10018. {
  10019. "time": 0,
  10020. "angle": -4.36,
  10021. "curve": [ 0.25, 0, 0.75, 1 ]
  10022. },
  10023. {
  10024. "time": 0.5,
  10025. "angle": 0,
  10026. "curve": [ 0.25, 0, 0.75, 1 ]
  10027. },
  10028. {
  10029. "time": 1,
  10030. "angle": -4.36,
  10031. "curve": [ 0.25, 0, 0.75, 1 ]
  10032. },
  10033. {
  10034. "time": 1.5,
  10035. "angle": 0,
  10036. "curve": [ 0.25, 0, 0.75, 1 ]
  10037. },
  10038. { "time": 2, "angle": -4.36 }
  10039. ],
  10040. "translate": [
  10041. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10042. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10043. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10044. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10045. { "time": 2, "x": 0, "y": 0 }
  10046. ],
  10047. "scale": [
  10048. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10049. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10050. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10051. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10052. { "time": 2, "x": 1, "y": 1 }
  10053. ]
  10054. },
  10055. "long": {
  10056. "rotate": [
  10057. { "time": 0, "angle": 0, "curve": "stepped" },
  10058. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  10059. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  10060. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  10061. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  10062. { "time": 1.7, "angle": 0, "curve": "stepped" },
  10063. { "time": 2, "angle": 0 }
  10064. ],
  10065. "translate": [
  10066. {
  10067. "time": 0,
  10068. "x": 0,
  10069. "y": -2.86,
  10070. "curve": [ 0.25, 0, 0.75, 1 ]
  10071. },
  10072. {
  10073. "time": 0.3667,
  10074. "x": 4,
  10075. "y": 15.18,
  10076. "curve": [ 0.25, 0, 0.75, 1 ]
  10077. },
  10078. {
  10079. "time": 0.6667,
  10080. "x": 0,
  10081. "y": -2.86,
  10082. "curve": [ 0.25, 0, 0.75, 1 ]
  10083. },
  10084. {
  10085. "time": 1.0333,
  10086. "x": 4,
  10087. "y": 15.18,
  10088. "curve": [ 0.25, 0, 0.75, 1 ]
  10089. },
  10090. {
  10091. "time": 1.3333,
  10092. "x": 0,
  10093. "y": -2.86,
  10094. "curve": [ 0.25, 0, 0.75, 1 ]
  10095. },
  10096. {
  10097. "time": 1.7,
  10098. "x": 4,
  10099. "y": 15.18,
  10100. "curve": [ 0.25, 0, 0.75, 1 ]
  10101. },
  10102. { "time": 2, "x": 0, "y": -2.86 }
  10103. ],
  10104. "scale": [
  10105. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10106. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10107. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10108. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10109. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10110. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10111. { "time": 2, "x": 1, "y": 1 }
  10112. ]
  10113. },
  10114. "long2": {
  10115. "rotate": [
  10116. { "time": 0, "angle": 0 },
  10117. { "time": 0.1, "angle": -4.04 },
  10118. { "time": 0.2333, "angle": -10.11 },
  10119. { "time": 0.3667, "angle": -16.18 },
  10120. { "time": 0.4333, "angle": -10.79 },
  10121. { "time": 0.5667, "angle": -5.39 },
  10122. { "time": 0.6667, "angle": 0 },
  10123. { "time": 0.7667, "angle": -4.04 },
  10124. { "time": 0.9, "angle": -10.11 },
  10125. { "time": 1.0333, "angle": -16.18 },
  10126. { "time": 1.1, "angle": -10.79 },
  10127. { "time": 1.2333, "angle": -5.39 },
  10128. { "time": 1.3333, "angle": 0 },
  10129. { "time": 1.4333, "angle": -4.04 },
  10130. { "time": 1.5667, "angle": -10.11 },
  10131. { "time": 1.7, "angle": -16.18 },
  10132. { "time": 1.7667, "angle": -10.79 },
  10133. { "time": 1.9, "angle": -5.39 },
  10134. { "time": 2, "angle": 0 }
  10135. ],
  10136. "translate": [
  10137. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10138. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  10139. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  10140. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10141. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  10142. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  10143. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10144. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  10145. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  10146. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10147. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  10148. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10149. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10150. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  10151. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  10152. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10153. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  10154. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  10155. { "time": 2, "x": 0, "y": 0 }
  10156. ],
  10157. "scale": [
  10158. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10159. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  10160. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  10161. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10162. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  10163. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  10164. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10165. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  10166. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  10167. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10168. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  10169. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10170. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10171. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  10172. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  10173. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10174. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  10175. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  10176. { "time": 2, "x": 1, "y": 1 }
  10177. ]
  10178. },
  10179. "long3": {
  10180. "rotate": [
  10181. { "time": 0, "angle": -14.9 },
  10182. { "time": 0.1, "angle": -12.71 },
  10183. { "time": 0.2333, "angle": -10.11 },
  10184. { "time": 0.3667, "angle": -16.18 },
  10185. { "time": 0.4333, "angle": -10.79 },
  10186. { "time": 0.5667, "angle": -5.39 },
  10187. { "time": 0.6667, "angle": -14.9 },
  10188. { "time": 0.7667, "angle": -12.71 },
  10189. { "time": 0.9, "angle": -10.11 },
  10190. { "time": 1.0333, "angle": -16.18 },
  10191. { "time": 1.1, "angle": -10.79 },
  10192. { "time": 1.2333, "angle": -5.39 },
  10193. { "time": 1.3333, "angle": -14.9 },
  10194. { "time": 1.4333, "angle": -12.71 },
  10195. { "time": 1.5667, "angle": -10.11 },
  10196. { "time": 1.7, "angle": -16.18 },
  10197. { "time": 1.7667, "angle": -10.79 },
  10198. { "time": 1.9, "angle": -5.39 },
  10199. { "time": 2, "angle": -14.9 }
  10200. ],
  10201. "translate": [
  10202. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10203. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  10204. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  10205. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10206. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  10207. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  10208. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10209. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  10210. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  10211. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10212. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  10213. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10214. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10215. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  10216. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  10217. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10218. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  10219. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  10220. { "time": 2, "x": 0, "y": 0 }
  10221. ],
  10222. "scale": [
  10223. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10224. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  10225. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  10226. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10227. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  10228. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  10229. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10230. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  10231. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  10232. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10233. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  10234. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10235. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10236. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  10237. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  10238. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10239. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  10240. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  10241. { "time": 2, "x": 1, "y": 1 }
  10242. ]
  10243. },
  10244. "long4": {
  10245. "rotate": [
  10246. { "time": 0, "angle": 0.66 },
  10247. { "time": 0.1, "angle": -5.52 },
  10248. { "time": 0.2333, "angle": -21.92 },
  10249. { "time": 0.3667, "angle": -16.18 },
  10250. { "time": 0.4333, "angle": -12.31 },
  10251. { "time": 0.5667, "angle": 0.86 },
  10252. { "time": 0.6667, "angle": 0.66 },
  10253. { "time": 0.7667, "angle": -5.52 },
  10254. { "time": 0.9, "angle": -21.92 },
  10255. { "time": 1.0333, "angle": -16.18 },
  10256. { "time": 1.1, "angle": -12.31 },
  10257. { "time": 1.2333, "angle": 0.86 },
  10258. { "time": 1.3333, "angle": 0.66 },
  10259. { "time": 1.4333, "angle": -5.52 },
  10260. { "time": 1.5667, "angle": -21.92 },
  10261. { "time": 1.7, "angle": -16.18 },
  10262. { "time": 1.7667, "angle": -12.31 },
  10263. { "time": 1.9, "angle": 0.86 },
  10264. { "time": 2, "angle": 0.66 }
  10265. ],
  10266. "translate": [
  10267. { "time": 0, "x": 0, "y": 0 },
  10268. { "time": 0.1, "x": -0.02, "y": -0.74 },
  10269. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  10270. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10271. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  10272. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  10273. { "time": 0.6667, "x": 0, "y": 0 },
  10274. { "time": 0.7667, "x": -0.02, "y": -0.74 },
  10275. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  10276. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10277. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  10278. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10279. { "time": 1.3333, "x": 0, "y": 0 },
  10280. { "time": 1.4333, "x": -0.02, "y": -0.74 },
  10281. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  10282. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10283. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  10284. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  10285. { "time": 2, "x": 0, "y": 0 }
  10286. ],
  10287. "scale": [
  10288. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10289. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  10290. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  10291. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10292. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  10293. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  10294. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10295. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  10296. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  10297. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10298. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  10299. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10300. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10301. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  10302. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  10303. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10304. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  10305. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  10306. { "time": 2, "x": 1, "y": 1 }
  10307. ]
  10308. },
  10309. "long5": {
  10310. "rotate": [
  10311. { "time": 0, "angle": 38.07 },
  10312. { "time": 0.1, "angle": 24.17 },
  10313. { "time": 0.2333, "angle": 2.96 },
  10314. { "time": 0.3667, "angle": -16.18 },
  10315. { "time": 0.4333, "angle": 7.09 },
  10316. { "time": 0.5667, "angle": 0.86 },
  10317. { "time": 0.6667, "angle": 38.07 },
  10318. { "time": 0.7667, "angle": 24.17 },
  10319. { "time": 0.9, "angle": 2.96 },
  10320. { "time": 1.0333, "angle": -16.18 },
  10321. { "time": 1.1, "angle": 7.09 },
  10322. { "time": 1.2333, "angle": 0.86 },
  10323. { "time": 1.3333, "angle": 38.07 },
  10324. { "time": 1.4333, "angle": 24.17 },
  10325. { "time": 1.5667, "angle": 2.96 },
  10326. { "time": 1.7, "angle": -16.18 },
  10327. { "time": 1.7667, "angle": 7.09 },
  10328. { "time": 1.9, "angle": 0.86 },
  10329. { "time": 2, "angle": 38.07 }
  10330. ],
  10331. "translate": [
  10332. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10333. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  10334. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  10335. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10336. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  10337. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  10338. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10339. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  10340. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  10341. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10342. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  10343. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10344. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10345. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  10346. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  10347. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10348. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  10349. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  10350. { "time": 2, "x": 0, "y": 0 }
  10351. ],
  10352. "scale": [
  10353. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10354. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  10355. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  10356. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10357. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  10358. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  10359. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10360. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  10361. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  10362. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10363. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  10364. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10365. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10366. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  10367. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  10368. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10369. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  10370. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  10371. { "time": 2, "x": 1, "y": 1 }
  10372. ]
  10373. },
  10374. "long6": {
  10375. "rotate": [
  10376. { "time": 0, "angle": 38.07 },
  10377. { "time": 0.1, "angle": 47.46 },
  10378. { "time": 0.2333, "angle": 40.14 },
  10379. { "time": 0.3667, "angle": -16.18 },
  10380. { "time": 0.4333, "angle": 16.29 },
  10381. { "time": 0.5667, "angle": 29.33 },
  10382. { "time": 0.6667, "angle": 38.07 },
  10383. { "time": 0.7667, "angle": 47.46 },
  10384. { "time": 0.9, "angle": 40.14 },
  10385. { "time": 1.0333, "angle": -16.18 },
  10386. { "time": 1.1, "angle": 16.29 },
  10387. { "time": 1.2333, "angle": 29.33 },
  10388. { "time": 1.3333, "angle": 38.07 },
  10389. { "time": 1.4333, "angle": 47.46 },
  10390. { "time": 1.5667, "angle": 40.14 },
  10391. { "time": 1.7, "angle": -16.18 },
  10392. { "time": 1.7667, "angle": 16.29 },
  10393. { "time": 1.9, "angle": 29.33 },
  10394. { "time": 2, "angle": 38.07 }
  10395. ],
  10396. "translate": [
  10397. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10398. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  10399. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  10400. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10401. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  10402. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  10403. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10404. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  10405. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  10406. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10407. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  10408. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10409. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10410. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  10411. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  10412. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10413. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  10414. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  10415. { "time": 2, "x": 0, "y": 0 }
  10416. ],
  10417. "scale": [
  10418. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10419. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  10420. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  10421. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10422. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  10423. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  10424. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10425. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  10426. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  10427. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10428. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  10429. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10430. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10431. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  10432. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  10433. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10434. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  10435. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  10436. { "time": 2, "x": 1, "y": 1 }
  10437. ]
  10438. },
  10439. "long7": {
  10440. "rotate": [
  10441. { "time": 0, "angle": 0 },
  10442. { "time": 0.1, "angle": 1.75 },
  10443. { "time": 0.2333, "angle": 4.36 },
  10444. { "time": 0.3667, "angle": 6.98 },
  10445. { "time": 0.4333, "angle": 4.66 },
  10446. { "time": 0.5667, "angle": 2.33 },
  10447. { "time": 0.6667, "angle": 0 },
  10448. { "time": 0.7667, "angle": 1.75 },
  10449. { "time": 0.9, "angle": 4.36 },
  10450. { "time": 1.0333, "angle": 6.98 },
  10451. { "time": 1.1, "angle": 4.66 },
  10452. { "time": 1.2333, "angle": 2.33 },
  10453. { "time": 1.3333, "angle": 0 },
  10454. { "time": 1.4333, "angle": 1.75 },
  10455. { "time": 1.5667, "angle": 4.36 },
  10456. { "time": 1.7, "angle": 6.98 },
  10457. { "time": 1.7667, "angle": 4.66 },
  10458. { "time": 1.9, "angle": 2.33 },
  10459. { "time": 2, "angle": 0 }
  10460. ],
  10461. "translate": [
  10462. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10463. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  10464. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  10465. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10466. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  10467. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  10468. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10469. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  10470. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  10471. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10472. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  10473. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10474. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10475. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  10476. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  10477. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10478. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  10479. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  10480. { "time": 2, "x": 0, "y": 0 }
  10481. ],
  10482. "scale": [
  10483. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10484. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  10485. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  10486. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10487. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  10488. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  10489. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10490. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  10491. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  10492. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10493. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  10494. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10495. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10496. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  10497. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  10498. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10499. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  10500. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  10501. { "time": 2, "x": 1, "y": 1 }
  10502. ]
  10503. },
  10504. "long8": {
  10505. "rotate": [
  10506. {
  10507. "time": 0,
  10508. "angle": 0,
  10509. "curve": [ 0.25, 0, 0.75, 1 ]
  10510. },
  10511. {
  10512. "time": 0.3667,
  10513. "angle": 18.48,
  10514. "curve": [ 0.25, 0, 0.75, 1 ]
  10515. },
  10516. {
  10517. "time": 0.6667,
  10518. "angle": 0,
  10519. "curve": [ 0.25, 0, 0.75, 1 ]
  10520. },
  10521. {
  10522. "time": 1.0333,
  10523. "angle": 18.48,
  10524. "curve": [ 0.25, 0, 0.75, 1 ]
  10525. },
  10526. {
  10527. "time": 1.3333,
  10528. "angle": 0,
  10529. "curve": [ 0.25, 0, 0.75, 1 ]
  10530. },
  10531. {
  10532. "time": 1.7,
  10533. "angle": 18.48,
  10534. "curve": [ 0.25, 0, 0.75, 1 ]
  10535. },
  10536. { "time": 2, "angle": 0 }
  10537. ],
  10538. "translate": [
  10539. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10540. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10541. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10542. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10543. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10544. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10545. { "time": 2, "x": 0, "y": 0 }
  10546. ],
  10547. "scale": [
  10548. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10549. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10550. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10551. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10552. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10553. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10554. { "time": 2, "x": 1, "y": 1 }
  10555. ]
  10556. },
  10557. "long9": {
  10558. "rotate": [
  10559. {
  10560. "time": 0,
  10561. "angle": 0,
  10562. "curve": [ 0.25, 0, 0.75, 1 ]
  10563. },
  10564. {
  10565. "time": 0.3667,
  10566. "angle": 18.48,
  10567. "curve": [ 0.25, 0, 0.75, 1 ]
  10568. },
  10569. {
  10570. "time": 0.6667,
  10571. "angle": 0,
  10572. "curve": [ 0.25, 0, 0.75, 1 ]
  10573. },
  10574. {
  10575. "time": 1.0333,
  10576. "angle": 18.48,
  10577. "curve": [ 0.25, 0, 0.75, 1 ]
  10578. },
  10579. {
  10580. "time": 1.3333,
  10581. "angle": 0,
  10582. "curve": [ 0.25, 0, 0.75, 1 ]
  10583. },
  10584. {
  10585. "time": 1.7,
  10586. "angle": 18.48,
  10587. "curve": [ 0.25, 0, 0.75, 1 ]
  10588. },
  10589. { "time": 2, "angle": 0 }
  10590. ],
  10591. "translate": [
  10592. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10593. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10594. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10595. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10596. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10597. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10598. { "time": 2, "x": 0, "y": 0 }
  10599. ],
  10600. "scale": [
  10601. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10602. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10603. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10604. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10605. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10606. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10607. { "time": 2, "x": 1, "y": 1 }
  10608. ]
  10609. },
  10610. "long10": {
  10611. "rotate": [
  10612. {
  10613. "time": 0,
  10614. "angle": 0,
  10615. "curve": [ 0.25, 0, 0.75, 1 ]
  10616. },
  10617. {
  10618. "time": 0.3667,
  10619. "angle": 9.97,
  10620. "curve": [ 0.25, 0, 0.75, 1 ]
  10621. },
  10622. {
  10623. "time": 0.6667,
  10624. "angle": 0,
  10625. "curve": [ 0.25, 0, 0.75, 1 ]
  10626. },
  10627. {
  10628. "time": 1.0333,
  10629. "angle": 8.94,
  10630. "curve": [ 0.25, 0, 0.75, 1 ]
  10631. },
  10632. {
  10633. "time": 1.3333,
  10634. "angle": 9.97,
  10635. "curve": [ 0.25, 0, 0.75, 1 ]
  10636. },
  10637. {
  10638. "time": 1.7,
  10639. "angle": 8.94,
  10640. "curve": [ 0.25, 0, 0.75, 1 ]
  10641. },
  10642. { "time": 2, "angle": 0 }
  10643. ],
  10644. "translate": [
  10645. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10646. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10647. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10648. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10649. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10650. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10651. { "time": 2, "x": 0, "y": 0 }
  10652. ],
  10653. "scale": [
  10654. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10655. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10656. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10657. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10658. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10659. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10660. { "time": 2, "x": 1, "y": 1 }
  10661. ]
  10662. },
  10663. "long11": {
  10664. "rotate": [
  10665. {
  10666. "time": 0,
  10667. "angle": 0,
  10668. "curve": [ 0.25, 0, 0.75, 1 ]
  10669. },
  10670. {
  10671. "time": 0.3667,
  10672. "angle": 25.88,
  10673. "curve": [ 0.25, 0, 0.75, 1 ]
  10674. },
  10675. {
  10676. "time": 0.6667,
  10677. "angle": 0,
  10678. "curve": [ 0.25, 0, 0.75, 1 ]
  10679. },
  10680. {
  10681. "time": 1.0333,
  10682. "angle": 25.88,
  10683. "curve": [ 0.25, 0, 0.75, 1 ]
  10684. },
  10685. {
  10686. "time": 1.3333,
  10687. "angle": 0,
  10688. "curve": [ 0.25, 0, 0.75, 1 ]
  10689. },
  10690. {
  10691. "time": 1.7,
  10692. "angle": 25.88,
  10693. "curve": [ 0.25, 0, 0.75, 1 ]
  10694. },
  10695. { "time": 2, "angle": 0 }
  10696. ],
  10697. "translate": [
  10698. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10699. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10700. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10701. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10702. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10703. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10704. { "time": 2, "x": 0, "y": 0 }
  10705. ],
  10706. "scale": [
  10707. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10708. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10709. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10710. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10711. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10712. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10713. { "time": 2, "x": 1, "y": 1 }
  10714. ]
  10715. },
  10716. "long12": {
  10717. "rotate": [
  10718. {
  10719. "time": 0,
  10720. "angle": 0,
  10721. "curve": [ 0.25, 0, 0.75, 1 ]
  10722. },
  10723. {
  10724. "time": 0.3667,
  10725. "angle": 18.84,
  10726. "curve": [ 0.25, 0, 0.75, 1 ]
  10727. },
  10728. {
  10729. "time": 0.6667,
  10730. "angle": 0,
  10731. "curve": [ 0.25, 0, 0.75, 1 ]
  10732. },
  10733. {
  10734. "time": 1.0333,
  10735. "angle": 18.84,
  10736. "curve": [ 0.25, 0, 0.75, 1 ]
  10737. },
  10738. {
  10739. "time": 1.3333,
  10740. "angle": 0,
  10741. "curve": [ 0.25, 0, 0.75, 1 ]
  10742. },
  10743. {
  10744. "time": 1.7,
  10745. "angle": 18.84,
  10746. "curve": [ 0.25, 0, 0.75, 1 ]
  10747. },
  10748. { "time": 2, "angle": 0 }
  10749. ],
  10750. "translate": [
  10751. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10752. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10753. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10754. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10755. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10756. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10757. { "time": 2, "x": 0, "y": 0 }
  10758. ],
  10759. "scale": [
  10760. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10761. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10762. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10763. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10764. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10765. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10766. { "time": 2, "x": 1, "y": 1 }
  10767. ]
  10768. },
  10769. "long13": {
  10770. "rotate": [
  10771. {
  10772. "time": 0,
  10773. "angle": 0,
  10774. "curve": [ 0.25, 0, 0.75, 1 ]
  10775. },
  10776. {
  10777. "time": 0.3667,
  10778. "angle": 18.84,
  10779. "curve": [ 0.25, 0, 0.75, 1 ]
  10780. },
  10781. {
  10782. "time": 0.6667,
  10783. "angle": 0,
  10784. "curve": [ 0.25, 0, 0.75, 1 ]
  10785. },
  10786. {
  10787. "time": 1.0333,
  10788. "angle": 18.84,
  10789. "curve": [ 0.25, 0, 0.75, 1 ]
  10790. },
  10791. {
  10792. "time": 1.3333,
  10793. "angle": 0,
  10794. "curve": [ 0.25, 0, 0.75, 1 ]
  10795. },
  10796. {
  10797. "time": 1.7,
  10798. "angle": 18.84,
  10799. "curve": [ 0.25, 0, 0.75, 1 ]
  10800. },
  10801. { "time": 2, "angle": 0 }
  10802. ],
  10803. "translate": [
  10804. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10805. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10806. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10807. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10808. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10809. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10810. { "time": 2, "x": 0, "y": 0 }
  10811. ],
  10812. "scale": [
  10813. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10814. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10815. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10816. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10817. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10818. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10819. { "time": 2, "x": 1, "y": 1 }
  10820. ]
  10821. },
  10822. "long14": {
  10823. "rotate": [
  10824. {
  10825. "time": 0,
  10826. "angle": 0,
  10827. "curve": [ 0.243, 0, 0.654, 0.62 ]
  10828. },
  10829. {
  10830. "time": 0.3667,
  10831. "angle": -20.38,
  10832. "curve": [ 0.382, 0.58, 0.732, 1 ]
  10833. },
  10834. {
  10835. "time": 0.6667,
  10836. "angle": 0,
  10837. "curve": [ 0.243, 0, 0.654, 0.62 ]
  10838. },
  10839. {
  10840. "time": 1.0333,
  10841. "angle": -20.38,
  10842. "curve": [ 0.382, 0.58, 0.732, 1 ]
  10843. },
  10844. {
  10845. "time": 1.3333,
  10846. "angle": 0,
  10847. "curve": [ 0.243, 0, 0.654, 0.62 ]
  10848. },
  10849. {
  10850. "time": 1.7,
  10851. "angle": -20.38,
  10852. "curve": [ 0.382, 0.58, 0.732, 1 ]
  10853. },
  10854. { "time": 2, "angle": 0 }
  10855. ],
  10856. "translate": [
  10857. {
  10858. "time": 0,
  10859. "x": -1.27,
  10860. "y": -1.52,
  10861. "curve": [ 0.25, 0, 0.75, 1 ]
  10862. },
  10863. {
  10864. "time": 0.3667,
  10865. "x": 0,
  10866. "y": 0,
  10867. "curve": [ 0.25, 0, 0.75, 1 ]
  10868. },
  10869. {
  10870. "time": 0.6667,
  10871. "x": -1.27,
  10872. "y": -1.52,
  10873. "curve": [ 0.25, 0, 0.75, 1 ]
  10874. },
  10875. {
  10876. "time": 1.0333,
  10877. "x": 0,
  10878. "y": 0,
  10879. "curve": [ 0.25, 0, 0.75, 1 ]
  10880. },
  10881. {
  10882. "time": 1.3333,
  10883. "x": -1.27,
  10884. "y": -1.52,
  10885. "curve": [ 0.25, 0, 0.75, 1 ]
  10886. },
  10887. {
  10888. "time": 1.7,
  10889. "x": 0,
  10890. "y": 0,
  10891. "curve": [ 0.25, 0, 0.75, 1 ]
  10892. },
  10893. { "time": 2, "x": -1.27, "y": -1.52 }
  10894. ],
  10895. "scale": [
  10896. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10897. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10898. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10899. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10900. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10901. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10902. { "time": 2, "x": 1, "y": 1 }
  10903. ]
  10904. },
  10905. "long15": {
  10906. "rotate": [
  10907. {
  10908. "time": 0,
  10909. "angle": 0,
  10910. "curve": [ 0.25, 0, 0.75, 1 ]
  10911. },
  10912. {
  10913. "time": 0.3667,
  10914. "angle": -31.57,
  10915. "curve": [ 0.25, 0, 0.75, 1 ]
  10916. },
  10917. {
  10918. "time": 0.6667,
  10919. "angle": 0,
  10920. "curve": [ 0.25, 0, 0.75, 1 ]
  10921. },
  10922. {
  10923. "time": 1.0333,
  10924. "angle": -31.57,
  10925. "curve": [ 0.25, 0, 0.75, 1 ]
  10926. },
  10927. {
  10928. "time": 1.3333,
  10929. "angle": 0,
  10930. "curve": [ 0.25, 0, 0.75, 1 ]
  10931. },
  10932. {
  10933. "time": 1.7,
  10934. "angle": -31.57,
  10935. "curve": [ 0.25, 0, 0.75, 1 ]
  10936. },
  10937. { "time": 2, "angle": 0 }
  10938. ],
  10939. "translate": [
  10940. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10941. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10942. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10943. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10944. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10945. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10946. { "time": 2, "x": 0, "y": 0 }
  10947. ],
  10948. "scale": [
  10949. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10950. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  10951. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10952. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  10953. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10954. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  10955. { "time": 2, "x": 1, "y": 1 }
  10956. ]
  10957. },
  10958. "long16": {
  10959. "rotate": [
  10960. { "time": 0, "angle": 0 },
  10961. { "time": 0.1, "angle": -5.41 },
  10962. { "time": 0.2333, "angle": -13.53 },
  10963. { "time": 0.3667, "angle": -21.65 },
  10964. { "time": 0.4333, "angle": -14.43 },
  10965. { "time": 0.5667, "angle": -7.22 },
  10966. { "time": 0.6667, "angle": 0 },
  10967. { "time": 0.7667, "angle": -5.41 },
  10968. { "time": 0.9, "angle": -13.53 },
  10969. { "time": 1.0333, "angle": -21.65 },
  10970. { "time": 1.1, "angle": -14.43 },
  10971. { "time": 1.2333, "angle": -7.22 },
  10972. { "time": 1.3333, "angle": 0 },
  10973. { "time": 1.4333, "angle": -5.41 },
  10974. { "time": 1.5667, "angle": -13.53 },
  10975. { "time": 1.7, "angle": -21.65 },
  10976. { "time": 1.7667, "angle": -14.43 },
  10977. { "time": 1.9, "angle": -7.22 },
  10978. { "time": 2, "angle": 0 }
  10979. ],
  10980. "translate": [
  10981. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10982. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  10983. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  10984. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  10985. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  10986. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  10987. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10988. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  10989. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  10990. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  10991. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  10992. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10993. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10994. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  10995. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  10996. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  10997. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  10998. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  10999. { "time": 2, "x": 0, "y": 0 }
  11000. ],
  11001. "scale": [
  11002. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11003. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11004. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11005. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11006. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11007. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11008. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11009. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11010. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11011. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11012. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11013. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11014. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11015. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11016. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11017. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11018. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11019. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11020. { "time": 2, "x": 1, "y": 1 }
  11021. ]
  11022. },
  11023. "long17": {
  11024. "scale": [
  11025. { "time": 1.3333, "x": 0.5, "y": 1 },
  11026. { "time": 1.4, "x": 1, "y": 1 },
  11027. { "time": 1.5, "x": 0.5, "y": 1 }
  11028. ]
  11029. },
  11030. "long18": {
  11031. "rotate": [
  11032. { "time": 0, "angle": 0 },
  11033. { "time": 0.1, "angle": -7.63 },
  11034. { "time": 0.1333, "angle": -137.23 },
  11035. { "time": 0.2333, "angle": -30.16 },
  11036. { "time": 0.3667, "angle": -30.52 },
  11037. { "time": 0.4333, "angle": -126.71 },
  11038. { "time": 0.5667, "angle": -132.99 },
  11039. { "time": 0.6667, "angle": 0 },
  11040. { "time": 0.7667, "angle": -7.63 },
  11041. { "time": 0.8, "angle": -137.23 },
  11042. { "time": 0.9, "angle": -30.16 },
  11043. { "time": 1.0333, "angle": -30.52 },
  11044. { "time": 1.1, "angle": -126.71 },
  11045. { "time": 1.2333, "angle": -132.99 },
  11046. { "time": 1.3333, "angle": 0 },
  11047. { "time": 1.4333, "angle": -7.63 },
  11048. { "time": 1.4667, "angle": -137.23 },
  11049. { "time": 1.5667, "angle": -30.16 },
  11050. { "time": 1.7, "angle": -30.52 },
  11051. { "time": 1.7667, "angle": -126.71 },
  11052. { "time": 1.9, "angle": -132.99 },
  11053. { "time": 2, "angle": 0 }
  11054. ],
  11055. "translate": [
  11056. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11057. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11058. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11059. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11060. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  11061. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11062. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11063. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11064. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11065. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11066. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  11067. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11068. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11069. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11070. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11071. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11072. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  11073. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11074. { "time": 2, "x": 0, "y": 0 }
  11075. ],
  11076. "scale": [
  11077. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11078. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11079. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11080. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11081. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11082. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11083. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11084. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11085. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11086. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11087. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11088. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11089. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11090. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11091. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11092. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11093. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11094. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11095. { "time": 2, "x": 1, "y": 1 }
  11096. ]
  11097. },
  11098. "long19": {
  11099. "rotate": [
  11100. { "time": 0, "angle": 0, "curve": "stepped" },
  11101. { "time": 0.1, "angle": 0 },
  11102. { "time": 0.1333, "angle": 21.31 },
  11103. { "time": 0.2333, "angle": -37.29 },
  11104. { "time": 0.3667, "angle": 0 },
  11105. { "time": 0.4333, "angle": 49.41 },
  11106. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  11107. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  11108. { "time": 0.7667, "angle": 0 },
  11109. { "time": 0.8, "angle": 21.31 },
  11110. { "time": 0.9, "angle": -37.29 },
  11111. { "time": 1.0333, "angle": 0 },
  11112. { "time": 1.1, "angle": 49.41 },
  11113. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  11114. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  11115. { "time": 1.4333, "angle": 0 },
  11116. { "time": 1.4667, "angle": 21.31 },
  11117. { "time": 1.5667, "angle": -37.29 },
  11118. { "time": 1.7, "angle": 0 },
  11119. { "time": 1.7667, "angle": 49.41 },
  11120. { "time": 1.9, "angle": 0, "curve": "stepped" },
  11121. { "time": 2, "angle": 0 }
  11122. ],
  11123. "translate": [
  11124. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11125. { "time": 0.1, "x": 0, "y": 0 },
  11126. { "time": 0.1333, "x": -2.46, "y": 1.03 },
  11127. { "time": 0.2333, "x": -3.28, "y": -0.05 },
  11128. { "time": 0.3667, "x": 0, "y": 0 },
  11129. { "time": 0.4333, "x": 0.19, "y": -1.31 },
  11130. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11131. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11132. { "time": 0.7667, "x": 0, "y": 0 },
  11133. { "time": 0.8, "x": -2.46, "y": 1.03 },
  11134. { "time": 0.9, "x": -3.28, "y": -0.05 },
  11135. { "time": 1.0333, "x": 0, "y": 0 },
  11136. { "time": 1.1, "x": 0.19, "y": -1.31 },
  11137. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11138. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11139. { "time": 1.4333, "x": 0, "y": 0 },
  11140. { "time": 1.4667, "x": -2.46, "y": 1.03 },
  11141. { "time": 1.5667, "x": -3.28, "y": -0.05 },
  11142. { "time": 1.7, "x": 0, "y": 0 },
  11143. { "time": 1.7667, "x": 0.19, "y": -1.31 },
  11144. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11145. { "time": 2, "x": 0, "y": 0 }
  11146. ],
  11147. "scale": [
  11148. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11149. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11150. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11151. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11152. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11153. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11154. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11155. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11156. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11157. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11158. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11159. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11160. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11161. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11162. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11163. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11164. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11165. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11166. { "time": 2, "x": 1, "y": 1 }
  11167. ]
  11168. },
  11169. "long20": {
  11170. "rotate": [
  11171. { "time": 0, "angle": 0, "curve": "stepped" },
  11172. { "time": 0.1, "angle": 0 },
  11173. { "time": 0.1333, "angle": -65.87 },
  11174. { "time": 0.2333, "angle": -56.29 },
  11175. { "time": 0.3667, "angle": 0 },
  11176. { "time": 0.4333, "angle": 11.71 },
  11177. { "time": 0.5667, "angle": -34.21 },
  11178. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  11179. { "time": 0.7667, "angle": 0 },
  11180. { "time": 0.8, "angle": -65.87 },
  11181. { "time": 0.9, "angle": -56.29 },
  11182. { "time": 1.0333, "angle": 0 },
  11183. { "time": 1.1, "angle": 11.71 },
  11184. { "time": 1.2333, "angle": -34.21 },
  11185. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  11186. { "time": 1.4333, "angle": 0 },
  11187. { "time": 1.4667, "angle": -65.87 },
  11188. { "time": 1.5667, "angle": -56.29 },
  11189. { "time": 1.7, "angle": 0 },
  11190. { "time": 1.7667, "angle": 11.71 },
  11191. { "time": 1.9, "angle": -34.21 },
  11192. { "time": 2, "angle": 0 }
  11193. ],
  11194. "translate": [
  11195. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11196. { "time": 0.1, "x": 0, "y": 0 },
  11197. { "time": 0.1333, "x": -3.82, "y": 0.37 },
  11198. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11199. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11200. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  11201. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11202. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11203. { "time": 0.7667, "x": 0, "y": 0 },
  11204. { "time": 0.8, "x": -3.82, "y": 0.37 },
  11205. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11206. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11207. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  11208. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11209. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11210. { "time": 1.4333, "x": 0, "y": 0 },
  11211. { "time": 1.4667, "x": -3.82, "y": 0.37 },
  11212. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11213. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11214. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  11215. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11216. { "time": 2, "x": 0, "y": 0 }
  11217. ],
  11218. "scale": [
  11219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11220. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11221. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11222. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11223. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11224. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11225. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11226. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11227. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11228. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11229. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11230. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11231. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11232. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11233. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11234. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11235. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11236. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11237. { "time": 2, "x": 1, "y": 1 }
  11238. ]
  11239. },
  11240. "long21": {
  11241. "rotate": [
  11242. { "time": 0, "angle": 0 },
  11243. { "time": 0.1, "angle": 39.52 },
  11244. { "time": 0.2333, "angle": 5.72 },
  11245. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  11246. { "time": 0.4333, "angle": 0 },
  11247. { "time": 0.5, "angle": 55.51 },
  11248. { "time": 0.5667, "angle": 23.45 },
  11249. { "time": 0.6667, "angle": 0 },
  11250. { "time": 0.7667, "angle": 39.52 },
  11251. { "time": 0.9, "angle": 5.72 },
  11252. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  11253. { "time": 1.1, "angle": 0 },
  11254. { "time": 1.1667, "angle": 55.51 },
  11255. { "time": 1.2333, "angle": 23.45 },
  11256. { "time": 1.3333, "angle": 0 },
  11257. { "time": 1.4333, "angle": 39.52 },
  11258. { "time": 1.5667, "angle": 5.72 },
  11259. { "time": 1.7, "angle": 0, "curve": "stepped" },
  11260. { "time": 1.7667, "angle": 0 },
  11261. { "time": 1.8333, "angle": 55.51 },
  11262. { "time": 1.9, "angle": 23.45 },
  11263. { "time": 2, "angle": 0 }
  11264. ],
  11265. "translate": [
  11266. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11267. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11268. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11269. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11270. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  11271. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11272. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11273. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11274. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11275. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11276. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  11277. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11278. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11279. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11280. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11281. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11282. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  11283. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11284. { "time": 2, "x": 0, "y": 0 }
  11285. ],
  11286. "scale": [
  11287. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11288. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11289. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11290. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11291. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11292. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11293. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11294. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11295. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11296. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11297. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11298. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11299. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11300. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11301. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11302. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11303. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11304. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11305. { "time": 2, "x": 1, "y": 1 }
  11306. ]
  11307. },
  11308. "long22": {
  11309. "rotate": [
  11310. { "time": 0, "angle": -6.24 },
  11311. { "time": 0.1, "angle": 7.6 },
  11312. { "time": 0.2333, "angle": 3.8 },
  11313. { "time": 0.3667, "angle": 0 },
  11314. { "time": 0.4333, "angle": -2.08 },
  11315. { "time": 0.5667, "angle": -15.73 },
  11316. { "time": 0.6667, "angle": -6.24 },
  11317. { "time": 0.7667, "angle": 7.6 },
  11318. { "time": 0.9, "angle": 3.8 },
  11319. { "time": 1.0333, "angle": 0 },
  11320. { "time": 1.1, "angle": -2.08 },
  11321. { "time": 1.2333, "angle": -15.73 },
  11322. { "time": 1.3333, "angle": -6.24 },
  11323. { "time": 1.4333, "angle": 7.6 },
  11324. { "time": 1.5667, "angle": 3.8 },
  11325. { "time": 1.7, "angle": 0 },
  11326. { "time": 1.7667, "angle": -2.08 },
  11327. { "time": 1.9, "angle": -15.73 },
  11328. { "time": 2, "angle": -6.24 }
  11329. ],
  11330. "translate": [
  11331. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11332. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11333. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11334. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11335. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  11336. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11337. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11338. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11339. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11340. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11341. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  11342. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11343. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11344. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11345. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11346. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11347. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  11348. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11349. { "time": 2, "x": 0, "y": 0 }
  11350. ],
  11351. "scale": [
  11352. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11353. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11354. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11355. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11356. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11357. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11358. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11359. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11360. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11361. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11362. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11363. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11364. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11365. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11366. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11367. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11368. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11369. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11370. { "time": 2, "x": 1, "y": 1 }
  11371. ]
  11372. },
  11373. "long23": {
  11374. "rotate": [
  11375. { "time": 0, "angle": 40.63 },
  11376. { "time": 0.1, "angle": -30.38 },
  11377. { "time": 0.2333, "angle": -3.48 },
  11378. { "time": 0.3667, "angle": 0 },
  11379. { "time": 0.4333, "angle": 13.54 },
  11380. { "time": 0.5667, "angle": 120.48 },
  11381. { "time": 0.6667, "angle": 40.63 },
  11382. { "time": 0.7667, "angle": -30.38 },
  11383. { "time": 0.9, "angle": -3.48 },
  11384. { "time": 1.0333, "angle": 0 },
  11385. { "time": 1.1, "angle": 13.54 },
  11386. { "time": 1.2333, "angle": 120.48 },
  11387. { "time": 1.3333, "angle": 40.63 },
  11388. { "time": 1.4333, "angle": -30.38 },
  11389. { "time": 1.5667, "angle": -3.48 },
  11390. { "time": 1.7, "angle": 0 },
  11391. { "time": 1.7667, "angle": 13.54 },
  11392. { "time": 1.9, "angle": 120.48 },
  11393. { "time": 2, "angle": 40.63 }
  11394. ],
  11395. "translate": [
  11396. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11397. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11398. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11399. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11400. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  11401. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11402. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11403. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11404. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11405. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11406. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  11407. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11408. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11409. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11410. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11411. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11412. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  11413. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11414. { "time": 2, "x": 0, "y": 0 }
  11415. ],
  11416. "scale": [
  11417. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11418. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11419. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11420. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11421. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11422. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11423. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11424. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11425. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11426. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11427. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11428. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11429. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11430. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11431. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11432. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11433. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11434. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11435. { "time": 2, "x": 1, "y": 1 }
  11436. ]
  11437. },
  11438. "long24": {
  11439. "rotate": [
  11440. { "time": 0, "angle": 0 },
  11441. { "time": 0.1, "angle": -8.69 },
  11442. { "time": 0.2333, "angle": -0.02 },
  11443. { "time": 0.2667, "angle": 329.23 },
  11444. { "time": 0.3667, "angle": 316.98 },
  11445. { "time": 0.4333, "angle": 23.06 },
  11446. { "time": 0.5667, "angle": -11.59 },
  11447. { "time": 0.6667, "angle": 0 },
  11448. { "time": 0.7667, "angle": -8.69 },
  11449. { "time": 0.9, "angle": -0.02 },
  11450. { "time": 0.9333, "angle": 329.23 },
  11451. { "time": 1.0333, "angle": 316.98 },
  11452. { "time": 1.1, "angle": 23.06 },
  11453. { "time": 1.2333, "angle": -11.59 },
  11454. { "time": 1.3333, "angle": 0 },
  11455. { "time": 1.4333, "angle": -8.69 },
  11456. { "time": 1.5667, "angle": -0.02 },
  11457. { "time": 1.6, "angle": 329.23 },
  11458. { "time": 1.7, "angle": 316.98 },
  11459. { "time": 1.7667, "angle": 23.06 },
  11460. { "time": 1.9, "angle": -11.59 },
  11461. { "time": 2, "angle": 0 }
  11462. ],
  11463. "translate": [
  11464. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11465. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11466. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11467. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11468. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  11469. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11470. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11471. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11472. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11473. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11474. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  11475. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11476. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11477. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11478. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11479. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11480. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  11481. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11482. { "time": 2, "x": 0, "y": 0 }
  11483. ],
  11484. "scale": [
  11485. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11486. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11487. { "time": 0.2333, "x": 1, "y": 1 },
  11488. { "time": 0.2667, "x": 1, "y": 0.8 },
  11489. { "time": 0.3667, "x": 1, "y": 1 },
  11490. { "time": 0.4333, "x": 1, "y": 0.65 },
  11491. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11492. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11493. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11494. { "time": 0.9, "x": 1, "y": 1 },
  11495. { "time": 0.9333, "x": 1, "y": 0.8 },
  11496. { "time": 1.0333, "x": 1, "y": 1 },
  11497. { "time": 1.1, "x": 1, "y": 0.65 },
  11498. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11499. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11500. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11501. { "time": 1.5667, "x": 1, "y": 1 },
  11502. { "time": 1.6, "x": 1, "y": 0.8 },
  11503. { "time": 1.7, "x": 1, "y": 1 },
  11504. { "time": 1.7667, "x": 1, "y": 0.65 },
  11505. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11506. { "time": 2, "x": 1, "y": 1 }
  11507. ]
  11508. },
  11509. "long25": {
  11510. "rotate": [
  11511. { "time": 0, "angle": 0, "curve": "stepped" },
  11512. { "time": 0.1, "angle": 0 },
  11513. { "time": 0.2333, "angle": 47.55 },
  11514. { "time": 0.2667, "angle": 53.18 },
  11515. { "time": 0.3667, "angle": -5.85 },
  11516. { "time": 0.4333, "angle": 35.06 },
  11517. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  11518. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  11519. { "time": 0.7667, "angle": 0 },
  11520. { "time": 0.9, "angle": 47.55 },
  11521. { "time": 0.9333, "angle": 53.18 },
  11522. { "time": 1.0333, "angle": -5.85 },
  11523. { "time": 1.1, "angle": 35.06 },
  11524. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  11525. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  11526. { "time": 1.4333, "angle": 0 },
  11527. { "time": 1.5667, "angle": 47.55 },
  11528. { "time": 1.6, "angle": 53.18 },
  11529. { "time": 1.7, "angle": -5.85 },
  11530. { "time": 1.7667, "angle": 35.06 },
  11531. { "time": 1.9, "angle": 0, "curve": "stepped" },
  11532. { "time": 2, "angle": 0 }
  11533. ],
  11534. "translate": [
  11535. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11536. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11537. { "time": 0.2333, "x": 0, "y": 0 },
  11538. { "time": 0.2667, "x": -1.26, "y": -1.23 },
  11539. { "time": 0.3667, "x": 1.21, "y": -0.07 },
  11540. { "time": 0.4333, "x": 1.68, "y": 2.94 },
  11541. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11542. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11543. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11544. { "time": 0.9, "x": 0, "y": 0 },
  11545. { "time": 0.9333, "x": -1.26, "y": -1.23 },
  11546. { "time": 1.0333, "x": 1.21, "y": -0.07 },
  11547. { "time": 1.1, "x": 1.68, "y": 2.94 },
  11548. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11549. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11550. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11551. { "time": 1.5667, "x": 0, "y": 0 },
  11552. { "time": 1.6, "x": -1.26, "y": -1.23 },
  11553. { "time": 1.7, "x": 1.21, "y": -0.07 },
  11554. { "time": 1.7667, "x": 1.68, "y": 2.94 },
  11555. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11556. { "time": 2, "x": 0, "y": 0 }
  11557. ],
  11558. "scale": [
  11559. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11560. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11561. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11562. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11563. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11564. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11565. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11566. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11567. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11568. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11569. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11570. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11571. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11572. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11573. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11574. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11575. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11576. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11577. { "time": 2, "x": 1, "y": 1 }
  11578. ]
  11579. },
  11580. "long26": {
  11581. "rotate": [
  11582. { "time": 0, "angle": 0, "curve": "stepped" },
  11583. { "time": 0.1, "angle": 0, "curve": "stepped" },
  11584. { "time": 0.2333, "angle": 0 },
  11585. { "time": 0.3667, "angle": -6.33 },
  11586. { "time": 0.4333, "angle": -41.06 },
  11587. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  11588. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  11589. { "time": 0.7667, "angle": 0, "curve": "stepped" },
  11590. { "time": 0.9, "angle": 0 },
  11591. { "time": 1.0333, "angle": -6.33 },
  11592. { "time": 1.1, "angle": -41.06 },
  11593. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  11594. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  11595. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  11596. { "time": 1.5667, "angle": 0 },
  11597. { "time": 1.7, "angle": -6.33 },
  11598. { "time": 1.7667, "angle": -41.06 },
  11599. { "time": 1.9, "angle": 0, "curve": "stepped" },
  11600. { "time": 2, "angle": 0 }
  11601. ],
  11602. "translate": [
  11603. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11604. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11605. { "time": 0.2333, "x": 0, "y": 0 },
  11606. { "time": 0.2667, "x": -1.08, "y": -0.42 },
  11607. { "time": 0.3667, "x": -0.14, "y": 1.4 },
  11608. { "time": 0.4333, "x": -6.77, "y": 1.14 },
  11609. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11610. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11611. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11612. { "time": 0.9, "x": 0, "y": 0 },
  11613. { "time": 0.9333, "x": -1.08, "y": -0.42 },
  11614. { "time": 1.0333, "x": -0.14, "y": 1.4 },
  11615. { "time": 1.1, "x": -6.77, "y": 1.14 },
  11616. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11617. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11618. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11619. { "time": 1.5667, "x": 0, "y": 0 },
  11620. { "time": 1.6, "x": -1.08, "y": -0.42 },
  11621. { "time": 1.7, "x": -0.14, "y": 1.4 },
  11622. { "time": 1.7667, "x": -6.77, "y": 1.14 },
  11623. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11624. { "time": 2, "x": 0, "y": 0 }
  11625. ],
  11626. "scale": [
  11627. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11628. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11629. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11630. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11631. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11632. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11633. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11634. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11635. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11636. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11637. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11638. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11639. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11640. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11641. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11642. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11643. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11644. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11645. { "time": 2, "x": 1, "y": 1 }
  11646. ]
  11647. },
  11648. "long27": {
  11649. "rotate": [
  11650. { "time": 0, "angle": 0, "curve": "stepped" },
  11651. { "time": 0.1, "angle": 0 },
  11652. { "time": 0.2333, "angle": -33.59 },
  11653. { "time": 0.3667, "angle": 268.17 },
  11654. { "time": 0.4333, "angle": 0 },
  11655. { "time": 0.5667, "angle": 24.91 },
  11656. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  11657. { "time": 0.7667, "angle": 0 },
  11658. { "time": 0.9, "angle": -33.59 },
  11659. { "time": 1.0333, "angle": 268.17 },
  11660. { "time": 1.1, "angle": 0 },
  11661. { "time": 1.2333, "angle": 24.91 },
  11662. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  11663. { "time": 1.4333, "angle": 0 },
  11664. { "time": 1.5667, "angle": -33.59 },
  11665. { "time": 1.7, "angle": 268.17 },
  11666. { "time": 1.7667, "angle": 0 },
  11667. { "time": 1.9, "angle": 24.91 },
  11668. { "time": 2, "angle": 0 }
  11669. ],
  11670. "translate": [
  11671. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11672. { "time": 0.1, "x": 0, "y": 0 },
  11673. { "time": 0.2333, "x": 0.16, "y": 2.64 },
  11674. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11675. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11676. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11677. { "time": 0.7667, "x": 0, "y": 0 },
  11678. { "time": 0.9, "x": 0.16, "y": 2.64 },
  11679. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11680. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11681. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11682. { "time": 1.4333, "x": 0, "y": 0 },
  11683. { "time": 1.5667, "x": 0.16, "y": 2.64 },
  11684. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11685. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11686. { "time": 2, "x": 0, "y": 0 }
  11687. ],
  11688. "scale": [
  11689. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11690. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11691. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11692. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11693. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11694. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11695. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11696. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11697. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11698. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11699. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11700. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11701. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11702. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11703. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11704. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11705. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11706. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11707. { "time": 2, "x": 1, "y": 1 }
  11708. ]
  11709. },
  11710. "long28": {
  11711. "rotate": [
  11712. { "time": 0, "angle": 0, "curve": "stepped" },
  11713. { "time": 0.1, "angle": 0 },
  11714. { "time": 0.2333, "angle": 23.34 },
  11715. { "time": 0.3667, "angle": 0 },
  11716. { "time": 0.4333, "angle": -27.58 },
  11717. { "time": 0.5667, "angle": 3.75 },
  11718. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  11719. { "time": 0.7667, "angle": 0 },
  11720. { "time": 0.9, "angle": 23.34 },
  11721. { "time": 1.0333, "angle": 0 },
  11722. { "time": 1.1, "angle": -27.58 },
  11723. { "time": 1.2333, "angle": 3.75 },
  11724. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  11725. { "time": 1.4333, "angle": 0 },
  11726. { "time": 1.5667, "angle": 23.34 },
  11727. { "time": 1.7, "angle": 0 },
  11728. { "time": 1.7667, "angle": -27.58 },
  11729. { "time": 1.9, "angle": 3.75 },
  11730. { "time": 2, "angle": 0 }
  11731. ],
  11732. "translate": [
  11733. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11734. { "time": 0.1, "x": 0, "y": 0 },
  11735. { "time": 0.2333, "x": 2.87, "y": 0.65 },
  11736. { "time": 0.3667, "x": 0, "y": 0 },
  11737. { "time": 0.4333, "x": 1.62, "y": -0.65 },
  11738. { "time": 0.5667, "x": 1.17, "y": -0.05 },
  11739. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11740. { "time": 0.7667, "x": 0, "y": 0 },
  11741. { "time": 0.9, "x": 2.87, "y": 0.65 },
  11742. { "time": 1.0333, "x": 0, "y": 0 },
  11743. { "time": 1.1, "x": 1.62, "y": -0.65 },
  11744. { "time": 1.2333, "x": 1.17, "y": -0.05 },
  11745. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11746. { "time": 1.4333, "x": 0, "y": 0 },
  11747. { "time": 1.5667, "x": 2.87, "y": 0.65 },
  11748. { "time": 1.7, "x": 0, "y": 0 },
  11749. { "time": 1.7667, "x": 1.62, "y": -0.65 },
  11750. { "time": 1.9, "x": 1.17, "y": -0.05 },
  11751. { "time": 2, "x": 0, "y": 0 }
  11752. ],
  11753. "scale": [
  11754. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11755. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11756. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11757. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11758. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11759. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11760. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11761. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11762. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11763. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11764. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11765. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11766. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11767. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11768. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11769. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11770. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11771. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11772. { "time": 2, "x": 1, "y": 1 }
  11773. ]
  11774. },
  11775. "long29": {
  11776. "rotate": [
  11777. { "time": 0, "angle": 0, "curve": "stepped" },
  11778. { "time": 0.1, "angle": 0 },
  11779. { "time": 0.2333, "angle": 35.67 },
  11780. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  11781. { "time": 0.4333, "angle": 0 },
  11782. { "time": 0.5667, "angle": 4.48 },
  11783. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  11784. { "time": 0.7667, "angle": 0 },
  11785. { "time": 0.9, "angle": 35.67 },
  11786. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  11787. { "time": 1.1, "angle": 0 },
  11788. { "time": 1.2333, "angle": 4.48 },
  11789. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  11790. { "time": 1.4333, "angle": 0 },
  11791. { "time": 1.5667, "angle": 35.67 },
  11792. { "time": 1.7, "angle": 0, "curve": "stepped" },
  11793. { "time": 1.7667, "angle": 0 },
  11794. { "time": 1.9, "angle": 4.48 },
  11795. { "time": 2, "angle": 0 }
  11796. ],
  11797. "translate": [
  11798. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11799. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11800. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11801. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11802. { "time": 0.4333, "x": 0, "y": 0 },
  11803. { "time": 0.5667, "x": 1.38, "y": -1.08 },
  11804. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11805. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11806. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11807. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11808. { "time": 1.1, "x": 0, "y": 0 },
  11809. { "time": 1.2333, "x": 1.38, "y": -1.08 },
  11810. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11811. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11812. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11813. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11814. { "time": 1.7667, "x": 0, "y": 0 },
  11815. { "time": 1.9, "x": 1.38, "y": -1.08 },
  11816. { "time": 2, "x": 0, "y": 0 }
  11817. ],
  11818. "scale": [
  11819. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11820. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  11821. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11822. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11823. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11824. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11825. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11826. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  11827. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11828. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11829. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11830. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11831. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11832. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  11833. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11834. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11835. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11836. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11837. { "time": 2, "x": 1, "y": 1 }
  11838. ]
  11839. },
  11840. "long30": {
  11841. "rotate": [
  11842. { "time": 0, "angle": 17.38 },
  11843. { "time": 0.1, "angle": -4.75 },
  11844. { "time": 0.1667, "angle": -28.68 },
  11845. { "time": 0.2333, "angle": -54.49 },
  11846. { "time": 0.3667, "angle": 0 },
  11847. { "time": 0.4333, "angle": 5.79 },
  11848. { "time": 0.5667, "angle": 11.59 },
  11849. { "time": 0.6667, "angle": 17.38 },
  11850. { "time": 0.7667, "angle": -4.75 },
  11851. { "time": 0.8333, "angle": -28.68 },
  11852. { "time": 0.9, "angle": -54.49 },
  11853. { "time": 1.0333, "angle": 0 },
  11854. { "time": 1.1, "angle": 5.79 },
  11855. { "time": 1.2333, "angle": 11.59 },
  11856. { "time": 1.3333, "angle": 17.38 },
  11857. { "time": 1.4333, "angle": -4.75 },
  11858. { "time": 1.5, "angle": -28.68 },
  11859. { "time": 1.5667, "angle": -54.49 },
  11860. { "time": 1.7, "angle": 0 },
  11861. { "time": 1.7667, "angle": 5.79 },
  11862. { "time": 1.9, "angle": 11.59 },
  11863. { "time": 2, "angle": 17.38 }
  11864. ],
  11865. "translate": [
  11866. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11867. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11868. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11869. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11870. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  11871. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11872. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11873. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11874. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11875. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11876. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  11877. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11878. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11879. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11880. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11881. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11882. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  11883. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11884. { "time": 2, "x": 0, "y": 0 }
  11885. ],
  11886. "scale": [
  11887. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11888. { "time": 0.1, "x": 1, "y": 1 },
  11889. { "time": 0.2333, "x": 1, "y": 0.65 },
  11890. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11891. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  11892. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  11893. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  11894. { "time": 0.7667, "x": 1, "y": 1 },
  11895. { "time": 0.9, "x": 1, "y": 0.65 },
  11896. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11897. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  11898. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  11899. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  11900. { "time": 1.4333, "x": 1, "y": 1 },
  11901. { "time": 1.5667, "x": 1, "y": 0.65 },
  11902. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11903. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  11904. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  11905. { "time": 2, "x": 1, "y": 1 }
  11906. ]
  11907. },
  11908. "long31": {
  11909. "rotate": [
  11910. { "time": 0, "angle": 0 },
  11911. { "time": 0.1, "angle": 1.2 },
  11912. { "time": 0.1667, "angle": -14.23 },
  11913. { "time": 0.2333, "angle": -38.69 },
  11914. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  11915. { "time": 0.4333, "angle": 0 },
  11916. { "time": 0.5667, "angle": -32.2 },
  11917. { "time": 0.6667, "angle": 0 },
  11918. { "time": 0.7667, "angle": 1.2 },
  11919. { "time": 0.8333, "angle": -14.23 },
  11920. { "time": 0.9, "angle": -38.69 },
  11921. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  11922. { "time": 1.1, "angle": 0 },
  11923. { "time": 1.2333, "angle": -32.2 },
  11924. { "time": 1.3333, "angle": 0 },
  11925. { "time": 1.4333, "angle": 1.2 },
  11926. { "time": 1.5, "angle": -14.23 },
  11927. { "time": 1.5667, "angle": -38.69 },
  11928. { "time": 1.7, "angle": 0, "curve": "stepped" },
  11929. { "time": 1.7667, "angle": 0 },
  11930. { "time": 1.9, "angle": -32.2 },
  11931. { "time": 2, "angle": 0 }
  11932. ],
  11933. "translate": [
  11934. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  11935. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  11936. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  11937. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  11938. { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
  11939. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  11940. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  11941. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  11942. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  11943. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  11944. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  11945. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  11946. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  11947. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  11948. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  11949. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  11950. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  11951. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  11952. { "time": 2, "x": 0, "y": 0 }
  11953. ],
  11954. "scale": [
  11955. { "time": 0, "x": 1, "y": 1 },
  11956. { "time": 0.1, "x": 1, "y": 0.8 },
  11957. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  11958. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  11959. { "time": 0.4333, "x": 1, "y": 1 },
  11960. { "time": 0.5667, "x": 1, "y": 0.6 },
  11961. { "time": 0.6667, "x": 1, "y": 1 },
  11962. { "time": 0.7667, "x": 1, "y": 0.8 },
  11963. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  11964. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  11965. { "time": 1.1, "x": 1, "y": 1 },
  11966. { "time": 1.2333, "x": 1, "y": 0.6 },
  11967. { "time": 1.3333, "x": 1, "y": 1 },
  11968. { "time": 1.4333, "x": 1, "y": 0.8 },
  11969. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  11970. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  11971. { "time": 1.7667, "x": 1, "y": 1 },
  11972. { "time": 1.9, "x": 1, "y": 0.6 },
  11973. { "time": 2, "x": 1, "y": 1 }
  11974. ]
  11975. },
  11976. "long32": {
  11977. "rotate": [
  11978. { "time": 0, "angle": 0 },
  11979. { "time": 0.1, "angle": 18.8 },
  11980. { "time": 0.1667, "angle": 35.93 },
  11981. { "time": 0.2333, "angle": 46.31 },
  11982. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  11983. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  11984. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  11985. { "time": 0.6667, "angle": 0 },
  11986. { "time": 0.7667, "angle": 18.8 },
  11987. { "time": 0.8333, "angle": 35.93 },
  11988. { "time": 0.9, "angle": 46.31 },
  11989. { "time": 1.0333, "angle": 0, "curve": "stepped" },
  11990. { "time": 1.1, "angle": 0, "curve": "stepped" },
  11991. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  11992. { "time": 1.3333, "angle": 0 },
  11993. { "time": 1.4333, "angle": 18.8 },
  11994. { "time": 1.5, "angle": 35.93 },
  11995. { "time": 1.5667, "angle": 46.31 },
  11996. { "time": 1.7, "angle": 0, "curve": "stepped" },
  11997. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  11998. { "time": 1.9, "angle": 0, "curve": "stepped" },
  11999. { "time": 2, "angle": 0 }
  12000. ],
  12001. "translate": [
  12002. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  12003. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  12004. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  12005. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  12006. { "time": 0.4333, "x": 0, "y": 0 },
  12007. { "time": 0.5667, "x": 0.81, "y": -1.06 },
  12008. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  12009. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  12010. { "time": 0.9, "x": 0, "y": 0, "curve": "stepped" },
  12011. { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
  12012. { "time": 1.1, "x": 0, "y": 0 },
  12013. { "time": 1.2333, "x": 0.81, "y": -1.06 },
  12014. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  12015. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  12016. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  12017. { "time": 1.7, "x": 0, "y": 0, "curve": "stepped" },
  12018. { "time": 1.7667, "x": 0, "y": 0 },
  12019. { "time": 1.9, "x": 0.81, "y": -1.06 },
  12020. { "time": 2, "x": 0, "y": 0 }
  12021. ],
  12022. "scale": [
  12023. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  12024. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  12025. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  12026. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  12027. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  12028. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  12029. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  12030. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  12031. { "time": 0.9, "x": 1, "y": 1, "curve": "stepped" },
  12032. { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
  12033. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  12034. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  12035. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  12036. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  12037. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  12038. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  12039. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  12040. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  12041. { "time": 2, "x": 1, "y": 1 }
  12042. ]
  12043. },
  12044. "dro": {
  12045. "translate": [
  12046. { "time": 0, "x": 12.79, "y": -2.5 }
  12047. ]
  12048. }
  12049. },
  12050. "deform": {
  12051. "default": {
  12052. "l_cibang2": {
  12053. "l_cibang2": [
  12054. { "time": 0.4333, "curve": "stepped" },
  12055. { "time": 1.1, "curve": "stepped" },
  12056. { "time": 1.7667 }
  12057. ]
  12058. },
  12059. "shangshen": {
  12060. "shangshen": [
  12061. {
  12062. "time": 0,
  12063. "offset": 100,
  12064. "vertices": [ 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, 0.30986, 2.04209, 0.02233, 2.06535, 0, 0, 0, 0, 0, 0, 0, 0, 0.26506, 1.29546, 0.08199, 1.31975, 0.35467, 2.78876, -0.03732, 2.81098, 0.07021, 2.81035, -0.83253, 1.73598, -1.06626, 1.60307, -1.00415, 1.64261 ]
  12065. },
  12066. { "time": 0.5 },
  12067. {
  12068. "time": 1,
  12069. "offset": 100,
  12070. "vertices": [ 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, 0.30986, 2.04209, 0.02233, 2.06535, 0, 0, 0, 0, 0, 0, 0, 0, 0.26506, 1.29546, 0.08199, 1.31975, 0.35467, 2.78876, -0.03732, 2.81098, 0.07021, 2.81035, -0.83253, 1.73598, -1.06626, 1.60307, -1.00415, 1.64261 ]
  12071. },
  12072. { "time": 1.5 },
  12073. {
  12074. "time": 2,
  12075. "offset": 100,
  12076. "vertices": [ 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, -0.19388, 2.42325, 0.1456, 2.42663, 0.30986, 2.04209, 0.02233, 2.06535, 0, 0, 0, 0, 0, 0, 0, 0, 0.26506, 1.29546, 0.08199, 1.31975, 0.35467, 2.78876, -0.03732, 2.81098, 0.07021, 2.81035, -0.83253, 1.73598, -1.06626, 1.60307, -1.00415, 1.64261 ]
  12077. }
  12078. ]
  12079. }
  12080. }
  12081. }
  12082. }
  12083. }
  12084. }