123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235 |
- {
- "skeleton": { "hash": "lAErY9ItMJ/U6a2wQ0w8bchHXDc", "spine": "3.6.53", "width": 169.24, "height": 193, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -3.51, "y": 62.44 },
- { "name": "bone2", "parent": "bone", "length": 15.95, "rotation": 90.99, "y": 2.2 },
- { "name": "bone3", "parent": "bone2", "length": 17.93, "rotation": -5.39, "x": 15.95 },
- { "name": "bone4", "parent": "bone", "length": 8.24, "rotation": -89.01, "x": -0.08, "y": -2.12 },
- { "name": "bone5", "parent": "bone", "length": 21.36, "rotation": -94.19, "x": -7.27, "y": -8.39 },
- { "name": "bone6", "parent": "bone5", "length": 23.51, "rotation": -0.66, "x": 21.36 },
- { "name": "bone7", "parent": "bone6", "length": 13.88, "rotation": -71.54, "x": 25.37, "y": 0.01 },
- { "name": "bone8", "parent": "bone", "length": 22.67, "rotation": -84.97, "x": 12.75, "y": -7.82, "color": "2db3f9ff" },
- { "name": "bone9", "parent": "bone8", "length": 21.33, "rotation": -1.98, "x": 22.82, "y": 0.13, "color": "2db3f9ff" },
- { "name": "bone10", "parent": "bone9", "length": 12.17, "rotation": -76.1, "x": 23.44, "y": -0.4, "color": "2db3f9ff" },
- { "name": "bone11", "parent": "bone3", "length": 17.26, "rotation": 148.59, "x": 20.16, "y": 9.14, "color": "2db4f9ff" },
- { "name": "bone12", "parent": "bone11", "length": 18.39, "rotation": -10.51, "x": 17.26, "color": "2db4f9ff" },
- { "name": "bone13", "parent": "bone12", "length": 13.5, "rotation": 6.73, "x": 18.38, "y": 0.28, "color": "2db4f9ff" },
- { "name": "bone14", "parent": "bone3", "length": 21.31, "rotation": -135.93, "x": 21.99, "y": -18.5 },
- { "name": "bone15", "parent": "bone14", "length": 14.97, "rotation": 0.73, "x": 20.71, "y": -0.25 },
- { "name": "bone16", "parent": "bone15", "length": 13.54, "rotation": -2.59, "x": 14.97 },
- { "name": "bone17", "parent": "bone3", "length": 16.07, "rotation": 176.17, "x": 19.12, "y": 8.29 },
- { "name": "bone18", "parent": "bone17", "length": 12.83, "rotation": -2.55, "x": 16.07 },
- { "name": "bone19", "parent": "bone18", "length": 11.65, "rotation": -9.83, "x": 12.83 },
- { "name": "bone20", "parent": "bone3", "length": 18.98, "rotation": -170.46, "x": 20.84, "y": -10.13 },
- { "name": "bone21", "parent": "bone20", "length": 12.33, "rotation": 3.25, "x": 18.98 },
- { "name": "bone22", "parent": "bone21", "length": 10.56, "rotation": 8.67, "x": 12.45, "y": 0.08 },
- { "name": "bone23", "parent": "bone3", "length": 6.16, "rotation": 4.4, "x": 14.31, "y": -1.85 },
- { "name": "bone24", "parent": "bone3", "length": 61.42, "rotation": 5.76, "x": 22.63, "y": -0.24 },
- { "name": "bone25", "parent": "bone24", "length": 11.02, "rotation": 150.57, "x": 63.69, "y": 19.72 },
- { "name": "bone26", "parent": "bone25", "length": 9.9, "rotation": 6.97, "x": 11.73, "y": 0.38 },
- { "name": "bone27", "parent": "bone26", "length": 9.06, "rotation": 10.8, "x": 10.65, "y": 0.29 },
- { "name": "bone28", "parent": "bone27", "length": 8.8, "rotation": 3.96, "x": 9.85, "y": 0.14 },
- { "name": "bone29", "parent": "bone24", "length": 7.47, "rotation": -140.76, "x": 64.59, "y": 3 },
- { "name": "bone30", "parent": "bone29", "length": 6.88, "rotation": -25.58, "x": 8.17, "y": -0.18 },
- { "name": "bone31", "parent": "bone30", "length": 5.84, "rotation": -11.84, "x": 8.33, "y": -0.22 },
- { "name": "bone32", "parent": "bone24", "length": 10.3, "rotation": -115.51, "x": 71.03, "y": 0.91 },
- { "name": "bone33", "parent": "bone32", "length": 10.11, "rotation": -30.64, "x": 10.94, "y": -0.24 },
- { "name": "bone34", "parent": "bone33", "length": 11.4, "rotation": -12.66, "x": 10.11 },
- { "name": "bone35", "parent": "bone34", "length": 10.95, "rotation": -14.91, "x": 11.55, "y": -0.06 },
- { "name": "bone36", "parent": "bone24", "length": 10.09, "rotation": 118.5, "x": 73.42, "y": 12.03 },
- { "name": "bone37", "parent": "bone36", "length": 11.12, "rotation": 16.91, "x": 10.09 },
- { "name": "bone38", "parent": "bone37", "length": 11.28, "rotation": 22.19, "x": 11.35, "y": 0.22 },
- { "name": "bone39", "parent": "bone38", "length": 9.99, "rotation": 12.64, "x": 11.53, "y": 0.27 },
- { "name": "bone40", "parent": "bone39", "length": 9.28, "rotation": -16.38, "x": 10.31, "y": 0.05 },
- { "name": "bone41", "parent": "bone24", "length": 15.59, "rotation": -138.89, "x": 67.36, "y": -17.64 },
- { "name": "bone42", "parent": "bone41", "length": 11.67, "rotation": -16.98, "x": 15.59 },
- { "name": "bone43", "parent": "bone42", "length": 9.66, "rotation": -2.8, "x": 11.67 },
- { "name": "bone44", "parent": "bone43", "length": 9.44, "rotation": 27.88, "x": 9.81, "y": -0.06 },
- { "name": "bone45", "parent": "bone24", "length": 17.07, "rotation": -86.46, "x": 75.24, "y": 0.16 },
- { "name": "bone46", "parent": "bone45", "length": 13.85, "rotation": -33.56, "x": 17.07 },
- { "name": "bone47", "parent": "bone46", "length": 12.88, "rotation": -21.44, "x": 14.73, "y": -0.26 },
- { "name": "bone48", "parent": "bone47", "length": 13.64, "rotation": -9.98, "x": 13.11, "y": 0.02 },
- { "name": "bone49", "parent": "bone48", "length": 9.26, "rotation": 27.23, "x": 13.64 },
- { "name": "bone50", "parent": "bone24", "length": 11.51, "rotation": 91.06, "x": 77.49, "y": 6.1 },
- { "name": "bone51", "parent": "bone50", "length": 8.27, "rotation": 20.63, "x": 11.51 },
- { "name": "bone52", "parent": "bone51", "length": 7.59, "rotation": -6.94, "x": 8.64, "y": 0.02 },
- { "name": "bone53", "parent": "bone52", "length": 5.83, "rotation": -16.11, "x": 7.9, "y": -0.09 },
- { "name": "bone54", "parent": "bone24", "length": 12.04, "rotation": -2.03, "x": 19.19, "y": -11.94 },
- { "name": "bone55", "parent": "bone24", "length": 13.16, "rotation": -0.14, "x": 18.3, "y": 15.67 },
- { "name": "bone56", "parent": "bone24", "length": 6.58, "rotation": -0.14, "x": 19.13, "y": 3.33 },
- { "name": "bone57", "parent": "bone24", "length": 5.91, "rotation": 4.08, "x": 35.43, "y": 5.46 },
- { "name": "bone58", "parent": "bone24", "length": 6.41, "rotation": -2.16, "x": 6.44, "y": 2.7 },
- { "name": "bone59", "parent": "root", "x": -89.02, "y": 119.96 },
- { "name": "bone60", "parent": "root", "x": 54.94, "y": 124.54 },
- { "name": "bone61", "parent": "root", "x": -67.3, "y": 167.81 },
- { "name": "bone62", "parent": "root", "x": 55.22, "y": 171.32 }
- ],
- "slots": [
- { "name": "zuoshou", "bone": "bone11", "attachment": "zuoshou" },
- { "name": "book", "bone": "bone13", "attachment": "book" },
- { "name": "zuotui", "bone": "bone5", "attachment": "zuotui" },
- { "name": "youtui", "bone": "bone8", "attachment": "youtui" },
- { "name": "kudang", "bone": "bone4", "attachment": "kudang" },
- { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
- { "name": "waitaozuo", "bone": "bone17", "attachment": "waitaozuo" },
- { "name": "waitaoyou", "bone": "bone20", "attachment": "waitaoyou" },
- { "name": "bozigenlingjie", "bone": "bone2", "attachment": "bozigenlingjie" },
- { "name": "youshou", "bone": "bone14", "attachment": "youshou" },
- { "name": "lingjie", "bone": "bone23", "attachment": "lingjie" },
- { "name": "toufa10", "bone": "bone2", "attachment": "toufa10" },
- { "name": "toufa9", "bone": "bone2", "attachment": "toufa9" },
- { "name": "lian", "bone": "bone24", "attachment": "lian" },
- { "name": "zuiba", "bone": "bone58", "attachment": "zuiba" },
- { "name": "bizui", "bone": "bone58" },
- { "name": "zuoyan", "bone": "bone55", "attachment": "zuoyan" },
- { "name": "youyan", "bone": "bone54", "attachment": "youyan" },
- { "name": "biyan", "bone": "bone56" },
- { "name": "meimao", "bone": "bone57", "attachment": "meimao" },
- { "name": "toufa8", "bone": "bone50", "attachment": "toufa8" },
- { "name": "toufa7", "bone": "bone45", "attachment": "toufa7" },
- { "name": "toufa6", "bone": "bone2", "attachment": "toufa6" },
- { "name": "toufa5", "bone": "bone36", "attachment": "toufa5" },
- { "name": "toufa4", "bone": "bone41", "attachment": "toufa4" },
- { "name": "toufa3", "bone": "bone32", "attachment": "toufa3" },
- { "name": "toufa2", "bone": "bone29", "attachment": "toufa2" },
- { "name": "toufa1", "bone": "bone25", "attachment": "toufa1" },
- { "name": "fuhao16", "bone": "bone62", "attachment": "fuhao5" },
- { "name": "fuhao7", "bone": "bone60", "attachment": "fuhao4" },
- { "name": "fuhao14", "bone": "bone61", "attachment": "fuhao2" },
- { "name": "fuhao1", "bone": "bone59", "attachment": "fuhao1" }
- ],
- "skins": {
- "default": {
- "biyan": {
- "biyan": { "x": 2.76, "y": -2.58, "rotation": -91.22, "width": 51, "height": 10 }
- },
- "bizui": {
- "bizui": { "x": 2.52, "y": -2.56, "rotation": -89.2, "width": 13, "height": 6 }
- },
- "book": {
- "book": { "x": 17.23, "y": -0.72, "rotation": 129.59, "width": 34, "height": 33 }
- },
- "bozigenlingjie": {
- "bozigenlingjie": { "x": 39.27, "y": -5.12, "rotation": -90.99, "width": 19, "height": 14 }
- },
- "fuhao1": {
- "fuhao1": { "x": 1.65, "y": -2.49, "width": 23, "height": 24 }
- },
- "fuhao14": {
- "fuhao2": { "x": 0.65, "y": -1.97, "width": 21, "height": 28 }
- },
- "fuhao16": {
- "fuhao5": { "x": 1.15, "y": 0.97, "width": 28, "height": 29 }
- },
- "fuhao7": {
- "fuhao4": { "x": 4.15, "y": -0.35, "width": 22, "height": 26 }
- },
- "kudang": {
- "kudang": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ 14.72, 22.77, 14.05, -16.22, -10.95, -15.79, -10.28, 23.21 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 39,
- "height": 25
- }
- },
- "lian": {
- "lian": { "x": 31.71, "y": -6.5, "rotation": -91.36, "width": 69, "height": 66 }
- },
- "lingjie": {
- "lingjie": { "x": 2.28, "y": 0.23, "rotation": -90, "width": 25, "height": 14 }
- },
- "meimao": {
- "meimao": { "x": 1.27, "y": -3.18, "rotation": -95.44, "width": 39, "height": 8 }
- },
- "shenti": {
- "shenti": {
- "type": "mesh",
- "uvs": [ 1, 0.50627, 1, 0.58621, 1, 0.72151, 1, 1, 0.40498, 1, 0, 1, 0, 0.71946, 0, 0.60261, 0, 0.51241, 0, 0, 0.45245, 0, 1, 0, 0.40929, 0.60056, 0.40799, 0.72171, 0.41512, 0.5195 ],
- "triangles": [ 12, 1, 2, 7, 8, 12, 12, 14, 1, 12, 8, 14, 14, 0, 1, 0, 14, 10, 10, 14, 9, 14, 8, 9, 10, 11, 0, 4, 13, 3, 13, 2, 3, 13, 4, 6, 4, 5, 6, 13, 12, 2, 12, 13, 7, 13, 6, 7 ],
- "vertices": [ 2, 2, 19.73, -22.29, 0.27291, 3, 5.85, -21.83, 0.72709, 2, 2, 16.53, -22.23, 0.39017, 3, 2.66, -22.08, 0.60983, 2, 2, 11.12, -22.14, 0.59754, 3, -2.74, -22.49, 0.40246, 2, 2, -0.02, -21.94, 0.81739, 3, -13.84, -23.35, 0.18261, 1, 2, 0.37, 0.66, 1, 2, 2, 0.63, 16.05, 0.96682, 3, -16.76, 14.54, 0.03318, 2, 2, 11.85, 15.86, 0.69149, 3, -5.57, 15.4, 0.30851, 2, 2, 16.53, 15.78, 0.44406, 3, -0.91, 15.76, 0.55594, 2, 2, 20.13, 15.71, 0.26165, 3, 2.69, 16.04, 0.73835, 2, 2, 40.63, 15.36, 0, 3, 23.12, 17.61, 1, 1, 3, 24.44, 0.47, 1, 2, 2, 39.97, -22.63, 1.0E-5, 3, 26.04, -20.28, 0.99999, 2, 2, 16.34, 0.22, 0.1, 3, 0.37, 0.26, 0.9, 2, 2, 11.5, 0.36, 0.99585, 3, -4.47, -0.06, 0.00415, 2, 2, 19.58, -0.05, 0.00139, 3, 3.62, 0.29, 0.99861 ],
- "hull": 12,
- "edges": [ 6, 8, 8, 10, 18, 20, 20, 22, 14, 24, 24, 2, 10, 12, 12, 14, 8, 26, 26, 24, 12, 26, 2, 4, 4, 6, 26, 4, 14, 16, 16, 18, 20, 28, 28, 24, 16, 28, 2, 0, 0, 22, 28, 0 ],
- "width": 38,
- "height": 40
- }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 0.99999, 0.21652, 1, 0.39582, 0.80557, 0.41286, 0.70418, 0.41991, 0.62932, 0.4846, 0.54533, 0.55717, 0.48709, 0.67377, 0.44548, 0.75705, 0.3824, 0.88694, 0.32748, 1, 0.15502, 1, 0, 1, 0, 0.82624, 0, 0.67381, 0, 0.57638, 0, 0.45067, 0, 0.29506, 0.13099, 0.1861, 0.2016, 0.12737, 0.35472, 0, 0.74922, 0.00786, 1, 0, 0.42279, 0.25894, 0.25941, 0.48531, 0.1931, 0.72343, 0.58961, 0.07936, 0.48316, 0.19396, 0.33239, 0.3842, 0.22349, 0.60918, 0.17691, 0.85672 ],
- "triangles": [ 24, 28, 7, 12, 13, 24, 29, 12, 24, 8, 29, 24, 7, 8, 24, 11, 12, 29, 10, 11, 29, 9, 29, 8, 10, 29, 9, 28, 14, 15, 23, 28, 15, 6, 23, 5, 28, 23, 6, 13, 14, 28, 24, 13, 28, 7, 28, 6, 16, 17, 27, 23, 15, 16, 4, 22, 3, 27, 22, 4, 27, 23, 16, 5, 27, 4, 23, 27, 5, 25, 19, 20, 26, 19, 25, 18, 19, 26, 0, 20, 21, 25, 20, 0, 22, 18, 26, 17, 18, 22, 27, 17, 22, 2, 25, 0, 26, 25, 2, 22, 26, 3, 2, 0, 1, 3, 26, 2 ],
- "vertices": [ 1, 25, 1.22, 12.51, 1, 1, 25, 8.97, 16.64, 1, 1, 25, 12.08, 12.58, 1, 3, 25, 13.63, 10.41, 0.14204, 26, 3.1, 9.73, 0.72785, 27, -5.65, 10.68, 0.13011, 4, 25, 17.34, 10.19, 0.01395, 26, 6.76, 9.05, 0.60019, 27, -2.18, 9.34, 0.38228, 28, -11.37, 10, 0.00358, 3, 26, 10.86, 8.3, 0.21637, 27, 1.71, 7.82, 0.72809, 28, -7.6, 8.22, 0.05554, 3, 26, 16.74, 8.94, 0.00116, 27, 7.6, 7.36, 0.54799, 28, -1.75, 7.35, 0.45086, 2, 27, 11.81, 7.02, 0.12438, 28, 2.42, 6.72, 0.87562, 1, 28, 8.93, 5.8, 1, 1, 28, 14.59, 4.99, 1, 1, 28, 15.09, 0.53, 1, 1, 28, 15.54, -3.47, 1, 2, 27, 17.21, -3.77, 3.3E-4, 28, 7.07, -4.41, 0.99967, 3, 26, 21.3, -2.87, 0.0011, 27, 9.87, -5.1, 0.61195, 28, -0.35, -5.24, 0.38695, 3, 26, 16.85, -4.59, 0.09969, 27, 5.17, -5.96, 0.89295, 28, -5.1, -5.76, 0.00736, 3, 25, 23.58, -5.03, 0.03246, 26, 11.1, -6.81, 0.71449, 27, -0.89, -7.06, 0.25305, 2, 25, 16.85, -8.62, 0.33126, 26, 3.99, -9.56, 0.66874, 2, 25, 10.53, -8.13, 0.81419, 26, -2.22, -8.3, 0.18581, 2, 25, 7.13, -7.86, 0.9758, 26, -5.57, -7.62, 0.0242, 1, 25, -0.25, -7.29, 1, 1, 25, -4.74, 1.94, 1, 1, 25, -8.14, 7.52, 1, 3, 25, 10.11, 0.25, 0.95488, 26, -1.62, 0.06, 0.04497, 27, -12.1, 2.07, 1.5E-4, 2, 26, 10.26, 0.09, 0.5856, 27, -0.43, -0.12, 0.4144, 1, 28, 1.51, 0.02, 1, 1, 25, 0.31, -0.07, 1, 3, 25, 6.56, 0.13, 0.99696, 26, -5.16, 0.38, 0.00302, 27, -15.52, 3.05, 1.0E-5, 2, 26, 4.95, 0.08, 0.99887, 27, -5.64, 0.86, 0.00113, 2, 27, 5.71, 0.05, 0.99941, 28, -4.14, 0.19, 5.9E-4, 1, 28, 8.05, 0.32, 1 ],
- "hull": 22,
- "edges": [ 40, 42, 20, 22, 38, 40, 18, 20, 40, 50, 38, 50, 2, 0, 0, 42, 50, 0, 36, 38, 44, 52, 52, 50, 36, 52, 2, 4, 4, 6, 52, 4, 32, 34, 34, 36, 34, 44, 44, 6, 44, 54, 54, 46, 32, 54, 6, 8, 8, 10, 54, 8, 30, 32, 30, 46, 46, 10, 28, 30, 46, 56, 56, 48, 28, 56, 10, 12, 12, 14, 56, 12, 26, 28, 26, 48, 22, 24, 24, 26, 20, 58, 58, 48, 24, 58, 14, 16, 16, 18, 58, 16 ],
- "width": 26,
- "height": 49
- }
- },
- "toufa10": {
- "toufa10": {
- "type": "mesh",
- "uvs": [ 1, 0.67253, 0.76783, 0.84145, 0.28483, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 4, 5, 0, 1, 5, 2, 3, 4, 1, 2, 4 ],
- "vertices": [ 59.53, -46.98, 49.36, -39.37, 39.95, -23.75, 40.11, -14.64, 101.1, -15.69, 100.55, -47.68 ],
- "hull": 6,
- "edges": [ 6, 8, 8, 10, 4, 6, 4, 2, 0, 10, 2, 0 ],
- "width": 32,
- "height": 61
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 0.94086, 0.2307, 0.99999, 0.3289, 1, 0.53993, 1, 0.72924, 0.90591, 0.99069, 0.74418, 1, 0.41691, 1, 0.27695, 0.93515, 0.15109, 0.87527, 1.0E-5, 0.80682, 0, 0.5989, 0, 0.44062, 0, 0, 0.20828, 0, 0.65009, 0, 0.85054, 0.08069, 0.61736, 0.4251, 0.69509, 0.62372, 0.43902, 0.20633, 0.7251, 0.88487, 0.70425, 0.75368, 0.5379, 0.32763 ],
- "triangles": [ 6, 19, 5, 5, 19, 4, 19, 6, 20, 4, 19, 3, 20, 6, 7, 20, 7, 17, 19, 20, 3, 3, 20, 2, 17, 8, 16, 20, 17, 2, 1, 17, 16, 1, 16, 0, 17, 1, 2, 0, 16, 15, 17, 7, 8, 8, 9, 16, 16, 10, 21, 21, 11, 18, 21, 10, 11, 11, 13, 18, 11, 12, 13, 16, 21, 15, 21, 14, 15, 21, 18, 14, 18, 13, 14, 16, 9, 10 ],
- "vertices": [ 2, 29, 9.14, 8.6, 0.57058, 30, -2.92, 8.34, 0.42942, 3, 29, 12.14, 7.74, 0.32193, 30, 0.17, 8.85, 0.67363, 31, -9.85, 7.21, 0.00444, 3, 29, 16.79, 3.76, 0.0228, 30, 6.08, 7.27, 0.7604, 31, -3.74, 6.87, 0.2168, 2, 30, 11.38, 5.85, 0.20653, 31, 1.74, 6.56, 0.79347, 1, 31, 9.2, 4.08, 1, 2, 29, 23.26, -9.2, 1.0E-5, 31, 9.27, 0.51, 0.99999, 3, 29, 18.57, -14.67, 0.03626, 30, 15.64, -8.58, 0.02861, 31, 8.87, -6.68, 0.93513, 3, 29, 15.14, -15.78, 0.09575, 30, 13.03, -11.07, 0.08361, 31, 6.82, -9.65, 0.82063, 1, 29, 12.02, -16.75, 1, 1, 29, 8.35, -17.98, 1, 1, 29, 3.77, -14.06, 1, 1, 29, 0.29, -11.07, 1, 1, 29, -9.41, -2.76, 1, 1, 29, -6.43, 0.72, 1, 1, 29, -0.11, 8.1, 1, 2, 29, 4.54, 9.93, 0.87534, 30, -7.64, 7.54, 0.12466, 2, 30, 0.68, 0, 0.99998, 31, -7.53, -1.35, 2.0E-5, 1, 30, 6.69, 0.16, 1, 1, 29, 1.41, 0.68, 1, 1, 31, 5.91, 0.28, 1, 1, 31, 2.09, 0.03, 1, 1, 29, 5.5, 0.04, 1 ],
- "hull": 16,
- "edges": [ 24, 26, 32, 34, 8, 10, 22, 24, 26, 36, 22, 36, 26, 28, 36, 28, 28, 30, 10, 12, 18, 32, 16, 18, 16, 34, 34, 2, 10, 38, 12, 38, 6, 8, 38, 6, 12, 14, 14, 16, 34, 40, 40, 38, 14, 40, 2, 4, 4, 6, 40, 4, 18, 20, 20, 22, 32, 42, 42, 36, 20, 42, 42, 30, 2, 0, 0, 30, 32, 0 ],
- "width": 22,
- "height": 29
- }
- },
- "toufa3": {
- "toufa3": {
- "type": "mesh",
- "uvs": [ 0.82569, 0.17866, 0.91367, 0.37001, 0.97, 0.55176, 0.88469, 0.74243, 0.74194, 0.95033, 0.66336, 1, 0.5878, 0.83804, 0.56036, 0.7792, 0.51705, 0.67024, 0.45388, 0.6091, 0.40647, 0.55541, 0.32719, 0.51188, 0.23746, 0.48221, 0.16689, 0.48993, 0, 0.62603, 0, 0.49787, 0, 0.21018, 0.17074, 0, 0.41156, 0, 0.65687, 0.03317, 0.25389, 0.20239, 0.42461, 0.19187, 0.54247, 0.31218, 0.64825, 0.53972, 0.10518, 0.33553, 0.61035, 0.42242, 0.68489, 0.70032, 0.71105, 0.81496 ],
- "triangles": [ 4, 6, 27, 4, 5, 6, 4, 27, 3, 6, 7, 27, 7, 26, 27, 27, 26, 3, 7, 8, 26, 3, 26, 2, 8, 23, 26, 26, 23, 2, 8, 9, 23, 23, 9, 25, 9, 10, 25, 25, 10, 22, 23, 1, 2, 23, 25, 1, 1, 25, 0, 10, 11, 22, 11, 21, 22, 25, 22, 0, 22, 19, 0, 22, 21, 19, 14, 15, 13, 12, 20, 11, 11, 20, 21, 15, 24, 13, 15, 16, 24, 13, 24, 12, 12, 24, 20, 24, 16, 20, 16, 17, 20, 20, 18, 21, 20, 17, 18, 21, 18, 19 ],
- "vertices": [ 2, 33, 8.82, 14.72, 0.66378, 34, -4.49, 14.08, 0.33622, 3, 33, 19.23, 12.21, 0.15822, 34, 6.22, 13.91, 0.8038, 35, -8.75, 12.14, 0.03798, 3, 33, 28.42, 8.83, 0.00355, 34, 15.92, 12.63, 0.55653, 35, 0.96, 13.39, 0.43992, 2, 34, 23.61, 5.28, 0.04299, 35, 10.27, 8.26, 0.95701, 1, 35, 20.13, 0.46, 1, 1, 35, 22.22, -3.39, 1, 1, 35, 13.42, -5.64, 1, 1, 35, 10.22, -6.46, 1, 4, 32, 23.81, -21.08, 0.00178, 33, 21.69, -11.37, 0.0015, 34, 13.79, -8.56, 0.03306, 35, 4.35, -7.63, 0.96365, 4, 32, 19.92, -19.35, 0.01962, 33, 17.46, -11.86, 0.03073, 34, 9.77, -9.96, 0.22922, 35, 0.82, -10.03, 0.72043, 4, 32, 16.83, -17.67, 0.07233, 33, 13.95, -11.99, 0.11577, 34, 6.37, -10.86, 0.38451, 35, -2.23, -11.77, 0.42739, 4, 32, 12.65, -17.06, 0.22699, 33, 10.04, -13.6, 0.24832, 34, 2.91, -13.29, 0.33526, 35, -4.95, -15, 0.18943, 4, 32, 8.33, -17.31, 0.47188, 33, 6.45, -16.01, 0.26439, 34, -0.06, -16.43, 0.19232, 35, -7.02, -18.8, 0.0714, 4, 32, 5.6, -18.97, 0.63409, 33, 4.95, -18.84, 0.21728, 34, -0.91, -19.51, 0.12011, 35, -7.04, -22, 0.02852, 4, 32, 1.64, -28.5, 0.72887, 33, 6.4, -29.05, 0.18286, 34, 2.74, -29.16, 0.08417, 35, -1.03, -30.39, 0.0041, 4, 32, -1.09, -22.42, 0.72867, 33, 0.95, -25.21, 0.18049, 34, -3.41, -26.61, 0.08388, 35, -7.63, -29.5, 0.00697, 4, 32, -7.21, -8.77, 0.92584, 33, -11.27, -16.58, 0.05428, 34, -17.23, -20.87, 0.01966, 35, -22.46, -27.51, 2.2E-4, 1, 32, -4.67, 4.34, 1, 2, 32, 5.22, 8.78, 0.89859, 33, -9.52, 4.85, 0.10141, 3, 32, 16, 11.72, 0.13424, 33, -1.74, 12.87, 0.83455, 34, -14.39, 9.96, 0.03121, 4, 32, 3.05, -3.73, 0.91498, 33, -5.01, -7.02, 0.07052, 34, -13.22, -10.16, 0.01253, 35, -21.34, -16.13, 0.00198, 3, 32, 9.84, -0.09, 0.99986, 34, -10.78, -2.86, 1.1E-4, 35, -20.86, -8.44, 2.0E-5, 1, 33, 7.14, 0.3, 1, 3, 32, 26.42, -12.48, 9.0E-5, 34, 9.79, -0.5, 0.87501, 35, -1.59, -0.88, 0.1249, 4, 32, -0.22, -12.78, 0.78526, 33, -3.21, -16.48, 0.14626, 34, -9.39, -19, 0.05999, 35, -15.37, -23.68, 0.00849, 1, 34, 3.5, 0.26, 1, 1, 35, 6.91, -0.36, 1, 1, 35, 12.97, 0.02, 1 ],
- "hull": 20,
- "edges": [ 40, 42, 42, 44, 38, 0, 0, 2, 2, 4, 28, 30, 28, 26, 10, 8, 30, 32, 32, 34, 30, 48, 48, 40, 32, 48, 48, 26, 34, 40, 24, 26, 40, 24, 34, 36, 36, 38, 36, 42, 20, 22, 22, 24, 42, 22, 38, 44, 44, 20, 44, 50, 50, 46, 0, 50, 16, 18, 18, 20, 50, 18, 16, 46, 46, 2, 52, 46, 4, 52, 14, 16, 52, 14, 10, 12, 12, 14, 8, 54, 54, 52, 12, 54, 4, 6, 6, 8, 54, 6 ],
- "width": 45,
- "height": 52
- }
- },
- "toufa4": {
- "toufa4": {
- "type": "mesh",
- "uvs": [ 0.54834, 0.07274, 0.6628, 0.14046, 0.7429, 0.23129, 0.8066, 0.31808, 0.86931, 0.4921, 0.89554, 0.60935, 0.94407, 0.72966, 1, 0.86835, 1, 1, 0.80473, 1, 0.74705, 0.95141, 0.65942, 0.8776, 0.57675, 0.79887, 0.50402, 0.7296, 0.44135, 0.64927, 0.38495, 0.57697, 0.28819, 0.48307, 0.2134, 0.41048, 0.08998, 0.31284, 0, 0.24166, 0, 0.13992, 0, 0, 0.20937, 0, 0.38495, 0, 0.34751, 0.15229, 0.57015, 0.34804, 0.66144, 0.54691, 0.75878, 0.74931, 0.17024, 0.12969, 0.4788, 0.24272, 0.62809, 0.45302, 0.7058, 0.65271, 0.86542, 0.87649, 0.92664, 0.93267 ],
- "triangles": [ 9, 33, 8, 33, 7, 8, 9, 32, 33, 9, 10, 32, 32, 10, 27, 33, 32, 7, 10, 11, 27, 11, 12, 27, 32, 6, 7, 32, 27, 6, 12, 31, 27, 12, 13, 31, 27, 5, 6, 27, 31, 5, 31, 13, 26, 5, 31, 4, 31, 26, 4, 13, 14, 26, 26, 14, 30, 14, 15, 30, 15, 25, 30, 15, 16, 25, 4, 26, 3, 26, 30, 3, 2, 30, 25, 2, 3, 30, 16, 29, 25, 16, 17, 29, 18, 28, 17, 17, 24, 29, 17, 28, 24, 25, 1, 2, 25, 29, 1, 18, 19, 28, 29, 0, 1, 29, 24, 0, 19, 20, 28, 28, 22, 24, 24, 23, 0, 24, 22, 23, 20, 21, 28, 28, 21, 22 ],
- "vertices": [ 2, 41, 5.14, 7.99, 0.99905, 42, -12.33, 4.59, 9.5E-4, 3, 41, 11.79, 10.44, 0.85821, 42, -6.69, 8.87, 0.14174, 43, -18.76, 7.96, 6.0E-5, 3, 41, 17.98, 10.74, 0.43875, 42, -0.85, 10.97, 0.53663, 43, -13.04, 10.35, 0.02462, 3, 41, 23.42, 10.51, 0.13332, 42, 4.41, 12.34, 0.73326, 43, -7.85, 11.97, 0.13342, 4, 41, 31.91, 7.42, 9.6E-4, 42, 13.44, 11.86, 0.38458, 43, 1.19, 11.93, 0.60623, 44, -2.01, 14.63, 0.00823, 3, 42, 19.14, 10.74, 0.09151, 43, 6.94, 11.09, 0.74317, 44, 2.68, 11.2, 0.16532, 3, 42, 25.5, 10.66, 0.00239, 43, 13.3, 11.32, 0.32354, 44, 8.41, 8.43, 0.67407, 2, 43, 20.62, 11.59, 0.02351, 44, 15.01, 5.25, 0.97649, 1, 44, 19.03, 0.36, 1, 1, 44, 10.73, -6.46, 1, 1, 44, 6.8, -6.67, 1, 3, 42, 25.17, -6.53, 3.6E-4, 43, 13.81, -5.86, 0.02845, 44, 0.83, -6.99, 0.97119, 3, 42, 19.8, -9, 0.06762, 43, 8.57, -8.6, 0.41502, 44, -5.09, -6.96, 0.51736, 4, 41, 26.75, -15.1, 0.00953, 42, 15.08, -11.18, 0.30645, 43, 3.96, -11, 0.493, 44, -10.29, -6.94, 0.19102, 4, 41, 21.58, -15.04, 0.08649, 42, 10.11, -12.64, 0.57828, 43, -0.93, -12.7, 0.27962, 44, -15.4, -6.15, 0.05561, 4, 41, 16.93, -14.98, 0.28208, 42, 5.65, -13.94, 0.60425, 43, -5.33, -14.22, 0.10198, 44, -20, -5.44, 0.01169, 4, 41, 10.01, -15.86, 0.66474, 42, -0.71, -16.8, 0.32513, 43, -11.54, -17.39, 0.01006, 44, -26.97, -5.33, 6.0E-5, 3, 41, 4.66, -16.55, 0.8575, 42, -5.63, -19.02, 0.14232, 43, -16.34, -19.84, 1.8E-4, 2, 41, -3.38, -18.39, 0.97503, 42, -12.78, -23.13, 0.02497, 2, 41, -9.24, -19.73, 0.99508, 42, -17.99, -26.12, 0.00492, 2, 41, -12.85, -16.43, 0.99905, 42, -22.4, -24.02, 9.5E-4, 1, 41, -17.8, -11.9, 1, 1, 41, -10.02, -3.4, 1, 1, 41, -3.5, 3.72, 1, 2, 41, 0.5, -2.74, 0.9949, 42, -13.64, -7.02, 0.0051, 2, 41, 15.7, -0.05, 0.41797, 42, 0.11, -0.02, 0.58203, 2, 42, 10.89, 0.41, 0.94559, 43, -0.79, 0.37, 0.05441, 2, 43, 10.23, 1.56, 0.60536, 44, 1.14, 1.23, 0.39464, 2, 41, -6.88, -9.2, 0.99524, 42, -18.81, -15.36, 0.00476, 2, 41, 8.58, -0.34, 0.99797, 42, -6.61, -2.38, 0.00203, 2, 42, 6.03, 0.69, 0.99857, 43, -5.66, 0.41, 0.00143, 1, 43, 4.83, 0.66, 1, 2, 43, 18.13, 4.61, 0.0021, 44, 9.54, 0.24, 0.9979, 2, 43, 21.92, 6.68, 0.00146, 44, 13.86, 0.3, 0.99854 ],
- "hull": 24,
- "edges": [ 40, 42, 38, 40, 16, 18, 16, 14, 34, 36, 36, 38, 40, 56, 56, 48, 36, 56, 42, 44, 44, 46, 56, 44, 46, 48, 48, 34, 30, 32, 32, 34, 48, 58, 58, 50, 32, 58, 2, 0, 0, 46, 58, 0, 2, 50, 50, 30, 26, 28, 28, 30, 50, 60, 60, 52, 28, 60, 2, 4, 4, 6, 60, 4, 26, 52, 52, 6, 22, 54, 54, 10, 6, 8, 8, 10, 52, 62, 62, 54, 8, 62, 22, 24, 24, 26, 62, 24, 18, 20, 20, 22, 64, 54, 20, 64, 10, 12, 12, 14, 64, 12, 16, 66, 66, 64, 18, 66, 66, 14 ],
- "width": 55,
- "height": 48
- }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 1, 0.30605, 1, 0.4996, 0.89417, 0.58669, 0.77389, 0.60373, 0.71847, 0.66299, 0.66953, 0.75516, 0.62769, 0.88903, 0.55622, 1, 0.42896, 1, 0.3732, 0.99999, 0.41202, 0.86217, 0.41501, 0.71622, 0.42547, 0.53367, 0.45336, 0.33409, 0.51831, 0.16447, 0.61824, 0.05004, 0.73025, 0, 0.83317, 0, 0.90835, 0, 1, 0, 0.69742, 0.17588, 0.55058, 0.4539, 0.52509, 0.60539, 0.49904, 0.77175, 0.80001, 0.09034, 0.86618, 0.03516, 0.61406, 0.29393, 0.45776, 0.90421 ],
- "triangles": [ 5, 23, 22, 10, 11, 23, 6, 23, 5, 27, 10, 23, 27, 23, 6, 9, 10, 27, 8, 9, 27, 7, 27, 6, 8, 27, 7, 4, 22, 21, 11, 12, 22, 5, 22, 4, 23, 11, 22, 12, 13, 21, 22, 12, 21, 3, 4, 21, 26, 14, 20, 13, 14, 26, 21, 13, 26, 26, 3, 21, 2, 3, 26, 25, 17, 18, 24, 16, 17, 24, 17, 25, 20, 15, 16, 20, 16, 24, 14, 15, 20, 25, 18, 19, 0, 25, 19, 24, 25, 0, 1, 20, 24, 26, 20, 2, 24, 0, 1, 20, 1, 2 ],
- "vertices": [ 1, 36, -7.81, 16.56, 1, 1, 36, -2.7, 25.45, 1, 1, 36, 6.39, 25.56, 1, 1, 36, 14.56, 21.91, 1, 5, 36, 19.68, 22.59, 0.06937, 37, 15.75, 18.82, 2.0E-5, 38, 11.1, 15.56, 0.21393, 39, 2.93, 15.02, 0.43767, 40, -11.3, 12.28, 0.279, 4, 36, 25.25, 25.03, 0.01348, 38, 16.96, 13.94, 0.03898, 39, 8.29, 12.15, 0.30535, 40, -5.35, 11.04, 0.64219, 3, 36, 31.47, 29.64, 1.8E-4, 39, 15.76, 10.12, 0.00936, 40, 2.39, 11.2, 0.99046, 1, 40, 9.95, 8.87, 1, 1, 40, 13.89, 0.32, 1, 1, 40, 15.62, -3.43, 1, 3, 38, 29.09, -1.81, 0.00148, 39, 16.68, -5.88, 0.09038, 40, 7.79, -3.88, 0.90814, 3, 38, 21.79, -4.38, 0.13961, 39, 9, -6.79, 0.80243, 40, 0.67, -6.92, 0.05796, 3, 37, 25.61, -1.67, 0.04864, 38, 12.48, -7.13, 0.92404, 39, -0.69, -7.43, 0.02732, 2, 37, 16.49, -7.41, 0.77664, 38, 1.87, -9, 0.22336, 2, 36, 19.37, -7.7, 0.01754, 37, 6.64, -10.06, 0.98246, 2, 36, 9.94, -9.27, 0.56097, 37, -2.84, -8.83, 0.43903, 2, 36, 1.43, -7.45, 0.99171, 37, -10.45, -4.61, 0.00829, 1, 36, -5.18, -3.66, 1, 3, 36, -10, -0.89, 0.99604, 38, -26.74, 16.06, 0.00271, 39, -33.88, 23.79, 0.00125, 3, 36, -15.88, 2.49, 0.99011, 38, -29.18, 22.39, 0.00675, 39, -34.87, 30.5, 0.00314, 2, 36, 8.18, -0.57, 0.99491, 37, -1.99, 0.01, 0.00509, 3, 36, 24.94, 6.8, 0, 37, 16.19, 2.18, 5.5E-4, 38, 5.21, -0.01, 0.99945, 3, 36, 30.57, 12.82, 1.6E-4, 39, 2, 0.42, 0.99265, 40, -8.08, -1.99, 0.00719, 3, 38, 22.31, 2.48, 2.1E-4, 39, 11, -0.2, 0.00273, 40, 0.74, -0.05, 0.99706, 1, 36, -0.66, -0.73, 1, 3, 36, -6.37, -0.82, 0.99753, 38, -23.88, 13.82, 0.00168, 39, -31.58, 20.97, 8.0E-4, 1, 37, 6.79, -0.2, 1, 1, 40, 8.39, 0.12, 1 ],
- "hull": 20,
- "edges": [ 36, 38, 42, 44, 44, 46, 30, 28, 28, 26, 26, 24, 24, 22, 16, 18, 2, 4, 4, 6, 10, 12, 14, 16, 12, 14, 30, 32, 48, 40, 32, 48, 48, 2, 32, 34, 34, 36, 36, 50, 50, 48, 34, 50, 2, 0, 0, 38, 50, 0, 40, 4, 30, 40, 40, 52, 52, 42, 28, 52, 52, 6, 26, 42, 6, 8, 8, 10, 42, 8, 24, 44, 44, 10, 22, 46, 46, 12, 18, 20, 20, 22, 16, 54, 54, 46, 20, 54, 54, 14 ],
- "width": 74,
- "height": 53
- }
- },
- "toufa6": {
- "toufa6": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ 62.69, -39.03, 63, -21.03, 86, -21.43, 85.69, -39.42 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 18,
- "height": 23
- }
- },
- "toufa7": {
- "toufa7": {
- "type": "mesh",
- "uvs": [ 0.65378, 0.10376, 0.80168, 0.24421, 0.91511, 0.43976, 1, 0.67087, 1, 0.78208, 1, 1, 0.59347, 1, 0.53694, 0.9359, 0.46565, 0.85505, 0.39101, 0.77043, 0.36496, 0.57703, 0.35011, 0.50741, 0.33934, 0.45695, 0.27665, 0.44135, 0.22366, 0.45467, 0.15614, 0.47595, 0, 0.63709, 0, 0.55176, 0, 0.24598, 0.08376, 0.11708, 0.15983, 0, 0.36791, 0, 0.49727, 0, 0.16127, 0.24421, 0.37091, 0.22109, 0.52599, 0.32065, 0.64229, 0.48776, 0.73563, 0.67087, 0.09122, 0.37779, 0.29012, 0.23, 0.45107, 0.27255, 0.80515, 0.75743, 0.88707, 0.85941 ],
- "triangles": [ 27, 2, 3, 31, 27, 3, 31, 3, 4, 32, 31, 4, 7, 8, 27, 7, 27, 31, 6, 7, 31, 6, 31, 32, 32, 4, 5, 6, 32, 5, 26, 25, 1, 26, 1, 2, 26, 10, 25, 27, 26, 2, 9, 10, 26, 9, 26, 27, 8, 9, 27, 24, 21, 22, 30, 24, 22, 0, 30, 22, 25, 30, 0, 25, 0, 1, 12, 24, 30, 11, 12, 30, 25, 11, 30, 25, 10, 11, 29, 20, 21, 29, 21, 24, 19, 20, 29, 23, 19, 29, 18, 19, 23, 28, 18, 23, 13, 23, 29, 14, 28, 23, 13, 14, 23, 12, 29, 24, 13, 29, 12, 15, 28, 14, 17, 18, 28, 17, 28, 15, 16, 17, 15 ],
- "vertices": [ 4, 45, 39.73, 4.73, 0.00277, 46, 16.27, 16.47, 0.54178, 47, -4.68, 16.13, 0.34981, 48, -20.31, 12.78, 0.10564, 4, 46, 30.63, 14.24, 0.0553, 47, 9.51, 19.31, 0.37636, 48, -6.89, 18.37, 0.52735, 49, -9.85, 25.73, 0.04099, 3, 47, 24.64, 18.19, 0.02926, 48, 8.2, 19.89, 0.59207, 49, 4.26, 20.18, 0.37867, 2, 48, 24.12, 18.37, 0.0843, 49, 17.73, 11.54, 0.9157, 2, 48, 30.2, 14.88, 0.01063, 49, 21.53, 5.66, 0.98937, 1, 49, 28.97, -5.88, 1, 4, 46, 39.22, -35.33, 0.01267, 47, 35.62, -23.69, 0.12036, 48, 26.28, -19.45, 0.27509, 49, 2.34, -23.08, 0.59187, 4, 46, 33.42, -33.9, 0.02783, 47, 29.69, -24.49, 0.18739, 48, 20.58, -21.26, 0.35294, 49, -3.56, -22.08, 0.43184, 4, 46, 26.09, -32.1, 0.071, 47, 22.22, -25.49, 0.32674, 48, 13.4, -23.54, 0.40177, 49, -10.99, -20.82, 0.2005, 5, 45, 15.72, -35.37, 1.0E-5, 46, 18.43, -30.22, 0.13299, 47, 14.4, -26.53, 0.44957, 48, 5.87, -25.93, 0.3452, 49, -18.77, -19.5, 0.07224, 5, 45, 14.74, -23.05, 0.03692, 46, 10.8, -20.5, 0.33496, 47, 3.75, -20.28, 0.49062, 48, -5.7, -21.61, 0.13405, 49, -27.09, -10.37, 0.00345, 5, 45, 13.96, -18.59, 0.11612, 46, 7.68, -17.21, 0.45268, 47, -0.36, -18.35, 0.37435, 48, -10.08, -20.43, 0.05679, 49, -30.44, -7.31, 5.0E-5, 4, 45, 13.39, -15.35, 0.27893, 46, 5.42, -14.82, 0.48953, 47, -3.34, -16.96, 0.21299, 48, -13.26, -19.57, 0.01855, 4, 45, 8.61, -13.95, 0.66691, 46, 0.66, -16.3, 0.28089, 47, -7.23, -20.08, 0.05096, 48, -16.55, -23.32, 0.00124, 4, 45, 4.42, -14.43, 0.86116, 46, -2.57, -19.02, 0.12645, 47, -9.24, -23.79, 0.01238, 48, -17.88, -27.32, 1.0E-5, 3, 45, -0.95, -15.32, 0.96706, 46, -6.54, -22.73, 0.03224, 47, -11.59, -28.69, 7.0E-4, 2, 45, -13.95, -24.39, 1, 46, -12.36, -37.48, 0, 1, 45, -13.49, -19.04, 1, 1, 45, -11.84, 0.16, 1, 1, 45, -4.64, 7.69, 1, 1, 45, 1.9, 14.53, 1, 2, 45, 18.07, 13.15, 0.73021, 46, -6.43, 11.51, 0.26979, 4, 45, 28.13, 12.28, 0.21506, 46, 2.42, 16.35, 0.76047, 47, -17.52, 10.96, 0.02239, 48, -32.07, 5.46, 0.00209, 2, 45, 0.7, -0.81, 0.99879, 46, -13.2, -9.72, 0.00121, 3, 45, 17.12, -0.75, 0.32392, 46, 0.45, -0.6, 0.67588, 47, -13.16, -5.54, 2.0E-4, 3, 45, 28.63, -8.03, 2.0E-5, 46, 14.07, -0.3, 0.79546, 47, -0.59, -0.28, 0.20452, 2, 46, 27.08, -5.19, 9.0E-5, 48, 0.21, -0.06, 0.99991, 2, 48, 13.84, 0.5, 0.33308, 49, 0.4, 0.35, 0.66692, 2, 45, -5.46, -8.72, 0.99416, 46, -13.95, -19.73, 0.00584, 3, 45, 10.79, -0.77, 0.98767, 46, -4.81, -4.12, 0.01192, 47, -16.77, -10.73, 4.1E-4, 3, 45, 23.07, -4.52, 8.6E-4, 46, 7.49, -0.45, 0.99835, 47, -6.66, -2.82, 7.9E-4, 2, 47, 34.49, -1.22, 7.0E-4, 49, 7.92, -1.28, 0.9993, 1, 49, 16.77, -3.22, 1 ],
- "hull": 23,
- "edges": [ 50, 52, 52, 54, 44, 0, 0, 2, 2, 4, 4, 6, 32, 34, 32, 30, 20, 18, 10, 12, 34, 36, 34, 56, 56, 46, 36, 56, 56, 30, 36, 38, 38, 40, 38, 46, 26, 28, 28, 30, 46, 28, 46, 58, 58, 48, 40, 58, 58, 26, 40, 42, 42, 44, 42, 48, 24, 26, 48, 24, 48, 60, 60, 50, 44, 60, 20, 22, 22, 24, 60, 22, 20, 50, 50, 0, 18, 52, 52, 2, 16, 18, 16, 54, 54, 4, 12, 14, 14, 16, 62, 54, 14, 62, 62, 6, 10, 64, 64, 62, 12, 64, 6, 8, 8, 10, 64, 8 ],
- "width": 78,
- "height": 63
- }
- },
- "toufa8": {
- "toufa8": {
- "type": "mesh",
- "uvs": [ 0.50383, 0.45244, 0.50414, 0.76241, 0.43367, 0.82165, 0.38146, 0.86554, 0.32153, 0.86746, 0.26532, 0.86926, 0.23546, 0.87022, 0.17046, 0.94554, 0.12346, 1, 0.07322, 1, 0, 1, 0, 0.69616, 0, 0.51347, 0.05904, 0.44587, 0.08898, 0.4116, 0.11046, 0.387, 0.15425, 0.26331, 0.18561, 0.17472, 0.24746, 0, 0.31217, 0, 0.38704, 0, 0.50338, 0, 0.29646, 0.41979, 0.20046, 0.57905, 0.11746, 0.71489, 0.42352, 0.4398, 0.35569, 0.42912, 0.2313, 0.52789, 0.14771, 0.66539, 0.07119, 0.70751 ],
- "triangles": [ 29, 24, 9, 29, 9, 10, 10, 11, 29, 29, 13, 24, 29, 11, 12, 13, 29, 12, 24, 13, 14, 24, 7, 8, 9, 24, 8, 6, 7, 28, 24, 28, 7, 14, 28, 24, 28, 15, 23, 15, 28, 14, 23, 5, 6, 5, 27, 4, 23, 6, 28, 5, 23, 27, 23, 16, 27, 17, 22, 27, 16, 23, 15, 27, 16, 17, 26, 3, 4, 22, 26, 4, 22, 4, 27, 2, 26, 25, 2, 3, 26, 1, 25, 0, 1, 2, 25, 25, 21, 0, 26, 20, 25, 25, 20, 21, 20, 26, 19, 19, 26, 22, 19, 22, 18, 18, 22, 17 ],
- "vertices": [ 1, 50, -8.97, 1.44, 1, 1, 50, -8.75, 7.33, 1, 2, 50, -2.43, 8.19, 0.99978, 51, -10.17, 12.58, 2.2E-4, 2, 50, 2.24, 8.82, 0.97326, 51, -5.57, 11.52, 0.02674, 2, 50, 7.57, 8.63, 0.77147, 51, -0.64, 9.47, 0.22853, 3, 50, 12.57, 8.46, 0.32651, 51, 3.97, 7.54, 0.65199, 52, -5.54, 6.9, 0.02149, 3, 50, 15.23, 8.36, 0.11997, 51, 6.43, 6.52, 0.72715, 52, -2.98, 6.18, 0.15288, 4, 50, 21.07, 9.55, 4.6E-4, 51, 12.31, 5.57, 0.1, 52, 2.98, 5.95, 0.89593, 53, -6.41, 4.44, 0.0036, 3, 51, 16.56, 4.88, 2.0E-5, 52, 7.28, 5.78, 0.77882, 53, -2.22, 5.47, 0.22116, 2, 52, 11.58, 4.54, 0.19502, 53, 2.25, 5.47, 0.80498, 1, 53, 8.76, 5.47, 1, 1, 53, 8.76, -0.3, 1, 1, 53, 8.76, -3.77, 1, 2, 52, 9.87, -5.92, 0.02743, 53, 3.51, -5.06, 0.97257, 3, 51, 15.01, -6.61, 0.0098, 52, 7.13, -5.81, 0.23983, 53, 0.85, -5.71, 0.75037, 3, 51, 13.07, -6.29, 0.06607, 52, 5.16, -5.73, 0.48526, 53, -1.07, -6.18, 0.44867, 4, 50, 21.96, -3.46, 0.00199, 51, 8.56, -6.92, 0.51077, 52, 0.76, -6.9, 0.41606, 53, -4.96, -8.53, 0.07118, 4, 50, 19.1, -5.03, 0.05101, 51, 5.33, -7.38, 0.79782, 52, -2.38, -7.75, 0.14013, 53, -7.75, -10.21, 0.01105, 3, 50, 13.46, -8.11, 0.49174, 51, -1.03, -8.28, 0.50766, 52, -8.59, -9.41, 6.0E-4, 2, 50, 7.71, -7.87, 0.92114, 51, -6.33, -6.02, 0.07886, 1, 50, 1.05, -7.59, 1, 1, 50, -9.29, -7.15, 1, 2, 50, 9.44, 0.04, 0.99904, 51, -1.92, 0.77, 9.6E-4, 2, 50, 18.11, 2.7, 4.6E-4, 51, 7.13, 0.21, 0.99954, 1, 52, 6.29, 0.43, 1, 1, 50, -1.84, 0.9, 1, 2, 50, 4.18, 0.44, 0.99957, 51, -6.7, 3, 4.3E-4, 2, 50, 15.32, 1.85, 0.00528, 51, 4.22, 0.39, 0.99472, 1, 52, 3.44, 0.27, 1, 1, 53, 2.43, -0.09, 1 ],
- "hull": 22,
- "edges": [ 0, 42, 20, 22, 22, 24, 0, 2, 40, 42, 0, 50, 40, 50, 2, 4, 4, 6, 50, 4, 36, 38, 38, 40, 44, 52, 52, 50, 38, 52, 52, 6, 6, 8, 44, 8, 36, 44, 34, 36, 44, 54, 54, 46, 34, 54, 8, 10, 10, 12, 54, 10, 30, 32, 32, 34, 32, 46, 46, 12, 46, 56, 56, 48, 30, 56, 12, 14, 14, 16, 56, 14, 48, 16, 24, 26, 22, 58, 58, 48, 26, 58, 16, 18, 18, 20, 58, 18, 26, 28, 28, 30, 28, 48 ],
- "width": 89,
- "height": 19
- }
- },
- "toufa9": {
- "toufa9": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ 52.66, 17.15, 52.87, 29.15, 87.86, 28.55, 87.66, 16.55 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 12,
- "height": 35
- }
- },
- "waitaoyou": {
- "waitaoyou": {
- "type": "mesh",
- "uvs": [ 1, 0.47348, 1, 0.56792, 1, 0.60759, 1, 0.65103, 1, 0.70203, 1, 0.76248, 1, 1, 0.60283, 1, 0, 1, 0, 0.82103, 0, 0.73981, 0, 0.67181, 0, 0.6227, 0, 0.56603, 0, 0.49615, 0, 0, 0.22729, 0, 1, 0, 0.31538, 0.49048, 0.39884, 0.72281, 0.34158, 0.56341, 0.381, 0.67315, 0.36266, 0.62209, 0.46324, 0.81033 ],
- "triangles": [ 4, 19, 3, 23, 19, 4, 5, 23, 4, 8, 9, 23, 7, 23, 5, 8, 23, 7, 7, 5, 6, 13, 18, 20, 20, 0, 1, 22, 20, 1, 2, 22, 1, 12, 13, 20, 12, 20, 22, 21, 22, 2, 11, 12, 22, 3, 21, 2, 11, 22, 21, 19, 21, 3, 10, 11, 21, 10, 21, 19, 9, 10, 19, 9, 19, 23, 18, 16, 17, 0, 18, 17, 14, 15, 16, 14, 16, 18, 20, 18, 0, 13, 14, 18 ],
- "vertices": [ 3, 20, 18.58, 14.91, 0.55426, 21, 0.45, 14.91, 0.22221, 22, -9.63, 16.47, 0.22353, 3, 20, 23.66, 14.46, 0.25311, 21, 5.49, 14.17, 0.27989, 22, -4.75, 14.97, 0.467, 3, 20, 25.79, 14.27, 0.1566, 21, 7.61, 13.86, 0.24617, 22, -2.7, 14.34, 0.59724, 3, 20, 28.13, 14.06, 0.08191, 21, 9.93, 13.51, 0.17721, 22, -0.46, 13.66, 0.74088, 3, 20, 30.87, 13.81, 0.03059, 21, 12.66, 13.11, 0.08642, 22, 2.17, 12.85, 0.88299, 3, 20, 34.12, 13.52, 0.00534, 21, 15.89, 12.64, 0.01797, 22, 5.29, 11.89, 0.97669, 1, 22, 17.55, 8.13, 1, 2, 21, 27.3, 2.12, 0.00455, 22, 14.99, -0.23, 0.99545, 2, 21, 25.36, -11, 0.41542, 22, 11.1, -12.91, 0.58458, 2, 21, 15.8, -9.59, 0.8392, 22, 1.86, -10.07, 0.1608, 2, 21, 11.46, -8.95, 0.99227, 22, -2.33, -8.78, 0.00773, 2, 20, 27.27, -7.96, 0.00251, 21, 7.83, -8.41, 0.99749, 2, 20, 24.63, -7.72, 0.03486, 21, 5.21, -8.03, 0.96514, 2, 20, 21.58, -7.44, 0.17646, 21, 2.18, -7.58, 0.82354, 2, 20, 17.82, -7.11, 0.56479, 21, -1.55, -7.03, 0.43521, 1, 20, -8.86, -4.71, 1, 1, 20, -8.41, 0.27, 1, 2, 20, -6.89, 17.21, 1, 22, -34.07, 23.97, 0, 1, 20, 18.14, -0.17, 1, 1, 21, 11.84, -0.14, 1, 1, 21, 3.14, -0.13, 1, 1, 21, 9.13, -0.13, 1, 1, 21, 6.34, -0.13, 1, 2, 21, 16.72, 0.58, 0.00685, 22, 4.3, -0.16, 0.99315 ],
- "hull": 18,
- "edges": [ 30, 32, 32, 34, 32, 36, 12, 14, 14, 16, 28, 30, 28, 36, 0, 34, 36, 0, 26, 28, 36, 40, 26, 40, 0, 2, 40, 2, 20, 38, 38, 8, 20, 22, 38, 42, 22, 42, 6, 8, 42, 6, 22, 24, 24, 26, 40, 44, 44, 42, 24, 44, 2, 4, 4, 6, 44, 4, 16, 18, 18, 20, 14, 46, 46, 38, 18, 46, 8, 10, 10, 12, 46, 10 ],
- "width": 22,
- "height": 54
- }
- },
- "waitaozuo": {
- "waitaozuo": {
- "type": "mesh",
- "uvs": [ 0.81196, 0.43438, 0.79034, 0.48434, 0.7766, 0.54294, 0.76368, 0.59799, 0.74938, 0.659, 0.73934, 0.70181, 0.72608, 0.77335, 0.68409, 1, 0.19109, 1, 0, 1, 0, 0.78264, 0.07884, 0.69616, 0.13159, 0.6383, 0.15249, 0.59399, 0.17484, 0.54661, 0.2037, 0.48542, 0.22509, 0.44007, 0.23939, 0.38718, 0.34409, 0, 0.63309, 0, 1, 0, 0.53109, 0.46702, 0.44184, 0.69988, 0.54218, 0.41622, 0.50914, 0.52429, 0.46032, 0.65167, 0.48587, 0.58501, 0.40198, 0.74759 ],
- "triangles": [ 27, 12, 22, 11, 12, 27, 27, 22, 6, 8, 9, 10, 8, 11, 27, 8, 10, 11, 7, 27, 6, 8, 27, 7, 24, 16, 21, 15, 16, 24, 2, 21, 1, 24, 21, 2, 26, 15, 24, 14, 15, 26, 3, 24, 2, 26, 24, 3, 25, 14, 26, 13, 14, 25, 4, 26, 3, 25, 26, 4, 22, 13, 25, 12, 13, 22, 5, 25, 4, 22, 25, 5, 6, 22, 5, 23, 18, 19, 17, 18, 23, 0, 19, 20, 23, 19, 0, 21, 17, 23, 16, 17, 21, 1, 23, 0, 21, 23, 1 ],
- "vertices": [ 2, 17, 13.53, 6.51, 0.84258, 18, -2.83, 6.39, 0.15742, 2, 17, 16.22, 6.37, 0.52273, 18, -0.13, 6.38, 0.47727, 2, 17, 19.34, 6.49, 0.1582, 18, 2.98, 6.63, 0.8418, 3, 17, 22.27, 6.6, 0.02269, 18, 5.91, 6.87, 0.96526, 19, -7.99, 5.59, 0.01205, 2, 18, 9.15, 7.14, 0.87715, 19, -4.84, 6.41, 0.12285, 2, 18, 11.42, 7.33, 0.67951, 19, -2.63, 6.98, 0.32049, 2, 18, 15.21, 7.73, 0.2593, 19, 1.03, 8.02, 0.7407, 1, 19, 12.63, 11.31, 1, 1, 19, 16.79, 0.23, 1, 1, 19, 18.41, -4.06, 1, 2, 18, 18.95, -9.3, 0.0317, 19, 7.62, -8.12, 0.9683, 2, 18, 14.09, -8.3, 0.2735, 19, 2.67, -7.96, 0.7265, 2, 18, 10.85, -7.63, 0.62784, 19, -0.65, -7.85, 0.37216, 3, 17, 24.16, -7.94, 0.00233, 18, 8.45, -7.57, 0.8369, 19, -3.02, -8.21, 0.16078, 3, 17, 21.6, -7.77, 0.03216, 18, 5.88, -7.52, 0.92216, 19, -5.56, -8.59, 0.04567, 3, 17, 18.29, -7.55, 0.20107, 18, 2.56, -7.44, 0.79601, 19, -8.84, -9.09, 0.00292, 2, 17, 15.84, -7.39, 0.46226, 18, 0.11, -7.39, 0.53774, 2, 17, 13.02, -7.45, 0.76935, 18, -2.71, -7.58, 0.23065, 1, 17, -7.65, -7.9, 1, 1, 17, -8.64, -1.04, 1, 1, 17, -9.9, 7.68, 1, 2, 17, 16.2, 0.09, 0.39016, 18, 0.13, 0.09, 0.60984, 2, 18, 12.66, 0.3, 0.67161, 19, -0.22, 0.26, 0.32839, 2, 17, 13.5, -0.04, 0.99993, 18, -2.56, -0.15, 7.0E-5, 1, 18, 3.21, 0.14, 1, 1, 18, 10.07, 0.25, 1, 1, 18, 6.48, 0.2, 1, 1, 19, 2.49, 0.26, 1 ],
- "hull": 21,
- "edges": [ 38, 40, 16, 18, 36, 38, 18, 20, 14, 16, 32, 42, 42, 2, 32, 34, 34, 36, 38, 46, 46, 42, 34, 46, 2, 0, 0, 40, 46, 0, 30, 32, 42, 48, 30, 48, 2, 4, 48, 4, 24, 44, 44, 10, 24, 26, 44, 50, 26, 50, 8, 10, 50, 8, 26, 28, 28, 30, 48, 52, 52, 50, 28, 52, 4, 6, 6, 8, 52, 6, 20, 22, 22, 24, 16, 54, 54, 44, 22, 54, 10, 12, 12, 14, 54, 12 ],
- "width": 24,
- "height": 53
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.32469, 0.12334, 0.56061, 0.27929, 0.59798, 0.304, 0.65123, 0.3392, 0.78836, 0.42905, 0.85751, 0.47556, 0.93737, 0.52249, 1, 0.56975, 1, 1, 0.57293, 1, 0.45324, 0.87826, 0.42107, 0.84554, 0.34911, 0.77235, 0.20213, 0.62284, 0.17168, 0.59187, 0.1433, 0.563, 0, 0.41725, 0, 0.19929, 0, 0, 0.13811, 0, 0.36959, 0.41471, 0.64644, 0.66379, 0.43923, 0.47883, 0.40371, 0.44612, 0.5842, 0.61232, 0.68095, 0.70183, 0.2068, 0.23204 ],
- "triangles": [ 9, 25, 8, 25, 7, 8, 25, 6, 7, 9, 10, 25, 10, 21, 25, 10, 11, 21, 25, 5, 6, 25, 21, 5, 11, 24, 21, 11, 12, 24, 12, 22, 24, 12, 13, 22, 21, 4, 5, 21, 24, 4, 13, 23, 22, 13, 14, 23, 24, 3, 4, 24, 22, 3, 14, 15, 20, 14, 20, 23, 20, 15, 26, 22, 2, 3, 22, 23, 2, 23, 1, 2, 23, 20, 1, 15, 16, 26, 16, 17, 26, 26, 0, 20, 20, 0, 1, 26, 18, 19, 26, 19, 0, 26, 17, 18 ],
- "vertices": [ 3, 14, 7.64, 7.62, 0.98456, 15, -12.96, 8.04, 0.01508, 16, -28.26, 6.77, 3.6E-4, 3, 14, 19.28, 9.92, 0.96505, 15, -1.3, 10.19, 0.03414, 16, -16.71, 9.45, 8.1E-4, 3, 14, 21.12, 10.29, 0.89943, 15, 0.55, 10.54, 0.0954, 16, -14.88, 9.87, 0.00518, 3, 14, 23.75, 10.81, 0.73721, 15, 3.18, 11.02, 0.23707, 16, -12.27, 10.48, 0.02572, 3, 14, 30.48, 12.17, 0.28095, 15, 9.93, 12.3, 0.47835, 16, -5.59, 12.06, 0.2407, 3, 14, 33.92, 12.82, 0.14259, 15, 13.38, 12.91, 0.40255, 16, -2.17, 12.82, 0.45486, 3, 14, 37.64, 13.78, 0.06305, 15, 17.11, 13.82, 0.26109, 16, 1.52, 13.9, 0.67586, 3, 14, 40.95, 14.22, 0.0349, 15, 20.43, 14.21, 0.17923, 16, 4.81, 14.44, 0.78588, 1, 16, 21.13, 1.78, 1, 2, 15, 25.36, -11.86, 0.02021, 16, 10.92, -11.38, 0.97979, 2, 15, 17.89, -11.63, 0.2618, 16, 3.44, -11.48, 0.7382, 2, 15, 15.88, -11.56, 0.40195, 16, 1.43, -11.51, 0.59805, 2, 15, 11.38, -11.42, 0.73147, 16, -3.07, -11.58, 0.26853, 3, 14, 23.05, -11.36, 0.01112, 15, 2.2, -11.14, 0.98345, 16, -12.25, -11.71, 0.00543, 3, 14, 21.15, -11.33, 0.0457, 15, 0.3, -11.08, 0.95354, 16, -14.15, -11.73, 7.6E-4, 3, 14, 19.37, -11.3, 0.11019, 15, -1.47, -11.03, 0.88981, 16, -15.93, -11.76, 0, 2, 14, 10.42, -11.13, 0.65562, 15, -10.42, -10.75, 0.34438, 2, 14, 2.37, -4.45, 0.83552, 15, -18.39, -3.97, 0.16448, 1, 14, -5, 1.65, 1, 1, 14, -1.56, 5.8, 1, 1, 14, 19.53, 0.04, 1, 3, 14, 35.62, 0.72, 0.00254, 15, 14.93, 0.78, 0.54241, 16, -0.08, 0.78, 0.45504, 2, 14, 23.63, 0.17, 0.08602, 15, 2.93, 0.38, 0.91398, 1, 14, 21.54, 0.1, 1, 3, 14, 32.17, 0.43, 0.00406, 15, 11.47, 0.54, 0.99163, 16, -3.52, 0.38, 0.0043, 3, 14, 37.89, 0.59, 9.4E-4, 15, 17.19, 0.63, 0.0241, 16, 2.19, 0.73, 0.97495, 1, 14, 8.72, 0.75, 1 ],
- "hull": 20,
- "edges": [ 36, 38, 16, 14, 16, 18, 30, 32, 30, 40, 40, 2, 26, 44, 44, 6, 26, 28, 28, 30, 40, 46, 46, 44, 28, 46, 2, 4, 4, 6, 46, 4, 22, 42, 42, 10, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 6, 8, 8, 10, 48, 8, 18, 20, 20, 22, 16, 50, 50, 42, 20, 50, 10, 12, 12, 14, 50, 12, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0, 32, 34, 34, 36 ],
- "width": 39,
- "height": 48
- }
- },
- "youtui": {
- "youtui": {
- "type": "mesh",
- "uvs": [ 1, 0.37813, 0.99999, 0.44868, 0.99999, 0.50406, 0.99999, 0.71527, 0.99999, 0.75292, 0.99999, 0.79348, 1, 1, 0, 1, 0, 0.87449, 0.34901, 0.79259, 0.33921, 0.75424, 0.32845, 0.71215, 0.28035, 0.52395, 0.26234, 0.4535, 0.25022, 0.40607, 0.14643, 0, 0.53005, 0, 1, 0, 0.62056, 0.4607, 0.67094, 0.8039, 0.66467, 0.76118, 0.65789, 0.71498, 0.62868, 0.51599, 0.61064, 0.41017 ],
- "triangles": [ 7, 8, 9, 7, 9, 19, 7, 19, 6, 0, 18, 23, 1, 18, 0, 1, 22, 18, 2, 22, 1, 12, 13, 18, 12, 18, 22, 11, 12, 22, 21, 22, 2, 11, 22, 21, 3, 21, 2, 3, 20, 21, 10, 11, 21, 4, 20, 3, 10, 21, 20, 9, 10, 20, 4, 19, 20, 5, 19, 4, 9, 20, 19, 19, 5, 6, 17, 23, 16, 14, 15, 16, 23, 14, 16, 17, 0, 23, 13, 14, 23, 13, 23, 18 ],
- "vertices": [ 3, 8, 19.64, 11.51, 0.30724, 9, -3.57, 11.27, 0.69275, 10, -17.81, -23.42, 0, 3, 8, 23.71, 11.16, 0.07702, 9, 0.51, 11.05, 0.92298, 10, -16.62, -19.51, 0, 3, 8, 26.91, 10.87, 0.00714, 9, 3.72, 10.88, 0.99286, 10, -15.68, -16.43, 0, 3, 8, 39.12, 9.8, 1.5E-4, 9, 15.95, 10.23, 0.95406, 10, -12.11, -4.72, 0.04579, 3, 8, 41.29, 9.61, 1.1E-4, 9, 18.13, 10.11, 0.88181, 10, -11.48, -2.63, 0.11808, 3, 8, 43.63, 9.4, 7.0E-5, 9, 20.48, 9.99, 0.75087, 10, -10.79, -0.38, 0.24906, 3, 8, 55.57, 8.35, 1.0E-5, 9, 32.44, 9.35, 0.06883, 10, -7.3, 11.08, 0.93116, 1, 10, 20.44, 2.62, 1, 1, 10, 18.32, -4.34, 1, 3, 8, 41.93, -9.4, 5.8E-4, 9, 19.43, -8.86, 0.36233, 10, 7.25, -5.93, 0.63709, 3, 8, 39.69, -9.49, 0.00556, 9, 17.19, -9.03, 0.64868, 10, 6.88, -8.14, 0.34575, 3, 8, 37.23, -9.58, 0.02085, 9, 14.74, -9.21, 0.81332, 10, 6.46, -10.57, 0.16583, 3, 8, 26.23, -10.02, 0.48955, 9, 3.76, -10.02, 0.51041, 10, 4.61, -21.42, 3.0E-5, 2, 8, 22.12, -10.18, 0.8055, 9, -0.35, -10.33, 0.1945, 2, 8, 19.34, -10.29, 0.93925, 9, -3.11, -10.53, 0.06075, 1, 8, -4.38, -11.22, 1, 1, 8, -3.4, -0.14, 1, 3, 8, -2.21, 13.44, 0.99879, 9, -25.47, 12.44, 0.00121, 10, -24.21, -44.4, 0, 3, 8, 23.44, 0.13, 0.00561, 9, 0.62, 0.03, 0.99439, 10, -5.89, -22.05, 0, 2, 8, 43.4, -0.16, 0, 9, 20.58, 0.42, 1, 2, 8, 40.92, -0.12, 0, 9, 18.09, 0.37, 1, 1, 9, 15.41, 0.32, 1, 2, 9, 3.84, 0.09, 1, 10, -5.18, -18.91, 0, 3, 8, 20.5, 0.1, 0.99562, 9, -2.32, -0.11, 0.00438, 10, -6.47, -24.94, 0 ],
- "hull": 18,
- "edges": [ 12, 14, 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 18, 38, 12, 10, 38, 10, 18, 20, 40, 38, 20, 40, 10, 8, 40, 8, 20, 22, 42, 40, 22, 42, 8, 6, 42, 6, 26, 36, 36, 2, 22, 24, 24, 26, 36, 44, 44, 42, 24, 44, 2, 4, 4, 6, 44, 4, 26, 28, 28, 30, 32, 46, 46, 36, 28, 46, 2, 0, 0, 34, 46, 0 ],
- "width": 29,
- "height": 58
- }
- },
- "youyan": {
- "youyan": { "x": 5.42, "y": -2.7, "rotation": -89.33, "width": 22, "height": 20 }
- },
- "zuiba": {
- "zuiba": { "x": 2.01, "y": -2.07, "rotation": -89.2, "width": 14, "height": 9 }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 0.69968, 0.42541, 0.67161, 0.47744, 0.63749, 0.54065, 0.49605, 0.80273, 0.46377, 0.86254, 0.44034, 0.90596, 0.38959, 1, 0, 1, 0, 0.72008, 0.13713, 0.57089, 0.16379, 0.54188, 0.19593, 0.50692, 0.42696, 0.25556, 0.46017, 0.21943, 0.5027, 0.17316, 0.66186, 0, 0.80529, 0, 0.92927, 0, 0.57191, 0.35408, 0.3045, 0.69908, 0.5425, 0.39203, 0.60615, 0.30213, 0.33906, 0.65449, 0.28359, 0.71974 ],
- "triangles": [ 19, 10, 22, 9, 10, 19, 23, 9, 19, 8, 9, 23, 19, 22, 3, 4, 19, 3, 23, 19, 4, 5, 23, 4, 7, 8, 23, 6, 7, 23, 5, 6, 23, 11, 12, 20, 22, 11, 20, 22, 20, 2, 10, 11, 22, 3, 22, 2, 21, 14, 15, 13, 14, 21, 21, 15, 16, 18, 13, 21, 12, 13, 18, 20, 12, 18, 0, 21, 16, 18, 21, 0, 0, 16, 17, 1, 18, 0, 20, 18, 1, 2, 20, 1 ],
- "vertices": [ 3, 11, 12.86, 8.49, 0.87604, 12, -5.88, 7.54, 0.12384, 13, -23.25, 10.06, 1.2E-4, 3, 11, 15.79, 8.6, 0.65817, 12, -3.02, 8.19, 0.33812, 13, -20.32, 10.36, 0.00371, 3, 11, 19.36, 8.73, 0.31442, 12, 0.47, 8.97, 0.66016, 13, -16.77, 10.73, 0.02542, 2, 12, 14.91, 12.21, 0.28051, 13, -2.05, 12.25, 0.71949, 2, 12, 18.2, 12.95, 0.10312, 13, 1.31, 12.6, 0.89688, 2, 12, 20.6, 13.49, 0.03458, 13, 3.75, 12.86, 0.96542, 2, 12, 25.78, 14.65, 5.0E-5, 13, 9.03, 13.4, 0.99995, 1, 13, 23.43, -4.01, 1, 2, 12, 33.03, -10.47, 0.12512, 13, 13.29, -12.39, 0.87488, 2, 12, 22.44, -10.05, 0.65437, 13, 2.82, -10.73, 0.34563, 2, 12, 20.38, -9.96, 0.80358, 13, 0.78, -10.41, 0.19642, 2, 12, 17.9, -9.86, 0.93383, 13, -1.67, -10.02, 0.06617, 2, 11, 15.64, -9.01, 0.50163, 12, 0.05, -9.15, 0.49837, 2, 11, 13.13, -8.44, 0.72908, 12, -2.52, -9.05, 0.27092, 2, 11, 9.93, -7.71, 0.91969, 12, -5.81, -8.92, 0.08031, 1, 11, -2.08, -4.99, 1, 1, 11, -6.94, 1.76, 1, 1, 11, -11.15, 7.59, 1, 1, 11, 14.47, 0.52, 1, 1, 13, 1.27, 0.59, 1, 3, 11, 16.92, 0.18, 0.77007, 12, -0.37, 0.11, 0.22989, 13, -18.65, 2.03, 4.0E-5, 1, 11, 11.33, 0.7, 1, 2, 12, 16.68, 0.89, 0.67609, 13, -1.62, 0.8, 0.32391, 1, 13, 2.79, 0.27, 1 ],
- "hull": 18,
- "edges": [ 30, 32, 14, 16, 32, 34, 12, 14, 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, 20, 38, 38, 8, 20, 22, 22, 24, 38, 44, 44, 40, 22, 44, 4, 6, 6, 8, 44, 6, 16, 18, 18, 20, 14, 46, 46, 38, 18, 46, 8, 10, 10, 12, 46, 10 ],
- "width": 58,
- "height": 47
- }
- },
- "zuotui": {
- "zuotui": {
- "type": "mesh",
- "uvs": [ 0.94191, 0.39521, 0.93314, 0.45491, 0.92498, 0.5104, 0.89251, 0.73135, 0.88705, 0.76851, 0.88239, 0.80022, 0.8566, 1, 0, 1, 0, 0.90328, 0.30071, 0.76443, 0.30465, 0.73949, 0.30875, 0.71354, 0.34547, 0.48094, 0.35321, 0.4319, 0.36078, 0.38398, 0.4214, 0, 0.68837, 0, 1, 0, 0.62986, 0.44552, 0.57746, 0.79509, 0.58706, 0.73104, 0.58193, 0.76526, 0.63665, 0.3938, 0.62275, 0.49291 ],
- "triangles": [ 7, 8, 9, 7, 19, 6, 23, 13, 18, 12, 13, 23, 2, 18, 1, 23, 18, 2, 20, 12, 23, 11, 12, 20, 3, 23, 2, 20, 23, 3, 21, 11, 20, 10, 11, 21, 4, 20, 3, 21, 20, 4, 19, 10, 21, 9, 10, 19, 5, 21, 4, 19, 21, 5, 7, 9, 19, 6, 19, 5, 22, 15, 16, 14, 15, 22, 0, 16, 17, 22, 16, 0, 18, 14, 22, 13, 14, 18, 1, 22, 0, 18, 22, 1 ],
- "vertices": [ 2, 5, 17.65, 10.5, 0.78391, 6, -3.83, 10.46, 0.21609, 2, 5, 21.18, 10.45, 0.51691, 6, -0.29, 10.45, 0.48309, 2, 5, 24.47, 10.41, 0.25326, 6, 2.99, 10.44, 0.74674, 2, 6, 16.08, 10.41, 0.9619, 7, -12.8, -5.52, 0.0381, 2, 6, 18.28, 10.41, 0.90259, 7, -12.1, -3.43, 0.09741, 2, 6, 20.16, 10.4, 0.81517, 7, -11.5, -1.65, 0.18483, 2, 6, 31.98, 10.5, 0.09887, 7, -7.85, 9.59, 0.90113, 1, 7, 21.29, 2.54, 1, 1, 7, 19.95, -3.01, 1, 2, 6, 19.78, -10.06, 0.50841, 7, 7.79, -8.49, 0.49159, 2, 6, 18.3, -10.05, 0.66918, 7, 7.31, -9.89, 0.33082, 2, 6, 16.76, -10.04, 0.78535, 7, 6.81, -11.35, 0.21465, 2, 5, 24.22, -9.95, 0.23881, 6, 2.98, -9.92, 0.76119, 2, 5, 21.31, -9.89, 0.47652, 6, 0.07, -9.89, 0.52348, 2, 5, 18.48, -9.83, 0.71417, 6, -2.77, -9.87, 0.28583, 1, 5, -4.27, -9.37, 1, 1, 5, -4.96, -0.06, 1, 1, 5, -5.75, 10.82, 1, 2, 5, 21.41, -0.18, 0.46609, 6, 0.05, -0.17, 0.53391, 2, 6, 20.76, -0.26, 0.99442, 7, -1.2, -4.46, 0.00558, 2, 6, 16.96, -0.24, 0.99823, 7, -2.42, -8.05, 0.00177, 2, 6, 18.99, -0.25, 0.99651, 7, -1.77, -6.13, 0.00349, 1, 5, 18.35, -0.16, 1, 1, 6, 2.86, -0.19, 1 ],
- "hull": 18,
- "edges": [ 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 12, 14, 18, 38, 12, 10, 38, 10, 22, 40, 40, 6, 18, 20, 20, 22, 38, 42, 42, 40, 20, 42, 6, 8, 8, 10, 42, 8, 26, 36, 36, 2, 26, 28, 28, 30, 32, 44, 44, 36, 28, 44, 2, 0, 0, 34, 44, 0, 22, 24, 24, 26, 36, 46, 46, 40, 24, 46, 2, 4, 4, 6, 46, 4 ],
- "width": 35,
- "height": 59
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 5.94, "y": 0.53, "rotation": -91.22, "width": 20, "height": 18 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2, "name": null },
- { "time": 3.1, "name": "biyan" },
- { "time": 3.2, "name": null },
- { "time": 4.1, "name": "biyan" },
- { "time": 4.2, "name": null }
- ]
- },
- "bizui": {
- "attachment": [
- { "time": 0.5, "name": "bizui" }
- ]
- },
- "fuhao1": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 1.1667, "color": "ffffff00" },
- { "time": 1.2667, "color": "ffffffff", "curve": "stepped" },
- { "time": 1.6667, "color": "ffffffff" },
- { "time": 1.8667, "color": "ffffff00", "curve": "stepped" },
- { "time": 2.0333, "color": "ffffff00", "curve": "stepped" },
- { "time": 2.0667, "color": "ffffff00" },
- { "time": 2.1667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.5667, "color": "ffffffff" },
- { "time": 2.7667, "color": "ffffff00", "curve": "stepped" },
- { "time": 2.8333, "color": "ffffff00", "curve": "stepped" },
- { "time": 2.8667, "color": "ffffff00" },
- { "time": 2.9667, "color": "ffffffff", "curve": "stepped" },
- { "time": 3.3667, "color": "ffffffff" },
- { "time": 3.5667, "color": "ffffff00" }
- ]
- },
- "fuhao7": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.7, "color": "ffffff00" },
- { "time": 0.7333, "color": "ffffffff", "curve": "stepped" },
- { "time": 1.2333, "color": "ffffffff" },
- { "time": 1.3333, "color": "ffffff00", "curve": "stepped" },
- { "time": 1.5667, "color": "ffffff00", "curve": "stepped" },
- { "time": 1.6, "color": "ffffff00" },
- { "time": 1.6333, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.1333, "color": "ffffffff" },
- { "time": 2.2333, "color": "ffffff00", "curve": "stepped" },
- { "time": 2.4333, "color": "ffffff00", "curve": "stepped" },
- { "time": 2.5, "color": "ffffff00" },
- { "time": 2.5333, "color": "ffffffff", "curve": "stepped" },
- { "time": 3.0667, "color": "ffffffff" },
- { "time": 3.2, "color": "ffffff00", "curve": "stepped" },
- { "time": 3.2333, "color": "ffffff00", "curve": "stepped" },
- { "time": 3.3, "color": "ffffff00" },
- { "time": 3.3667, "color": "ffffffff", "curve": "stepped" },
- { "time": 3.9, "color": "ffffffff" },
- { "time": 4, "color": "ffffff00" }
- ]
- },
- "fuhao14": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 1.3333, "color": "ffffff00" },
- { "time": 1.4, "color": "ffffffff", "curve": "stepped" },
- { "time": 1.9333, "color": "ffffffff" },
- { "time": 2.0667, "color": "ffffff00", "curve": "stepped" },
- { "time": 3.1667, "color": "ffffff00", "curve": "stepped" },
- { "time": 3.2, "color": "ffffff00" },
- { "time": 3.2667, "color": "ffffffff", "curve": "stepped" },
- { "time": 3.8, "color": "ffffffff" },
- { "time": 3.9333, "color": "ffffff00" }
- ]
- },
- "fuhao16": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.8, "color": "ffffff00" },
- { "time": 0.9667, "color": "ffffffff", "curve": "stepped" },
- { "time": 1.3333, "color": "ffffffff" },
- { "time": 1.5, "color": "ffffff00", "curve": "stepped" },
- { "time": 1.6667, "color": "ffffff00", "curve": "stepped" },
- { "time": 1.7, "color": "ffffff00" },
- { "time": 1.8667, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.2333, "color": "ffffffff" },
- { "time": 2.4, "color": "ffffff00" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyan" },
- { "time": 3.1, "name": null },
- { "time": 3.2, "name": "youyan" },
- { "time": 4.1, "name": null },
- { "time": 4.2, "name": "youyan" }
- ]
- },
- "zuiba": {
- "attachment": [
- { "time": 0.5, "name": null },
- { "time": 0.6667, "name": "zuiba" },
- { "time": 0.8333, "name": null },
- { "time": 1, "name": "zuiba" },
- { "time": 1.1667, "name": null },
- { "time": 1.3333, "name": "zuiba" },
- { "time": 1.5, "name": null },
- { "time": 1.6667, "name": "zuiba" },
- { "time": 1.8333, "name": null },
- { "time": 2, "name": "zuiba" },
- { "time": 2.1667, "name": null },
- { "time": 2.3333, "name": "zuiba" },
- { "time": 2.5, "name": null },
- { "time": 2.6667, "name": "zuiba" },
- { "time": 2.8333, "name": null },
- { "time": 3, "name": "zuiba" },
- { "time": 3.1667, "name": null },
- { "time": 3.3333, "name": "zuiba" },
- { "time": 3.5, "name": null },
- { "time": 3.6667, "name": "zuiba" },
- { "time": 3.8333, "name": null },
- { "time": 4, "name": "zuiba" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyan" },
- { "time": 3.1, "name": null },
- { "time": 3.2, "name": "zuoyan" },
- { "time": 4.1, "name": null },
- { "time": 4.2, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "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 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 1.17, "y": -0.11 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": 1.17, "y": -0.11 },
- { "time": 2, "x": 0, "y": 0 },
- { "time": 2.5, "x": 1.17, "y": -0.11 },
- { "time": 3, "x": 0, "y": 0 },
- { "time": 3.5, "x": 1.17, "y": -0.11 },
- { "time": 4, "x": 0, "y": 0 },
- { "time": 4.5, "x": 1.17, "y": -0.11 },
- { "time": 5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.5, "x": 1.04, "y": 1 },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.5, "x": 1.04, "y": 1 },
- { "time": 2, "x": 1, "y": 1 },
- { "time": 2.5, "x": 1.04, "y": 1 },
- { "time": 3, "x": 1, "y": 1 },
- { "time": 3.5, "x": 1.04, "y": 1 },
- { "time": 4, "x": 1, "y": 1 },
- { "time": 4.5, "x": 1.04, "y": 1 },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 10.08 },
- { "time": 0.3333, "angle": 14.15, "curve": "stepped" },
- { "time": 0.5333, "angle": 14.15, "curve": "stepped" },
- { "time": 4, "angle": 14.15 },
- { "time": 4.5, "angle": 0.55 },
- { "time": 5, "angle": 10.08 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 5.87 },
- { "time": 0.3333, "angle": -95.14 },
- { "time": 0.5333, "angle": -90.77, "curve": "stepped" },
- { "time": 4, "angle": -90.77 },
- { "time": 4.5, "angle": 17.69 },
- { "time": 5, "angle": 5.87 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.3333, "angle": -38.42 },
- { "time": 0.5333, "angle": -34.05, "curve": "stepped" },
- { "time": 4, "angle": -34.05 },
- { "time": 4.5, "angle": -11.76 },
- { "time": 5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": -21.7 },
- { "time": 0.5, "angle": -12.15 },
- { "time": 1, "angle": -21.7 },
- { "time": 1.5, "angle": -12.15 },
- { "time": 2, "angle": -21.7 },
- { "time": 2.5, "angle": -12.15 },
- { "time": 3, "angle": -21.7 },
- { "time": 3.5, "angle": -12.15 },
- { "time": 4, "angle": -21.7 },
- { "time": 4.5, "angle": -12.15 },
- { "time": 5, "angle": -21.7 }
- ],
- "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": -8.23 },
- { "time": 0.5, "angle": -5.73 },
- { "time": 1, "angle": -8.23 },
- { "time": 1.5, "angle": -5.73 },
- { "time": 2, "angle": -8.23 },
- { "time": 2.5, "angle": -5.73 },
- { "time": 3, "angle": -8.23 },
- { "time": 3.5, "angle": -5.73 },
- { "time": 4, "angle": -8.23 },
- { "time": 4.5, "angle": -5.73 },
- { "time": 5, "angle": -8.23 }
- ],
- "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.34 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.34 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -3.34 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -3.34 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -3.34 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -9.75 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -9.75 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -9.75 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -9.75 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -9.75 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.41 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.41 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -3.41 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -3.41 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -3.41 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 3.26 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 3.26 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 3.26 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 3.26 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 3.26 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 9.51 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 9.51 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 9.51 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 9.51 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 9.51 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 6.25 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 6.25 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 6.25 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 6.25 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 6.25 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -6.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.43 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -6.43 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -6.43 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -6.43 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -5.6 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.6 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -5.6 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -5.6 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -5.6 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -11.89 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -11.89 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -11.89 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -11.89 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -11.89 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 19.73 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 19.73 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 19.73 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 19.73 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 19.73 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 15.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 15.43 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 15.43 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 15.43 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 15.43 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 4.21 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 4.21 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 4.21 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 4.21 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 4.21 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 6.91 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 6.91 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 6.91 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 6.91 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 6.91 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 10.04 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 10.04 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 10.04 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 10.04 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 10.04 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 22.51 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 22.51 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 22.51 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 22.51 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 22.51 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -7.53 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -7.53 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -7.53 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -7.53 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -7.53 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 0.87 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 0.87 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 0.87 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 0.87 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 0.87 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -1.83 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -1.83 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -1.83 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -1.83 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -1.83 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 5.94 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.94 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 5.94 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 5.94 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 5.94 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 4.42 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 4.42 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 4.42 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 4.42 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 4.42 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 6.2 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 6.2 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": 6.2 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": 6.2 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": 6.2 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -1.49 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -1.49 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -1.49 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -1.49 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -1.49 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -7.52 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -7.52 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -7.52 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -7.52 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -7.52 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -6.66 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -6.66 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -6.66 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -6.66 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -6.66 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -11.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -11.43 },
- { "time": 2, "angle": 0 },
- { "time": 2.5, "angle": -11.43 },
- { "time": 3, "angle": 0 },
- { "time": 3.5, "angle": -11.43 },
- { "time": 4, "angle": 0 },
- { "time": 4.5, "angle": -11.43 },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone54": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.2, "angle": 0, "curve": "stepped" },
- { "time": 3.3333, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.1, "angle": 0, "curve": "stepped" },
- { "time": 4.2, "angle": 0, "curve": "stepped" },
- { "time": 4.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "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.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.654, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.654, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 },
- { "time": 3.1, "x": 0.654, "y": 1, "curve": "stepped" },
- { "time": 3.2, "x": 0.654, "y": 1 },
- { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1 },
- { "time": 4.1, "x": 0.654, "y": 1, "curve": "stepped" },
- { "time": 4.2, "x": 0.654, "y": 1 },
- { "time": 4.3333, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.2, "angle": 0, "curve": "stepped" },
- { "time": 3.3333, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.1, "angle": 0, "curve": "stepped" },
- { "time": 4.2, "angle": 0, "curve": "stepped" },
- { "time": 4.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "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.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.585, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.585, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 },
- { "time": 3.1, "x": 0.585, "y": 1, "curve": "stepped" },
- { "time": 3.2, "x": 0.585, "y": 1 },
- { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1 },
- { "time": 4.1, "x": 0.585, "y": 1, "curve": "stepped" },
- { "time": 4.2, "x": 0.585, "y": 1 },
- { "time": 4.3333, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.1, "angle": 0, "curve": "stepped" },
- { "time": 3.2, "angle": 0, "curve": "stepped" },
- { "time": 3.3333, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.1, "angle": 0, "curve": "stepped" },
- { "time": 4.2, "angle": 0, "curve": "stepped" },
- { "time": 4.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
- { "time": 1.2, "x": -1.21, "y": -0.09 },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 },
- { "time": 3.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
- { "time": 3.2, "x": -1.21, "y": -0.09 },
- { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0 },
- { "time": 4.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
- { "time": 4.2, "x": -1.21, "y": -0.09 },
- { "time": 4.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "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.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.3333, "x": 1, "y": 1 }
- ]
- },
- "bone58": {
- "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, "curve": "stepped" },
- { "time": 2.5, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0, "curve": "stepped" },
- { "time": 3.5, "angle": 0, "curve": "stepped" },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "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, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ]
- },
- "bone59": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.8667, "angle": 1.2, "curve": "stepped" },
- { "time": 2.0333, "angle": 1.2 },
- { "time": 2.0667, "angle": 0 },
- { "time": 2.7667, "angle": 1.2, "curve": "stepped" },
- { "time": 2.8333, "angle": 1.2 },
- { "time": 2.8667, "angle": 0 },
- { "time": 3.5667, "angle": 1.2 }
- ],
- "translate": [
- { "time": 0, "x": 25.65, "y": 5.4, "curve": "stepped" },
- { "time": 1.1667, "x": 25.65, "y": 5.4 },
- { "time": 1.4667, "x": -2.17, "y": 0.87 },
- { "time": 1.8667, "x": -31.28, "y": 7.84, "curve": "stepped" },
- { "time": 2.0333, "x": -31.28, "y": 7.84 },
- { "time": 2.0667, "x": 25.65, "y": 5.4 },
- { "time": 2.3667, "x": -2.17, "y": 0.87 },
- { "time": 2.7667, "x": -26.97, "y": 32.94, "curve": "stepped" },
- { "time": 2.8333, "x": -26.97, "y": 32.94 },
- { "time": 2.8667, "x": 25.65, "y": 5.4 },
- { "time": 3.1667, "x": -2.17, "y": 0.87 },
- { "time": 3.5667, "x": -26.97, "y": 32.94 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.5667, "x": 1, "y": 1 }
- ],
- "shear": [
- { "time": 1.8667, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 2.7667, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 2.8333, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 3.5667, "x": 1.2, "y": 0 }
- ]
- },
- "bone60": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.7, "angle": 0 },
- { "time": 1.3333, "angle": 1.2, "curve": "stepped" },
- { "time": 1.5667, "angle": 1.2 },
- { "time": 1.6, "angle": 0 },
- { "time": 2.2333, "angle": 1.2, "curve": "stepped" },
- { "time": 2.4333, "angle": 1.2 },
- { "time": 2.5, "angle": 0 },
- { "time": 3.2, "angle": 1.2, "curve": "stepped" },
- { "time": 3.2333, "angle": 1.2 },
- { "time": 3.3, "angle": 0 },
- { "time": 4, "angle": 1.2 }
- ],
- "translate": [
- { "time": 0, "x": -48.26, "y": -6.24, "curve": "stepped" },
- { "time": 0.7, "x": -48.26, "y": -6.24 },
- { "time": 0.9667, "x": 12.54, "y": -6.97 },
- { "time": 1.3333, "x": 35.3, "y": 12.57, "curve": "stepped" },
- { "time": 1.5667, "x": 35.3, "y": 12.57 },
- { "time": 1.6, "x": -48.26, "y": -6.24 },
- { "time": 1.8667, "x": 12.54, "y": -6.97 },
- { "time": 2.2333, "x": 35.3, "y": 12.57, "curve": "stepped" },
- { "time": 2.4333, "x": 35.3, "y": 12.57 },
- { "time": 2.5, "x": -48.26, "y": -6.24 },
- { "time": 2.8, "x": 12.54, "y": -6.97 },
- { "time": 3.2, "x": 35.3, "y": 12.57, "curve": "stepped" },
- { "time": 3.2333, "x": 35.3, "y": 12.57 },
- { "time": 3.3, "x": -48.26, "y": -6.24 },
- { "time": 3.6, "x": 12.54, "y": -6.97 },
- { "time": 4, "x": 35.3, "y": 12.57 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1 }
- ],
- "shear": [
- { "time": 1.3333, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 1.5667, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 2.2333, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 3.2, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 3.2333, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 4, "x": 1.2, "y": 0 }
- ]
- },
- "bone61": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 },
- { "time": 2.0667, "angle": 1.2, "curve": "stepped" },
- { "time": 3.1667, "angle": 1.2 },
- { "time": 3.2, "angle": 0 },
- { "time": 3.9333, "angle": 1.2 },
- { "time": 4, "angle": 0, "curve": "stepped" },
- { "time": 4.5, "angle": 0, "curve": "stepped" },
- { "time": 5, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 43.69, "y": -37.66, "curve": "stepped" },
- { "time": 1.3333, "x": 43.69, "y": -37.66 },
- { "time": 1.6667, "x": 13.96, "y": 6.14 },
- { "time": 2.0667, "x": 16.68, "y": 67.27, "curve": "stepped" },
- { "time": 3.1667, "x": 16.68, "y": 67.27 },
- { "time": 3.2, "x": 43.69, "y": -37.66 },
- { "time": 3.5333, "x": 13.96, "y": 6.14 },
- { "time": 3.9333, "x": -24.36, "y": 34.1 },
- { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 5, "x": 1, "y": 1 }
- ],
- "shear": [
- { "time": 2.0667, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 3.1667, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 3.9333, "x": 1.2, "y": 0 }
- ]
- },
- "bone62": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.8, "angle": 0 },
- { "time": 1.5, "angle": 1.2, "curve": "stepped" },
- { "time": 1.6667, "angle": 1.2 },
- { "time": 1.7, "angle": 0 },
- { "time": 2.4, "angle": 1.2 }
- ],
- "translate": [
- { "time": 0, "x": -41.86, "y": -54.54, "curve": "stepped" },
- { "time": 0.8, "x": -41.86, "y": -54.54 },
- { "time": 1.1, "x": -10.3, "y": -41.18 },
- { "time": 1.5, "x": 15.78, "y": 1.24, "curve": "stepped" },
- { "time": 1.6667, "x": 15.78, "y": 1.24 },
- { "time": 1.7, "x": -41.86, "y": -54.54 },
- { "time": 2, "x": -10.3, "y": -41.18 },
- { "time": 2.4, "x": 15.78, "y": 1.24 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8, "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.7, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4, "x": 1, "y": 1 }
- ],
- "shear": [
- { "time": 1.5, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 1.2, "y": 0, "curve": "stepped" },
- { "time": 2.4, "x": 1.2, "y": 0 }
- ]
- }
- },
- "deform": {
- "default": {
- "toufa10": {
- "toufa10": [
- { "time": 0 },
- {
- "time": 0.5,
- "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
- },
- { "time": 2 },
- {
- "time": 2.5,
- "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
- },
- { "time": 3 },
- {
- "time": 3.5,
- "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
- },
- { "time": 4 },
- {
- "time": 4.5,
- "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
- },
- { "time": 5 }
- ]
- }
- }
- }
- },
- "walk1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.0667, "name": "biyan" },
- { "time": 1.1333, "name": null }
- ]
- },
- "fuhao1": {
- "color": [
- { "time": 0, "color": "ffffff00" }
- ]
- },
- "fuhao7": {
- "color": [
- { "time": 0, "color": "ffffff00" }
- ]
- },
- "fuhao14": {
- "color": [
- { "time": 0, "color": "ffffff00" }
- ]
- },
- "fuhao16": {
- "color": [
- { "time": 0, "color": "ffffff00" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.0667, "name": null },
- { "time": 1.1333, "name": "youyan" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.0667, "name": null },
- { "time": 1.1333, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "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": 2.18 },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0, "y": 2.18 },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0 },
- { "time": 1, "x": 0, "y": 2.18 },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0, "y": 2.18 },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0 },
- { "time": 2, "x": 0, "y": 2.18 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- {
- "time": 0,
- "angle": -1.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -1.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -1.69 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 1.61, "curve": "stepped" },
- { "time": 1, "angle": 1.61, "curve": "stepped" },
- { "time": 2, "angle": 1.61 }
- ],
- "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 }
- ]
- },
- "bone4": {
- "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 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": -18.5 },
- { "time": 0.1667, "angle": -8.03 },
- { "time": 0.3333, "angle": 7.5 },
- { "time": 0.5, "angle": 22.39 },
- { "time": 0.6667, "angle": 13.32 },
- { "time": 0.8333, "angle": -6.02 },
- { "time": 1, "angle": -18.5 },
- { "time": 1.1667, "angle": -8.03 },
- { "time": 1.3333, "angle": 7.5 },
- { "time": 1.5, "angle": 22.39 },
- { "time": 1.6667, "angle": 8.19 },
- { "time": 1.8333, "angle": -6.02 },
- { "time": 2, "angle": -18.5 }
- ],
- "translate": [
- { "time": 0, "x": -0.82, "y": -1.81 },
- { "time": 0.1667, "x": 2.67, "y": -0.26 },
- { "time": 0.3333, "x": 12.94, "y": -2.35 },
- { "time": 0.5, "x": 19.17, "y": 0.63 },
- { "time": 0.6667, "x": 12.78, "y": 0.42 },
- { "time": 0.8333, "x": 5.18, "y": 2.25 },
- { "time": 1, "x": -0.82, "y": -1.81 },
- { "time": 1.1667, "x": 2.67, "y": -0.26 },
- { "time": 1.3333, "x": 12.94, "y": -2.35 },
- { "time": 1.5, "x": 19.17, "y": 0.63 },
- { "time": 1.6667, "x": 12.78, "y": 0.42 },
- { "time": 1.8333, "x": 5.18, "y": 2.25 },
- { "time": 2, "x": -0.82, "y": -1.81 }
- ],
- "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": 0 },
- { "time": 0.1667, "angle": 14.37 },
- { "time": 0.3333, "angle": 1.27 },
- { "time": 0.5, "angle": 27.15 },
- { "time": 0.6667, "angle": 44.05 },
- { "time": 0.8333, "angle": 29.43 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 14.37 },
- { "time": 1.3333, "angle": 1.27 },
- { "time": 1.5, "angle": 27.15 },
- { "time": 1.6667, "angle": 44.05 },
- { "time": 1.8333, "angle": 29.43 },
- { "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 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.65 },
- { "time": 0.3333, "angle": -13.75 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": -17.88 },
- { "time": 0.8333, "angle": 0 },
- { "time": 1, "angle": -9.16 },
- { "time": 1.1667, "angle": -3.65 },
- { "time": 1.3333, "angle": -13.75 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": -17.88 },
- { "time": 1.8333, "angle": 0 },
- { "time": 2, "angle": -9.16 }
- ],
- "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 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 22.51 },
- { "time": 0.1667, "angle": 5.96 },
- { "time": 0.3333, "angle": -10.59 },
- { "time": 0.5, "angle": -27.14 },
- { "time": 0.6667, "angle": -10.59 },
- { "time": 0.8333, "angle": 9.2 },
- { "time": 1, "angle": 22.51 },
- { "time": 1.1667, "angle": 5.96 },
- { "time": 1.3333, "angle": -10.59 },
- { "time": 1.5, "angle": -27.14 },
- { "time": 1.6667, "angle": -10.59 },
- { "time": 1.8333, "angle": 9.2 },
- { "time": 2, "angle": 22.51 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -6.7, "y": -0.56 },
- { "time": 0.3333, "x": -15.71, "y": -0.36 },
- { "time": 0.5, "x": -17.88, "y": -0.93 },
- { "time": 0.6667, "x": -14.78, "y": -0.45 },
- { "time": 0.8333, "x": -5.79, "y": -0.38 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": -6.7, "y": -0.56 },
- { "time": 1.3333, "x": -15.71, "y": -0.36 },
- { "time": 1.5, "x": -17.88, "y": -0.93 },
- { "time": 1.6667, "x": -14.78, "y": -0.45 },
- { "time": 1.8333, "x": -5.79, "y": -0.38 },
- { "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": 15.57 },
- { "time": 0.1667, "angle": 39.42 },
- { "time": 0.3333, "angle": 37.74 },
- { "time": 0.5, "angle": 4.94 },
- { "time": 0.6667, "angle": 8.49 },
- { "time": 0.8333, "angle": 1.81 },
- { "time": 1, "angle": 15.57 },
- { "time": 1.1667, "angle": 39.42 },
- { "time": 1.3333, "angle": 37.74 },
- { "time": 1.5, "angle": 4.94 },
- { "time": 1.6667, "angle": 8.49 },
- { "time": 1.8333, "angle": 1.81 },
- { "time": 2, "angle": 15.57 }
- ],
- "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 }
- ]
- },
- "bone10": {
- "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 },
- { "time": 0.8333, "angle": 1.8 },
- { "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 },
- { "time": 1.8333, "angle": 1.8 },
- { "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 }
- ]
- },
- "bone11": {
- "rotate": [
- {
- "time": 0,
- "angle": -314.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 12.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -314.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 12.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -314.13 }
- ],
- "translate": [
- {
- "time": 0,
- "x": -3.85,
- "y": -15.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": -0.05,
- "y": -0.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": -3.85,
- "y": -15.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": -0.05,
- "y": -0.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": -3.85, "y": -15.51 }
- ],
- "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 }
- ]
- },
- "bone12": {
- "rotate": [
- {
- "time": 0,
- "angle": -28.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -10.22,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -28.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -10.22,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -28.67 }
- ],
- "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 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -18.7 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -18.7 },
- { "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": -70.19 },
- { "time": 0.1667, "angle": -51.72 },
- { "time": 0.3333, "angle": -28.9 },
- { "time": 0.5, "angle": -10.59 },
- { "time": 0.6667, "angle": -28.9 },
- { "time": 0.8333, "angle": -51.72 },
- { "time": 1, "angle": -70.19 },
- { "time": 1.1667, "angle": -51.72 },
- { "time": 1.3333, "angle": -28.9 },
- { "time": 1.5, "angle": -10.59 },
- { "time": 1.6667, "angle": -28.9 },
- { "time": 1.8333, "angle": -51.72 },
- { "time": 2, "angle": -70.19 }
- ],
- "translate": [
- { "time": 0, "x": -5.94, "y": 7.98 },
- { "time": 0.1667, "x": -4.57, "y": 6.49 },
- { "time": 0.3333, "x": -3.21, "y": 5 },
- { "time": 0.5, "x": -1.85, "y": 3.51 },
- { "time": 0.6667, "x": -3.21, "y": 5 },
- { "time": 0.8333, "x": -4.57, "y": 6.49 },
- { "time": 1, "x": -5.94, "y": 7.98 },
- { "time": 1.1667, "x": -4.57, "y": 6.49 },
- { "time": 1.3333, "x": -3.21, "y": 5 },
- { "time": 1.5, "x": -1.85, "y": 3.51 },
- { "time": 1.6667, "x": -3.21, "y": 5 },
- { "time": 1.8333, "x": -4.57, "y": 6.49 },
- { "time": 2, "x": -5.94, "y": 7.98 }
- ],
- "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 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": -39.25 },
- { "time": 0.1667, "angle": -19.91 },
- { "time": 0.3333, "angle": -12.55 },
- { "time": 0.5, "angle": -19.63 },
- { "time": 0.6667, "angle": -12.55 },
- { "time": 0.8333, "angle": -19.91 },
- { "time": 1, "angle": -39.25 },
- { "time": 1.1667, "angle": -19.91 },
- { "time": 1.3333, "angle": -12.55 },
- { "time": 1.5, "angle": -19.63 },
- { "time": 1.6667, "angle": -12.55 },
- { "time": 1.8333, "angle": -19.91 },
- { "time": 2, "angle": -39.25 }
- ],
- "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 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 4.04 },
- { "time": 0.1667, "angle": -12.68 },
- { "time": 0.3333, "angle": -9.89 },
- { "time": 0.5, "angle": -7.11 },
- { "time": 0.6667, "angle": -9.89 },
- { "time": 0.8333, "angle": -12.68 },
- { "time": 1, "angle": 4.04 },
- { "time": 1.1667, "angle": -12.68 },
- { "time": 1.3333, "angle": -9.89 },
- { "time": 1.5, "angle": -7.11 },
- { "time": 1.6667, "angle": -9.89 },
- { "time": 1.8333, "angle": -12.68 },
- { "time": 2, "angle": 4.04 }
- ],
- "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 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -7.58 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -7.58 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": -0.14, "y": -0.41 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": -0.14, "y": -0.41 },
- { "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 },
- { "time": 0.5, "angle": -0.08 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -0.08 },
- { "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 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -13.58 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -13.58 },
- { "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 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 7.69 },
- { "time": 0.5, "angle": 5.81 },
- { "time": 1, "angle": 7.69 },
- { "time": 1.5, "angle": 5.81 },
- { "time": 2, "angle": 7.69 }
- ],
- "translate": [
- { "time": 0, "x": -1.35, "y": 3.54 },
- { "time": 0.5, "x": -0.63, "y": 0.76 },
- { "time": 1, "x": -1.35, "y": 3.54 },
- { "time": 1.5, "x": -0.63, "y": 0.76 },
- { "time": 2, "x": -1.35, "y": 3.54 }
- ],
- "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 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 5.55 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 5.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 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 9.29 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 9.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 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.2667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 1.63, "y": 4.76 },
- { "time": 0.5, "x": 1.86, "y": 1.79 },
- { "time": 1, "x": 1.63, "y": 4.76 },
- { "time": 1.5, "x": 1.86, "y": 1.79 },
- { "time": 2, "x": 1.63, "y": 4.76 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -0.94 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -0.94 },
- { "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": -5.8 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.8 },
- { "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 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.5,
- "angle": -3.85,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": 0 },
- {
- "time": 1.5,
- "angle": -3.85,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "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": 1.58,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": 0 },
- {
- "time": 1.5,
- "angle": 1.58,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "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": 2.27,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1, "angle": 0 },
- {
- "time": 1.5,
- "angle": 2.27,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "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, "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 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 11.83 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 11.83 },
- { "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": 24.7 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 24.7 },
- { "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 }
- ]
- },
- "bone32": {
- "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 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 8.7 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 8.7 },
- { "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 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 8.7 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 8.7 },
- { "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": 8.7 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 8.7 },
- { "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": 0 },
- { "time": 0.5, "angle": -3 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0.74, "y": 0.4 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0.74, "y": 0.4 },
- { "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": -7.26 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -7.26 },
- { "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 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 1.23 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 1.23 },
- { "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": 0 },
- { "time": 0.5, "angle": -7.26 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -7.26 },
- { "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 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -7.26 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -7.26 },
- { "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": 10.05 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 10.05 },
- { "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 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.01 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.01 },
- { "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 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.01 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.01 },
- { "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 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -3.01 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -3.01 },
- { "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, "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 },
- { "time": 0.5, "x": 0.37, "y": 0.02 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.5, "x": 0.37, "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 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -2.75 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -2.75 },
- { "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": -0.26 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -0.26 },
- { "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": -0.16 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -0.26 },
- { "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": -0.26 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -0.26 },
- { "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": 0 },
- { "time": 0.5, "angle": 9.97 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 9.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 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 9.97 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 9.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 }
- ]
- },
- "bone53": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": 9.97 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 9.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 }
- ]
- },
- "bone54": {
- "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.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "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.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "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.0667, "x": 0.644, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 0.644, "y": 1 },
- { "time": 1.2333, "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, "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.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "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.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "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.0667, "x": 0.622, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 0.622, "y": 1 },
- { "time": 1.2333, "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 }
- ]
- },
- "bone57": {
- "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.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.1333, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "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.0667, "x": -1.13, "y": -0.08, "curve": "stepped" },
- { "time": 1.1333, "x": -1.13, "y": -0.08 },
- { "time": 1.2333, "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.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "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 }
- ]
- },
- "bone58": {
- "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 }
- ],
- "translate": [
- { "time": 0, "x": 25.65, "y": 5.4 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone61": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 43.69, "y": -37.66 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone62": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -41.86, "y": -54.54 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone60": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -48.26, "y": -6.24 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "kudang": {
- "kudang": [
- {
- "time": 0,
- "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
- },
- {
- "time": 0.1667,
- "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
- },
- {
- "time": 0.2333,
- "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
- },
- {
- "time": 0.2667,
- "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
- },
- {
- "time": 0.3333,
- "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
- },
- {
- "time": 0.5,
- "offset": 2,
- "vertices": [ -1.71885, -1.6606 ]
- },
- {
- "time": 0.6667,
- "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
- },
- {
- "time": 0.7333,
- "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
- },
- {
- "time": 0.8333,
- "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
- },
- {
- "time": 1,
- "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
- },
- {
- "time": 1.1667,
- "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
- },
- {
- "time": 1.2333,
- "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
- },
- {
- "time": 1.2667,
- "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
- },
- {
- "time": 1.3333,
- "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
- },
- {
- "time": 1.5,
- "offset": 2,
- "vertices": [ -1.71885, -1.6606 ]
- },
- {
- "time": 1.6667,
- "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
- },
- {
- "time": 1.7333,
- "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
- },
- {
- "time": 1.8333,
- "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
- },
- {
- "time": 2,
- "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
- }
- ]
- },
- "shenti": {
- "shenti": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 16,
- "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 16,
- "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
- },
- { "time": 2 }
- ]
- },
- "toufa1": {
- "toufa1": [
- { "time": 0 },
- {
- "time": 0.5,
- "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
- },
- { "time": 2 }
- ]
- },
- "toufa9": {
- "toufa9": [
- {
- "time": 0,
- "vertices": [ 0.03189, 1.8477, 0.03189, 1.8477, 0.03189, 1.8477, 0.03189, 1.8477 ]
- }
- ]
- },
- "toufa10": {
- "toufa10": [
- { "time": 0 },
- {
- "time": 0.5,
- "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
- },
- { "time": 2 }
- ]
- },
- "waitaoyou": {
- "waitaoyou": [
- {
- "time": 0,
- "offset": 38,
- "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "offset": 38,
- "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "offset": 38,
- "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
- }
- ]
- },
- "waitaozuo": {
- "waitaozuo": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 32,
- "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 32,
- "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
- },
- { "time": 2 }
- ]
- },
- "youshou": {
- "youshou": [
- {
- "time": 0,
- "offset": 84,
- "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 84,
- "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "offset": 84,
- "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ]
- }
- ]
- },
- "youtui": {
- "youtui": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 80,
- "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 80,
- "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
- },
- { "time": 2 }
- ]
- },
- "zuotui": {
- "zuotui": [
- {
- "time": 0,
- "offset": 58,
- "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
- "curve": "stepped"
- },
- {
- "time": 1,
- "offset": 58,
- "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
- "curve": "stepped"
- },
- {
- "time": 2,
- "offset": 58,
- "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ]
- }
- ]
- }
- }
- }
- }
- }
- }
|