123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821 |
- {
- "skeleton": { "hash": "yGHS41sg6G0GkVzx6JLYbter/MQ", "spine": "3.6.53", "width": 110, "height": 192, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -1.19, "y": -0.68 },
- { "name": "bone2", "parent": "bone", "y": 56.28 },
- { "name": "bone3", "parent": "bone2", "length": 15.54, "rotation": 89.05, "x": 0.2, "y": 1.28 },
- { "name": "bone4", "parent": "bone3", "length": 15.03, "rotation": 2.93, "x": 15.54 },
- { "name": "bone5", "parent": "bone4", "length": 12.95, "rotation": -1.97, "x": 15.03 },
- { "name": "bone6", "parent": "bone5", "length": 22.79, "rotation": 140.44, "x": 12.19, "y": 5.94, "color": "2f78fbff" },
- { "name": "bone7", "parent": "bone6", "length": 20.79, "rotation": 0.9, "x": 22.79, "color": "2f78fbff" },
- { "name": "bone8", "parent": "bone7", "length": 12.89, "rotation": -0.93, "x": 23.83, "y": -0.75, "color": "2f78fbff" },
- { "name": "bone9", "parent": "bone5", "length": 25, "rotation": -154.07, "x": 12.96, "y": -20.99 },
- { "name": "bone10", "parent": "bone9", "length": 25, "rotation": 3.56, "x": 26.15, "y": 0.19 },
- { "name": "bone11", "parent": "bone10", "length": 10.59, "rotation": -1.54, "x": 25.4, "y": 0.13 },
- { "name": "bone12", "parent": "bone5", "length": 15.88, "rotation": 176.55, "x": 6.5, "y": 8.72 },
- { "name": "bone13", "parent": "bone12", "length": 10.34, "rotation": -0.79, "x": 15.88 },
- { "name": "bone14", "parent": "bone13", "length": 10.63, "rotation": -13.55, "x": 10.34 },
- { "name": "bone15", "parent": "bone5", "length": 14.52, "rotation": -179.25, "x": 6.5, "y": -11.14 },
- { "name": "bone16", "parent": "bone15", "length": 10.62, "rotation": 7.52, "x": 14.52 },
- { "name": "bone17", "parent": "bone16", "length": 10.94, "rotation": 16.5, "x": 10.62 },
- { "name": "bone18", "parent": "bone5", "x": 11.69, "y": -1.3 },
- { "name": "bone19", "parent": "bone5", "length": 42.66, "rotation": 2.19, "x": 15.9, "y": -0.71 },
- { "name": "bone20", "parent": "bone19", "length": 12.28, "rotation": -1.5, "x": 18.81, "y": 15.57 },
- { "name": "bone21", "parent": "bone19", "length": 12.14, "rotation": -3.58, "x": 17.75, "y": -8.23 },
- { "name": "bone22", "parent": "bone19", "length": 5.94, "rotation": 2.1, "x": 18.5, "y": 3.59 },
- { "name": "bone23", "parent": "bone19", "length": 5.93, "rotation": 0.68, "x": 29.5, "y": 4.5 },
- { "name": "bone24", "parent": "bone19", "length": 6.57, "rotation": 146.63, "x": 53.84, "y": 25.34 },
- { "name": "bone25", "parent": "bone24", "length": 6.01, "rotation": 21.26, "x": 6.57 },
- { "name": "bone26", "parent": "bone25", "length": 7.13, "rotation": 14.69, "x": 6.01 },
- { "name": "bone27", "parent": "bone19", "length": 8.17, "rotation": -127.6, "x": 55.53, "y": -8.05 },
- { "name": "bone28", "parent": "bone27", "length": 7.75, "rotation": -30.95, "x": 8.17 },
- { "name": "bone29", "parent": "bone28", "length": 8.44, "rotation": -21.62, "x": 7.75 },
- { "name": "bone30", "parent": "bone19", "length": 7.84, "rotation": 29.7, "x": 53.39, "y": 17.96 },
- { "name": "bone31", "parent": "bone30", "length": 7.17, "rotation": -10.09, "x": 7.84 },
- { "name": "bone32", "parent": "bone19", "length": 12.84, "rotation": 18.76, "x": 52.55, "y": 11.62 },
- { "name": "bone33", "parent": "bone32", "length": 11.1, "rotation": -11.73, "x": 12.84 },
- { "name": "bone34", "parent": "bone33", "length": 7.87, "rotation": -25.6, "x": 11.1 },
- { "name": "bone35", "parent": "bone19", "length": 12.83, "rotation": 5.1, "x": 52.06, "y": 6.45 },
- { "name": "bone36", "parent": "bone35", "length": 12.96, "rotation": -13.85, "x": 12.83 },
- { "name": "bone37", "parent": "bone36", "length": 10.45, "rotation": -30.96, "x": 12.98, "y": -0.15 },
- { "name": "bone38", "parent": "bone19", "length": 15.36, "rotation": -34.19, "x": 52.55, "y": -0.08 },
- { "name": "bone39", "parent": "bone38", "length": 12.17, "rotation": -16.94, "x": 15.36 },
- { "name": "bone40", "parent": "bone39", "length": 13.86, "rotation": -24.94, "x": 12.17 },
- { "name": "bone41", "parent": "bone19", "length": 11.23, "rotation": -73.75, "x": 58.07, "y": -18.36 },
- { "name": "bone42", "parent": "bone41", "length": 8.71, "rotation": -8.65, "x": 11.23 },
- { "name": "bone43", "parent": "bone42", "length": 6.41, "rotation": -16.41, "x": 8.86, "y": -0.03 },
- { "name": "bone44", "parent": "bone19", "length": 5.85, "rotation": -108.33, "x": 51.45, "y": -21.07 },
- { "name": "bone45", "parent": "bone44", "length": 5.43, "rotation": -1.3, "x": 6.1, "y": 0.22 },
- { "name": "bone46", "parent": "bone45", "length": 4.56, "rotation": -18.31, "x": 5.43 },
- { "name": "bone47", "parent": "bone19", "length": 7.16, "rotation": -110.25, "x": 52.97, "y": -31.79 },
- { "name": "bone48", "parent": "bone47", "length": 5.16, "rotation": -9.24, "x": 7.16 },
- { "name": "bone49", "parent": "bone48", "length": 4.3, "rotation": 0.73, "x": 5.16 },
- { "name": "bone50", "parent": "bone2", "length": 9.63, "rotation": 90, "x": 1.47, "y": -11.55 },
- { "name": "bone51", "parent": "bone2", "length": 15.75, "rotation": -90, "x": -6.41, "y": -13.05 },
- { "name": "bone52", "parent": "bone51", "length": 14.25, "rotation": 1.01, "x": 15.75 },
- { "name": "bone53", "parent": "bone52", "length": 12.57, "rotation": -73.65, "x": 18.36, "y": -1.2 },
- { "name": "bone54", "parent": "bone2", "length": 15.97, "rotation": -83.71, "x": 13.97, "y": -12.8, "color": "2f78fbff" },
- { "name": "bone55", "parent": "bone54", "length": 16.57, "rotation": -1.1, "x": 15.97, "color": "2f78fbff" },
- { "name": "bone56", "parent": "bone55", "length": 12.86, "rotation": -79.4, "x": 18.64, "y": -0.69, "color": "2f78fbff" },
- { "name": "bone57", "parent": "bone2", "length": 6, "rotation": -70.1, "x": -4.91, "y": 2.09 },
- { "name": "bone58", "parent": "bone57", "length": 8, "rotation": -0.67, "x": 6.02, "y": 0.6 },
- { "name": "bone59", "parent": "bone58", "length": 6.62, "rotation": 3.25, "x": 9.39, "y": 0.9 },
- { "name": "bone60", "parent": "bone57", "length": 8, "rotation": 16.29, "x": 9.76, "y": 13.44 },
- { "name": "bone61", "parent": "bone60", "length": 6, "rotation": -1.86, "x": 8.31, "y": 0.1 },
- { "name": "bone62", "parent": "bone61", "length": 6, "rotation": 1.43, "x": 6.43, "y": 0.2 },
- { "name": "bone63", "parent": "bone19", "length": 4.64, "rotation": -2.19, "x": 4.8, "y": 2.54 }
- ],
- "slots": [
- { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
- { "name": "houba", "bone": "bone57", "color": "9b9b9bff", "attachment": "houba" },
- { "name": "zuotui", "bone": "bone51", "attachment": "zuotui" },
- { "name": "youtui", "bone": "bone54", "attachment": "youtui" },
- { "name": "kudang", "bone": "bone50", "attachment": "kudang" },
- { "name": "shenti", "bone": "bone3", "attachment": "shenti" },
- { "name": "youwaitao", "bone": "bone15", "attachment": "youwaitao" },
- { "name": "zuowaitao", "bone": "bone12", "attachment": "zuowaitao" },
- { "name": "lingjie", "bone": "bone18", "attachment": "lingjie" },
- { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
- { "name": "lian", "bone": "bone19", "attachment": "lian" },
- { "name": "zuiba", "bone": "bone63", "attachment": "zuiba" },
- { "name": "yaoya", "bone": "bone63" },
- { "name": "zuoyan1", "bone": "bone20", "attachment": "zuoyan1" },
- { "name": "youyan1", "bone": "bone21", "attachment": "youyan1" },
- { "name": "zuoyan2", "bone": "bone20" },
- { "name": "youyan2", "bone": "bone21" },
- { "name": "biyan", "bone": "bone22" },
- { "name": "meimao1", "bone": "bone23", "attachment": "meimao1" },
- { "name": "meimao2", "bone": "bone23" },
- { "name": "toufa10", "bone": "bone19", "attachment": "toufa10" },
- { "name": "toufa9", "bone": "bone47", "attachment": "toufa9" },
- { "name": "toufa8", "bone": "bone44", "attachment": "toufa8" },
- { "name": "toufa7", "bone": "bone41", "attachment": "toufa7" },
- { "name": "toufa6", "bone": "bone38", "attachment": "toufa6" },
- { "name": "toufa5", "bone": "bone30", "attachment": "toufa5" },
- { "name": "toufa4", "bone": "bone32", "attachment": "toufa4" },
- { "name": "toufa3", "bone": "bone35", "attachment": "toufa3" },
- { "name": "toufa2", "bone": "bone27", "attachment": "toufa2" },
- { "name": "toufa1", "bone": "bone24", "attachment": "toufa1" }
- ],
- "skins": {
- "default": {
- "biyan": {
- "biyan": { "x": 1.73, "y": -1.13, "rotation": -94.29, "width": 45, "height": 9 }
- },
- "houba": {
- "houba": {
- "type": "mesh",
- "uvs": [ 0.91888, 0.26999, 0.93646, 0.36555, 0.95472, 0.46474, 0.97127, 0.55468, 0.98786, 0.64483, 1, 0.71082, 1, 0.78641, 1, 0.8655, 1, 1, 0.91687, 1, 0.84376, 0.93739, 0.80227, 0.90186, 0.74703, 0.85455, 0.70979, 0.82266, 0.63329, 0.71771, 0.55597, 0.61164, 0.50827, 0.54619, 0.47697, 0.50325, 0.50044, 0.62321, 0.52368, 0.74195, 0.53781, 0.81417, 0.54906, 0.87168, 0.57416, 1, 0.5207, 1, 0.39401, 1, 0.35869, 0.94336, 0.31323, 0.87045, 0.25055, 0.76992, 0.16511, 0.63288, 0, 0.36807, 1.0E-5, 0.03758, 0.40764, 0.01996, 0.86919, 0, 0.27397, 0.44346, 0.38367, 0.69362, 0.70275, 0.52986, 0.81344, 0.70041, 0.48869, 0.92843, 0.43368, 0.80543, 0.46143, 0.86748, 0.32825, 0.56723, 0.65866, 0.45368, 0.7578, 0.61468, 0.88522, 0.81568, 0.96189, 0.93879, 0.91985, 0.8713, 0.85306, 0.76404 ],
- "triangles": [ 36, 42, 3, 4, 36, 3, 46, 36, 4, 5, 46, 4, 43, 46, 5, 6, 43, 5, 13, 36, 46, 12, 46, 43, 45, 43, 6, 7, 45, 6, 11, 12, 43, 11, 43, 45, 10, 11, 45, 44, 45, 7, 10, 45, 44, 9, 10, 44, 44, 7, 8, 9, 44, 8, 41, 0, 1, 2, 35, 1, 42, 35, 2, 3, 42, 2, 14, 35, 42, 14, 42, 36, 13, 14, 36, 12, 13, 46, 41, 31, 32, 41, 32, 0, 17, 33, 31, 35, 41, 1, 41, 17, 31, 16, 17, 41, 15, 16, 41, 35, 15, 41, 14, 15, 35, 34, 18, 19, 38, 34, 19, 38, 19, 20, 39, 38, 20, 26, 27, 38, 26, 38, 39, 39, 20, 21, 37, 39, 21, 25, 26, 39, 25, 39, 37, 24, 25, 37, 22, 23, 37, 24, 37, 23, 22, 37, 21, 40, 33, 17, 40, 17, 18, 28, 33, 40, 34, 40, 18, 27, 28, 40, 27, 40, 34, 27, 34, 38, 33, 30, 31, 29, 30, 33, 28, 29, 33 ],
- "vertices": [ 3, 60, 10.29, 11.88, 0.08224, 61, 1.6, 11.84, 0.63114, 62, -4.54, 11.76, 0.28662, 3, 60, 12.71, 10.48, 0.02261, 61, 4.05, 10.52, 0.53935, 62, -2.12, 10.37, 0.43804, 3, 60, 15.21, 9.02, 9.6E-4, 61, 6.6, 9.15, 0.34884, 62, 0.4, 8.94, 0.6502, 2, 61, 8.92, 7.9, 0.15166, 62, 2.68, 7.63, 0.84834, 2, 61, 11.23, 6.65, 0.0297, 62, 4.96, 6.33, 0.9703, 2, 61, 12.93, 5.74, 0.00244, 62, 6.64, 5.37, 0.99756, 1, 62, 8.1, 3.85, 1, 1, 62, 9.63, 2.25, 1, 1, 62, 12.24, -0.47, 1, 2, 61, 16.04, -2.62, 8.5E-4, 62, 9.54, -3.06, 0.99915, 2, 61, 12.48, -3.72, 0.07488, 62, 5.95, -4.07, 0.92512, 3, 60, 18.63, -4.58, 0.00438, 61, 10.46, -4.34, 0.24584, 62, 3.91, -4.65, 0.74978, 3, 60, 15.91, -5.33, 0.04807, 61, 7.77, -5.17, 0.62875, 62, 1.2, -5.41, 0.32318, 3, 60, 14.08, -5.83, 0.12285, 61, 5.95, -5.73, 0.77479, 62, -0.63, -5.92, 0.10236, 4, 58, 14.5, 9.88, 6.8E-4, 59, 5.61, 8.67, 0.00137, 60, 9.56, -6.06, 0.56452, 61, 1.44, -6.11, 0.43343, 4, 58, 10.2, 8.33, 0.03887, 59, 1.22, 7.37, 0.02249, 60, 4.99, -6.28, 0.91968, 61, -3.12, -6.49, 0.01896, 3, 58, 7.54, 7.37, 0.14599, 59, -1.48, 6.56, 0.07381, 60, 2.17, -6.43, 0.78019, 3, 58, 5.8, 6.75, 0.33275, 59, -3.26, 6.04, 0.20381, 60, 0.32, -6.52, 0.46344, 3, 58, 9.24, 6, 0.1295, 59, 0.14, 5.1, 0.78237, 60, 3.39, -8.24, 0.08813, 2, 59, 3.5, 4.17, 0.99123, 60, 6.44, -9.94, 0.00877, 2, 59, 5.54, 3.6, 0.99943, 60, 8.29, -10.97, 5.7E-4, 1, 59, 7.17, 3.15, 1, 1, 59, 10.8, 2.14, 1, 1, 59, 9.49, 0.13, 1, 2, 58, 16.04, -3.39, 0.0651, 59, 6.39, -4.66, 0.9349, 3, 57, 19.84, -3.54, 8.8E-4, 58, 13.87, -3.98, 0.18154, 59, 4.19, -5.13, 0.81758, 3, 57, 17.04, -4.28, 0.02282, 58, 11.08, -4.75, 0.51602, 59, 1.37, -5.74, 0.46116, 3, 57, 13.19, -5.29, 0.1898, 58, 7.24, -5.8, 0.77018, 59, -2.53, -6.58, 0.04002, 2, 57, 7.93, -6.67, 0.78136, 58, 2, -7.24, 0.21864, 1, 57, -2.22, -9.33, 1, 1, 57, -10.2, -4.65, 1, 4, 57, -1.36, 11.42, 0.24905, 58, -7.5, 10.74, 0.24057, 60, -11.24, 1.18, 0.50899, 61, -19.58, 0.45, 0.0014, 3, 60, 3.48, 15.84, 0.2749, 61, -5.34, 15.58, 0.60756, 62, -11.39, 15.67, 0.11754, 2, 57, 5.83, 0.24, 0.63322, 58, -0.18, -0.36, 0.36678, 3, 58, 8.35, 0.46, 0.71769, 59, -1.06, -0.39, 0.2807, 60, 0.93, -13.28, 0.00162, 3, 59, 2.89, 14.16, 1.0E-5, 60, 8.22, -0.09, 0.42432, 61, -0.09, -0.18, 0.57567, 2, 60, 15.12, -0.14, 7.6E-4, 62, 0.37, -0.23, 0.99924, 1, 59, 7.02, 0.01, 1, 2, 58, 12.19, 0.86, 0.00609, 59, 2.79, -0.2, 0.99391, 2, 58, 14.31, 1.09, 4.3E-4, 59, 4.92, -0.1, 0.99957, 3, 58, 4.04, 0.04, 0.99884, 59, -5.39, -0.56, 6.1E-4, 60, -3.32, -12.42, 5.5E-4, 3, 60, 5.31, 0.1, 0.99103, 61, -3, -0.09, 0.00857, 62, -9.44, -0.06, 3.9E-4, 2, 60, 11.65, -0.11, 0.00193, 61, 3.34, -0.1, 0.99807, 2, 61, 11.37, 0.01, 0.00502, 62, 4.94, -0.32, 0.99498, 1, 62, 9.81, -0.42, 1, 2, 61, 13.58, 0.02, 6.6E-4, 62, 7.14, -0.37, 0.99934, 3, 60, 17.64, -0.21, 1.0E-4, 61, 9.33, 0, 0.01335, 62, 2.89, -0.28, 0.98654 ],
- "hull": 33,
- "edges": [ 60, 66, 58, 60, 46, 48, 44, 46, 16, 18, 60, 62, 62, 64, 54, 68, 34, 36, 68, 36, 46, 74, 48, 74, 42, 44, 74, 42, 52, 54, 68, 76, 52, 76, 36, 38, 76, 38, 48, 50, 50, 52, 74, 78, 78, 76, 50, 78, 38, 40, 40, 42, 78, 40, 54, 56, 56, 58, 66, 80, 80, 68, 56, 80, 80, 34, 30, 70, 70, 2, 30, 32, 32, 34, 62, 82, 82, 70, 32, 82, 2, 0, 0, 64, 82, 0, 26, 72, 72, 6, 26, 28, 28, 30, 70, 84, 84, 72, 28, 84, 2, 4, 4, 6, 84, 4, 22, 86, 86, 10, 16, 88, 18, 88, 14, 16, 88, 14, 18, 20, 20, 22, 86, 90, 90, 88, 20, 90, 10, 12, 12, 14, 90, 12, 22, 24, 24, 26, 72, 92, 92, 86, 24, 92, 6, 8, 8, 10, 92, 8 ],
- "width": 45,
- "height": 28
- }
- },
- "kudang": {
- "kudang": {
- "type": "mesh",
- "uvs": [ 1, 0.54538, 1, 1, 0, 1, 0, 0.53228, 0, 0, 1, 0 ],
- "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
- "vertices": [ 5.04, -21.38, -4.05, -21.38, -4.05, 14.62, 5.31, 14.62, 15.95, 14.62, 15.95, -21.38 ],
- "hull": 6,
- "edges": [ 2, 4, 8, 10, 2, 0, 0, 10, 4, 6, 6, 8 ],
- "width": 36,
- "height": 20
- }
- },
- "lian": {
- "lian": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -3.99, -43.08, -1.28, 27.87, 75.67, 24.93, 72.96, -46.02 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 71,
- "height": 77
- }
- },
- "lingjie": {
- "lingjie": {
- "type": "mesh",
- "uvs": [ 1, 1, 0.48516, 1, 0, 1, 0, 0, 0.48111, 0, 1, 0 ],
- "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
- "vertices": [ -8.13, -11.61, -8.13, 0.75, -8.13, 12.39, 5.87, 12.39, 5.87, 0.84, 5.87, -11.61 ],
- "hull": 6,
- "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
- "width": 24,
- "height": 14
- }
- },
- "meimao1": {
- "meimao1": { "x": 3.29, "y": -1.49, "rotation": -92.86, "width": 47, "height": 8 }
- },
- "meimao2": {
- "meimao2": { "x": 4.81, "y": -1.07, "rotation": -92.86, "width": 42, "height": 11 }
- },
- "shenti": {
- "shenti": {
- "type": "mesh",
- "uvs": [ 1, 0.18102, 1, 0.21902, 1, 0.25892, 1, 0.48515, 1, 0.52251, 1, 0.55576, 1, 0.72961, 1, 0.78471, 1, 0.84836, 1, 1, 0.4196, 1, 0, 1, 0, 0.84646, 0, 0.78661, 0, 0.72866, 0, 0.55291, 0, 0.50636, 0, 0.46351, 0, 0.24718, 0, 0.21237, 0, 0.17342, 0, 0, 0.43946, 0, 1, 0, 0.40769, 0.47054, 0.41166, 0.72768, 0.42213, 0.25664, 0.42455, 0.22089, 0.42735, 0.17938, 0.40836, 0.514, 0.40898, 0.5539, 0.41318, 0.77995, 0.41512, 0.8464 ],
- "triangles": [ 10, 8, 9, 11, 32, 10, 10, 32, 8, 11, 12, 32, 32, 7, 8, 12, 31, 32, 12, 13, 31, 32, 31, 7, 13, 25, 31, 13, 14, 25, 31, 6, 7, 31, 25, 6, 25, 5, 6, 14, 30, 25, 14, 15, 30, 25, 30, 5, 30, 4, 5, 15, 29, 30, 30, 29, 4, 15, 16, 29, 29, 3, 4, 16, 24, 29, 29, 24, 3, 16, 17, 24, 24, 17, 18, 24, 26, 3, 26, 2, 3, 26, 24, 18, 26, 27, 2, 27, 1, 2, 27, 26, 19, 26, 18, 19, 27, 28, 1, 28, 27, 20, 28, 0, 1, 27, 19, 20, 28, 22, 0, 22, 23, 0, 22, 28, 21, 28, 20, 21 ],
- "vertices": [ 3, 5, 16.7, -20.91, 0.95215, 4, 31, -21.48, 0.04754, 3, 47.6, -19.86, 3.2E-4, 3, 5, 14.42, -20.91, 0.92282, 4, 28.72, -21.4, 0.07558, 3, 45.32, -19.9, 0.0016, 3, 5, 12.02, -20.91, 0.88029, 4, 26.33, -21.31, 0.11488, 3, 42.92, -19.94, 0.00482, 3, 5, -1.55, -20.91, 0.40077, 4, 12.76, -20.85, 0.46909, 3, 29.35, -20.17, 0.13014, 3, 5, -3.79, -20.91, 0.31109, 4, 10.52, -20.77, 0.50623, 3, 27.11, -20.2, 0.18269, 3, 5, -5.79, -20.91, 0.23948, 4, 8.53, -20.7, 0.5208, 3, 25.11, -20.24, 0.23972, 3, 5, -16.22, -20.91, 0.03075, 4, -1.9, -20.34, 0.31912, 3, 14.68, -20.41, 0.65013, 3, 5, -19.53, -20.91, 0.01075, 4, -5.2, -20.23, 0.21483, 3, 11.38, -20.47, 0.77443, 3, 5, -23.34, -20.91, 0.00169, 4, -9.02, -20.1, 0.11491, 3, 7.56, -20.53, 0.8834, 2, 4, -18.11, -19.78, 0.01735, 3, -1.54, -20.68, 0.98265, 2, 4, -17.41, 0.52, 1.0E-4, 3, -1.88, -0.37, 0.9999, 2, 4, -16.91, 15.2, 0.09073, 3, -2.12, 14.31, 0.90927, 2, 4, -7.7, 14.88, 0.2951, 3, 7.09, 14.47, 0.7049, 2, 4, -4.11, 14.76, 0.47799, 3, 10.68, 14.53, 0.52201, 3, 5, -16.16, 14.09, 0.00133, 4, -0.64, 14.64, 0.67432, 3, 14.16, 14.58, 0.32435, 3, 5, -5.62, 14.09, 0.16297, 4, 9.9, 14.27, 0.8274, 3, 24.7, 14.76, 0.00963, 3, 5, -2.82, 14.09, 0.2899, 4, 12.69, 14.18, 0.70944, 3, 27.49, 14.81, 6.6E-4, 2, 5, -0.25, 14.09, 0.43629, 4, 15.26, 14.09, 0.56371, 2, 5, 12.73, 14.09, 0.96374, 4, 28.23, 13.64, 0.03626, 2, 5, 14.82, 14.09, 0.984, 4, 30.32, 13.57, 0.016, 2, 5, 17.15, 14.09, 0.99531, 4, 32.66, 13.49, 0.00469, 1, 5, 27.56, 14.09, 1, 1, 5, 27.56, -1.29, 1, 2, 5, 27.56, -20.91, 0.9997, 4, 41.85, -21.85, 3.0E-4, 3, 5, -0.68, -0.18, 0.05605, 4, 14.35, -0.16, 0.94391, 3, 29.88, 0.58, 4.0E-5, 1, 3, 14.46, 0.18, 1, 1, 5, 12.16, -0.69, 1, 1, 5, 14.3, -0.77, 1, 1, 5, 16.79, -0.87, 1, 2, 4, 11.74, -0.09, 0.99989, 3, 27.27, 0.51, 1.1E-4, 3, 5, -5.68, -0.23, 5.0E-5, 4, 9.35, -0.03, 0.99981, 3, 24.88, 0.45, 1.4E-4, 2, 4, -4.21, 0.29, 6.4E-4, 3, 11.32, 0.07, 0.99936, 1, 3, 7.34, -0.06, 1 ],
- "hull": 24,
- "edges": [ 42, 44, 44, 46, 18, 20, 20, 22, 34, 48, 48, 6, 34, 36, 52, 48, 36, 52, 6, 4, 52, 4, 36, 38, 54, 52, 38, 54, 4, 2, 54, 2, 38, 40, 40, 42, 44, 56, 56, 54, 40, 56, 2, 0, 0, 46, 56, 0, 32, 34, 48, 58, 32, 58, 6, 8, 58, 8, 30, 32, 50, 60, 60, 58, 30, 60, 8, 10, 60, 10, 28, 30, 28, 50, 10, 12, 50, 12, 26, 28, 62, 50, 26, 62, 12, 14, 62, 14, 22, 24, 24, 26, 20, 64, 64, 62, 24, 64, 14, 16, 16, 18, 64, 16 ],
- "width": 35,
- "height": 60
- }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 1, 0.20865, 1, 0.37323, 0.79338, 0.37234, 0.64561, 0.37162, 0.51629, 0.37115, 0.48801, 0.45475, 0.45265, 0.54198, 0.44613, 0.62984, 0.43203, 0.73907, 0.41998, 0.87843, 0.40947, 1, 0.31856, 1, 0.22083, 1, 0.13543, 0.88007, 0.03864, 0.72323, 1.0E-5, 0.54614, 1.0E-5, 0.39615, 0.06003, 0.20365, 0.20038, 0.01667, 0.47538, 1.0E-5, 0.64128, 0, 0.30492, 0.35865, 0.27538, 0.58573, 0.40142, 0.21633, 0.29013, 0.47238, 0.28831, 0.70978, 0.305, 0.86992 ],
- "triangles": [ 10, 11, 9, 12, 26, 11, 11, 26, 9, 12, 13, 26, 13, 25, 26, 13, 14, 25, 9, 26, 8, 26, 25, 8, 8, 25, 7, 14, 22, 25, 25, 22, 7, 14, 15, 22, 7, 22, 6, 22, 24, 6, 22, 15, 24, 15, 16, 24, 6, 24, 5, 24, 21, 5, 24, 16, 21, 5, 21, 4, 16, 17, 21, 2, 0, 1, 0, 2, 20, 20, 2, 3, 21, 23, 4, 3, 4, 23, 19, 20, 3, 19, 3, 23, 21, 17, 23, 17, 18, 23, 23, 18, 19 ],
- "vertices": [ 1, 24, -4.13, 11.04, 1, 1, 24, -0.75, 13.08, 1, 2, 24, 1.58, 9.18, 0.99985, 25, -1.32, 10.37, 1.5E-4, 2, 24, 3.25, 6.39, 0.9769, 25, -0.78, 7.16, 0.0231, 3, 24, 4.72, 3.95, 0.75749, 25, -0.3, 4.36, 0.2414, 26, -5, 5.82, 0.00111, 3, 24, 6.75, 4.46, 0.29104, 25, 1.79, 4.09, 0.67313, 26, -3.05, 5.03, 0.03583, 3, 24, 8.95, 4.88, 0.04232, 25, 3.98, 3.69, 0.71195, 26, -1.03, 4.08, 0.24573, 3, 24, 10.83, 5.85, 5.7E-4, 25, 6.08, 3.91, 0.30924, 26, 1.06, 3.76, 0.69019, 2, 25, 8.72, 4.06, 0.01976, 26, 3.65, 3.24, 0.98024, 1, 26, 6.96, 2.69, 1, 1, 26, 9.85, 2.22, 1, 1, 26, 9.68, 0.23, 1, 1, 26, 9.5, -1.91, 1, 1, 26, 6.48, -3.55, 1, 2, 25, 9.84, -4.54, 0.11839, 26, 2.55, -5.36, 0.88161, 3, 24, 14.19, -3.59, 0.00667, 25, 5.8, -6.11, 0.64678, 26, -1.75, -5.85, 0.34655, 3, 24, 11.11, -5.45, 0.13657, 25, 2.25, -6.73, 0.80521, 26, -5.34, -5.55, 0.05822, 2, 24, 6.47, -6.71, 0.6567, 25, -2.53, -6.22, 0.3433, 2, 24, 1.04, -6.4, 0.9883, 25, -7.48, -3.95, 0.0117, 1, 24, -2.44, -1.43, 1, 1, 24, -4.33, 1.69, 1, 2, 24, 6.87, -0.18, 0.12347, 25, 0.21, -0.27, 0.87653, 2, 25, 5.69, 0.03, 0.96808, 26, -0.3, 0.11, 0.03192, 1, 24, 2.85, -0.13, 1, 1, 25, 2.95, -0.12, 1, 2, 25, 8.57, 0.82, 2.8E-4, 26, 2.69, 0.14, 0.99972, 1, 26, 6.55, 0.19, 1 ],
- "hull": 21,
- "edges": [ 20, 22, 36, 38, 22, 24, 38, 40, 2, 0, 40, 0, 6, 8, 38, 6, 2, 4, 4, 6, 40, 4, 38, 46, 46, 42, 36, 46, 46, 8, 42, 48, 48, 44, 32, 48, 48, 12, 32, 34, 34, 36, 34, 42, 8, 10, 10, 12, 42, 10, 28, 30, 30, 32, 30, 44, 12, 14, 44, 14, 50, 44, 28, 50, 14, 16, 50, 16, 24, 26, 26, 28, 22, 52, 52, 50, 26, 52, 16, 18, 18, 20, 52, 18 ],
- "width": 22,
- "height": 24
- }
- },
- "toufa10": {
- "toufa10": {
- "type": "mesh",
- "uvs": [ 1, 0.37709, 1, 0.83182, 0.87012, 0.86304, 0.73277, 0.9961, 0.7246, 1, 0.65592, 0.58787, 0.11633, 0.59958, 0.07545, 0.79279, 0, 0.81035, 0, 0.26976, 0.21934, 0, 0.76548, 0 ],
- "triangles": [ 5, 10, 11, 5, 11, 0, 6, 9, 10, 5, 6, 10, 6, 8, 9, 7, 8, 6, 5, 0, 1, 2, 5, 1, 3, 5, 2, 4, 5, 3 ],
- "vertices": [ 57.59, -45.43, 29.42, -44.36, 27.85, -34.68, 19.99, -24.21, 19.78, -23.59, 45.5, -19.49, 46.3, 20.44, 34.45, 23.92, 33.57, 29.54, 67.06, 28.26, 83.16, 11.4, 81.61, -28.98 ],
- "hull": 12,
- "edges": [ 16, 14, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 22, 20, 22, 16, 18, 20, 18 ],
- "width": 74,
- "height": 62
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 0.92318, 0.20305, 0.99999, 0.39368, 0.99999, 0.57168, 0.99999, 0.69781, 1, 0.8583, 1, 1, 0.76619, 1, 0.65081, 1, 0.63072, 0.90121, 0.6102, 0.80027, 0.5963, 0.73191, 0.58125, 0.65792, 0.53354, 0.55358, 0.45411, 0.48615, 0.35573, 0.43952, 0.23169, 0.44064, 0, 0.47738, 0, 0, 0.43063, 1.0E-5, 0.60663, 1.0E-5, 0.85265, 0.07187, 0.35754, 0.16071, 0.62677, 0.30238, 0.74385, 0.56264, 0.48224, 0.22633, 0.69689, 0.41543, 0.75428, 0.76679, 0.74928, 0.66898, 0.76014, 0.88152 ],
- "triangles": [ 5, 28, 4, 7, 28, 6, 5, 6, 28, 7, 8, 28, 8, 9, 28, 9, 26, 28, 28, 26, 4, 26, 3, 4, 9, 10, 26, 10, 27, 26, 26, 27, 3, 10, 11, 27, 27, 2, 3, 11, 23, 27, 27, 23, 2, 11, 12, 23, 23, 1, 2, 12, 25, 23, 23, 25, 1, 12, 13, 25, 13, 22, 25, 25, 0, 1, 25, 22, 0, 13, 24, 22, 13, 14, 24, 16, 17, 15, 14, 15, 21, 14, 21, 24, 21, 15, 17, 24, 19, 22, 22, 20, 0, 22, 19, 20, 21, 18, 24, 24, 18, 19, 21, 17, 18 ],
- "vertices": [ 2, 27, 12.35, 7.28, 0.40386, 28, -0.16, 8.39, 0.59614, 3, 27, 17.29, 3.78, 0.03001, 28, 5.88, 7.93, 0.91225, 29, -4.66, 6.68, 0.05773, 2, 28, 10.77, 5.79, 0.44349, 29, 0.67, 6.5, 0.55651, 2, 28, 14.24, 4.27, 0.07933, 29, 4.45, 6.36, 0.92067, 2, 28, 18.65, 2.34, 3.0E-5, 29, 9.27, 6.19, 0.99997, 1, 29, 13.51, 6.04, 1, 1, 29, 13.3, -0.03, 1, 1, 29, 13.2, -3.03, 1, 1, 29, 10.22, -3.45, 1, 1, 29, 7.17, -3.87, 1, 2, 28, 10.97, -5.75, 0.00383, 29, 5.11, -4.16, 0.99617, 3, 27, 13.02, -8.99, 0.0027, 28, 8.78, -5.22, 0.09871, 29, 2.88, -4.48, 0.89859, 3, 27, 10.19, -7.16, 0.08765, 28, 5.41, -5.1, 0.52918, 29, -0.3, -5.61, 0.38318, 3, 27, 7.34, -6.71, 0.4064, 28, 2.73, -6.18, 0.50226, 29, -2.39, -7.6, 0.09134, 3, 27, 4.44, -7.05, 0.78167, 28, 0.43, -7.97, 0.20503, 29, -3.88, -10.11, 0.0133, 3, 27, 1.83, -8.95, 0.95153, 28, -0.84, -10.94, 0.04818, 29, -3.96, -13.33, 2.9E-4, 1, 27, -2.44, -13.34, 1, 1, 27, -10.74, -1.67, 1, 1, 27, -1.61, 4.82, 1, 2, 27, 2.12, 7.47, 0.99152, 28, -9.04, 3.29, 0.00848, 2, 27, 8.58, 9.42, 0.736, 28, -4.5, 8.29, 0.264, 1, 27, -0.37, -0.21, 1, 2, 27, 7.8, 0.39, 0.93712, 28, -0.52, 0.14, 0.06288, 3, 27, 14.8, -4.21, 1.0E-5, 28, 7.85, -0.2, 0.29458, 29, 0.17, -0.15, 0.70541, 1, 27, 3.41, 0.07, 1, 1, 28, 3.32, 0.45, 1, 1, 29, 6.3, -0.09, 1, 1, 29, 3.36, -0.12, 1, 1, 29, 9.74, -0.06, 1 ],
- "hull": 21,
- "edges": [ 34, 42, 10, 12, 32, 34, 32, 30, 12, 14, 30, 42, 34, 36, 42, 36, 24, 26, 26, 44, 44, 40, 26, 28, 28, 30, 42, 48, 48, 44, 28, 48, 36, 38, 38, 40, 48, 38, 44, 50, 50, 46, 24, 50, 2, 0, 0, 40, 50, 0, 22, 24, 22, 46, 46, 2, 18, 52, 52, 6, 18, 20, 20, 22, 46, 54, 54, 52, 20, 54, 2, 4, 4, 6, 54, 4, 14, 16, 16, 18, 12, 56, 56, 52, 16, 56, 6, 8, 8, 10, 56, 8 ],
- "width": 26,
- "height": 30
- }
- },
- "toufa3": {
- "toufa3": {
- "type": "mesh",
- "uvs": [ 1, 0.17011, 0.89736, 0.17807, 0.80559, 0.18518, 0.62367, 0.26832, 0.51938, 0.34099, 0.4597, 0.45643, 0.39937, 0.55272, 0.3393, 0.64857, 0.30021, 0.82788, 0.26268, 1, 0.1576, 1, 0, 1, 0, 0.7842, 0, 0.57134, 0, 0.43759, 1.0E-5, 0.29632, 0.07124, 0.13537, 0.21014, 0.01884, 0.38965, 0, 0.79642, 0, 1, 0, 0.12695, 0.58452, 0.15979, 0.34906, 0.32769, 0.07733, 0.22825, 0.21002, 0.14364, 0.46483, 0.14235, 0.79335 ],
- "triangles": [ 23, 17, 18, 1, 19, 20, 0, 1, 20, 2, 19, 1, 18, 19, 2, 24, 17, 23, 16, 17, 24, 3, 18, 2, 23, 18, 3, 4, 23, 3, 24, 23, 4, 5, 24, 4, 22, 24, 5, 22, 15, 16, 24, 22, 16, 14, 15, 22, 25, 14, 22, 6, 25, 22, 5, 6, 22, 13, 14, 25, 21, 13, 25, 7, 21, 25, 6, 7, 25, 12, 13, 21, 26, 21, 7, 12, 21, 26, 8, 26, 7, 11, 12, 26, 10, 26, 8, 11, 26, 10, 9, 10, 8 ],
- "vertices": [ 1, 37, 21.81, -21.88, 1, 1, 37, 19.22, -19.08, 1, 1, 37, 16.91, -16.57, 1, 2, 36, 14.63, -16.78, 0.0091, 37, 9.98, -13.41, 0.9909, 2, 36, 11.09, -13.3, 0.1212, 37, 5.15, -12.26, 0.8788, 2, 36, 5.9, -11.68, 0.47203, 37, -0.13, -13.53, 0.52797, 2, 36, 1.54, -9.93, 0.77598, 37, -4.78, -14.28, 0.22402, 2, 36, -2.81, -8.2, 0.94936, 37, -9.4, -15.03, 0.05064, 2, 36, -10.64, -7.64, 0.99996, 37, -16.4, -18.57, 4.0E-5, 1, 36, -18.15, -7.1, 1, 1, 36, -18.59, -3.24, 1, 1, 36, -19.26, 2.55, 1, 1, 36, -10.04, 3.61, 1, 1, 36, -0.95, 4.66, 1, 1, 36, 4.77, 5.31, 1, 1, 36, 10.8, 6.01, 1, 2, 36, 17.98, 4.18, 0.78385, 37, 2.06, 6.28, 0.21615, 2, 36, 23.54, -0.36, 0.09469, 37, 9.17, 5.26, 0.90531, 1, 37, 13.85, 0.48, 1, 1, 37, 23.02, -11.46, 1, 1, 37, 27.61, -17.43, 1, 2, 36, -0.97, -0.08, 0.99986, 37, -12, -7.12, 1.4E-4, 2, 36, 9.22, -0.13, 0.99046, 37, -3.23, -1.91, 0.00954, 2, 36, 21.54, -4.96, 0.00116, 37, 9.82, 0.27, 0.99884, 1, 37, 3.05, -0.28, 1, 2, 36, 4.21, -0.1, 0.99901, 37, -7.54, -4.47, 9.9E-4, 1, 36, -9.83, -1.67, 1 ],
- "hull": 21,
- "edges": [ 20, 22, 18, 20, 0, 40, 34, 36, 26, 42, 42, 14, 10, 44, 44, 30, 36, 46, 34, 46, 4, 6, 46, 6, 36, 4, 36, 38, 38, 40, 0, 2, 2, 4, 38, 2, 30, 32, 32, 34, 44, 48, 48, 46, 32, 48, 6, 8, 8, 10, 48, 8, 26, 28, 28, 30, 42, 50, 50, 44, 28, 50, 10, 12, 12, 14, 50, 12, 22, 24, 24, 26, 20, 52, 52, 42, 24, 52, 14, 16, 16, 18, 52, 16 ],
- "width": 37,
- "height": 43
- }
- },
- "toufa4": {
- "toufa4": {
- "type": "mesh",
- "uvs": [ 1, 0.06962, 0.84097, 0.18745, 0.66185, 0.32015, 0.66185, 0.4231, 0.66185, 0.56127, 0.75725, 0.65905, 0.84923, 0.75333, 0.92495, 0.83094, 1, 0.90787, 1, 1, 0.6902, 1, 0.56521, 0.93283, 0.40912, 0.84895, 0.2387, 0.75736, 0, 0.62908, 0, 0.45743, 0, 0.30885, 0.10631, 0.1032, 0.15966, 0, 0.52011, 0, 1, 0, 0.40266, 0.58764, 0.33241, 0.3032, 0.69268, 0.78785, 0.9144, 0.94091, 0.33954, 0.43987, 0.55642, 0.69379, 0.8042, 0.86483, 0.41487, 0.13353 ],
- "triangles": [ 22, 28, 2, 2, 28, 1, 16, 17, 22, 22, 17, 28, 28, 19, 1, 0, 1, 20, 17, 18, 28, 28, 18, 19, 1, 19, 20, 14, 15, 25, 3, 21, 25, 25, 16, 22, 25, 15, 16, 3, 25, 2, 2, 25, 22, 10, 24, 9, 24, 8, 9, 10, 27, 24, 10, 11, 27, 24, 7, 8, 24, 27, 7, 11, 23, 27, 11, 12, 23, 27, 6, 7, 27, 23, 6, 12, 26, 23, 12, 13, 26, 23, 5, 6, 23, 26, 5, 13, 21, 26, 13, 14, 21, 26, 4, 5, 26, 21, 4, 14, 25, 21, 4, 21, 3 ],
- "vertices": [ 2, 33, 18.36, -15.55, 9.0E-4, 34, 13.27, -10.88, 0.9991, 2, 33, 13.86, -11.59, 0.05767, 34, 7.51, -9.26, 0.94233, 3, 32, 20, -8.79, 3.7E-4, 33, 8.81, -7.15, 0.55352, 34, 1.02, -7.43, 0.4461, 3, 32, 15.87, -7.2, 0.0694, 33, 4.44, -6.44, 0.86898, 34, -3.22, -8.68, 0.06162, 2, 32, 10.32, -5.08, 0.75712, 33, -1.43, -5.49, 0.24288, 2, 32, 5.71, -5.36, 0.99735, 33, -5.88, -6.7, 0.00265, 1, 32, 1.27, -5.63, 1, 1, 32, -2.39, -5.85, 1, 1, 32, -6.02, -6.07, 1, 1, 32, -9.72, -4.65, 1, 1, 32, -7.5, 1.13, 1, 1, 32, -3.91, 2.44, 1, 1, 32, 0.58, 4.06, 1, 2, 32, 5.47, 5.84, 0.99307, 33, -8.4, 4.22, 0.00693, 2, 32, 12.33, 8.32, 0.62115, 33, -2.19, 8.05, 0.37885, 2, 32, 19.22, 5.69, 0.04565, 33, 5.1, 6.87, 0.95435, 2, 33, 11.4, 5.84, 0.72568, 34, -2.25, 5.4, 0.27432, 2, 33, 19.79, 2.33, 3.0E-5, 34, 6.84, 5.86, 0.99997, 1, 34, 11.4, 6.09, 1, 1, 34, 13.43, -0.83, 1, 1, 34, 16.14, -10.04, 1, 1, 32, 11.12, 0.17, 1, 2, 33, 10.58, -0.76, 0.75494, 34, -0.14, -0.91, 0.24506, 1, 32, 1, -2.17, 1, 1, 32, -6.73, -3.96, 1, 1, 33, 4.76, 0.04, 1, 1, 32, 5.75, -1.07, 1, 1, 32, -2.89, -3.07, 1, 2, 33, 17.52, -3.55, 0.00101, 34, 7.33, -0.43, 0.99899 ],
- "hull": 21,
- "edges": [ 38, 40, 36, 38, 18, 20, 0, 40, 16, 18, 28, 42, 42, 8, 24, 46, 46, 12, 18, 48, 16, 48, 48, 20, 4, 6, 6, 8, 42, 50, 50, 44, 6, 50, 28, 30, 30, 32, 50, 30, 8, 10, 10, 12, 42, 52, 52, 46, 10, 52, 24, 26, 26, 28, 52, 26, 20, 22, 22, 24, 46, 54, 54, 48, 22, 54, 12, 14, 14, 16, 54, 14, 32, 34, 34, 36, 38, 56, 56, 44, 34, 56, 0, 2, 2, 4, 56, 2, 32, 44, 44, 4 ],
- "width": 20,
- "height": 43
- }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 0.4441, 0.13477, 0.48779, 0.19314, 0.54035, 0.26338, 0.61067, 0.35735, 0.68196, 0.45261, 0.76334, 0.56136, 0.82172, 0.63938, 0.90754, 0.75405, 1, 0.87761, 1, 1, 0.74298, 1, 0.51709, 0.91561, 0.25346, 0.81713, 0, 0.72244, 0, 0.56319, 0, 0.43457, 0, 0.29369, 0, 0.19365, 0, 0, 0.21946, 0, 0.34325, 0, 0.63467, 0.79186, 0.4232, 0.53461, 0.81283, 0.89336, 0.53795, 0.6742, 0.34271, 0.32341, 0.28185, 0.16372, 0.38459, 0.43331, 0.30804, 0.23242 ],
- "triangles": [ 26, 19, 20, 26, 20, 0, 17, 18, 19, 17, 19, 26, 28, 26, 0, 28, 0, 1, 16, 17, 26, 16, 26, 28, 25, 28, 1, 25, 1, 2, 27, 25, 2, 27, 2, 3, 25, 15, 16, 25, 16, 28, 22, 27, 3, 27, 14, 15, 27, 15, 25, 22, 14, 27, 22, 3, 4, 24, 22, 4, 24, 4, 5, 22, 13, 14, 21, 24, 5, 21, 5, 6, 23, 21, 6, 12, 13, 22, 12, 22, 24, 7, 23, 6, 23, 7, 8, 11, 12, 24, 11, 24, 21, 10, 21, 23, 11, 21, 10, 23, 8, 9, 10, 23, 9 ],
- "vertices": [ 1, 31, 8.17, -4.09, 1, 2, 30, 13.54, -5.42, 0.00117, 31, 6.56, -4.34, 0.99883, 2, 30, 11.58, -5.38, 0.03197, 31, 4.62, -4.64, 0.96803, 2, 30, 8.96, -5.32, 0.24789, 31, 2.03, -5.05, 0.75211, 2, 30, 6.31, -5.27, 0.67127, 31, -0.59, -5.45, 0.32873, 2, 30, 3.27, -5.2, 0.95427, 31, -3.59, -5.92, 0.04573, 2, 30, 1.1, -5.15, 0.99703, 31, -5.74, -6.25, 0.00297, 1, 30, -2.1, -5.08, 1, 1, 30, -5.55, -5.01, 1, 1, 30, -8.04, -3.46, 1, 1, 30, -5.46, 0.69, 1, 1, 30, -1.47, 3.26, 1, 2, 30, 3.18, 6.27, 0.92812, 31, -5.69, 5.35, 0.07188, 2, 30, 7.65, 9.16, 0.62536, 31, -1.79, 8.98, 0.37464, 2, 30, 10.9, 7.14, 0.35023, 31, 1.76, 7.56, 0.64977, 2, 30, 13.52, 5.51, 0.09323, 31, 4.62, 6.42, 0.90677, 2, 30, 16.39, 3.72, 0.00313, 31, 7.76, 5.16, 0.99687, 1, 31, 9.99, 4.27, 1, 1, 31, 14.31, 2.54, 1, 1, 31, 12.76, -1.33, 1, 1, 31, 11.88, -3.51, 1, 1, 30, -0.13, -0.2, 1, 1, 30, 7.23, -0.05, 1, 1, 30, -3.99, -1.79, 1, 2, 30, 3.24, -0.13, 0.99997, 31, -4.51, -0.94, 3.0E-5, 1, 31, 4.68, -0.62, 1, 1, 31, 8.67, -0.97, 1, 2, 30, 9.68, -0.71, 0.00563, 31, 1.94, -0.38, 0.99437, 1, 31, 6.95, -0.82, 1 ],
- "hull": 21,
- "edges": [ 36, 38, 38, 40, 18, 16, 18, 20, 18, 46, 46, 42, 20, 46, 20, 22, 22, 42, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 48, 10, 10, 12, 12, 14, 14, 16, 26, 44, 10, 8, 44, 8, 30, 50, 50, 4, 34, 36, 38, 52, 34, 52, 0, 40, 52, 0, 26, 28, 28, 30, 44, 54, 54, 50, 28, 54, 4, 6, 6, 8, 54, 6, 30, 32, 32, 34, 50, 56, 56, 52, 32, 56, 0, 2, 2, 4, 56, 2, 42, 12, 46, 14 ],
- "width": 19,
- "height": 24
- }
- },
- "toufa6": {
- "toufa6": {
- "type": "mesh",
- "uvs": [ 0.99999, 0.42078, 0.87799, 0.44782, 0.75689, 0.47467, 0.67583, 0.52401, 0.55726, 0.59619, 0.43075, 0.6732, 0.31181, 0.79662, 0.22055, 0.8913, 0.1158, 1, 0, 1, 0, 0.70125, 0.05611, 0.5721, 0.13032, 0.40131, 0.19407, 0.25457, 0.32612, 0.09725, 0.5053, 0, 0.66555, 0.02061, 0.76561, 0.03348, 0.99999, 0.06363, 0.27421, 0.52215, 0.4848, 0.29557, 0.85909, 0.15831, 0.11713, 0.79589, 0.38209, 0.40607, 0.18375, 0.67978, 0.62386, 0.21579, 0.74663, 0.18579 ],
- "triangles": [ 2, 3, 25, 3, 20, 25, 25, 26, 2, 2, 26, 1, 26, 21, 1, 1, 21, 0, 0, 21, 18, 20, 15, 25, 25, 16, 26, 25, 15, 16, 26, 17, 21, 26, 16, 17, 21, 17, 18, 4, 5, 23, 3, 4, 20, 4, 23, 20, 12, 13, 23, 23, 13, 20, 13, 14, 20, 20, 14, 15, 7, 8, 22, 8, 9, 22, 9, 10, 22, 7, 22, 6, 22, 24, 6, 6, 24, 5, 22, 10, 24, 10, 11, 24, 24, 19, 5, 24, 11, 19, 5, 19, 23, 11, 12, 19, 19, 12, 23 ],
- "vertices": [ 2, 39, 24.77, -18.74, 9.0E-5, 40, 19.33, -11.68, 0.99991, 2, 39, 20.04, -15.99, 0.01825, 40, 13.89, -11.18, 0.98175, 3, 38, 26.18, -17.16, 4.0E-5, 39, 15.36, -13.26, 0.13683, 40, 8.48, -10.68, 0.86314, 3, 38, 22.7, -15.13, 0.00844, 39, 11.43, -12.33, 0.35527, 40, 4.54, -11.49, 0.63629, 3, 38, 17.61, -12.16, 0.11788, 39, 5.7, -10.98, 0.64209, 40, -1.24, -12.68, 0.24003, 3, 38, 12.18, -8.99, 0.56877, 39, -0.42, -9.53, 0.40277, 40, -7.4, -13.95, 0.02846, 2, 38, 5.43, -7.04, 0.9697, 39, -7.45, -9.63, 0.0303, 2, 38, 0.25, -5.54, 0.99996, 39, -12.84, -9.7, 4.0E-5, 1, 38, -5.69, -3.82, 1, 1, 38, -8.39, 0.5, 1, 1, 38, 1.23, 6.52, 1, 2, 38, 6.7, 7.02, 0.9998, 39, -10.33, 4.2, 2.0E-4, 2, 38, 13.94, 7.7, 0.72218, 39, -3.6, 6.95, 0.27782, 3, 38, 20.15, 8.27, 0.16332, 39, 2.17, 9.31, 0.83663, 40, -12.99, 4.23, 5.0E-5, 3, 38, 28.3, 6.51, 2.8E-4, 39, 10.48, 10, 0.82171, 40, -5.75, 8.36, 0.17801, 2, 39, 18.85, 7.61, 0.16577, 40, 2.85, 9.72, 0.83423, 2, 39, 23.66, 2.39, 7.4E-4, 40, 9.41, 7.01, 0.99926, 1, 40, 13.5, 5.32, 1, 1, 40, 23.09, 1.36, 1, 3, 38, 13.4, -0.11, 0.99646, 39, -1.84, -0.67, 0.00353, 40, -12.42, -6.52, 1.0E-5, 2, 39, 10.8, -0.27, 0.972, 40, -1.13, -0.82, 0.028, 1, 40, 16.14, -0.38, 1, 1, 38, 0.91, 0.24, 1, 3, 38, 19.65, -1.79, 0.00282, 39, 4.63, -0.47, 0.99533, 40, -6.64, -3.6, 0.00185, 1, 38, 6.21, 0.09, 1, 1, 40, 5.59, 0.39, 1, 2, 39, 22.23, -4.69, 2.0E-5, 40, 11.1, -0.01, 0.99998 ],
- "hull": 19,
- "edges": [ 16, 18, 0, 36, 18, 20, 26, 28, 28, 30, 36, 42, 18, 44, 20, 44, 14, 16, 44, 14, 10, 38, 24, 26, 38, 24, 38, 46, 46, 40, 26, 46, 8, 10, 46, 8, 20, 22, 22, 24, 38, 48, 48, 44, 22, 48, 10, 12, 12, 14, 48, 12, 28, 40, 4, 6, 6, 8, 40, 6, 40, 50, 4, 50, 50, 30, 34, 36, 34, 42, 42, 0, 30, 32, 32, 34, 42, 52, 52, 50, 32, 52, 0, 2, 2, 4, 52, 2 ],
- "width": 44,
- "height": 38
- }
- },
- "toufa7": {
- "toufa7": {
- "type": "mesh",
- "uvs": [ 1, 0.33477, 1, 0.71197, 0.8995, 0.65621, 0.81593, 0.66296, 0.73702, 0.66933, 0.62362, 0.69331, 0.51987, 0.71525, 0.41123, 0.79609, 0.32469, 0.86049, 0.18807, 0.96215, 0.1372, 1, 0, 1, 0, 0.72181, 0.07031, 0.61791, 0.17974, 0.45622, 0.24671, 0.35728, 0.32854, 0.23637, 0.43318, 0.13848, 0.52139, 0.05597, 0.64913, 0.02479, 0.75068, 0, 1, 0, 0.47583, 0.48893, 0.64742, 0.34461, 0.83268, 0.28229, 0.56233, 0.41618, 0.27855, 0.70082, 0.74655, 0.31127, 0.36891, 0.60377, 0.15119, 0.83761 ],
- "triangles": [ 2, 0, 1, 2, 24, 0, 24, 21, 0, 24, 20, 21, 27, 3, 4, 4, 23, 27, 3, 27, 2, 27, 24, 2, 23, 19, 27, 27, 20, 24, 27, 19, 20, 9, 10, 29, 10, 11, 29, 11, 12, 29, 9, 29, 8, 29, 26, 8, 8, 26, 7, 12, 13, 29, 29, 13, 26, 26, 28, 7, 7, 28, 6, 5, 6, 22, 28, 26, 14, 6, 28, 22, 4, 5, 25, 5, 22, 25, 4, 25, 23, 26, 13, 14, 14, 15, 28, 28, 15, 22, 25, 22, 16, 22, 15, 16, 16, 17, 25, 25, 17, 23, 17, 18, 23, 23, 18, 19 ],
- "vertices": [ 2, 42, 18.15, -3.12, 0.02169, 43, 9.79, -0.34, 0.97831, 2, 42, 16.55, -12.41, 0.30447, 43, 10.88, -9.71, 0.69553, 2, 42, 11.43, -10.12, 0.52232, 43, 5.33, -8.95, 0.47768, 3, 41, 16.68, -10.46, 0.01368, 42, 6.96, -9.52, 0.87291, 43, 0.86, -9.64, 0.1134, 3, 41, 12.59, -9.26, 0.15072, 42, 2.73, -8.95, 0.84667, 43, -3.35, -10.29, 0.00261, 2, 41, 6.59, -7.89, 0.69096, 42, -3.4, -8.5, 0.30904, 2, 41, 1.1, -6.64, 0.9711, 42, -9.02, -8.09, 0.0289, 1, 41, -5.1, -6.7, 1, 1, 41, -10.05, -6.75, 1, 1, 41, -17.85, -6.83, 1, 1, 41, -20.75, -6.86, 1, 1, 41, -27.78, -4.52, 1, 1, 41, -25.58, 2.08, 1, 1, 41, -21.16, 3.35, 1, 1, 41, -14.28, 5.31, 1, 1, 41, -10.06, 6.51, 1, 1, 41, -4.92, 7.99, 1, 1, 41, 1.22, 8.52, 1, 2, 41, 6.39, 8.97, 0.96194, 42, -6.14, 8.14, 0.03806, 2, 41, 13.18, 7.53, 0.43781, 42, 0.79, 7.74, 0.56219, 3, 41, 18.58, 6.38, 0.04733, 42, 6.3, 7.41, 0.83271, 43, -4.55, 6.42, 0.11996, 1, 43, 8.82, 7.97, 1, 2, 41, 0.63, -0.52, 0.99979, 42, -10.4, -2.11, 2.1E-4, 1, 41, 10.57, -0.03, 1, 1, 43, 0.66, -0.08, 1, 2, 41, 5.64, -0.27, 0.99763, 42, -5.49, -1.11, 0.00237, 1, 41, -11.15, -2.18, 1, 1, 42, 4.76, -0.22, 1, 1, 41, -5.75, -1.42, 1, 1, 41, -18.75, -3.25, 1 ],
- "hull": 22,
- "edges": [ 0, 42, 48, 0, 22, 24, 40, 42, 20, 22, 0, 2, 4, 2, 12, 44, 44, 32, 32, 34, 34, 36, 44, 50, 50, 46, 34, 50, 8, 10, 10, 12, 50, 10, 28, 52, 52, 16, 36, 46, 46, 8, 40, 48, 48, 4, 36, 38, 38, 40, 46, 54, 54, 48, 38, 54, 4, 6, 6, 8, 54, 6, 28, 30, 30, 32, 44, 56, 56, 52, 30, 56, 12, 14, 14, 16, 56, 14, 24, 26, 26, 28, 22, 58, 58, 52, 26, 58, 16, 18, 18, 20, 58, 18 ],
- "width": 54,
- "height": 25
- }
- },
- "toufa8": {
- "toufa8": {
- "type": "mesh",
- "uvs": [ 0.76037, 0.15504, 0.90754, 0.36923, 1, 0.56989, 1, 1, 0.86024, 1, 0.72776, 0.92342, 0.64309, 0.87447, 0.48779, 0.81875, 0.3335, 0.76339, 0.15566, 0.72679, 0.00201, 0.69518, 0.0043, 0.34773, 0, 0, 0.27975, 0, 0.47324, 0, 0.65384, 0, 0.38294, 0.43372, 0.65814, 0.55197, 0.54206, 0.5021, 0.77508, 0.70524, 0.89545, 0.86298, 0.21888, 0.39646 ],
- "triangles": [ 4, 20, 3, 20, 2, 3, 4, 5, 20, 20, 5, 19, 5, 6, 19, 19, 6, 17, 20, 19, 2, 6, 7, 17, 2, 19, 1, 19, 17, 1, 1, 17, 0, 7, 18, 17, 7, 8, 18, 15, 0, 18, 17, 18, 0, 15, 18, 14, 16, 14, 18, 8, 16, 18, 8, 9, 16, 9, 21, 16, 9, 10, 21, 10, 11, 21, 21, 13, 16, 16, 13, 14, 21, 11, 13, 11, 12, 13 ],
- "vertices": [ 2, 45, 6.14, 5.14, 0.64726, 46, -0.94, 5.1, 0.35274, 2, 45, 9.72, 3.57, 0.08158, 46, 2.95, 4.74, 0.91842, 2, 45, 12.2, 1.83, 1.2E-4, 46, 5.86, 3.86, 0.99988, 1, 46, 8.87, -0.33, 1, 1, 46, 6.61, -1.96, 1, 3, 44, 14.29, -3.82, 0.00247, 45, 8.28, -3.85, 0.02664, 46, 3.92, -2.76, 0.97089, 3, 44, 12.5, -3.72, 0.03025, 45, 6.49, -3.8, 0.17765, 46, 2.2, -3.27, 0.7921, 3, 44, 9.33, -3.94, 0.31184, 45, 3.33, -4.09, 0.48068, 46, -0.71, -4.55, 0.20748, 3, 44, 6.18, -4.16, 0.89302, 45, 0.18, -4.39, 0.09449, 46, -3.6, -5.81, 0.01249, 1, 44, 2.64, -4.73, 1, 1, 44, -0.41, -5.22, 1, 1, 44, -1.53, -1.2, 1, 2, 44, -2.77, 2.78, 0.99975, 45, -8.93, 2.35, 2.5E-4, 2, 44, 2.6, 4.34, 0.62872, 45, -3.59, 4.03, 0.37128, 3, 44, 6.32, 5.41, 0.0601, 45, 0.1, 5.19, 0.93922, 46, -6.69, 3.26, 6.9E-4, 2, 45, 3.55, 6.27, 0.92192, 46, -3.76, 5.37, 0.07808, 3, 44, 6.03, -0.09, 0.9104, 45, -0.06, -0.31, 0.08955, 46, -5.11, -2.02, 5.0E-5, 2, 45, 5.62, -0.02, 0.09964, 46, 0.18, 0.04, 0.90036, 3, 44, 9.32, 0.01, 0.00503, 45, 3.22, -0.14, 0.99112, 46, -2.05, -0.83, 0.00385, 3, 44, 14.47, -1.04, 3.0E-5, 45, 8.4, -1.07, 3.9E-4, 46, 3.16, -0.08, 0.99958, 1, 46, 6.22, -0.21, 1, 1, 44, 2.76, -0.57, 1 ],
- "hull": 16,
- "edges": [ 22, 24, 20, 22, 6, 8, 6, 4, 2, 4, 16, 32, 28, 30, 32, 28, 32, 36, 36, 34, 30, 36, 12, 14, 14, 16, 36, 14, 12, 34, 2, 0, 0, 30, 34, 0, 8, 10, 10, 12, 38, 34, 10, 38, 38, 2, 6, 40, 40, 38, 8, 40, 40, 4, 16, 18, 18, 20, 22, 42, 42, 32, 18, 42, 24, 26, 26, 28, 42, 26 ],
- "width": 20,
- "height": 12
- }
- },
- "toufa9": {
- "toufa9": {
- "type": "mesh",
- "uvs": [ 0.67828, 0.07595, 0.76422, 0.15198, 0.88952, 0.27284, 1, 0.51305, 1, 1, 0.84793, 1, 0.66816, 0.86797, 0.57322, 0.81046, 0.45575, 0.75197, 0.30474, 0.70488, 0.11251, 0.64587, 0, 0.61133, 0, 0.22434, 0, 0, 0.35539, 0, 0.54489, 2.0E-5, 0.53502, 0.47062, 0.76388, 0.65126, 0.38355, 0.40548, 0.22201, 0.32919, 0.6388, 0.55298, 0.90182, 0.85498 ],
- "triangles": [ 5, 21, 4, 21, 3, 4, 5, 6, 21, 21, 6, 17, 21, 17, 3, 3, 17, 2, 6, 7, 17, 7, 20, 17, 7, 8, 20, 2, 17, 20, 2, 20, 1, 20, 16, 1, 8, 16, 20, 8, 9, 16, 9, 18, 16, 9, 10, 18, 10, 19, 18, 10, 11, 19, 11, 12, 19, 16, 0, 1, 16, 18, 0, 19, 14, 18, 18, 15, 0, 18, 14, 15, 19, 12, 14, 12, 13, 14 ],
- "vertices": [ 3, 47, 7.84, 6.19, 0.52734, 48, -0.32, 6.22, 0.44598, 49, -5.4, 6.29, 0.02668, 3, 47, 9.97, 5.77, 0.25002, 48, 1.85, 6.14, 0.6302, 49, -3.24, 6.18, 0.11978, 3, 47, 13.12, 5.01, 0.03307, 48, 5.07, 5.9, 0.51454, 49, -0.01, 5.9, 0.45238, 2, 48, 8.78, 4.03, 0.07851, 49, 3.66, 3.98, 0.92149, 1, 49, 6.71, -2.11, 1, 2, 48, 8.93, -3.56, 0.01052, 49, 3.72, -3.61, 0.98948, 3, 47, 11.07, -4.42, 0.00775, 48, 4.57, -3.73, 0.61696, 49, -0.64, -3.73, 0.3753, 3, 47, 8.83, -4.3, 0.12507, 48, 2.34, -3.98, 0.81595, 49, -2.87, -3.94, 0.05899, 3, 47, 6.12, -4.32, 0.55872, 48, -0.33, -4.43, 0.44123, 49, -5.55, -4.36, 5.0E-5, 2, 47, 2.76, -4.73, 0.93219, 48, -3.58, -5.37, 0.06781, 2, 47, -1.52, -5.25, 0.99989, 48, -7.72, -6.58, 1.1E-4, 1, 47, -4.02, -5.56, 1, 1, 47, -5.7, -0.41, 1, 1, 47, -6.67, 2.58, 1, 2, 47, 0.76, 5, 0.99821, 48, -7.12, 3.91, 0.00179, 3, 47, 4.72, 6.29, 0.86078, 48, -3.42, 5.82, 0.13913, 49, -8.5, 5.93, 9.0E-5, 1, 47, 6.56, -0.04, 1, 2, 48, 5.05, -0.07, 0.70394, 49, -0.12, -0.07, 0.29606, 2, 47, 3.11, -0.2, 0.99853, 48, -3.97, -0.85, 0.00147, 1, 47, -0.6, -0.29, 1, 2, 47, 9.09, -0.43, 0.00163, 48, 1.97, -0.11, 0.99837, 1, 49, 3.87, -1.27, 1 ],
- "hull": 16,
- "edges": [ 24, 26, 8, 6, 4, 6, 22, 24, 8, 10, 12, 10, 16, 32, 0, 30, 32, 0, 36, 32, 30, 36, 16, 18, 36, 18, 18, 20, 20, 22, 24, 38, 38, 36, 20, 38, 26, 28, 28, 30, 38, 28, 4, 34, 34, 12, 12, 14, 14, 16, 32, 40, 40, 34, 14, 40, 0, 2, 2, 4, 40, 2, 8, 42, 42, 34, 6, 42, 42, 10 ],
- "width": 22,
- "height": 14
- }
- },
- "yaoya": {
- "yaoya": { "x": 3.46, "y": -2.43, "rotation": -90, "width": 15, "height": 7 }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.60331, 0.3267, 0.62314, 0.34404, 0.66421, 0.37996, 0.9353, 0.61702, 0.96335, 0.6422, 0.98815, 0.66228, 1, 1, 0.65936, 1, 0.48671, 0.81276, 0.46556, 0.78981, 0.44492, 0.76743, 0.21441, 0.51743, 0.19699, 0.49854, 0.16038, 0.45883, 0, 0.28489, 0, 0, 0.22971, 0, 0.41125, 0.38901, 0.74105, 0.7326, 0.43819, 0.41708, 0.45997, 0.43977, 0.72552, 0.71642, 0.70182, 0.69173 ],
- "triangles": [ 7, 18, 6, 18, 5, 6, 7, 8, 18, 18, 4, 5, 8, 21, 18, 8, 9, 21, 9, 22, 21, 9, 10, 22, 10, 20, 22, 10, 11, 20, 18, 21, 4, 21, 3, 4, 21, 22, 3, 20, 2, 22, 22, 2, 3, 11, 19, 20, 11, 12, 19, 12, 17, 19, 20, 1, 2, 20, 19, 1, 19, 0, 1, 19, 17, 0, 12, 13, 17, 13, 14, 17, 0, 17, 16, 16, 17, 15, 17, 14, 15 ],
- "vertices": [ 2, 9, 24.64, 8.54, 0.29684, 10, -0.99, 8.43, 0.70316, 2, 9, 26.04, 8.72, 0.18078, 10, 0.42, 8.52, 0.81922, 3, 9, 28.93, 9.09, 0.0337, 10, 3.34, 8.71, 0.96628, 11, -22.29, 7.99, 2.0E-5, 2, 10, 22.57, 9.98, 0.3743, 11, -3.1, 9.77, 0.6257, 2, 10, 24.6, 10.09, 0.21988, 11, -1.07, 9.93, 0.78012, 2, 10, 26.27, 10.26, 0.1379, 11, 0.59, 10.15, 0.8621, 1, 11, 21.09, -0.21, 1, 2, 10, 39.94, -12.21, 0.01965, 11, 14.87, -11.94, 0.98035, 2, 10, 25.54, -11.8, 0.5931, 11, 0.46, -11.92, 0.4069, 2, 10, 23.78, -11.75, 0.71354, 11, -1.3, -11.92, 0.28646, 2, 10, 22.06, -11.71, 0.81387, 11, -3.02, -11.92, 0.18613, 2, 9, 29.67, -10.78, 0.30807, 10, 2.84, -11.16, 0.69193, 2, 9, 28.22, -10.83, 0.41898, 10, 1.38, -11.12, 0.58102, 2, 9, 25.16, -10.93, 0.67101, 10, -1.67, -11.03, 0.32899, 1, 9, 11.79, -11.38, 1, 1, 9, -5.63, -2.91, 1, 1, 9, -1.71, 5.15, 1, 2, 9, 25.17, -0.05, 0.92389, 10, -0.99, -0.18, 0.07611, 2, 10, 25.68, -0.49, 0.30592, 11, 0.3, -0.61, 0.69408, 2, 9, 27.35, 0.06, 0.00641, 10, 1.19, -0.2, 0.99359, 2, 9, 29.11, 0.15, 0.00103, 10, 2.95, -0.22, 0.99897, 1, 10, 24.43, -0.47, 1, 1, 10, 22.51, -0.45, 1 ],
- "hull": 17,
- "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 30, 34, 36, 12, 26, 28, 26, 34, 0, 32, 34, 0, 24, 26, 34, 38, 24, 38, 0, 2, 38, 2, 22, 24, 40, 38, 22, 40, 2, 4, 40, 4, 14, 16, 16, 36, 36, 10, 16, 18, 36, 42, 18, 42, 8, 10, 42, 8, 18, 20, 20, 22, 40, 44, 44, 42, 20, 44, 4, 6, 6, 8, 44, 6 ],
- "width": 39,
- "height": 68
- }
- },
- "youtui": {
- "youtui": {
- "type": "mesh",
- "uvs": [ 0.92904, 0.36419, 0.93573, 0.38752, 0.93989, 0.41323, 0.97692, 0.69566, 1, 0.72909, 1, 0.75774, 1, 1, 0, 1, 0, 0.83565, 0.42236, 0.76465, 0.41301, 0.72918, 0.40397, 0.69486, 0.35405, 0.44038, 0.33859, 0.40993, 0.32433, 0.38108, 0.18736, 0, 0.5169, 0, 0.89846, 1.0E-5, 0.61251, 0.39744, 0.66793, 0.8235, 0.61904, 0.42313, 0.60683, 0.37522, 0.65708, 0.76122, 0.653, 0.73006, 0.64801, 0.69193 ],
- "triangles": [ 7, 8, 9, 19, 7, 9, 19, 5, 6, 7, 19, 6, 11, 20, 24, 24, 2, 3, 10, 11, 24, 23, 24, 3, 10, 24, 23, 23, 3, 4, 4, 22, 23, 5, 22, 4, 9, 10, 23, 9, 23, 22, 19, 22, 5, 19, 9, 22, 11, 12, 20, 24, 20, 2, 20, 1, 2, 21, 16, 17, 21, 17, 0, 14, 15, 16, 14, 16, 21, 18, 21, 0, 18, 0, 1, 13, 14, 21, 13, 21, 18, 20, 18, 1, 12, 13, 18, 12, 18, 20 ],
- "vertices": [ 2, 54, 12.67, 8.7, 0.77427, 55, -3.46, 8.64, 0.22573, 2, 54, 13.83, 8.75, 0.68082, 55, -2.31, 8.71, 0.31918, 2, 54, 15.09, 8.72, 0.56688, 55, -1.05, 8.7, 0.43312, 2, 55, 12.82, 8.41, 0.95311, 56, -10.01, -4.04, 0.04689, 2, 55, 14.51, 8.86, 0.88892, 56, -10.14, -2.3, 0.11108, 2, 55, 15.91, 8.73, 0.81735, 56, -9.76, -0.95, 0.18265, 2, 55, 27.73, 7.65, 0.05111, 56, -6.53, 10.47, 0.94889, 1, 56, 18.49, 3.39, 1, 1, 56, 16.3, -4.35, 1, 2, 55, 14.89, -6.26, 0.40413, 56, 4.78, -4.71, 0.59587, 2, 55, 13.13, -6.34, 0.71538, 56, 4.54, -6.45, 0.28462, 2, 55, 11.44, -6.43, 0.86633, 56, 4.31, -8.13, 0.13367, 2, 54, 14.75, -6.57, 0.69847, 55, -1.1, -6.59, 0.30153, 2, 54, 13.22, -6.8, 0.8511, 55, -2.62, -6.85, 0.1489, 2, 54, 11.77, -7.02, 0.9346, 55, -4.06, -7.1, 0.0654, 1, 54, -7.18, -8.51, 1, 1, 54, -6.24, 0.01, 1, 1, 54, -5.15, 9.87, 1, 1, 54, 13.39, 0.34, 1, 2, 55, 18.34, -0.16, 0.12339, 56, -0.58, -0.2, 0.87661, 1, 54, 14.66, 0.37, 1, 2, 54, 12.29, 0.32, 0.99775, 55, -3.68, 0.24, 0.00225, 2, 55, 15.27, -0.17, 0.99019, 56, -1.13, -3.21, 0.00981, 2, 55, 13.74, -0.13, 0.99778, 56, -1.45, -4.71, 0.00222, 2, 55, 11.87, -0.09, 0.99902, 56, -1.83, -6.55, 9.8E-4 ],
- "hull": 18,
- "edges": [ 12, 14, 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 40, 4, 26, 28, 28, 30, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 38, 44, 18, 44, 10, 12, 44, 10, 18, 20, 46, 44, 20, 46, 8, 10, 46, 8, 20, 22, 22, 24, 40, 48, 48, 46, 22, 48, 4, 6, 6, 8, 48, 6 ],
- "width": 26,
- "height": 49
- }
- },
- "youwaitao": {
- "youwaitao": {
- "type": "mesh",
- "uvs": [ 0.33777, 0.09612, 1, 0.15453, 1, 0.38823, 1, 0.44943, 1, 0.50836, 1, 0.56843, 1, 0.61263, 1, 0.67836, 1, 0.73049, 1, 0.79963, 1, 0.89823, 1, 1, 0.72341, 1, 0, 1, 0, 0.92543, 0, 0.83023, 0, 0.74636, 0, 0.67156, 0, 0.59563, 0, 0.53896, 0, 0.47436, 0, 0.42449, 0, 0.36103, 0, 0.06633, 0.35714, 0.54693, 0.41349, 0.74133, 0.35471, 0.4903, 0.37705, 0.6156, 0.39587, 0.68053, 0.50397, 0.81684, 0.61072, 0.90595, 0.34968, 0.37338, 0.35219, 0.43156 ],
- "triangles": [ 12, 10, 11, 13, 30, 12, 12, 30, 10, 13, 14, 30, 14, 29, 30, 14, 15, 29, 10, 30, 9, 30, 29, 9, 15, 25, 29, 9, 29, 8, 29, 25, 8, 15, 16, 25, 16, 28, 25, 16, 17, 28, 8, 25, 7, 25, 28, 7, 17, 27, 28, 7, 28, 6, 28, 27, 6, 17, 18, 27, 18, 24, 27, 6, 27, 5, 27, 24, 5, 18, 19, 24, 24, 4, 5, 19, 26, 24, 24, 26, 4, 19, 20, 26, 26, 3, 4, 20, 32, 26, 26, 32, 3, 20, 21, 32, 32, 2, 3, 21, 31, 32, 32, 31, 2, 21, 22, 31, 31, 1, 2, 22, 0, 31, 31, 0, 1, 22, 23, 0 ],
- "vertices": [ 1, 15, -14.29, -0.27, 1, 2, 15, -10.59, 14.91, 1, 16, -22.94, 18.07, 0, 3, 15, 3.43, 14.72, 0.91344, 16, -9.06, 16.05, 0.0865, 17, -14.31, 20.98, 6.0E-5, 3, 15, 7.1, 14.68, 0.81303, 16, -5.43, 15.52, 0.18283, 17, -10.97, 19.44, 0.00414, 3, 15, 10.64, 14.63, 0.65757, 16, -1.93, 15.01, 0.31831, 17, -7.76, 17.96, 0.02411, 3, 15, 14.24, 14.58, 0.45416, 16, 1.64, 14.49, 0.46537, 17, -4.49, 16.45, 0.08047, 3, 15, 16.9, 14.55, 0.30399, 16, 4.26, 14.11, 0.53561, 17, -2.08, 15.33, 0.16039, 3, 15, 20.84, 14.5, 0.13199, 16, 8.17, 13.54, 0.50931, 17, 1.5, 13.68, 0.3587, 3, 15, 23.97, 14.45, 0.0527, 16, 11.26, 13.09, 0.38199, 17, 4.34, 12.37, 0.56531, 3, 15, 28.11, 14.4, 0.00846, 16, 15.37, 12.5, 0.17695, 17, 8.1, 10.63, 0.81459, 2, 16, 21.22, 11.64, 0.02155, 17, 13.47, 8.15, 0.97845, 1, 17, 19.02, 5.59, 1, 1, 17, 16.35, -0.18, 1, 2, 16, 23.95, -11.99, 0.00296, 17, 9.38, -15.29, 0.99704, 2, 16, 19.52, -11.35, 0.04376, 17, 5.32, -13.41, 0.95624, 2, 16, 13.87, -10.53, 0.28263, 17, 0.13, -11.02, 0.71737, 3, 15, 24.62, -8.56, 0.00172, 16, 8.89, -9.8, 0.68146, 17, -4.44, -8.91, 0.31681, 3, 15, 20.13, -8.5, 0.07342, 16, 4.45, -9.16, 0.86448, 17, -8.51, -7.03, 0.0621, 3, 15, 15.57, -8.44, 0.39997, 16, -0.06, -8.5, 0.59894, 17, -12.65, -5.12, 0.00108, 2, 15, 12.17, -8.39, 0.74083, 16, -3.42, -8.01, 0.25917, 2, 15, 8.3, -8.34, 0.95516, 16, -7.26, -7.46, 0.04484, 2, 15, 5.31, -8.3, 0.99649, 16, -10.22, -7.02, 0.00351, 1, 15, 1.5, -8.25, 1, 1, 15, -16.18, -8.02, 1, 1, 15, 12.76, -0.18, 1, 2, 16, 9.96, -0.35, 0.96905, 17, -0.73, -0.15, 0.03095, 1, 15, 9.36, -0.2, 1, 1, 16, 2.38, -0.09, 1, 1, 16, 6.29, -0.23, 1, 1, 17, 4.26, -0.16, 1, 1, 17, 10.14, -0.17, 1, 1, 15, 2.35, -0.22, 1, 1, 15, 5.84, -0.21, 1 ],
- "hull": 24,
- "edges": [ 2, 0, 0, 46, 22, 24, 24, 26, 38, 48, 48, 10, 38, 40, 52, 48, 40, 52, 8, 10, 52, 8, 36, 38, 48, 54, 36, 54, 10, 12, 54, 12, 34, 36, 50, 56, 56, 54, 34, 56, 12, 14, 56, 14, 32, 34, 32, 50, 14, 16, 50, 16, 30, 32, 58, 50, 30, 58, 16, 18, 58, 18, 26, 28, 28, 30, 24, 60, 60, 58, 28, 60, 18, 20, 20, 22, 60, 20, 44, 46, 0, 62, 44, 62, 2, 4, 62, 4, 40, 42, 42, 44, 52, 64, 64, 62, 42, 64, 4, 6, 6, 8, 64, 6 ],
- "width": 23,
- "height": 60
- }
- },
- "youyan1": {
- "youyan1": { "x": 4.68, "y": -3.04, "rotation": -88.6, "width": 21, "height": 16 }
- },
- "youyan2": {
- "youyan2": { "x": 5.69, "y": -3.52, "rotation": -88.6, "width": 22, "height": 18 }
- },
- "zuiba": {
- "zuiba": { "x": 2.46, "y": -1.93, "rotation": -90, "width": 14, "height": 11 }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.33943, 0.868, 0.47294, 0.83273, 0.50862, 0.8056, 0.53606, 0.5633, 0.78115, 0.52992, 0.81491, 0.50646, 0.83864, 0.34694, 1, 0, 1, 0, 0.77669, 0.20005, 0.60279, 0.23518, 0.57225, 0.25954, 0.55108, 0.52958, 0.31633, 0.56294, 0.28733, 0.59649, 0.25817, 0.89347, 0, 0.99999, 0.04869, 0.67268, 0.37663, 0.37226, 0.68564, 0.70633, 0.35094, 0.64205, 0.40785, 0.40079, 0.65373, 0.34362, 0.71026 ],
- "triangles": [ 8, 23, 7, 7, 23, 6, 23, 9, 10, 23, 8, 9, 23, 19, 6, 6, 19, 5, 19, 22, 5, 10, 11, 23, 23, 11, 19, 11, 12, 19, 19, 12, 22, 5, 22, 4, 4, 21, 3, 4, 22, 21, 22, 13, 21, 22, 12, 13, 21, 18, 3, 13, 14, 21, 3, 18, 2, 18, 20, 2, 2, 20, 1, 1, 20, 0, 21, 14, 18, 14, 15, 18, 18, 15, 20, 17, 20, 16, 17, 0, 20, 20, 15, 16 ],
- "vertices": [ 2, 6, 9.25, 11.34, 0.99846, 7, -13.36, 11.55, 0.00154, 2, 6, 20.21, 11.49, 0.70359, 7, -2.4, 11.53, 0.29641, 2, 6, 23.14, 11.53, 0.49141, 7, 0.53, 11.53, 0.50859, 2, 6, 25.39, 11.56, 0.32806, 7, 2.78, 11.52, 0.67194, 2, 7, 22.9, 11.48, 0.63004, 8, -1.13, 12.21, 0.36996, 2, 7, 25.67, 11.48, 0.4341, 8, 1.64, 12.25, 0.5659, 2, 7, 27.62, 11.47, 0.31012, 8, 3.59, 12.28, 0.68988, 2, 7, 40.87, 11.45, 0.00392, 8, 16.84, 12.47, 0.99608, 1, 8, 28.33, -1.44, 1, 1, 8, 17.32, -10.54, 1, 2, 7, 25.79, -10.4, 0.09016, 8, 2.11, -9.62, 0.90984, 2, 7, 23.12, -10.19, 0.24051, 8, -0.56, -9.46, 0.75949, 2, 7, 21.27, -10.05, 0.38511, 8, -2.41, -9.35, 0.61489, 2, 6, 23.69, -8.46, 0.37915, 7, 0.77, -8.47, 0.62085, 2, 6, 21.16, -8.3, 0.63409, 7, -1.76, -8.28, 0.36591, 2, 6, 18.61, -8.15, 0.84204, 7, -4.31, -8.08, 0.15796, 1, 6, -3.97, -6.76, 1, 1, 6, -5.09, -0.51, 1, 1, 6, 21.93, -0.26, 1, 2, 7, 24.34, -0.09, 0.03667, 8, 0.49, 0.66, 0.96333, 1, 6, 19.55, 0.04, 1, 1, 7, 1.69, -0.24, 1, 2, 7, 21.81, -0.21, 0.72924, 8, -2.03, 0.5, 0.27076, 2, 7, 26.5, -0.27, 0.01033, 8, 2.65, 0.52, 0.98967 ],
- "hull": 18,
- "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 28, 36, 36, 4, 28, 30, 30, 32, 34, 40, 40, 36, 30, 40, 0, 2, 2, 4, 40, 2, 26, 28, 36, 42, 26, 42, 4, 6, 42, 6, 22, 38, 38, 10, 22, 24, 24, 26, 38, 44, 44, 42, 24, 44, 6, 8, 8, 10, 44, 8, 18, 20, 20, 22, 16, 46, 46, 38, 20, 46, 10, 12, 12, 14, 46, 12 ],
- "width": 52,
- "height": 64
- }
- },
- "zuotui": {
- "zuotui": {
- "type": "mesh",
- "uvs": [ 1, 0.38846, 1, 0.42386, 1, 0.45454, 1, 0.70597, 1, 0.74255, 1, 0.76615, 1, 1, 0, 1, 0, 0.84771, 0.43714, 0.72771, 0.43682, 0.70123, 0.43652, 0.67644, 0.43376, 0.45101, 0.43335, 0.41798, 0.43296, 0.38608, 0.42824, 0, 0.7038, 0, 1, 0, 0.69937, 0.7517, 0.69966, 0.70245, 0.69951, 0.72722, 0.70112, 0.45458, 0.70132, 0.42036, 0.7015, 0.38964 ],
- "triangles": [ 7, 8, 9, 7, 9, 18, 7, 18, 6, 19, 10, 11, 21, 19, 11, 3, 19, 2, 20, 10, 19, 20, 19, 3, 9, 10, 20, 20, 3, 4, 18, 9, 20, 18, 20, 4, 18, 4, 5, 18, 5, 6, 14, 15, 16, 16, 17, 0, 23, 14, 16, 0, 23, 16, 13, 14, 23, 22, 13, 23, 22, 23, 0, 1, 22, 0, 12, 13, 22, 21, 22, 1, 21, 12, 22, 2, 21, 1, 11, 12, 21, 19, 21, 2 ],
- "vertices": [ 2, 51, 11.97, 8.26, 0.88616, 52, -3.63, 8.32, 0.11384, 2, 51, 13.74, 8.26, 0.76302, 52, -1.86, 8.29, 0.23698, 2, 51, 15.28, 8.26, 0.62148, 52, -0.33, 8.26, 0.37852, 3, 51, 27.85, 8.26, 4.7E-4, 52, 12.24, 8.04, 0.93008, 53, -10.59, -3.27, 0.06945, 2, 52, 14.07, 8.01, 0.83372, 53, -10.04, -1.52, 0.16628, 2, 52, 15.25, 7.99, 0.74385, 53, -9.69, -0.4, 0.25615, 2, 52, 26.94, 7.79, 0.02175, 53, -6.2, 10.76, 0.97825, 1, 53, 19.57, 2.71, 1, 1, 53, 17.3, -4.56, 1, 2, 52, 13.06, -7.17, 0.49777, 53, 4.24, -6.76, 0.50223, 2, 52, 11.74, -7.16, 0.69769, 53, 3.85, -8.03, 0.30231, 2, 52, 10.5, -7.14, 0.81768, 53, 3.49, -9.22, 0.18232, 2, 51, 15.1, -7.03, 0.60416, 52, -0.77, -7.02, 0.39584, 2, 51, 13.45, -7.04, 0.78262, 52, -2.43, -7, 0.21738, 2, 51, 11.85, -7.05, 0.90218, 52, -4.02, -6.98, 0.09782, 1, 51, -7.45, -7.18, 1, 1, 51, -7.45, 0.26, 1, 1, 51, -7.45, 8.26, 1, 2, 52, 14.38, -0.11, 0.98007, 53, -2.16, -3.51, 0.01993, 2, 52, 11.92, -0.06, 0.99897, 53, -2.9, -5.86, 0.00103, 2, 52, 13.16, -0.09, 0.99851, 53, -2.53, -4.67, 0.00149, 2, 51, 15.28, 0.19, 0.89274, 52, -0.47, 0.2, 0.10726, 2, 51, 13.57, 0.19, 0.99762, 52, -2.18, 0.23, 0.00238, 2, 51, 12.03, 0.2, 0.99975, 52, -3.72, 0.26, 2.5E-4 ],
- "hull": 18,
- "edges": [ 12, 14, 14, 16, 18, 16, 30, 32, 32, 34, 36, 14, 18, 36, 12, 10, 36, 10, 22, 38, 38, 6, 18, 20, 20, 22, 36, 40, 40, 38, 20, 40, 6, 8, 8, 10, 40, 8, 22, 24, 42, 38, 24, 42, 6, 4, 42, 4, 24, 26, 44, 42, 26, 44, 4, 2, 44, 2, 26, 28, 28, 30, 32, 46, 46, 44, 28, 46, 2, 0, 0, 34, 46, 0 ],
- "width": 27,
- "height": 50
- }
- },
- "zuowaitao": {
- "zuowaitao": {
- "type": "mesh",
- "uvs": [ 0.87513, 0.24713, 0.83919, 0.31825, 0.80222, 0.39142, 0.76387, 0.46731, 0.73586, 0.52275, 0.70664, 0.58057, 0.66383, 0.6653, 0.61922, 0.75358, 0.55215, 0.88631, 0.4947, 1, 0.10804, 1, 0, 1, 0, 0.85805, 0, 0.73922, 0, 0.65073, 0, 0.57395, 0, 0.52485, 0.02433, 0.46528, 0.05529, 0.38947, 0.08811, 0.30914, 0.114, 0.24575, 0.21437, 0, 0.51887, 0, 1, 0, 0.41737, 0.51336, 0.39804, 0.74974, 0.41271, 0.57035, 0.42635, 0.46794, 0.47024, 0.24596, 0.45815, 0.30713, 0.44188, 0.38942, 0.40518, 0.66237, 0.25271, 0.87515 ],
- "triangles": [ 10, 32, 9, 9, 32, 8, 32, 10, 12, 10, 11, 12, 32, 25, 8, 8, 25, 7, 25, 32, 13, 32, 12, 13, 25, 13, 14, 25, 31, 7, 7, 31, 6, 31, 25, 14, 31, 26, 6, 6, 26, 5, 26, 31, 15, 31, 14, 15, 26, 24, 5, 15, 16, 26, 5, 24, 4, 26, 16, 24, 16, 17, 24, 24, 27, 4, 4, 27, 3, 24, 17, 27, 17, 18, 27, 27, 30, 3, 27, 18, 30, 3, 30, 2, 30, 29, 2, 2, 29, 1, 18, 19, 30, 30, 19, 29, 29, 28, 1, 1, 28, 0, 19, 20, 29, 29, 20, 28, 28, 22, 0, 0, 22, 23, 20, 21, 28, 28, 21, 22 ],
- "vertices": [ 1, 12, -0.4, 7.37, 1, 1, 12, 3.4, 6.96, 1, 1, 12, 7.31, 6.52, 1, 2, 12, 11.37, 6.08, 0.96287, 13, -4.6, 6.01, 0.03713, 2, 12, 14.33, 5.75, 0.75288, 13, -1.63, 5.73, 0.24712, 2, 12, 17.42, 5.41, 0.30268, 13, 1.47, 5.43, 0.69732, 3, 12, 21.95, 4.91, 0.00511, 13, 6, 4.99, 0.98197, 14, -5.39, 3.84, 0.01292, 2, 13, 10.73, 4.54, 0.46808, 14, -0.69, 4.5, 0.53192, 1, 14, 6.38, 5.5, 1, 1, 14, 12.43, 6.36, 1, 1, 14, 14.56, -0.27, 1, 1, 14, 15.15, -2.12, 1, 2, 13, 17.07, -6.17, 0.00543, 14, 7.99, -4.42, 0.99457, 2, 13, 10.79, -6.63, 0.41779, 14, 1.99, -6.34, 0.58221, 3, 12, 21.9, -7.06, 0.03241, 13, 6.11, -6.98, 0.8591, 14, -2.48, -7.78, 0.10849, 3, 12, 17.84, -7.31, 0.27596, 13, 2.05, -7.28, 0.71892, 14, -6.35, -9.02, 0.00512, 2, 12, 15.24, -7.46, 0.55269, 13, -0.54, -7.47, 0.44731, 2, 12, 12.06, -7.22, 0.84824, 13, -3.72, -7.27, 0.15176, 2, 12, 8.02, -6.9, 0.99018, 13, -7.77, -7.01, 0.00983, 1, 12, 3.73, -6.57, 1, 1, 12, 0.35, -6.31, 1, 1, 12, -12.76, -5.29, 1, 1, 12, -13.09, 0.19, 1, 1, 12, -13.61, 8.83, 1, 2, 12, 14.18, 0, 0.99966, 13, -1.7, -0.03, 3.4E-4, 2, 13, 10.82, 0.55, 0.15254, 14, 0.33, 0.65, 0.84746, 2, 12, 17.2, 0.1, 9.1E-4, 13, 1.32, 0.11, 0.99909, 1, 12, 11.77, 0.01, 1, 1, 12, -0.02, 0.1, 1, 1, 12, 3.22, 0.07, 1, 1, 12, 7.6, 0.04, 1, 1, 13, 6.19, 0.34, 1, 1, 14, 7.46, 0.19, 1 ],
- "hull": 24,
- "edges": [ 42, 44, 44, 46, 18, 20, 20, 22, 32, 48, 48, 8, 30, 32, 48, 52, 30, 52, 8, 10, 52, 10, 32, 34, 54, 48, 34, 54, 8, 6, 54, 6, 40, 42, 44, 56, 40, 56, 0, 46, 56, 0, 38, 40, 58, 56, 38, 58, 0, 2, 58, 2, 34, 36, 36, 38, 54, 60, 60, 58, 36, 60, 2, 4, 4, 6, 60, 4, 26, 50, 50, 14, 26, 28, 28, 30, 50, 62, 62, 52, 28, 62, 10, 12, 12, 14, 62, 12, 22, 24, 24, 26, 20, 64, 64, 50, 24, 64, 14, 16, 16, 18, 64, 16 ],
- "width": 18,
- "height": 53
- }
- },
- "zuoyan1": {
- "zuoyan1": { "x": 4.46, "y": 0.46, "rotation": -90.69, "width": 18, "height": 16 }
- },
- "zuoyan2": {
- "zuoyan2": { "x": 4.46, "y": 0.46, "rotation": -90.69, "width": 20, "height": 16 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 0.1, "name": "biyan" },
- { "time": 0.2, "name": null },
- { "time": 0.8667, "name": "biyan" },
- { "time": 0.9333, "name": null }
- ]
- },
- "meimao1": {
- "attachment": [
- { "time": 0.1, "name": "meimao1" },
- { "time": 0.7667, "name": "meimao1" }
- ]
- },
- "meimao2": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.7667, "name": null }
- ]
- },
- "yaoya": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "yaoya" },
- { "time": 0.9333, "name": null },
- { "time": 1.9, "name": null }
- ]
- },
- "youyan1": {
- "attachment": [
- { "time": 0, "name": "youyan1" },
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": null },
- { "time": 0.3, "name": null },
- { "time": 0.7667, "name": null },
- { "time": 0.9333, "name": "youyan1" },
- { "time": 1.9, "name": "youyan1" }
- ]
- },
- "youyan2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": "youyan2" },
- { "time": 0.3, "name": "youyan2" },
- { "time": 0.7667, "name": "youyan2" },
- { "time": 0.8667, "name": null },
- { "time": 0.9333, "name": null },
- { "time": 1.9, "name": null }
- ]
- },
- "zuiba": {
- "attachment": [
- { "time": 0, "name": "zuiba" },
- { "time": 0.1667, "name": null },
- { "time": 0.9333, "name": "zuiba" },
- { "time": 1.9, "name": "zuiba" }
- ]
- },
- "zuoyan1": {
- "attachment": [
- { "time": 0, "name": "zuoyan1" },
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": null },
- { "time": 0.3, "name": null },
- { "time": 0.7667, "name": null },
- { "time": 0.8667, "name": null },
- { "time": 0.9333, "name": "zuoyan1" },
- { "time": 1.9, "name": "zuoyan1" }
- ]
- },
- "zuoyan2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1, "name": null },
- { "time": 0.2, "name": "zuoyan2" },
- { "time": 0.3, "name": "zuoyan2" },
- { "time": 0.7667, "name": "zuoyan2" },
- { "time": 0.8667, "name": null },
- { "time": 0.9333, "name": null },
- { "time": 1.9, "name": null }
- ]
- }
- },
- "bones": {
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -20 },
- { "time": 0.5333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": -4.01 },
- { "time": 0.3, "x": 0, "y": 12.86 },
- { "time": 0.5333, "x": 0, "y": -7.98, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": -7.98 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -4.02 },
- { "time": 0.5333, "angle": -9.04, "curve": "stepped" },
- { "time": 0.6667, "angle": -9.04 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3, "x": 1.96, "y": -0.35 },
- { "time": 0.5333, "x": 4.4, "y": -0.78, "curve": "stepped" },
- { "time": 0.6667, "x": 4.4, "y": -0.78 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": 26.03 },
- { "time": 0.5333, "angle": 8.68 },
- { "time": 0.6667, "angle": 9.67 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.1667,
- "x": -1.91,
- "y": -0.1,
- "curve": [ 0.254, 0, 0.621, 0.47 ]
- },
- {
- "time": 0.3,
- "x": -1.79,
- "y": -0.37,
- "curve": [ 0.369, 0.47, 0.753, 1 ]
- },
- { "time": 0.5333, "x": -1.64, "y": -0.73, "curve": "stepped" },
- {
- "time": 0.6667,
- "x": -1.64,
- "y": -0.73,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0333,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.4,
- "x": 2.56,
- "y": 0.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": 1.85 },
- { "time": 0.5333, "angle": 4.16, "curve": "stepped" },
- { "time": 0.6667, "angle": 4.16 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 22.32 },
- { "time": 0.1667, "angle": 6.94 },
- { "time": 0.3, "angle": 38.4 },
- { "time": 0.5333, "angle": 13.34, "curve": "stepped" },
- { "time": 0.6667, "angle": 13.34 },
- { "time": 1.0333, "angle": 22.32 },
- { "time": 1.4, "angle": 15.36 },
- { "time": 1.9, "angle": 22.32 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 4.55 },
- { "time": 0.1667, "angle": 8.56 },
- { "time": 0.3, "angle": -41.01 },
- { "time": 0.5333, "angle": -30.88 },
- { "time": 0.6667, "angle": -26.14 },
- { "time": 1.0333, "angle": 4.55 },
- { "time": 1.4, "angle": 8.96 },
- { "time": 1.9, "angle": 4.55 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0 },
- { "time": 0.5333, "angle": -17.06, "curve": "stepped" },
- { "time": 0.6667, "angle": -17.06 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": -14 },
- { "time": 0.1667, "angle": -17.25 },
- { "time": 0.3, "angle": 308.32 },
- { "time": 0.5333, "angle": 20.43, "curve": "stepped" },
- { "time": 0.6667, "angle": 20.43 },
- { "time": 1.0333, "angle": -14 },
- { "time": 1.4, "angle": -6.02 },
- { "time": 1.9, "angle": -14 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -35.53 },
- { "time": 0.3, "angle": -54 },
- { "time": 0.5333, "angle": -133.84 },
- { "time": 0.6667, "angle": -140.37 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": -13.26 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0 },
- { "time": 0.5333, "x": 5.26, "y": -3.71, "curve": "stepped" },
- { "time": 0.6667, "x": 5.26, "y": -3.71 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -0.41 },
- { "time": 0.5333, "angle": -0.93, "curve": "stepped" },
- { "time": 0.6667, "angle": -0.93 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -4.29 },
- { "time": 0.5333, "angle": -9.88, "curve": "stepped" },
- { "time": 0.6667, "angle": -9.88 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": -7.71 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -13.89 },
- { "time": 0.5333, "angle": -6.65, "curve": "stepped" },
- { "time": 0.6667, "angle": -6.65 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": -8.44 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -10.14 },
- { "time": 0.5333, "angle": 1.79, "curve": "stepped" },
- { "time": 0.6667, "angle": 1.79 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": 7.49 },
- { "time": 0.5333, "angle": 2.54, "curve": "stepped" },
- { "time": 0.6667, "angle": 2.54 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 4.76 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.2333, "angle": 3.28 },
- { "time": 0.3, "angle": 10.26 },
- { "time": 0.5333, "angle": 6.7, "curve": "stepped" },
- { "time": 0.6667, "angle": 6.7 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 8.93 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.2333, "angle": -0.51 },
- { "time": 0.3, "angle": 6.89 },
- { "time": 0.5333, "angle": 4.38, "curve": "stepped" },
- { "time": 0.6667, "angle": 4.38 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 6.6 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.5333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 4.87 },
- { "time": 0.3, "angle": -2.21 },
- { "time": 0.5333, "angle": -3.14, "curve": "stepped" },
- { "time": 0.6667, "angle": -3.14 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3, "x": 0.04, "y": -1.06 },
- { "time": 0.5333, "x": 0.09, "y": -2.38, "curve": "stepped" },
- { "time": 0.6667, "x": 0.09, "y": -2.38 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.501, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 0.501, "y": 1 },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1 },
- { "time": 0.8667, "x": 0.501, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 0.501, "y": 1 },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.504, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 0.504, "y": 1 },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1 },
- { "time": 0.8667, "x": 0.501, "y": 1 },
- { "time": 0.9333, "x": 0.504, "y": 1 },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -1.58, "y": -0.06, "curve": "stepped" },
- { "time": 1.9, "x": -1.58, "y": -0.06 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -1.96, "y": -0.02, "curve": "stepped" },
- { "time": 0.2, "x": -1.96, "y": -0.02 },
- { "time": 0.3, "x": 0, "y": 0 },
- { "time": 0.7667, "x": -1.96, "y": -0.02, "curve": "stepped" },
- { "time": 0.9333, "x": -1.96, "y": -0.02 },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.38 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -3.38 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -3.38 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.38 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -3.38 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -3.38 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.38 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -3.38 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -3.38 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.97 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 3.97 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 3.97 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.97 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 3.97 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 3.97 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.97 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 3.97 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 3.97 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 19.71 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 19.71 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 19.71 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -6.19 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -6.19 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -6.19 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.29, "y": 0.08 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -0.29, "y": 0.08 },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": -0.29, "y": 0.08 },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 2.78 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 2.78 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 2.78 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 3.38 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 3.38 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 3.38 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.61, "y": 0.33 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -1.61, "y": 0.33 },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": -1.61, "y": 0.33 },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5667, "angle": 0, "curve": "stepped" },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 1.61 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 1.61 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 1.61 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 0.38 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 0.38 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 0.38 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.21, "y": 0.05 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -0.21, "y": 0.05 },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": -0.21, "y": 0.05 },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.36 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 6.36 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 6.36 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.56, "y": 0.34 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -0.56, "y": 0.34 },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": -0.56, "y": 0.34 },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -1.93 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -1.93 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -1.93 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 11.55 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 11.55 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 11.55 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.68, "y": 0.02 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -0.68, "y": 0.02 },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": -0.68, "y": 0.02 },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 2.21 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 2.21 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 2.21 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -6.1 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -6.1 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -6.1 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.91, "y": 0.5 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.5667, "x": -0.91, "y": 0.5 },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": -0.91, "y": 0.5 },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -1.66 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -1.66 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -1.66 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0.27, "y": -0.05 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.5667, "x": 0.27, "y": -0.05 },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": 0.27, "y": -0.05 },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 4.84 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": 4.84 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 4.84 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0.51, "y": -0.11 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.5667, "x": 0.51, "y": -0.11 },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": 0.51, "y": -0.11 },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -19.55 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -19.55 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -19.55 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -4.52 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -4.52 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -4.52 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -4.52 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -4.52 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -4.52 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -19.04 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -19.04 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -19.04 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.77 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -5.77 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -5.77 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -5.77 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.5667, "angle": -5.77 },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -5.77 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -3.07 },
- { "time": 0.5333, "angle": -6.9, "curve": "stepped" },
- { "time": 0.6667, "angle": -6.9 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3, "x": 0.85, "y": 0 },
- { "time": 0.5333, "x": 1.92, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 1.92, "y": 0 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -15.88 },
- { "time": 0.2333, "angle": -63.24 },
- { "time": 0.3, "angle": -80.42 },
- { "time": 0.3667, "angle": -49.31 },
- { "time": 0.5333, "angle": -56.8, "curve": "stepped" },
- { "time": 0.6667, "angle": -56.8 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3, "x": 0.5, "y": 4.5 },
- { "time": 0.3667, "x": 3.68, "y": 8.25 },
- { "time": 0.5333, "x": 1.7, "y": 4.93, "curve": "stepped" },
- { "time": 0.6667, "x": 1.7, "y": 4.93 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -0.77 },
- { "time": 0.3, "angle": 15.85 },
- { "time": 0.5333, "angle": 18.18, "curve": "stepped" },
- { "time": 0.6667, "angle": 18.18 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 1.36, "y": 1.1 },
- { "time": 0.3, "x": 0.47, "y": 1.15 },
- { "time": 0.5333, "x": 3.22, "y": 0.97, "curve": "stepped" },
- { "time": 0.6667, "x": 3.22, "y": 0.97 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 5.34 },
- { "time": 0.3, "angle": 5.62 },
- { "time": 0.5333, "angle": 5.97, "curve": "stepped" },
- { "time": 0.6667, "angle": 5.97 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 5.97 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 1.73, "y": -6.26 },
- { "time": 0.3, "x": 2.03, "y": -1.14 },
- { "time": 0.5333, "x": 1.65, "y": -4.16, "curve": "stepped" },
- { "time": 0.6667, "x": 1.65, "y": -4.16, "curve": "stepped" },
- { "time": 0.8, "x": 1.65, "y": -4.16 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone58": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.3, "angle": 23.8 },
- { "time": 0.5333, "angle": 6.71, "curve": "stepped" },
- { "time": 0.6667, "angle": 6.71 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 15.21 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone60": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.3, "angle": 17.03 },
- { "time": 0.5333, "angle": 7.76, "curve": "stepped" },
- { "time": 0.6667, "angle": 7.76 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 3.61 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0 },
- { "time": 0.5333, "x": -2.31, "y": -2.29, "curve": "stepped" },
- { "time": 0.6667, "x": -2.31, "y": -2.29 },
- { "time": 0.8, "x": -4.79, "y": -0.33 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone61": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.3, "angle": 17.03 },
- { "time": 0.5333, "angle": -8.9, "curve": "stepped" },
- { "time": 0.6667, "angle": -8.9 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 3.61 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone62": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -11.81 },
- { "time": 0.3, "angle": 9.97 },
- { "time": 0.5333, "angle": -6.15, "curve": "stepped" },
- { "time": 0.6667, "angle": -6.15 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 3.61 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone63": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3, "angle": 0, "curve": "stepped" },
- { "time": 0.5333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 0.632, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 0.632, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 0.632, "y": 1 },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone59": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.3, "angle": 23.8 },
- { "time": 0.5333, "angle": 6.71, "curve": "stepped" },
- { "time": 0.6667, "angle": 6.71 },
- { "time": 1.0333, "angle": 0 },
- { "time": 1.4, "angle": 15.21 },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.6667, "x": 0, "y": -1.86 }
- ],
- "scale": [
- { "time": 0.7333, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 7.52 },
- { "time": 0.3, "angle": 30.73 },
- { "time": 0.5333, "angle": 12.48, "curve": "stepped" },
- { "time": 0.6667, "angle": 12.48 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -2.21, "y": -0.15 },
- { "time": 0.3, "x": -1.01, "y": -0.05 },
- { "time": 0.5333, "x": -0.5, "y": 0.13, "curve": "stepped" },
- { "time": 0.6667, "x": -0.5, "y": 0.13 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 25.02 },
- { "time": 0.2333, "angle": 44.65 },
- { "time": 0.3, "angle": 11.49 },
- { "time": 0.3667, "angle": 47.88 },
- { "time": 0.4, "angle": 53.35 },
- { "time": 0.5333, "angle": 74.54, "curve": "stepped" },
- { "time": 0.6667, "angle": 74.54 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -3.11, "y": 0.65 },
- { "time": 0.3, "x": 0.67, "y": -0.07 },
- { "time": 0.5333, "x": 2.87, "y": 2.85, "curve": "stepped" },
- { "time": 0.6667, "x": 2.87, "y": 2.85 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -18.3 },
- { "time": 0.3667, "angle": -22.88 },
- { "time": 0.5333, "angle": -20.96 },
- { "time": 0.6667, "angle": -16.45 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- },
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65, "curve": "stepped" },
- { "time": 0.7333, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone56": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3, "angle": -3.06 },
- { "time": 0.4667, "angle": -12.67 },
- { "time": 0.5333, "angle": -27.25, "curve": "stepped" },
- { "time": 0.6667, "angle": -27.25 },
- { "time": 1.0333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.9, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3, "x": -0.75, "y": 0.2 },
- { "time": 0.4667, "x": -1.31, "y": 0.35 },
- { "time": 0.5333, "x": -1.69, "y": 0.45, "curve": "stepped" },
- { "time": 0.6667, "x": -1.69, "y": 0.45 },
- { "time": 1.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "houba": {
- "houba": [
- {
- "time": 0,
- "offset": 136,
- "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
- "curve": "stepped"
- },
- {
- "time": 0.1667,
- "offset": 136,
- "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
- "curve": "stepped"
- },
- {
- "time": 1.0333,
- "offset": 136,
- "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
- "curve": "stepped"
- },
- {
- "time": 1.4,
- "offset": 136,
- "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
- "curve": "stepped"
- },
- {
- "time": 1.9,
- "offset": 136,
- "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ]
- }
- ]
- },
- "shenti": {
- "shenti": [
- { "time": 0, "curve": "stepped" },
- { "time": 0.1667 },
- {
- "time": 0.5333,
- "offset": 116,
- "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ],
- "curve": "stepped"
- },
- {
- "time": 0.6667,
- "offset": 116,
- "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
- },
- { "time": 1.0333 },
- {
- "time": 1.4,
- "offset": 116,
- "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
- },
- { "time": 1.9 }
- ]
- },
- "youwaitao": {
- "youwaitao": [
- { "time": 0, "curve": "stepped" },
- { "time": 0.1667 },
- {
- "time": 0.5333,
- "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ],
- "curve": "stepped"
- },
- {
- "time": 0.6667,
- "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
- },
- { "time": 1.0333 },
- {
- "time": 1.4,
- "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
- },
- { "time": 1.9 }
- ]
- },
- "zuotui": {
- "zuotui": [
- { "time": 0.1667 },
- {
- "time": 0.3,
- "vertices": [ -8.47338, -1.5576, -8.60969, 0.31296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5.57873, -0.14952, -8.47338, -1.5576 ]
- },
- { "time": 0.3667 }
- ]
- },
- "zuowaitao": {
- "zuowaitao": [
- { "time": 0, "curve": "stepped" },
- { "time": 0.1667 },
- {
- "time": 0.5333,
- "offset": 72,
- "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ],
- "curve": "stepped"
- },
- {
- "time": 0.6667,
- "offset": 72,
- "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
- },
- { "time": 1.0333 },
- {
- "time": 1.4,
- "offset": 72,
- "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
- },
- { "time": 1.9 }
- ]
- }
- }
- }
- },
- "walk1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2333, "name": null }
- ]
- },
- "youyan1": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2333, "name": "youyan1" }
- ]
- },
- "zuoyan1": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2333, "name": "zuoyan1" }
- ]
- }
- },
- "bones": {
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 1.51 },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": 1.51 },
- { "time": 0.6667, "x": 0, "y": 0 },
- { "time": 1, "x": 0, "y": 1.51 },
- { "time": 1.1667, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0, "y": 1.51 },
- { "time": 1.6667, "x": 0, "y": 0 },
- { "time": 2, "x": 0, "y": 1.51 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": -1.59 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- {
- "time": 0,
- "angle": 63.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 22.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 63.39,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 22.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 63.39 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- {
- "time": 0,
- "angle": -31.44,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -31.44,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -9,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -31.44 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": -14.39, "curve": "stepped" },
- { "time": 0.1667, "angle": -14.39, "curve": "stepped" },
- { "time": 0.3333, "angle": -14.39, "curve": "stepped" },
- { "time": 0.5, "angle": -14.39, "curve": "stepped" },
- { "time": 0.6667, "angle": -14.39, "curve": "stepped" },
- { "time": 0.8333, "angle": -14.39, "curve": "stepped" },
- { "time": 1, "angle": -14.39, "curve": "stepped" },
- { "time": 1.1667, "angle": -14.39, "curve": "stepped" },
- { "time": 1.3333, "angle": -14.39, "curve": "stepped" },
- { "time": 1.5, "angle": -14.39, "curve": "stepped" },
- { "time": 1.6667, "angle": -14.39, "curve": "stepped" },
- { "time": 1.8333, "angle": -14.39, "curve": "stepped" },
- { "time": 2, "angle": -14.39 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- {
- "time": 0,
- "angle": -48.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -7.48,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -48.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -7.48,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -48.98 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- {
- "time": 0,
- "angle": -19.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -19.12,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -19.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -19.12,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -19.51 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": -9.05, "curve": "stepped" },
- { "time": 0.1667, "angle": -9.05, "curve": "stepped" },
- { "time": 0.3333, "angle": -9.05, "curve": "stepped" },
- { "time": 0.5, "angle": -9.05, "curve": "stepped" },
- { "time": 0.6667, "angle": -9.05, "curve": "stepped" },
- { "time": 0.8333, "angle": -9.05, "curve": "stepped" },
- { "time": 1, "angle": -9.05, "curve": "stepped" },
- { "time": 1.1667, "angle": -9.05, "curve": "stepped" },
- { "time": 1.3333, "angle": -9.05, "curve": "stepped" },
- { "time": 1.5, "angle": -9.05, "curve": "stepped" },
- { "time": 1.6667, "angle": -9.05, "curve": "stepped" },
- { "time": 1.8333, "angle": -9.05, "curve": "stepped" },
- { "time": 2, "angle": -9.05 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -6.34 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.34 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -1.44, "y": -1.02 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 1, "x": -1.44, "y": -1.02 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 2, "x": -1.44, "y": -1.02 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -6.34 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.34 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -6.34 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.34 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 11.95 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 11.95 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -0.04, "y": 3.02 },
- { "time": 0.5, "x": 0.09, "y": -0.38 },
- { "time": 1, "x": -0.04, "y": 3.02 },
- { "time": 1.5, "x": 0.09, "y": -0.38 },
- { "time": 2, "x": -0.04, "y": 3.02 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 5.44 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.44 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 5.44 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.44 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.514, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.514, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.591, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.591, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -0.84, "y": -0.01, "curve": "stepped" },
- { "time": 1.2333, "x": -0.84, "y": -0.01 },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.38 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.38 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.38 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.38 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.38 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.38 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.97 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.97 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.97 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.97 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.97 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.97 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 19.71 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 19.71 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -6.19 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.19 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -0.29, "y": 0.08 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.29, "y": 0.08 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 2.78 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 2.78 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": -10.54 },
- { "time": 0.5, "angle": 3.38 },
- { "time": 1, "angle": -10.54 },
- { "time": 1.5, "angle": 3.38 },
- { "time": 2, "angle": -10.54 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -1.61, "y": 0.33 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": -1.61, "y": 0.33 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 1.61 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 1.61 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": -6.52 },
- { "time": 0.5, "angle": 0.38 },
- { "time": 1, "angle": -6.52 },
- { "time": 1.5, "angle": 0.38 },
- { "time": 2, "angle": -6.52 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -0.21, "y": 0.05 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.21, "y": 0.05 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 6.36 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 6.36 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -0.56, "y": 0.34 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.56, "y": 0.34 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -1.93 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -1.93 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": -10.65 },
- { "time": 0.5, "angle": 11.55 },
- { "time": 1, "angle": -10.65 },
- { "time": 1.5, "angle": 11.55 },
- { "time": 2, "angle": -10.65 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -0.68, "y": 0.02 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.68, "y": 0.02 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 2.21 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 2.21 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -6.1 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.1 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -0.91, "y": 0.5 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.91, "y": 0.5 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -1.66 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -1.66 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0.27, "y": -0.05 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0.27, "y": -0.05 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 4.84 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 4.84 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0.51, "y": -0.11 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0.51, "y": -0.11 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -19.55 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -19.55 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -4.52 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -4.52 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -4.52 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -4.52 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -19.04 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -19.04 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -5.77 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.77 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -5.77 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.77 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": -13.57 },
- { "time": 0.1667, "angle": -3.06 },
- { "time": 0.3333, "angle": 4.99 },
- { "time": 0.5, "angle": 27.27 },
- { "time": 0.6667, "angle": 13.66 },
- { "time": 0.8333, "angle": 0.04 },
- { "time": 1, "angle": -13.57 },
- { "time": 1.1667, "angle": -3.06 },
- { "time": 1.3333, "angle": 4.99 },
- { "time": 1.5, "angle": 27.27 },
- { "time": 1.6667, "angle": 13.66 },
- { "time": 1.8333, "angle": 0.04 },
- { "time": 2, "angle": -13.57 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 4.53, "y": -0.19 },
- { "time": 0.3333, "x": 14.27, "y": -0.68 },
- { "time": 0.5, "x": 19.77, "y": 0.43 },
- { "time": 0.6667, "x": 11.97, "y": 1.56 },
- { "time": 0.8333, "x": 2.78, "y": 1.44 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 4.53, "y": -0.19 },
- { "time": 1.3333, "x": 14.27, "y": -0.68 },
- { "time": 1.5, "x": 19.77, "y": 0.43 },
- { "time": 1.6667, "x": 11.97, "y": 1.56 },
- { "time": 1.8333, "x": 2.78, "y": 1.44 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 0, "angle": 21.47 },
- { "time": 0.1667, "angle": 12 },
- { "time": 0.3333, "angle": -10.75 },
- { "time": 0.5, "angle": -25.93 },
- { "time": 0.6667, "angle": -6.72 },
- { "time": 0.8333, "angle": 7.37 },
- { "time": 1, "angle": 21.47 },
- { "time": 1.1667, "angle": 12 },
- { "time": 1.3333, "angle": -10.75 },
- { "time": 1.5, "angle": -25.93 },
- { "time": 1.6667, "angle": -6.72 },
- { "time": 1.8333, "angle": 7.37 },
- { "time": 2, "angle": 21.47 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -10.1, "y": 1.93 },
- { "time": 0.3333, "x": -16.08, "y": 2.45 },
- { "time": 0.5, "x": -18.74, "y": -0.53 },
- { "time": 0.6667, "x": -14.04, "y": -0.34 },
- { "time": 0.8333, "x": -6.25, "y": -0.18 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": -10.1, "y": 1.93 },
- { "time": 1.3333, "x": -16.08, "y": 2.45 },
- { "time": 1.5, "x": -18.74, "y": -0.53 },
- { "time": 1.6667, "x": -14.04, "y": -0.34 },
- { "time": 1.8333, "x": -6.25, "y": -0.18 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.25 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.25 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -0.99, "y": -0.36 },
- { "time": 0.5, "x": 3.8, "y": 1.07 },
- { "time": 1, "x": -0.99, "y": -0.36 },
- { "time": 1.5, "x": 3.8, "y": 1.07 },
- { "time": 2, "x": -0.99, "y": -0.36 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 0.924 },
- { "time": 0.5, "x": 1, "y": 1 },
- { "time": 1, "x": 1, "y": 0.924 },
- { "time": 1.5, "x": 1, "y": 1 },
- { "time": 2, "x": 1, "y": 0.924 }
- ]
- },
- "bone58": {
- "rotate": [
- { "time": 0, "angle": 2.05 },
- { "time": 0.5, "angle": 22.29 },
- { "time": 1, "angle": 2.05 },
- { "time": 1.5, "angle": 22.29 },
- { "time": 2, "angle": 2.05 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone60": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -1 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -1 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 2, "y": -1.06 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": 2, "y": -1.06 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 1, "y": 0.895 },
- { "time": 0.5, "x": 1, "y": 1 },
- { "time": 0.6667, "x": 1, "y": 0.895 },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1667, "x": 1, "y": 0.895 },
- { "time": 1.5, "x": 1, "y": 1 },
- { "time": 1.6667, "x": 1, "y": 0.895 },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone61": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 18.14 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 18.14 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.5, "x": 1.05, "y": 1 },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.5, "x": 1.05, "y": 1 },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone62": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 18.14 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 18.14 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.5, "x": 1.05, "y": 1 },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.5, "x": 1.05, "y": 1 },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone63": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "bone": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 11.36 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 30.77 },
- { "time": 0.8333, "angle": 21.67 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 11.36 },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 30.77 },
- { "time": 1.8333, "angle": 21.67 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "rotate": [
- { "time": 0, "angle": -4.28 },
- { "time": 0.1667, "angle": -2.97 },
- { "time": 0.3333, "angle": -2.25 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": -10.49 },
- { "time": 0.8333, "angle": 0 },
- { "time": 1, "angle": -4.28 },
- { "time": 1.1667, "angle": -2.97 },
- { "time": 1.3333, "angle": -2.25 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": -10.49 },
- { "time": 1.8333, "angle": 0 },
- { "time": 2, "angle": -4.28 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 27.13 },
- { "time": 0.3333, "angle": 29.96 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 27.13 },
- { "time": 1.3333, "angle": 29.96 },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone59": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 22.29 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 22.29 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "houba": {
- "houba": [
- {
- "time": 0,
- "offset": 136,
- "vertices": [ 2.09681, 3.58011, 2.09681, 3.58011 ]
- }
- ]
- },
- "kudang": {
- "kudang": [
- { "time": 0 },
- {
- "time": 0.1667,
- "vertices": [ -3.75499, 6.44196, -4.11608, 10.75137, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199, -0.26461, 1.9846 ]
- },
- {
- "time": 0.2333,
- "vertices": [ -2.7406, 5.23575, -2.38211, 12.79957, -0.52919, -8.87116, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
- },
- {
- "time": 0.3333,
- "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -0.5895, -4.38849, -1.63749, -3.79898, -0.3275, -0.87601, -0.393, 2.22699 ]
- },
- {
- "time": 0.5,
- "offset": 2,
- "vertices": [ -1.04799, 1.57201, 0, -0.52923, -0.2646, -1.32306, 0, -1.36799 ]
- },
- {
- "time": 0.6667,
- "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -1.1085, -6.04647, -1.4645, -3.55399, -0.3275, -0.786, -0.393, 2.22699 ]
- },
- {
- "time": 0.7333,
- "vertices": [ -2.74056, 6.5588, -2.24982, 10.68265, 0, -7.41579, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
- },
- {
- "time": 0.8333,
- "vertices": [ -3.27499, 2.88197, -2.44532, 7.33599, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199 ]
- },
- { "time": 1 },
- {
- "time": 1.1667,
- "vertices": [ -3.75499, 6.44196, -4.11608, 10.75137, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199, -0.26461, 1.9846 ]
- },
- {
- "time": 1.2333,
- "vertices": [ -2.7406, 5.23575, -2.38211, 12.79957, -0.52919, -8.87116, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
- },
- {
- "time": 1.3333,
- "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -0.5895, -4.38849, -1.63749, -3.79898, -0.3275, -0.87601, -0.393, 2.22699 ]
- },
- {
- "time": 1.5,
- "offset": 2,
- "vertices": [ -1.04799, 1.57201, 0, -0.52923, -0.2646, -1.32306, 0, -1.36799 ]
- },
- {
- "time": 1.6667,
- "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -1.1085, -6.04647, -1.4645, -3.55399, -0.3275, -0.786, -0.393, 2.22699 ]
- },
- {
- "time": 1.7333,
- "vertices": [ -2.74056, 6.5588, -2.24982, 10.68265, 0, -7.41579, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
- },
- {
- "time": 1.8333,
- "vertices": [ -3.27499, 2.88197, -2.44532, 7.33599, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199 ]
- },
- { "time": 2 }
- ]
- },
- "shenti": {
- "shenti": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 58,
- "vertices": [ 0.05843, 1.4268, -0.0238, 1.4278, 0, 0, 0, 0, -0.00494, -0.73229, 0.0122, -0.7322, -0.00494, -0.73229, 0.0122, -0.7322, 0.02032, -0.73202, -0.00494, -0.73229, 0.0122, -0.7322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0092, 1.42796, 0, 0, 0, 0, 1.28471, 0.76095, 1.31014, 0.71623, 1.22298, 0.78897, -0.0238, 1.4278, 0.0092, 1.42796, 0.0092, 1.42796, 0.0092, 1.42796, 1.32684, 1.12387, 1.21618, 1.1969, 1.28735, 1.16893, 1.32684, 1.12387, 1.21618, 1.1969, 0.05843, 1.4268, -0.0238, 1.4278, -0.0238, 1.4278 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 58,
- "vertices": [ 0.05843, 1.4268, -0.0238, 1.4278, 0, 0, 0, 0, -0.0074, -1.09842, 0.0183, -1.09829, -0.0074, -1.09842, 0.0183, -1.09829, 0.03049, -1.09802, -0.0074, -1.09842, 0.0183, -1.09829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0092, 1.42796, 0, 0, 0, 0, 1.27455, 1.12696, 1.31261, 1.08236, 1.21688, 1.15506, -0.0238, 1.4278, 0.0092, 1.42796, 0.0092, 1.42796, 0.0092, 1.42796, 1.32931, 1.49001, 1.21008, 1.56299, 1.27719, 1.53493, 1.32931, 1.49001, 1.21008, 1.56299, 0.05843, 1.4268, -0.0238, 1.4278, -0.0238, 1.4278 ]
- },
- { "time": 2 }
- ]
- },
- "youshou": {
- "youshou": [
- {
- "time": 0,
- "offset": 58,
- "vertices": [ 3.04257, -4.49463, 0.52781, -3.29185 ]
- },
- {
- "time": 0.5,
- "offset": 56,
- "vertices": [ -4.55589, 1.64039, 0.18951, -2.52586, -3.28525, -0.27938 ]
- },
- {
- "time": 1,
- "offset": 56,
- "vertices": [ -4.82079, -0.38274, 0.51251, -4.55801, 0.52781, -3.29185 ]
- },
- {
- "time": 1.5,
- "offset": 56,
- "vertices": [ -4.55589, 1.64039, 0.18951, -2.52586, -3.28525, -0.27938 ]
- },
- {
- "time": 2,
- "offset": 58,
- "vertices": [ 3.04257, -4.49463, 0.52781, -3.29185 ]
- }
- ]
- },
- "youtui": {
- "youtui": [
- {
- "time": 0,
- "offset": 56,
- "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 56,
- "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "offset": 56,
- "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ]
- }
- ]
- },
- "zuotui": {
- "zuotui": [
- {
- "time": 0,
- "offset": 60,
- "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 60,
- "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "offset": 60,
- "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ]
- }
- ]
- }
- }
- }
- }
- }
- }
|