123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785 |
- {
- "skeleton": { "hash": "/r3aYkZBh8xtRwmQTJDxa/M5K5c", "spine": "3.6.53", "width": 279.21, "height": 197, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -0.52, "y": -0.04 },
- { "name": "bone2", "parent": "bone", "x": -0.99, "y": 60.46 },
- { "name": "bone3", "parent": "bone2", "length": 16.12, "rotation": 90, "y": 0.25 },
- { "name": "bone4", "parent": "bone3", "length": 26.1, "rotation": -3.81, "x": 16.12 },
- { "name": "bone5", "parent": "bone4", "length": 7.7, "rotation": 0.12, "x": 26.1 },
- { "name": "bone6", "parent": "bone4", "length": 20.47, "rotation": 157.85, "x": 23.67, "y": 10.47, "color": "b71010ff" },
- { "name": "bone7", "parent": "bone6", "length": 17.57, "rotation": -15.71, "x": 20.47, "color": "b71010ff" },
- { "name": "bone8", "parent": "bone7", "length": 13.61, "rotation": -7.14, "x": 17.57, "color": "b71010ff" },
- { "name": "bone9", "parent": "bone4", "length": 21.63, "rotation": -146.97, "x": 24.26, "y": -12.91, "color": "2862cfff" },
- { "name": "bone10", "parent": "bone9", "length": 19.17, "rotation": 8.32, "x": 21.63, "color": "2862cfff" },
- { "name": "bone11", "parent": "bone10", "length": 11.58, "rotation": 2.98, "x": 19.17, "color": "2862cfff" },
- { "name": "bone12", "parent": "bone2", "length": 12.8, "rotation": -90, "x": -0.39, "y": -1.15 },
- { "name": "bone13", "parent": "bone2", "length": 23.06, "rotation": -92.39, "x": -9.83, "y": -6.75, "color": "0b9e1bff" },
- { "name": "bone14", "parent": "bone13", "length": 22.44, "rotation": -0.88, "x": 23.06, "color": "0b9e1bff" },
- { "name": "bone15", "parent": "bone14", "length": 15.37, "rotation": -72.26, "x": 24.68, "y": -0.03, "color": "0b9e1bff" },
- { "name": "bone16", "parent": "bone2", "length": 25.22, "rotation": -84.9, "x": 12.25, "y": -5.79, "color": "ca0eadff" },
- { "name": "bone17", "parent": "bone16", "length": 23.58, "rotation": 2.7, "x": 25.92, "y": 0.05, "color": "ca0eadff" },
- { "name": "bone18", "parent": "bone17", "length": 11.86, "rotation": -87.7, "x": 25.28, "y": -0.7, "color": "ca0eadff" },
- { "name": "bone19", "parent": "bone4", "length": 8.97, "rotation": -173.12, "x": 24, "y": -7.63, "color": "2de9aaff" },
- { "name": "bone20", "parent": "bone19", "length": 9.35, "rotation": 3.82, "x": 8.97, "color": "2de9aaff" },
- { "name": "bone21", "parent": "bone20", "length": 8.89, "rotation": 1.39, "x": 9.35, "color": "2de9aaff" },
- { "name": "bone22", "parent": "bone21", "length": 8.63, "rotation": 2.41, "x": 9.05, "y": -0.02, "color": "2de9aaff" },
- { "name": "bone23", "parent": "bone22", "length": 5.71, "rotation": 0.62, "x": 8.63, "color": "2de9aaff" },
- { "name": "bone24", "parent": "bone23", "length": 5.59, "rotation": 1.93, "x": 5.71, "color": "2de9aaff" },
- { "name": "bone25", "parent": "bone4", "length": 9.01, "rotation": 177.7, "x": 24.17, "y": 9.06, "color": "ecf26fff" },
- { "name": "bone26", "parent": "bone25", "length": 9.33, "rotation": 0.21, "x": 9.01, "color": "ecf26fff" },
- { "name": "bone27", "parent": "bone26", "length": 9.87, "rotation": -2.49, "x": 9.33, "color": "ecf26fff" },
- { "name": "bone28", "parent": "bone27", "length": 8.92, "rotation": -0.9, "x": 9.87, "color": "ecf26fff" },
- { "name": "bone29", "parent": "bone28", "length": 6.6, "rotation": -4.74, "x": 8.92, "color": "ecf26fff" },
- { "name": "bone30", "parent": "bone29", "length": 4.77, "rotation": 0.47, "x": 6.6, "color": "ecf26fff" },
- { "name": "bone31", "parent": "bone5", "length": 63.1, "rotation": 6.16, "x": 6.39, "y": 0.5 },
- { "name": "bone32", "parent": "bone31", "length": 12.05, "rotation": 147.22, "x": 82.08, "y": 8.96, "color": "f66767ff" },
- { "name": "bone33", "parent": "bone32", "length": 12.36, "rotation": 9.06, "x": 12.27, "y": -0.06, "color": "f66767ff" },
- { "name": "bone34", "parent": "bone33", "length": 13.61, "rotation": 3.45, "x": 12.68, "y": -0.39, "color": "f66767ff" },
- { "name": "bone35", "parent": "bone34", "length": 10.99, "rotation": 1.74, "x": 13.92, "y": 0.1, "color": "f66767ff" },
- { "name": "bone36", "parent": "bone31", "length": 12.63, "rotation": 168.78, "x": 83.28, "y": -3.9, "color": "f747b0ff" },
- { "name": "bone37", "parent": "bone36", "length": 12.21, "rotation": -1.83, "x": 12.76, "y": 0.18, "color": "f747b0ff" },
- { "name": "bone38", "parent": "bone37", "length": 9.47, "rotation": 5.73, "x": 12.36, "y": 0.03, "color": "f747b0ff" },
- { "name": "bone39", "parent": "bone38", "length": 8.65, "rotation": 1.66, "x": 10.78, "y": -0.21, "color": "f747b0ff" },
- { "name": "bone40", "parent": "bone31", "length": 13.6, "rotation": -157.41, "x": 81.33, "y": -11.99, "color": "976edbff" },
- { "name": "bone41", "parent": "bone40", "length": 10.99, "rotation": -12.44, "x": 14.47, "y": -0.41, "color": "976edbff" },
- { "name": "bone42", "parent": "bone41", "length": 9.6, "rotation": -12.62, "x": 11.45, "y": -0.1, "color": "976edbff" },
- { "name": "bone43", "parent": "bone42", "length": 10.4, "x": 9.92, "color": "976edbff" },
- { "name": "bone44", "parent": "bone5", "length": 24.73, "rotation": -165.87, "x": 81.61, "y": -12.11, "color": "f51333ff" },
- { "name": "bone45", "parent": "bone44", "length": 13.55, "rotation": -2.98, "x": 26.15, "y": -0.26, "color": "f51333ff" },
- { "name": "bone46", "parent": "bone45", "length": 11.68, "rotation": -7.46, "x": 14.67, "y": -0.15, "color": "f51333ff" },
- { "name": "bone47", "parent": "bone46", "length": 13.28, "x": 11.84, "color": "f51333ff" },
- { "name": "bone48", "parent": "bone31", "length": 21.99, "rotation": -153.29, "x": 77.54, "y": -25.6, "color": "71ea8eff" },
- { "name": "bone49", "parent": "bone48", "length": 19.55, "rotation": -21.18, "x": 22.13, "y": -0.08, "color": "71ea8eff" },
- { "name": "bone50", "parent": "bone49", "length": 14.31, "rotation": -2.22, "x": 19.87, "y": -0.04, "color": "71ea8eff" },
- { "name": "bone51", "parent": "bone50", "length": 11.04, "rotation": -7.43, "x": 16.06, "y": -0.18, "color": "71ea8eff" },
- { "name": "bone55", "parent": "bone31", "length": 12.98, "rotation": -0.64, "x": 16.1, "y": 17.75 },
- { "name": "bone56", "parent": "bone31", "length": 12.31, "rotation": 1.39, "x": 16.06, "y": -8.77 },
- { "name": "bone57", "parent": "bone31", "x": 32.16, "y": 5.73 },
- { "name": "bone58", "parent": "bone31", "x": 19.34, "y": 6.28 },
- { "name": "bone59", "parent": "bone31", "x": 12.92, "y": 4.76 },
- { "name": "bone60", "parent": "bone4", "length": 7.96, "rotation": 179.66, "x": 29.32, "y": 2.06 },
- { "name": "bone61", "parent": "bone4", "length": 20.99, "rotation": 143.21, "x": 35.38, "y": -176.85, "color": "3445abff" },
- { "name": "bone62", "parent": "bone61", "length": 18.89, "rotation": 121.14, "x": 22.77, "y": 0.16, "color": "3445abff" },
- { "name": "bone63", "parent": "bone62", "length": 14.5, "rotation": -0.4, "x": 18.89, "color": "3445abff" },
- { "name": "bone64", "parent": "bone4", "length": 17.88, "rotation": -147.84, "x": 41.55, "y": -235.15, "color": "e57e0aff" },
- { "name": "bone65", "parent": "bone64", "length": 19.33, "rotation": -105.35, "x": 19.84, "y": 0.59, "color": "e57e0aff" },
- { "name": "bone66", "parent": "bone65", "length": 11.1, "rotation": 1.04, "x": 19.33, "color": "e57e0aff" },
- { "name": "huo", "parent": "root", "length": 10, "rotation": 88.84, "x": 214.37, "y": 85.8, "color": "0c5089ff" },
- { "name": "huo2", "parent": "huo", "length": 14.02, "rotation": 1.94, "x": 10.9, "y": -0.08, "color": "0c5089ff" },
- { "name": "huo3", "parent": "huo2", "length": 17.11, "rotation": -3.36, "x": 14.02, "color": "0c5089ff" },
- { "name": "huo4", "parent": "huo3", "length": 15.3, "rotation": -17.23, "x": 17.11, "color": "0c5089ff" }
- ],
- "slots": [
- { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
- { "name": "zuojiao", "bone": "bone13", "attachment": "zuojiao" },
- { "name": "kudang", "bone": "bone12", "attachment": "kudang" },
- { "name": "youjiap", "bone": "bone16", "attachment": "youjiap" },
- { "name": "zuoshou2", "bone": "bone61" },
- { "name": "shangshen", "bone": "bone3", "attachment": "shangshen" },
- { "name": "waitaoyou", "bone": "bone19", "attachment": "waitaoyou" },
- { "name": "waitaozuo", "bone": "bone25", "attachment": "waitaozuo" },
- { "name": "xianlian", "bone": "bone60", "attachment": "xianlian" },
- { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
- { "name": "youshou2", "bone": "bone64" },
- { "name": "toufa6", "bone": "bone31", "attachment": "toufa6" },
- { "name": "tou", "bone": "bone31", "attachment": "tou" },
- { "name": "youyan", "bone": "bone56", "attachment": "youyan" },
- { "name": "zuoyan", "bone": "bone55", "attachment": "zuoyan" },
- { "name": "biaoqing", "bone": "bone59" },
- { "name": "meimao", "bone": "bone57", "attachment": "meimao" },
- { "name": "biyan", "bone": "bone58" },
- { "name": "toufa5", "bone": "bone48", "attachment": "toufa5" },
- { "name": "toufa4", "bone": "bone44", "attachment": "toufa4" },
- { "name": "toufa3", "bone": "bone36", "attachment": "toufa3" },
- { "name": "toufa2", "bone": "bone40", "attachment": "toufa2" },
- { "name": "toufa1", "bone": "bone32", "attachment": "toufa1" },
- { "name": "hua", "bone": "huo", "attachment": "hua" },
- { "name": "zuoshou3", "bone": "bone62" },
- { "name": "youshou3", "bone": "bone65" }
- ],
- "skins": {
- "default": {
- "biaoqing": {
- "biaoqing": { "x": 1.23, "y": -0.94, "rotation": -92.47, "width": 41, "height": 28 }
- },
- "biyan": {
- "biyan": { "x": -1.13, "y": -1.13, "rotation": -92.47, "width": 46, "height": 8 }
- },
- "hua": {
- "hua": {
- "type": "mesh",
- "uvs": [ 0.8166, 1, 0.5021, 1, 0.2301, 1, 0.04325, 0.65378, 0, 0.57365, 0, 0.46438, 0, 0.40872, 0, 0.36235, 0, 0.27887, 0, 0.19168, 0, 0.10264, 0, 0, 0.6126, 0, 1, 0, 0.8846, 0.62538, 0.48935, 0.6451, 0.4851, 0.4677, 0.52335, 0.1893, 0.48715, 0.55334, 0.90107, 0.53613, 0.91591, 0.45569, 0.5009, 0.35274, 0.93561, 0.34892, 0.49517, 0.3944, 0.92865, 0.38665, 0.96492, 0.19008, 0.51163, 0.27458, 0.94978, 0.27216, 0.56685, 0.09702, 0.98384, 0.08757 ],
- "triangles": [ 29, 12, 13, 28, 11, 12, 28, 12, 29, 10, 11, 28, 17, 10, 28, 25, 28, 29, 17, 28, 25, 9, 10, 17, 27, 17, 25, 26, 9, 17, 0, 25, 29, 0, 29, 13, 26, 17, 27, 8, 9, 26, 22, 26, 27, 21, 8, 26, 21, 26, 22, 7, 8, 21, 24, 21, 22, 23, 7, 21, 23, 21, 24, 6, 7, 23, 20, 23, 24, 23, 16, 6, 16, 23, 20, 0, 24, 22, 0, 22, 27, 16, 5, 6, 19, 16, 20, 18, 16, 19, 18, 4, 5, 18, 5, 16, 14, 18, 19, 3, 4, 18, 15, 18, 14, 15, 3, 18, 2, 3, 15, 0, 1, 15, 2, 15, 1, 14, 0, 15, 0, 14, 19, 0, 19, 20, 0, 20, 24, 0, 27, 25 ],
- "vertices": [ 1, 64, -12.19, -13.96, 1, 1, 64, -12.44, -1.38, 1, 1, 64, -12.66, 9.49, 1, 1, 64, 11.07, 17.45, 1, 3, 64, 16.57, 19.29, 0.19999, 65, 6.32, 19.17, 0.65422, 66, -8.81, 18.69, 0.14579, 4, 64, 24.1, 19.44, 0.0517, 65, 13.86, 19.07, 0.55605, 66, -1.28, 19.02, 0.38147, 67, -23.19, 12.73, 0.01078, 4, 64, 27.94, 19.52, 0.01843, 65, 17.7, 19.01, 0.42424, 66, 2.56, 19.2, 0.51892, 67, -19.58, 14.03, 0.03841, 4, 64, 31.14, 19.58, 0.00555, 65, 20.9, 18.97, 0.30829, 66, 5.76, 19.34, 0.60257, 67, -16.57, 15.11, 0.08359, 4, 64, 36.9, 19.7, 4.0E-5, 65, 26.66, 18.89, 0.14271, 66, 11.51, 19.6, 0.61981, 67, -11.15, 17.06, 0.23744, 3, 65, 32.67, 18.81, 0.04853, 66, 17.52, 19.87, 0.46834, 67, -5.49, 19.1, 0.48313, 3, 65, 38.82, 18.72, 0.00963, 66, 23.66, 20.14, 0.27453, 67, 0.29, 21.18, 0.71584, 2, 66, 30.73, 20.46, 0.17685, 67, 6.96, 23.58, 0.82315, 1, 67, 15.26, 0.53, 1, 2, 66, 32.53, -19.5, 0.06511, 67, 20.51, -14.05, 0.93489, 1, 64, 13.71, -16.16, 1, 1, 64, 12.03, -0.38, 1, 3, 64, 24.27, 0.04, 6.5E-4, 65, 13.36, -0.33, 0.91651, 66, -0.63, -0.37, 0.08284, 1, 67, 1.76, -0.54, 1, 2, 64, 18.36, -0.16, 0.00383, 65, 7.45, -0.33, 0.99617, 4, 64, 19.88, -16.69, 0.27361, 65, 8.41, -16.91, 0.48407, 66, -4.6, -17.2, 0.24022, 67, -15.64, -22.86, 0.0021, 4, 64, 25.44, -17.17, 0.11823, 65, 13.96, -17.57, 0.38389, 66, 0.97, -17.55, 0.47159, 67, -10.22, -21.54, 0.02629, 4, 64, 32.21, -0.43, 2.1E-4, 65, 21.29, -1.07, 0.00165, 66, 7.32, -0.65, 0.9981, 67, -9.16, -3.51, 4.0E-5, 4, 64, 32.82, -17.81, 0.02718, 65, 21.31, -18.46, 0.16354, 66, 8.36, -18, 0.65194, 67, -3.02, -19.79, 0.15734, 3, 64, 29.33, -0.26, 4.4E-4, 65, 18.41, -0.8, 0.00478, 66, 4.44, -0.55, 0.99478, 4, 64, 30.22, -17.59, 0.04851, 65, 18.71, -18.15, 0.23608, 66, 5.75, -17.84, 0.62228, 67, -5.56, -20.41, 0.09313, 4, 64, 43.81, -18.76, 2.7E-4, 65, 32.25, -19.79, 0.01519, 66, 19.36, -18.68, 0.35949, 67, 7.69, -17.18, 0.62505, 3, 65, 26.67, -1.58, 2.0E-5, 66, 12.73, -0.83, 0.99323, 67, -3.94, -2.09, 0.00676, 4, 64, 38.13, -18.27, 0.00575, 65, 26.6, -19.1, 0.06267, 66, 13.68, -18.33, 0.57384, 67, 2.16, -18.53, 0.35774, 1, 67, 8.34, -0.02, 1, 3, 65, 39.32, -20.64, 6.0E-4, 66, 26.46, -19.12, 0.12981, 67, 14.6, -15.49, 0.86959 ],
- "hull": 14,
- "edges": [ 0, 28, 26, 0, 0, 2, 2, 4, 2, 30, 22, 24, 24, 26, 4, 6, 6, 8, 6, 30, 30, 28, 30, 36, 36, 32, 8, 36, 38, 28, 36, 38, 8, 10, 10, 32, 40, 38, 32, 40, 14, 42, 42, 44, 10, 12, 12, 14, 32, 46, 46, 42, 12, 46, 40, 48, 48, 44, 46, 48, 18, 34, 34, 50, 14, 16, 16, 18, 34, 52, 52, 42, 16, 52, 44, 54, 54, 50, 52, 54, 18, 20, 20, 22, 24, 56, 56, 34, 20, 56, 26, 58, 58, 50, 56, 58 ],
- "width": 40,
- "height": 69
- }
- },
- "kudang": {
- "kudang": {
- "type": "mesh",
- "uvs": [ 1, 0.69726, 0.47509, 1, 0, 0.69726, 0, 0, 0.48633, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 2, 3, 4, 1, 2, 4, 0, 1, 4 ],
- "vertices": [ 11.01, 23.11, 17.07, 1.06, 11.01, -18.89, -2.93, -18.89, -2.93, 1.53, -2.93, 23.11 ],
- "hull": 6,
- "edges": [ 6, 8, 8, 10, 8, 2, 4, 6, 2, 4, 0, 10, 2, 0 ],
- "width": 42,
- "height": 20
- }
- },
- "meimao": {
- "meimao": { "x": 0.53, "y": -1.2, "rotation": -92.47, "width": 44, "height": 7 }
- },
- "shangshen": {
- "shangshen": {
- "type": "mesh",
- "uvs": [ 0.88258, 0.11385, 0.88083, 0.13283, 0.88151, 0.14526, 1, 0.16018, 1, 0.60706, 1, 0.63545, 1, 0.67292, 1, 1, 0.5305, 1, 0, 1, 0, 0.91081, 0.06198, 0.67438, 0.07121, 0.63918, 0.07909, 0.60913, 0.19793, 0.15584, 0.36123, 0.14933, 0.36446, 0.13585, 0.36726, 0.12019, 0.39213, 0, 0.64119, 0, 0.88647, 0, 0.57109, 0.63812, 0.62275, 0.15209, 0.56728, 0.67209, 0.57387, 0.61194, 0.62521, 0.13787, 0.62667, 0.11972 ],
- "triangles": [ 0, 19, 20, 26, 18, 19, 26, 19, 0, 17, 18, 26, 1, 26, 0, 25, 17, 26, 16, 17, 25, 25, 26, 1, 22, 16, 25, 15, 16, 22, 2, 22, 25, 2, 25, 1, 24, 15, 22, 24, 22, 2, 2, 3, 4, 4, 24, 2, 13, 14, 15, 24, 13, 15, 24, 4, 5, 21, 13, 24, 21, 24, 5, 12, 13, 21, 23, 12, 21, 21, 5, 6, 23, 21, 6, 11, 12, 23, 8, 9, 10, 8, 11, 23, 8, 10, 11, 23, 6, 7, 8, 23, 7 ],
- "vertices": [ 2, 4, 31.25, -7.25, 0.10787, 5, 5.13, -7.26, 0.89213, 2, 4, 30.13, -7.28, 0.19167, 5, 4.01, -7.28, 0.80833, 2, 4, 29.4, -7.34, 0.27362, 5, 3.28, -7.35, 0.72638, 2, 4, 28.75, -10.83, 0.48065, 5, 2.63, -10.84, 0.51935, 1, 4, 2.44, -12.58, 1, 1, 4, 0.77, -12.7, 1, 1, 4, -1.44, -12.84, 1, 1, 4, -20.69, -14.13, 1, 1, 4, -21.6, -0.54, 1, 1, 4, -22.62, 14.81, 1, 1, 4, -17.37, 15.16, 1, 1, 4, -3.33, 14.29, 1, 1, 4, -1.24, 14.16, 1, 1, 4, 0.54, 14.05, 1, 2, 4, 27.45, 12.39, 0.72326, 5, 1.38, 12.39, 0.27674, 2, 4, 28.15, 7.69, 0.44883, 5, 2.07, 7.69, 0.55117, 2, 4, 28.95, 7.65, 0.31831, 5, 2.87, 7.65, 0.68169, 2, 4, 29.88, 7.63, 0.21944, 5, 3.8, 7.63, 0.78056, 1, 5, 10.92, 7.36, 1, 1, 5, 11.39, 0.16, 1, 1, 5, 11.84, -6.94, 1, 1, 4, -0.22, -0.3, 1, 1, 5, 2.4, 0.11, 1, 1, 4, -2.22, -0.32, 1, 1, 4, 1.33, -0.27, 1, 2, 4, 29.34, 0.1, 1.8E-4, 5, 3.24, 0.09, 0.99982, 2, 4, 30.41, 0.13, 1.3E-4, 5, 4.31, 0.12, 0.99987 ],
- "hull": 21,
- "edges": [ 18, 20, 28, 30, 4, 6, 14, 16, 16, 18, 36, 38, 38, 40, 24, 42, 42, 10, 20, 22, 22, 24, 16, 46, 46, 42, 22, 46, 10, 12, 12, 14, 46, 12, 24, 26, 26, 28, 42, 48, 48, 44, 26, 48, 6, 8, 8, 10, 48, 8, 30, 44, 44, 4, 30, 32, 50, 44, 32, 50, 4, 2, 50, 2, 32, 34, 34, 36, 38, 52, 52, 50, 34, 52, 2, 0, 0, 40, 52, 0 ],
- "width": 29,
- "height": 59
- }
- },
- "tou": {
- "tou": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
- "triangles": [ 1, 2, 3, 1, 3, 0 ],
- "vertices": [ -6.76, -39.82, -3.57, 34.11, 82.35, 30.41, 79.16, -43.53 ],
- "hull": 4,
- "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
- "width": 74,
- "height": 86
- }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 0.89793, 0.17885, 0.82683, 0.30344, 0.78814, 0.39064, 0.74594, 0.48569, 0.7533, 0.60136, 0.76026, 0.71069, 0.83822, 0.88476, 0.90181, 1, 0.25159, 1, 0, 1, 0, 0.86583, 0, 0.66569, 0.08687, 0.50823, 0.16137, 0.37319, 0.23028, 0.27918, 0.29515, 0.19069, 0.42586, 0.08528, 0.53159, 0, 0.74003, 0, 1, 0, 0.57515, 0.2557, 0.45381, 0.45069, 0.34804, 0.71819, 0.28987, 0.88816, 0.40355, 0.57781, 0.5131, 0.35542, 0.65417, 0.13314 ],
- "triangles": [ 5, 22, 24, 5, 24, 4, 23, 10, 11, 22, 23, 11, 23, 22, 5, 23, 5, 6, 8, 9, 10, 23, 8, 10, 8, 23, 6, 7, 8, 6, 13, 14, 21, 24, 13, 21, 12, 13, 24, 24, 21, 4, 22, 12, 24, 11, 12, 22, 25, 15, 20, 14, 15, 25, 25, 20, 2, 21, 14, 25, 3, 25, 2, 21, 25, 3, 21, 3, 4, 26, 17, 18, 16, 17, 26, 0, 18, 19, 26, 18, 0, 20, 16, 26, 15, 16, 20, 1, 26, 0, 20, 26, 1, 2, 20, 1 ],
- "vertices": [ 2, 32, 0.36, 10.6, 0.98235, 33, -10.07, 12.4, 0.01765, 3, 32, 8, 11.36, 0.71803, 33, -2.41, 11.95, 0.27951, 35, -27.83, 13.97, 0.00246, 3, 32, 13.1, 12.32, 0.3545, 33, 2.77, 12.09, 0.62216, 35, -22.66, 13.65, 0.02334, 4, 32, 18.65, 13.37, 0.08677, 33, 8.42, 12.25, 0.79571, 34, -3.49, 12.88, 4.6E-4, 35, -17.02, 13.3, 0.11706, 4, 32, 24.07, 16.92, 0.00636, 33, 14.34, 14.91, 0.59331, 34, 2.57, 15.17, 0.02119, 35, -10.88, 15.41, 0.37914, 3, 33, 19.93, 17.42, 0.32124, 34, 8.31, 17.34, 0.00925, 35, -5.09, 17.4, 0.66952, 2, 33, 27.74, 24.22, 0.128, 35, 3.31, 23.47, 0.872, 2, 33, 32.72, 29.23, 0.10984, 35, 8.72, 28.01, 0.89016, 3, 33, 43.32, 1.96, 5.0E-5, 34, 30.73, 0.5, 0.00102, 35, 16.82, -0.11, 0.99893, 2, 34, 34.19, -10.28, 0.04301, 35, 19.95, -10.99, 0.95699, 2, 34, 27.03, -12.58, 0.16944, 35, 12.73, -13.07, 0.83056, 2, 34, 16.36, -16, 0.70605, 35, 1.96, -16.17, 0.29395, 3, 33, 20.34, -14.93, 0.00529, 34, 6.77, -14.98, 0.97792, 35, -7.6, -14.85, 0.01678, 2, 33, 12.08, -14.55, 0.19171, 34, -1.45, -14.1, 0.80829, 2, 33, 6.05, -13.57, 0.52785, 34, -7.41, -12.75, 0.47215, 3, 32, 14.63, -12.48, 0.02335, 33, 0.37, -12.64, 0.76216, 34, -13.02, -11.49, 0.21448, 3, 32, 6.56, -10.38, 0.4394, 33, -7.26, -9.3, 0.52933, 34, -20.44, -7.69, 0.03127, 3, 32, 0.04, -8.69, 0.83169, 33, -13.43, -6.6, 0.16768, 34, -26.44, -4.62, 6.3E-4, 2, 32, -4.7, -0.59, 0.9992, 33, -16.83, 2.15, 8.0E-4, 1, 32, -10.6, 9.51, 1, 2, 32, 11.41, 0.23, 0.99999, 35, -27.27, 2.35, 1.0E-5, 2, 33, 11.36, -0.71, 0.64447, 34, -1.34, -0.24, 0.35553, 2, 34, 14.37, -0.19, 0.08012, 35, 0.45, -0.31, 0.91988, 2, 34, 24.24, 0.22, 6.0E-4, 35, 10.32, -0.19, 0.9994, 1, 34, 6.13, -0.22, 1, 2, 33, 5.42, -0.16, 0.99708, 34, -7.24, 0.67, 0.00292, 3, 32, 3.69, -0.16, 0.99742, 33, -8.48, 1.25, 0.00257, 34, -21.03, 2.91, 1.0E-5 ],
- "hull": 20,
- "edges": [ 36, 38, 16, 18, 34, 36, 14, 16, 18, 20, 20, 22, 16, 46, 46, 44, 20, 46, 10, 12, 12, 14, 46, 12, 22, 44, 44, 10, 26, 42, 42, 6, 30, 40, 40, 2, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 6, 8, 8, 10, 48, 8, 26, 28, 28, 30, 40, 50, 50, 42, 28, 50, 2, 4, 4, 6, 50, 4, 30, 32, 32, 34, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0 ],
- "width": 45,
- "height": 56
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 0.6565, 0.12087, 0.77621, 0.23526, 0.87951, 0.36533, 1, 0.53104, 1, 0.70541, 1, 0.83549, 1, 1, 0.58816, 1, 0.19616, 1, 0.2084, 0.92747, 0.21865, 0.82824, 0.21999, 0.73595, 0.21205, 0.62013, 0.18636, 0.45946, 0.14054, 0.32613, 0, 0.08202, 0, 0, 0.26502, 0, 0.47691, 0, 0.52459, 0.37424, 0.57756, 0.51857, 0.59345, 0.66111, 0.42919, 0.2141, 0.60609, 0.89396, 0.60622, 0.78209 ],
- "triangles": [ 24, 21, 4, 11, 21, 24, 10, 11, 24, 24, 4, 5, 23, 10, 24, 23, 24, 5, 9, 10, 23, 7, 9, 23, 8, 9, 7, 23, 5, 6, 7, 23, 6, 12, 20, 21, 11, 12, 21, 13, 22, 19, 20, 19, 1, 20, 1, 2, 20, 12, 13, 20, 13, 19, 3, 21, 20, 3, 20, 2, 21, 3, 4, 15, 16, 17, 22, 17, 18, 22, 18, 0, 14, 15, 17, 14, 17, 22, 19, 22, 0, 19, 0, 1, 13, 14, 22 ],
- "vertices": [ 2, 40, 7.26, 9.73, 0.9941, 41, -9.22, 8.35, 0.0059, 2, 40, 14.84, 11.08, 0.7416, 41, -2.12, 11.3, 0.2584, 4, 40, 22.94, 11.51, 0.27868, 41, 5.7, 13.46, 0.71868, 42, -8.58, 11.98, 3.0E-5, 43, -18.5, 11.98, 0.00261, 4, 40, 33.08, 11.69, 0.05177, 41, 15.57, 15.82, 0.78373, 42, 0.54, 16.44, 0.06837, 43, -9.38, 16.44, 0.09614, 4, 40, 41.77, 7.63, 0.00362, 41, 24.93, 13.73, 0.40555, 42, 10.13, 16.44, 0.14788, 43, 0.21, 16.44, 0.44295, 3, 41, 31.91, 12.16, 0.1534, 42, 17.28, 16.44, 0.07079, 43, 7.36, 16.44, 0.77581, 3, 41, 40.74, 10.19, 0.05004, 42, 26.33, 16.44, 0.0099, 43, 16.41, 16.44, 0.94006, 2, 41, 37.41, -4.68, 9.0E-4, 43, 16.41, 1.2, 0.9991, 2, 42, 26.33, -13.3, 0.01043, 43, 16.41, -13.3, 0.98957, 2, 42, 22.34, -12.85, 0.03403, 43, 12.42, -12.85, 0.96597, 3, 41, 25.2, -15.96, 0.00751, 42, 16.88, -12.47, 0.16602, 43, 6.96, -12.47, 0.82647, 3, 41, 20.26, -14.8, 0.06084, 42, 11.81, -12.42, 0.39361, 43, 1.89, -12.42, 0.54555, 3, 41, 13.98, -13.7, 0.2959, 42, 5.44, -12.71, 0.53547, 43, -4.48, -12.71, 0.16864, 4, 40, 16.76, -13.91, 0.05561, 41, 5.15, -12.7, 0.76152, 42, -3.4, -13.66, 0.17893, 43, -13.32, -13.66, 0.00394, 3, 40, 9.4, -12.34, 0.45442, 41, -2.38, -12.75, 0.52892, 42, -10.73, -15.36, 0.01667, 2, 40, -4.96, -11.37, 0.98491, 41, -16.61, -14.89, 0.01509, 2, 40, -9.05, -9.46, 0.99998, 41, -21.02, -13.9, 2.0E-5, 2, 40, -4.9, -0.57, 0.99998, 41, -18.87, -4.33, 2.0E-5, 1, 40, -1.57, 6.53, 1, 2, 40, 17.82, -0.59, 0.02165, 41, 3.31, 0.54, 0.97835, 4, 40, 25.84, -2.18, 0.00265, 41, 11.48, 0.72, 0.98189, 42, -0.15, 0.81, 0.01508, 43, -10.07, 0.81, 3.8E-4, 3, 41, 19.26, -0.42, 0.03956, 42, 7.69, 1.4, 0.84773, 43, -2.23, 1.4, 0.11272, 2, 40, 8.34, -0.06, 0.9992, 41, -6.06, -0.98, 8.0E-4, 2, 41, 31.86, -2.76, 0.00393, 43, 10.58, 1.87, 0.99607, 3, 41, 25.86, -1.41, 0.01429, 42, 14.34, 1.87, 0.01922, 43, 4.42, 1.87, 0.96649 ],
- "hull": 19,
- "edges": [ 30, 32, 30, 28, 24, 22, 2, 4, 4, 6, 32, 34, 34, 36, 38, 40, 40, 42, 12, 14, 14, 16, 34, 44, 44, 38, 28, 44, 2, 0, 0, 36, 44, 0, 24, 26, 26, 28, 26, 38, 38, 2, 24, 40, 40, 4, 22, 42, 42, 6, 16, 18, 14, 46, 18, 46, 10, 12, 46, 10, 18, 20, 20, 22, 42, 48, 48, 46, 20, 48, 6, 8, 8, 10, 48, 8 ],
- "width": 37,
- "height": 55
- }
- },
- "toufa3": {
- "toufa3": {
- "type": "mesh",
- "uvs": [ 1, 0.19795, 1, 0.29029, 1, 0.42222, 1, 0.53906, 1, 0.66156, 1, 0.76898, 1, 0.88018, 1, 1, 0.31185, 1, 0, 1, 0, 0.86887, 0, 0.74825, 0, 0.63895, 0, 0.52964, 0, 0.43164, 0, 0.30725, 0, 0.17156, 0, 0, 0.52885, 0, 1, 0, 0.44485, 0.3016, 0.36785, 0.53529, 0.32935, 0.74637, 0.40373, 0.4264, 0.34794, 0.64447, 0.32091, 0.86877, 0.47691, 0.1865 ],
- "triangles": [ 11, 12, 22, 25, 11, 22, 10, 11, 25, 25, 22, 6, 8, 9, 10, 25, 8, 10, 25, 6, 7, 8, 25, 7, 21, 13, 14, 23, 21, 14, 24, 12, 13, 21, 24, 13, 21, 3, 4, 24, 21, 4, 22, 12, 24, 24, 4, 5, 22, 24, 5, 22, 5, 6, 20, 26, 1, 20, 1, 2, 23, 15, 20, 23, 20, 2, 14, 15, 23, 23, 2, 3, 21, 23, 3, 26, 16, 17, 18, 26, 17, 18, 19, 0, 26, 18, 0, 26, 0, 1, 20, 16, 26, 15, 16, 20 ],
- "vertices": [ 3, 36, 5.52, 14.77, 0.42207, 37, -7.7, 14.35, 0.57764, 38, -18.54, 16.25, 2.9E-4, 3, 36, 10.27, 15.5, 0.1729, 37, -2.98, 15.23, 0.81508, 38, -13.75, 16.66, 0.01202, 3, 36, 17.05, 16.55, 0.01214, 37, 3.76, 16.49, 0.88071, 38, -6.92, 17.24, 0.10714, 3, 37, 9.73, 17.61, 0.68999, 38, -0.86, 17.75, 0.30958, 39, -11.11, 18.29, 4.3E-4, 3, 37, 16, 18.77, 0.42798, 38, 5.48, 18.29, 0.57202, 39, -4.75, 18.65, 0, 3, 37, 21.49, 19.8, 0.21639, 38, 11.05, 18.76, 0.71121, 39, 0.83, 18.96, 0.07241, 3, 37, 27.17, 20.86, 0.08524, 38, 16.81, 19.25, 0.70129, 39, 6.6, 19.28, 0.21347, 3, 37, 33.3, 22, 0.04865, 38, 23.02, 19.78, 0.67292, 39, 12.82, 19.62, 0.27843, 3, 37, 36.83, 3.06, 1.1E-4, 38, 24.65, 0.58, 0.02685, 39, 13.89, 0.38, 0.97304, 1, 39, 14.37, -8.33, 1, 2, 38, 18.59, -8.7, 0.01092, 39, 7.56, -8.71, 0.98908, 3, 36, 38.06, -8.55, 9.0E-5, 38, 12.34, -9.23, 0.25074, 39, 1.3, -9.06, 0.74917, 4, 36, 32.44, -9.42, 0.01384, 37, 19.98, -8.97, 0.01255, 38, 6.68, -9.71, 0.67448, 39, -4.37, -9.38, 0.29912, 4, 36, 26.82, -10.28, 0.10828, 37, 14.39, -10.01, 0.16302, 38, 1.01, -10.19, 0.66801, 39, -10.05, -9.69, 0.06069, 4, 36, 21.79, -11.05, 0.35177, 37, 9.38, -10.94, 0.29195, 38, -4.06, -10.62, 0.35112, 39, -15.14, -9.97, 0.00516, 3, 36, 15.4, -12.04, 0.79814, 37, 3.02, -12.13, 0.11925, 38, -10.51, -11.17, 0.08261, 3, 36, 8.42, -13.11, 0.99284, 37, -3.91, -13.43, 9.1E-4, 38, -17.54, -11.76, 0.00625, 1, 36, -0.4, -14.47, 1, 2, 36, -2.65, 0.17, 0.99473, 37, -15.4, -0.51, 0.00527, 2, 36, -4.65, 13.21, 0.77067, 37, -17.82, 12.46, 0.22933, 1, 37, 0.45, 0.06, 1, 1, 38, 0.44, 0.1, 1, 3, 37, 23.78, 1.12, 5.5E-4, 38, 11.46, -0.05, 0.0086, 39, 0.69, 0.14, 0.99086, 1, 37, 7.04, 0.12, 1, 2, 37, 18.47, 0.66, 3.1E-4, 38, 6.14, 0.02, 0.99969, 3, 37, 30.08, 2.06, 1.9E-4, 38, 17.83, 0.25, 0.0032, 39, 7.06, 0.26, 0.99661, 2, 36, 7.16, 0.21, 0.99274, 37, -5.6, -0.16, 0.00726 ],
- "hull": 20,
- "edges": [ 34, 36, 36, 38, 14, 16, 16, 18, 30, 40, 40, 2, 26, 42, 42, 6, 22, 44, 44, 10, 26, 28, 28, 30, 40, 46, 46, 42, 28, 46, 2, 4, 4, 6, 46, 4, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 6, 8, 8, 10, 48, 8, 18, 20, 20, 22, 16, 50, 50, 44, 20, 50, 10, 12, 12, 14, 50, 12, 30, 32, 32, 34, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0 ],
- "width": 28,
- "height": 52
- }
- },
- "toufa4": {
- "toufa4": {
- "type": "mesh",
- "uvs": [ 0.53663, 0.10065, 0.63594, 0.22885, 0.68152, 0.30761, 0.73224, 0.39528, 0.75874, 0.48091, 0.79024, 0.58272, 0.79787, 0.70488, 0.80288, 0.78522, 0.80288, 0.89883, 0.80288, 1, 0.5694, 1, 0.32901, 1, 0.34181, 0.90867, 0.35429, 0.81954, 0.35719, 0.74142, 0.36061, 0.64965, 0.34506, 0.58459, 0.32883, 0.5167, 0.27019, 0.44599, 0.21683, 0.38165, 0.12161, 0.3106, 0.04085, 0.27157, 0, 0.24981, 0, 0, 0.34797, 0, 0.3609, 0.18803, 0.52517, 0.45402, 0.57887, 0.63249, 0.57571, 0.80238, 0.4505, 0.30137, 0.24887, 0.12966, 0.48632, 0.37459, 0.55141, 0.54121, 0.57712, 0.72696, 0.57249, 0.90334 ],
- "triangles": [ 28, 33, 7, 13, 14, 28, 28, 7, 8, 34, 13, 28, 34, 28, 8, 12, 13, 34, 10, 12, 34, 11, 12, 10, 34, 8, 9, 10, 34, 9, 15, 32, 27, 27, 5, 6, 33, 15, 27, 33, 27, 6, 14, 15, 33, 33, 6, 7, 28, 14, 33, 30, 23, 24, 25, 24, 0, 30, 24, 25, 21, 22, 23, 30, 21, 23, 29, 25, 0, 29, 0, 1, 20, 21, 30, 20, 30, 25, 31, 29, 1, 31, 1, 2, 19, 20, 25, 19, 25, 29, 18, 19, 29, 18, 29, 31, 26, 31, 2, 26, 2, 3, 17, 18, 31, 17, 31, 26, 32, 26, 3, 32, 3, 4, 16, 17, 26, 32, 16, 26, 27, 32, 4, 27, 4, 5, 15, 16, 32 ],
- "vertices": [ 1, 44, -0.58, 5.45, 1, 1, 44, 10.42, 7.86, 1, 2, 45, -9.54, 8.46, 0.00855, 44, 17.06, 8.68, 0.99145, 2, 45, -2.21, 9.75, 0.32425, 44, 24.45, 9.59, 0.67575, 3, 45, 4.82, 10, 0.82916, 44, 31.48, 9.48, 0.16539, 46, -11.08, 8.79, 0.00545, 4, 45, 13.18, 10.31, 0.70181, 44, 39.84, 9.35, 0.00311, 46, -2.83, 10.17, 0.29457, 47, -14.67, 10.17, 5.1E-4, 3, 45, 23.03, 9.36, 0.07229, 46, 7.06, 10.51, 0.73337, 47, -4.78, 10.51, 0.19433, 3, 45, 29.51, 8.73, 9.3E-4, 46, 13.57, 10.73, 0.34614, 47, 1.73, 10.73, 0.65293, 2, 46, 22.77, 10.73, 0.01411, 47, 10.93, 10.73, 0.98589, 1, 47, 19.13, 10.73, 1, 1, 47, 19.13, 0.45, 1, 1, 47, 19.13, -10.12, 1, 2, 46, 23.57, -9.56, 9.7E-4, 47, 11.73, -9.56, 0.99903, 2, 46, 16.35, -9.01, 0.13999, 47, 4.51, -9.01, 0.86001, 3, 45, 23.45, -10.25, 0.00286, 46, 10.02, -8.88, 0.6434, 47, -1.82, -8.88, 0.35374, 3, 45, 16.1, -9.14, 0.24491, 46, 2.59, -8.73, 0.74037, 47, -9.25, -8.73, 0.01472, 2, 45, 10.79, -9.13, 0.72133, 46, -2.68, -9.42, 0.27867, 3, 45, 5.24, -9.13, 0.92319, 44, 30.9, -9.65, 0.04522, 46, -8.18, -10.13, 0.03159, 2, 45, -0.77, -10.94, 0.57793, 44, 24.8, -11.15, 0.42207, 2, 45, -6.25, -12.59, 0.20323, 44, 19.25, -12.51, 0.79677, 2, 45, -12.5, -16, 0.0288, 44, 12.83, -15.59, 0.9712, 2, 45, -16.09, -19.11, 0.00383, 44, 9.08, -18.51, 0.99617, 2, 45, -18.07, -20.67, 8.9E-4, 44, 7.02, -19.96, 0.99911, 1, 44, -12.88, -16.3, 1, 1, 44, -10.1, -1.24, 1, 1, 44, 4.98, -3.44, 1, 2, 45, 1.33, 0.1, 0.99887, 44, 27.48, -0.23, 0.00113, 2, 45, 15.97, 0.56, 0.04124, 46, 1.2, 0.87, 0.95876, 2, 46, 14.96, 0.73, 0.01163, 47, 3.12, 0.73, 0.98837, 2, 45, -11.36, -1.56, 0.00277, 44, 14.72, -1.22, 0.99723, 1, 44, -0.56, -7.43, 1, 2, 45, -5.27, -0.76, 0.01413, 44, 20.84, -0.75, 0.98587, 2, 45, 8.48, 0.32, 0.99968, 44, 34.63, -0.38, 3.2E-4, 3, 45, 23.55, -0.51, 3.0E-5, 46, 8.85, 0.79, 0.98239, 47, -2.99, 0.79, 0.01759, 1, 47, 11.3, 0.59, 1 ],
- "hull": 25,
- "edges": [ 46, 48, 48, 0, 44, 46, 18, 20, 20, 22, 50, 58, 38, 58, 0, 2, 58, 2, 38, 40, 40, 50, 50, 0, 40, 42, 42, 44, 46, 60, 60, 50, 42, 60, 60, 48, 34, 52, 52, 6, 34, 36, 36, 38, 52, 62, 62, 58, 36, 62, 2, 4, 4, 6, 62, 4, 30, 54, 54, 10, 30, 32, 32, 34, 52, 64, 64, 54, 32, 64, 6, 8, 8, 10, 64, 8, 26, 28, 28, 30, 54, 66, 66, 56, 28, 66, 10, 12, 12, 14, 66, 12, 26, 56, 56, 14, 22, 24, 24, 26, 20, 68, 68, 56, 24, 68, 14, 16, 16, 18, 68, 16 ],
- "width": 44,
- "height": 81
- }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 0.58603, 0.06694, 0.75648, 0.15679, 0.88065, 0.28534, 0.94057, 0.42669, 1, 0.56689, 1, 0.64224, 0.99999, 0.75694, 1, 0.84324, 1, 0.93319, 0.80791, 0.9865, 0.62105, 1, 0.60952, 0.91134, 0.59411, 0.81844, 0.56937, 0.74784, 0.54171, 0.66889, 0.49209, 0.57294, 0.4435, 0.49024, 0.35102, 0.38497, 0.23803, 0.25294, 0, 0.11479, 0, 0, 0.3382, 0, 0.43441, 0.1253, 0.6793, 0.3863, 0.78216, 0.6218, 0.79686, 0.7913, 0.57572, 0.25807, 0.72634, 0.496, 0.80208, 0.88352, 0.78999, 0.71208 ],
- "triangles": [ 25, 12, 29, 25, 6, 7, 28, 25, 7, 12, 25, 28, 11, 12, 28, 28, 7, 8, 9, 28, 8, 11, 28, 9, 10, 11, 9, 24, 4, 5, 14, 27, 24, 29, 24, 5, 13, 14, 24, 29, 13, 24, 6, 29, 5, 25, 29, 6, 12, 13, 29, 27, 23, 2, 16, 17, 26, 16, 26, 23, 3, 27, 2, 15, 16, 23, 27, 15, 23, 24, 27, 3, 24, 3, 4, 14, 15, 27, 20, 18, 19, 22, 21, 0, 22, 20, 21, 22, 18, 20, 26, 22, 0, 26, 0, 1, 17, 18, 22, 17, 22, 26, 23, 26, 1, 23, 1, 2 ],
- "vertices": [ 1, 48, 0.06, 6.33, 1, 1, 48, 10.41, 10.12, 1, 2, 48, 22.35, 10.42, 0.77641, 49, -3.59, 9.87, 0.22359, 2, 48, 33.66, 7.47, 0.0418, 49, 8.02, 11.2, 0.9582, 2, 49, 19.53, 12.53, 0.72792, 50, -0.82, 12.55, 0.27208, 3, 49, 25.5, 11.69, 0.33527, 50, 5.18, 11.94, 0.65534, 51, -12.36, 10.61, 0.00939, 3, 49, 34.59, 10.41, 0.02494, 50, 14.3, 11.02, 0.63316, 51, -3.19, 10.87, 0.34191, 2, 50, 21.17, 10.32, 0.16593, 51, 3.71, 11.07, 0.83407, 2, 50, 28.33, 9.6, 0.00741, 51, 10.9, 11.28, 0.99259, 1, 51, 15.44, 2, 1, 1, 51, 16.78, -7.12, 1, 2, 50, 24.67, -9.26, 0.00645, 51, 9.71, -7.89, 0.99355, 2, 50, 17.2, -9.26, 0.28604, 51, 2.3, -8.86, 0.71396, 2, 50, 11.46, -9.9, 0.74759, 51, -3.31, -10.24, 0.25241, 3, 49, 24.49, -10.85, 0.0455, 50, 5.04, -10.62, 0.92451, 51, -9.58, -11.78, 0.02999, 2, 49, 16.55, -12.19, 0.48055, 50, -2.84, -12.26, 0.51945, 3, 48, 26.22, -16.27, 0.0237, 49, 9.67, -13.62, 0.81267, 50, -9.67, -13.97, 0.16363, 3, 48, 16.66, -16.13, 0.34462, 49, 0.7, -16.94, 0.63812, 50, -18.5, -17.63, 0.01727, 2, 48, 4.74, -15.81, 0.86198, 49, -10.53, -20.95, 0.13802, 2, 48, -10.6, -20.61, 0.99793, 49, -23.1, -30.97, 0.00207, 1, 48, -18.62, -16.13, 1, 1, 48, -10.54, -1.66, 1, 2, 48, 0.51, -2.43, 0.99532, 49, -19.31, -10, 0.00468, 2, 49, 3.04, -1.03, 0.99898, 50, -16.78, -1.63, 0.00102, 2, 49, 22.4, 1.34, 0.04838, 50, 2.47, 1.49, 0.95162, 2, 50, 16.04, 0.84, 0.17638, 51, -0.16, 1, 0.82362, 2, 48, 13.16, -1.56, 0.95241, 49, -7.83, -4.62, 0.04759, 1, 49, 12.05, 0.04, 1, 1, 51, 7.21, 1.47, 1, 2, 49, 29.6, 0.72, 0.00371, 50, 9.7, 1.14, 0.99629 ],
- "hull": 22,
- "edges": [ 40, 42, 42, 0, 0, 2, 2, 4, 16, 18, 18, 20, 38, 40, 36, 38, 40, 44, 32, 34, 34, 36, 44, 52, 52, 46, 34, 52, 52, 2, 28, 30, 30, 32, 46, 54, 54, 48, 30, 54, 4, 6, 6, 8, 54, 6, 20, 22, 22, 24, 18, 56, 56, 50, 22, 56, 12, 14, 14, 16, 56, 14, 24, 26, 26, 28, 48, 58, 58, 50, 26, 58, 8, 10, 10, 12, 58, 10, 28, 48, 48, 8, 32, 46, 46, 4, 36, 44, 44, 0, 24, 50, 50, 12 ],
- "width": 49,
- "height": 80
- }
- },
- "toufa6": {
- "toufa6": {
- "type": "mesh",
- "uvs": [ 0.56622, 0.2293, 0.84138, 0.51677, 1, 0.51471, 1, 0.88077, 0.74172, 1, 0.22822, 1, 0, 0.90145, 0, 0.30996, 0.13505, 0.10934, 0.27155, 0, 0.56839, 0, 0.14589, 0.76909, 0.21955, 0.8725, 0.74172, 0.88905, 0.88255, 0.77736 ],
- "triangles": [ 0, 9, 10, 8, 0, 7, 0, 8, 9, 11, 0, 1, 11, 7, 0, 14, 1, 2, 12, 11, 1, 1, 13, 12, 14, 2, 3, 14, 13, 1, 6, 7, 11, 6, 11, 12, 5, 12, 13, 6, 12, 5, 3, 4, 13, 3, 13, 14, 5, 13, 4 ],
- "vertices": [ 66.44, -9.51, 40.17, -31.51, 39.78, -44.83, 7.59, -43.44, -1.96, -21.31, -0.1, 21.78, 9.39, 40.56, 61.4, 38.32, 78.55, 26.22, 87.66, 14.35, 86.59, -10.56, 20.5, 27.82, 11.14, 22.03, 7.8, -21.73, 17.11, -33.98 ],
- "hull": 11,
- "edges": [ 8, 6, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 6, 4, 4, 2, 2, 0, 18, 20, 0, 20 ],
- "width": 84,
- "height": 88
- }
- },
- "waitaoyou": {
- "waitaoyou": {
- "type": "mesh",
- "uvs": [ 0.70352, 0.20717, 0.76349, 0.3103, 0.80612, 0.3859, 0.85219, 0.47278, 0.90084, 0.56023, 0.95155, 0.65136, 0.99999, 0.75357, 1, 0.87242, 1, 1, 0.4933, 1, 0, 1, 0, 0.92305, 1.0E-5, 0.82778, 0, 0.73983, 0, 0.62412, 0, 0.53251, 0, 0.43608, 0.00392, 0.34216, 0.00784, 0.22735, 0, 0, 0.1983, 0, 0.58917, 0, 0.24112, 0.21933, 0.32423, 0.4269, 0.37029, 0.60301, 0.43398, 0.79891, 0.40755, 0.70931, 0.46224, 0.89472, 0.35945, 0.52153, 0.29624, 0.33199 ],
- "triangles": [ 7, 27, 6, 11, 25, 27, 10, 11, 27, 9, 27, 7, 10, 27, 9, 9, 7, 8, 25, 26, 5, 25, 5, 6, 12, 26, 25, 27, 25, 6, 11, 12, 25, 14, 28, 24, 26, 24, 4, 26, 4, 5, 13, 14, 24, 13, 24, 26, 12, 13, 26, 28, 23, 2, 28, 2, 3, 15, 23, 28, 24, 28, 3, 24, 3, 4, 14, 15, 28, 29, 0, 1, 17, 22, 29, 23, 29, 1, 23, 1, 2, 16, 17, 29, 16, 29, 23, 15, 16, 23, 22, 20, 21, 22, 21, 0, 18, 19, 20, 18, 20, 22, 29, 22, 0, 17, 18, 22 ],
- "vertices": [ 3, 19, 6.23, 11.08, 0.61078, 20, -2, 11.23, 0.36183, 21, -11.07, 11.51, 0.02739, 4, 19, 12.07, 12.2, 0.19907, 20, 3.91, 11.97, 0.6062, 21, -5.15, 12.1, 0.19424, 23, -22.17, 12.95, 4.9E-4, 4, 19, 16.36, 13, 0.0515, 20, 8.23, 12.48, 0.50703, 21, -0.81, 12.5, 0.43448, 23, -17.82, 13.12, 0.00699, 5, 19, 21.27, 13.84, 0.00411, 20, 13.19, 12.99, 0.26588, 21, 4.16, 12.9, 0.68377, 22, -4.34, 13.11, 0.00785, 23, -12.83, 13.25, 0.03838, 5, 20, 18.2, 13.57, 0.09566, 21, 9.18, 13.35, 0.69552, 22, 0.69, 13.35, 0.07188, 23, -7.8, 13.44, 0.12789, 24, -13.05, 13.89, 0.00906, 5, 20, 23.41, 14.16, 0.02129, 21, 14.4, 13.82, 0.46762, 22, 5.93, 13.6, 0.13857, 23, -2.55, 13.63, 0.29489, 24, -7.8, 13.9, 0.07762, 5, 20, 29.23, 14.63, 9.9E-4, 21, 20.23, 14.14, 0.21253, 22, 11.77, 13.68, 0.08339, 23, 3.29, 13.65, 0.40356, 24, -1.96, 13.72, 0.29954, 4, 21, 26.82, 13.19, 0.05202, 22, 18.31, 12.45, 0.0097, 23, 9.81, 12.34, 0.23339, 24, 4.52, 12.2, 0.70489, 3, 21, 33.89, 12.16, 0.00422, 23, 16.82, 10.94, 0.07123, 24, 11.47, 10.56, 0.92455, 1, 24, 8.68, -1.28, 1, 4, 21, 30.43, -11.59, 2.0E-5, 22, 20.88, -12.46, 0.00489, 23, 12.11, -12.59, 0.16484, 24, 5.97, -12.8, 0.83025, 4, 21, 26.17, -10.97, 3.0E-5, 22, 16.64, -11.66, 0.04786, 23, 7.89, -11.75, 0.23866, 24, 1.78, -11.81, 0.71346, 4, 21, 20.89, -10.2, 3.0E-5, 22, 11.4, -10.67, 0.27795, 23, 2.65, -10.7, 0.37487, 24, -3.41, -10.59, 0.34715, 3, 22, 6.56, -9.76, 0.6751, 23, -2.17, -9.73, 0.23677, 24, -8.21, -9.46, 0.08813, 5, 20, 19.16, -8.33, 0.004, 21, 9.6, -8.56, 0.0918, 22, 0.19, -8.56, 0.88144, 23, -8.53, -8.46, 0.02106, 24, -14.52, -7.98, 0.0017, 3, 20, 14.06, -7.71, 0.11963, 21, 4.53, -7.83, 0.42969, 22, -4.85, -7.6, 0.45068, 3, 20, 8.7, -7.07, 0.62443, 21, -0.82, -7.05, 0.29218, 22, -10.15, -6.6, 0.08339, 4, 19, 12.88, -6.1, 0.07571, 20, 3.49, -6.34, 0.90749, 21, -6.01, -6.2, 0.0133, 22, -15.3, -5.54, 0.00351, 2, 19, 6.46, -5.66, 0.82534, 20, -2.88, -5.48, 0.17466, 1, 19, -6.26, -5.16, 1, 1, 19, -6, -0.41, 1, 2, 19, -5.5, 8.96, 0.99805, 20, -13.85, 9.9, 0.00195, 1, 19, 6.32, -0.04, 1, 3, 20, 9.12, 0.72, 0.74559, 21, -0.2, 0.73, 0.25441, 23, -17.83, 1.33, 0, 3, 20, 19.05, 0.64, 4.0E-4, 22, 0.68, 0.4, 0.99878, 23, -7.94, 0.48, 8.2E-4, 2, 23, 3.11, -0.17, 0.99472, 24, -2.6, -0.08, 0.00528, 4, 20, 25.07, 0.81, 0, 21, 15.73, 0.43, 0.00201, 22, 6.7, 0.17, 0.99316, 23, -1.93, 0.19, 0.00483, 2, 23, 8.51, -0.56, 0.00543, 24, 2.78, -0.65, 0.99457, 3, 20, 14.49, 0.93, 0.00333, 21, 5.16, 0.8, 0.9961, 23, -12.47, 1.12, 5.7E-4, 3, 19, 12.69, 0.94, 0.00294, 20, 3.77, 0.69, 0.99566, 21, -5.56, 0.83, 0.0014 ],
- "hull": 22,
- "edges": [ 38, 40, 40, 42, 16, 18, 18, 20, 36, 38, 44, 40, 36, 44, 0, 42, 44, 0, 32, 46, 46, 4, 28, 48, 48, 8, 24, 50, 50, 12, 24, 26, 26, 28, 48, 52, 52, 50, 26, 52, 8, 10, 10, 12, 52, 10, 20, 22, 22, 24, 18, 54, 54, 50, 22, 54, 12, 14, 14, 16, 54, 14, 28, 30, 30, 32, 46, 56, 56, 48, 30, 56, 4, 6, 6, 8, 56, 6, 32, 34, 34, 36, 44, 58, 58, 46, 34, 58, 0, 2, 2, 4, 58, 2 ],
- "width": 24,
- "height": 56
- }
- },
- "waitaozuo": {
- "waitaozuo": {
- "type": "mesh",
- "uvs": [ 1, 0.11755, 1, 0.24344, 1, 0.32401, 1, 0.41969, 1, 0.5053, 0.99998, 0.60769, 1, 0.69497, 0.99999, 0.76883, 0.99999, 0.84437, 1, 0.91822, 1, 1, 0.26458, 1, 0, 1, 0, 0.88633, 1.0E-5, 0.79401, 2.0E-5, 0.71847, 0, 0.63119, 0.07149, 0.55187, 0.13179, 0.46641, 0.20819, 0.38357, 0.26573, 0.29893, 0.3422, 0.21283, 0.41144, 0.11674, 0.5048, 0, 0.74502, 0, 1, 0, 0.63459, 0.22985, 0.54934, 0.4073, 0.45587, 0.57932, 0.42584, 0.66435, 0.35967, 0.81639, 0.31332, 0.89856, 0.38729, 0.73629, 0.51195, 0.48511, 0.59454, 0.31322, 0.68901, 0.11658 ],
- "triangles": [ 11, 31, 10, 31, 9, 10, 31, 11, 13, 11, 12, 13, 31, 30, 9, 31, 13, 14, 30, 8, 9, 30, 31, 14, 30, 32, 8, 32, 7, 8, 32, 30, 15, 30, 14, 15, 32, 29, 7, 7, 29, 6, 29, 32, 16, 32, 15, 16, 29, 28, 6, 28, 5, 6, 16, 17, 29, 29, 17, 28, 28, 33, 5, 5, 33, 4, 17, 18, 28, 28, 18, 33, 33, 27, 4, 27, 3, 4, 18, 19, 33, 33, 19, 27, 27, 34, 3, 34, 2, 3, 19, 20, 27, 27, 20, 34, 34, 26, 2, 20, 21, 34, 26, 1, 2, 34, 21, 26, 26, 35, 1, 35, 0, 1, 21, 22, 26, 26, 22, 35, 35, 24, 0, 24, 25, 0, 22, 23, 35, 35, 23, 24 ],
- "vertices": [ 2, 25, 1.33, 5.32, 0.99982, 26, -7.66, 5.35, 1.8E-4, 2, 25, 8.34, 6.07, 0.58442, 26, -0.65, 6.07, 0.41558, 3, 25, 12.83, 6.55, 0.10169, 26, 3.84, 6.54, 0.85024, 27, -5.77, 6.29, 0.04807, 4, 25, 18.15, 7.12, 1.7E-4, 26, 9.17, 7.09, 0.50526, 27, -0.47, 7.08, 0.49402, 28, -10.44, 6.91, 5.6E-4, 3, 26, 13.94, 7.58, 0.08972, 27, 4.27, 7.78, 0.83994, 28, -5.71, 7.69, 0.07035, 4, 26, 19.64, 8.17, 2.9E-4, 27, 9.95, 8.61, 0.50359, 28, -0.05, 8.61, 0.47986, 29, -9.65, 7.84, 0.01627, 4, 27, 14.78, 9.33, 0.13671, 28, 4.77, 9.4, 0.69289, 29, -4.91, 9.03, 0.1586, 30, -11.43, 9.12, 0.0118, 4, 27, 18.87, 9.93, 0.02291, 28, 8.85, 10.07, 0.48503, 29, -0.9, 10.03, 0.39709, 30, -7.41, 10.09, 0.09497, 4, 27, 23.06, 10.55, 4.4E-4, 28, 13.03, 10.75, 0.1977, 29, 3.21, 11.06, 0.48569, 30, -3.3, 11.08, 0.31617, 3, 28, 17.11, 11.42, 0.04798, 29, 7.22, 12.06, 0.36356, 30, 0.72, 12.05, 0.58846, 3, 28, 21.63, 12.16, 0.00465, 29, 11.66, 13.17, 0.27005, 30, 5.17, 13.13, 0.7253, 1, 30, 8.28, 0.26, 1, 1, 30, 9.39, -4.37, 1, 3, 28, 18.25, -6.63, 0.00696, 29, 9.85, -5.84, 0.14609, 30, 3.21, -5.86, 0.84694, 3, 28, 13.15, -7.47, 0.18237, 29, 4.83, -7.09, 0.58015, 30, -1.82, -7.08, 0.23748, 4, 27, 18.71, -8.29, 0.01024, 28, 8.97, -8.15, 0.57107, 29, 0.73, -8.12, 0.39456, 30, -5.93, -8.07, 0.02413, 3, 27, 13.88, -9, 0.13919, 28, 4.15, -8.94, 0.76968, 29, -4.01, -9.3, 0.09113, 4, 26, 18.25, -8.77, 0.00363, 27, 9.29, -8.38, 0.5008, 28, -0.44, -8.39, 0.48877, 29, -8.63, -9.13, 0.0068, 3, 26, 13.38, -8.19, 0.11369, 27, 4.4, -8, 0.78133, 28, -5.34, -8.09, 0.10498, 4, 25, 17.66, -7.26, 8.0E-5, 26, 8.62, -7.3, 0.55791, 27, -0.39, -7.32, 0.43827, 28, -10.14, -7.48, 0.00374, 3, 25, 12.84, -6.74, 0.08317, 26, 3.8, -6.75, 0.86412, 27, -5.23, -6.99, 0.05271, 2, 25, 7.9, -5.88, 0.63626, 26, -1.14, -5.88, 0.36374, 2, 25, 2.41, -5.22, 0.99767, 26, -6.62, -5.19, 0.00233, 1, 25, -4.27, -4.24, 1, 1, 25, -4.73, 0.06, 1, 1, 25, -5.22, 4.62, 1, 2, 25, 8.28, -0.55, 0.94603, 26, -0.73, -0.55, 0.05397, 2, 26, 9.31, -1.05, 0.51187, 27, 0.03, -1.05, 0.48813, 2, 27, 9.8, -1.31, 0.5107, 28, -0.04, -1.31, 0.4893, 2, 28, 4.75, -1.07, 0.99994, 29, -4.07, -1.42, 6.0E-5, 3, 28, 13.34, -0.87, 0.00479, 29, 4.48, -0.51, 0.99217, 30, -2.12, -0.49, 0.00304, 2, 29, 9.15, -0.2, 5.0E-5, 30, 2.55, -0.22, 0.99995, 2, 28, 8.83, -1.11, 0.57409, 29, 0.01, -1.11, 0.42591, 3, 26, 13.72, -1.27, 0.00161, 27, 4.44, -1.08, 0.99737, 28, -5.41, -1.17, 0.00102, 1, 26, 3.99, -0.78, 1, 1, 25, 1.87, -0.25, 1 ],
- "hull": 26,
- "edges": [ 46, 48, 48, 50, 20, 22, 22, 24, 42, 52, 52, 2, 38, 54, 54, 6, 32, 34, 34, 56, 56, 10, 58, 56, 32, 58, 10, 12, 58, 12, 28, 60, 60, 16, 24, 26, 26, 28, 22, 62, 62, 60, 26, 62, 16, 18, 18, 20, 62, 18, 28, 30, 30, 32, 58, 64, 64, 60, 30, 64, 12, 14, 14, 16, 64, 14, 34, 36, 36, 38, 54, 66, 66, 56, 36, 66, 6, 8, 8, 10, 66, 8, 38, 40, 40, 42, 52, 68, 68, 54, 40, 68, 2, 4, 4, 6, 68, 4, 42, 44, 44, 46, 48, 70, 70, 52, 44, 70, 2, 0, 0, 50, 70, 0 ],
- "width": 18,
- "height": 56
- }
- },
- "xianlian": {
- "xianlian": { "x": 3.8, "y": 2.61, "rotation": 94.15, "width": 13, "height": 12 }
- },
- "youjiap": {
- "youjiap": {
- "type": "mesh",
- "uvs": [ 1, 0.47967, 1, 0.50404, 1, 0.52305, 1, 0.83179, 1, 0.85187, 0.99999, 0.87435, 1, 1, 0.25314, 1, 0.24707, 0.95972, 0.23829, 0.90151, 0.41846, 0.86646, 0.41413, 0.84784, 0.40919, 0.82662, 0.35012, 0.54698, 0.34463, 0.52097, 0.33875, 0.49317, 0.23457, 0, 0.63571, 0, 1, 0, 0.80334, 0.87153, 0.73324, 0.50621, 0.79553, 0.82951, 0.79899, 0.84811, 0.73838, 0.53288, 0.72826, 0.48033 ],
- "triangles": [ 7, 19, 6, 7, 8, 19, 8, 10, 19, 8, 9, 10, 21, 23, 2, 12, 13, 23, 13, 20, 23, 13, 14, 20, 2, 23, 1, 23, 20, 1, 1, 20, 0, 19, 5, 6, 5, 19, 4, 10, 22, 19, 19, 22, 4, 10, 11, 22, 4, 22, 3, 11, 21, 22, 22, 21, 3, 11, 12, 21, 21, 2, 3, 12, 23, 21, 14, 24, 20, 14, 15, 24, 20, 24, 0, 15, 17, 24, 15, 16, 17, 0, 24, 18, 24, 17, 18 ],
- "vertices": [ 2, 16, 24.7, 10.32, 0.45804, 17, -0.73, 10.31, 0.54196, 2, 16, 26.18, 10.18, 0.3438, 17, 0.74, 10.1, 0.6562, 2, 16, 27.34, 10.08, 0.26042, 17, 1.89, 9.95, 0.73958, 2, 17, 20.55, 7.39, 0.98139, 18, -8.27, -4.41, 0.01861, 2, 17, 21.76, 7.22, 0.94838, 18, -8.06, -3.2, 0.05162, 2, 17, 23.12, 7.04, 0.88196, 18, -7.82, -1.85, 0.11804, 2, 17, 30.71, 6, 0.29823, 18, -6.47, 5.69, 0.70177, 1, 18, 19.26, 1.11, 1, 2, 17, 24.7, -19.78, 6.0E-5, 18, 19.04, -1.34, 0.99994, 2, 17, 21.14, -19.6, 0.004, 18, 18.72, -4.89, 0.996, 2, 17, 19.88, -13.06, 0.21657, 18, 12.14, -5.89, 0.78343, 2, 17, 18.74, -13.06, 0.34978, 18, 12.09, -7.04, 0.65022, 2, 17, 17.43, -13.05, 0.46774, 18, 12.03, -8.34, 0.53226, 3, 16, 26.77, -12.71, 0.42425, 17, 0.25, -12.79, 0.56761, 18, 11.08, -25.5, 0.00814, 3, 16, 25.17, -12.76, 0.54015, 17, -1.35, -12.76, 0.45604, 18, 10.99, -27.09, 0.0038, 3, 16, 23.46, -12.81, 0.65975, 17, -3.06, -12.73, 0.33894, 18, 10.89, -28.8, 0.00132, 1, 16, -6.82, -13.77, 1, 1, 16, -5.58, 0.21, 1, 1, 16, -4.44, 12.91, 1, 1, 17, 22.02, 0.24, 1, 2, 16, 25.48, 0.87, 0.43325, 17, -0.39, 0.84, 0.56675, 1, 17, 19.44, 0.32, 1, 1, 17, 20.58, 0.29, 1, 2, 16, 27.12, 0.91, 0.05986, 17, 1.24, 0.79, 0.94014, 2, 16, 23.9, 0.84, 0.86937, 17, -1.98, 0.88, 0.13063 ],
- "hull": 19,
- "edges": [ 20, 18, 12, 14, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 28, 40, 40, 2, 24, 42, 42, 6, 20, 22, 22, 24, 38, 44, 44, 42, 22, 44, 6, 8, 8, 10, 44, 8, 24, 26, 26, 28, 40, 46, 46, 42, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 40, 30, 48, 2, 0, 0, 36, 48, 0 ],
- "width": 35,
- "height": 61
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.53623, 0.32096, 0.55353, 0.34325, 0.58098, 0.3619, 0.90254, 0.5804, 0.94339, 0.60817, 1, 0.64663, 1, 1, 0.71029, 1, 0.57128, 0.88243, 0.54349, 0.85893, 0.51663, 0.83621, 0.23198, 0.58183, 0.20611, 0.551, 0.18533, 0.52623, 0, 0.30532, 0, 0, 0.28705, 0, 0.39678, 0.43917, 0.73223, 0.75594, 0.70594, 0.73111, 0.68024, 0.70684, 0.4194, 0.46053, 0.3767, 0.41694 ],
- "triangles": [ 7, 18, 6, 18, 5, 6, 7, 8, 18, 8, 19, 18, 8, 9, 19, 9, 20, 19, 18, 4, 5, 18, 19, 4, 19, 3, 4, 19, 20, 3, 9, 10, 20, 11, 21, 10, 10, 21, 20, 21, 2, 20, 20, 2, 3, 11, 17, 21, 11, 12, 17, 12, 22, 17, 21, 1, 2, 21, 17, 1, 17, 0, 1, 17, 22, 0, 12, 13, 22, 13, 14, 22, 0, 22, 16, 16, 22, 15, 22, 14, 15 ],
- "vertices": [ 2, 9, 19.74, 7.37, 0.63467, 10, -0.81, 7.57, 0.36533, 2, 9, 21.06, 7.37, 0.47061, 10, 0.5, 7.37, 0.52939, 2, 9, 22.4, 7.78, 0.30624, 10, 1.89, 7.59, 0.69376, 2, 10, 18.15, 10.1, 0.44739, 11, -0.5, 10.14, 0.55261, 2, 10, 20.21, 10.42, 0.28748, 11, 1.58, 10.35, 0.71252, 2, 10, 23.07, 10.86, 0.15044, 11, 4.46, 10.64, 0.84956, 1, 11, 18.43, -1.3, 1, 1, 11, 11.47, -9.45, 1, 2, 10, 23.13, -9.19, 0.15829, 11, 3.48, -9.39, 0.84171, 2, 10, 21.54, -9.26, 0.2688, 11, 1.88, -9.37, 0.7312, 2, 10, 19.99, -9.33, 0.40128, 11, 0.34, -9.36, 0.59872, 2, 9, 26.08, -9.07, 0.20983, 10, 3.09, -9.62, 0.79017, 2, 9, 24.21, -9.13, 0.34456, 10, 1.23, -9.4, 0.65544, 2, 9, 22.71, -9.17, 0.47994, 10, -0.26, -9.23, 0.52006, 1, 9, 9.34, -9.55, 1, 1, 9, -4.52, -1.8, 1, 1, 9, 0.67, 7.47, 1, 2, 9, 22.58, -0.13, 0.00445, 10, 0.92, -0.27, 0.99555, 1, 11, 2.35, -0.58, 1, 2, 10, 19.93, -0.45, 0.0147, 11, 0.73, -0.49, 0.9853, 2, 10, 18.35, -0.43, 0.97853, 11, -0.84, -0.39, 0.02147, 1, 10, 2.31, -0.28, 1, 2, 9, 21.21, -0.22, 0.84445, 10, -0.45, -0.15, 0.15555 ],
- "hull": 17,
- "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 36, 12, 14, 16, 16, 36, 36, 10, 16, 18, 38, 36, 18, 38, 8, 10, 38, 8, 18, 20, 40, 38, 20, 40, 6, 8, 40, 6, 24, 34, 34, 2, 22, 24, 34, 42, 22, 42, 2, 4, 42, 4, 20, 22, 4, 6, 24, 26, 26, 28, 30, 44, 44, 34, 26, 44, 2, 0, 0, 32, 44, 0 ],
- "width": 37,
- "height": 52
- }
- },
- "youshou2": {
- "youshou2": {
- "type": "mesh",
- "uvs": [ 1, 0.53266, 1, 1, 0.31353, 1, 0, 0.56584, 0, 0, 0.57308, 0 ],
- "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
- "vertices": [ 17.53, 6.29, 28.64, 0.3, 22.77, -10.58, 9.77, -9.98, -3.67, -2.73, 1.22, 6.35 ],
- "hull": 6,
- "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
- "width": 18,
- "height": 27
- }
- },
- "youshou3": {
- "youshou3": {
- "type": "mesh",
- "uvs": [ 0.80096, 0.25107, 0.79047, 1, 0.34185, 1, 0.30448, 1, 0.26648, 1, 0, 1, 0, 0.67162, 0, 0, 0.27448, 0, 0.31248, 0, 0.34062, 0, 0.80447, 0, 0.31048, 0.53295, 0.27471, 0.54892, 0.34271, 0.51443 ],
- "triangles": [ 9, 12, 8, 13, 8, 12, 13, 6, 7, 13, 7, 8, 4, 5, 6, 13, 4, 6, 3, 13, 12, 4, 13, 3, 3, 12, 2, 0, 10, 11, 14, 10, 0, 9, 14, 12, 9, 10, 14, 2, 12, 14, 1, 14, 0, 2, 14, 1 ],
- "vertices": [ 1, 62, -6.54, 0.89, 1, 1, 62, -2.97, 13.91, 1, 2, 62, 19.76, 8.66, 0.59303, 63, 0.58, 8.65, 0.40697, 2, 62, 21.65, 8.22, 0.38688, 63, 2.47, 8.18, 0.61312, 2, 62, 23.58, 7.78, 0.20121, 63, 4.38, 7.7, 0.79879, 1, 63, 17.83, 4.34, 1, 1, 63, 16.39, -1.39, 1, 2, 62, 33.03, -12.88, 2.6E-4, 63, 13.46, -13.12, 0.99974, 2, 62, 19.12, -9.67, 0.44749, 63, -0.38, -9.66, 0.55251, 2, 62, 17.2, -9.22, 0.60626, 63, -2.3, -9.18, 0.39374, 2, 62, 15.77, -8.89, 0.71761, 63, -3.72, -8.83, 0.28239, 1, 62, -7.73, -3.47, 1, 2, 62, 19.46, 0.1, 0.35683, 63, 0.13, 0.1, 0.64317, 2, 62, 21.33, -0.04, 0.00472, 63, 2, -0.07, 0.99528, 1, 62, 17.75, 0.15, 1 ],
- "hull": 12,
- "edges": [ 10, 12, 12, 14, 2, 0, 0, 22, 18, 24, 24, 6, 14, 16, 16, 18, 12, 26, 26, 24, 16, 26, 6, 8, 8, 10, 26, 8, 18, 20, 20, 22, 0, 28, 28, 24, 20, 28, 2, 4, 4, 6, 28, 4 ],
- "width": 52,
- "height": 18
- }
- },
- "youyan": {
- "youyan": { "x": 4.53, "y": -0.31, "rotation": -93.86, "width": 18, "height": 20 }
- },
- "zuojiao": {
- "zuojiao": {
- "type": "mesh",
- "uvs": [ 0.68703, 0.45136, 0.68651, 0.47746, 0.68603, 0.5014, 0.67955, 0.82526, 0.67911, 0.84713, 0.67866, 0.86996, 0.67606, 1, 0, 1, 0, 0.95199, 0, 0.87062, 0.18606, 0.84437, 0.18629, 0.82522, 0.18659, 0.79958, 0.19018, 0.49617, 0.19048, 0.4709, 0.19085, 0.4397, 0.19606, 0, 0.46832, 0, 0.69606, 0, 0.40963, 0.857, 0.4113, 0.83267, 0.41259, 0.81377, 0.4355, 0.47928, 0.43381, 0.50396, 0.43748, 0.45026 ],
- "triangles": [ 7, 19, 6, 7, 8, 19, 8, 10, 19, 8, 9, 10, 6, 19, 5, 5, 19, 4, 4, 19, 20, 19, 10, 20, 4, 20, 3, 3, 20, 21, 10, 11, 20, 20, 11, 21, 21, 23, 3, 3, 23, 2, 11, 12, 21, 21, 12, 23, 12, 13, 23, 23, 22, 2, 22, 23, 14, 2, 22, 1, 23, 13, 14, 22, 24, 1, 24, 22, 15, 1, 24, 0, 22, 14, 15, 24, 17, 0, 0, 17, 18, 15, 16, 24, 24, 16, 17 ],
- "vertices": [ 2, 13, 21.09, 11.35, 0.61885, 14, -2.14, 11.32, 0.38115, 2, 13, 22.66, 11.39, 0.49896, 14, -0.58, 11.39, 0.50104, 2, 13, 24.09, 11.43, 0.38959, 14, 0.86, 11.45, 0.61041, 2, 14, 20.27, 12.26, 0.69643, 15, -13.05, -0.45, 0.30357, 2, 14, 21.59, 12.32, 0.6123, 15, -12.71, 0.82, 0.3877, 2, 14, 22.95, 12.38, 0.52017, 15, -12.35, 2.14, 0.47983, 2, 14, 30.75, 12.71, 0.18484, 15, -10.28, 9.66, 0.81516, 1, 15, 19.17, 2.06, 1, 1, 15, 18.46, -0.73, 1, 2, 14, 24.74, -18.11, 5.0E-5, 15, 17.24, -5.46, 0.99995, 2, 14, 22.69, -9.84, 0.22006, 15, 8.73, -4.89, 0.77994, 2, 14, 21.54, -9.9, 0.38262, 15, 8.44, -6, 0.61738, 2, 14, 20, -9.97, 0.55562, 15, 8.04, -7.49, 0.44438, 2, 13, 24.71, -10.87, 0.38289, 14, 1.82, -10.85, 0.61711, 2, 13, 23.2, -10.92, 0.50713, 14, 0.3, -10.92, 0.49287, 2, 13, 21.32, -10.99, 0.65895, 14, -1.57, -11.01, 0.34105, 1, 13, -5.04, -11.85, 1, 1, 13, -5.55, 0.39, 1, 1, 13, -5.98, 10.63, 1, 2, 14, 22.87, 0.25, 0.93542, 15, -0.82, -1.64, 0.06458, 1, 14, 21.41, 0.24, 1, 1, 14, 20.27, 0.23, 1, 2, 13, 23.24, 0.11, 0.38712, 14, 0.18, 0.12, 0.61287, 1, 14, 1.66, 0.12, 1, 2, 13, 21.5, 0.13, 0.99876, 14, -1.57, 0.11, 0.00124 ],
- "hull": 19,
- "edges": [ 12, 14, 20, 18, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
- "width": 45,
- "height": 60
- }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.30154, 0.78695, 0.52391, 0.76089, 0.55111, 0.74079, 0.57308, 0.48704, 0.85047, 0.46048, 0.87951, 0.43596, 0.90632, 0.35026, 1, 0, 1, 0, 0.67737, 0.1345, 0.58112, 0.16834, 0.5569, 0.19631, 0.53688, 0.45519, 0.35163, 0.48826, 0.32796, 0.51022, 0.29825, 0.7306, 0, 1, 0, 0.60229, 0.44757, 0.31975, 0.73727, 0.57725, 0.47325, 0.63022, 0.41614, 0.28591, 0.75658, 0.34523, 0.7112 ],
- "triangles": [ 22, 11, 19, 10, 11, 22, 6, 19, 5, 22, 19, 6, 22, 8, 9, 22, 9, 10, 7, 22, 6, 8, 22, 7, 13, 14, 20, 20, 18, 3, 23, 12, 13, 23, 13, 20, 23, 11, 12, 19, 11, 23, 4, 23, 20, 4, 20, 3, 19, 23, 4, 5, 19, 4, 21, 16, 17, 21, 15, 16, 17, 0, 21, 14, 15, 21, 18, 14, 21, 20, 14, 18, 1, 21, 0, 2, 21, 1, 18, 21, 2, 3, 18, 2 ],
- "vertices": [ 1, 6, 6.63, 11.67, 1, 2, 6, 19.85, 8.39, 0.65967, 7, -2.86, 7.91, 0.34033, 2, 6, 21.47, 7.99, 0.48643, 7, -1.2, 7.96, 0.51357, 2, 6, 22.76, 7.7, 0.34504, 7, 0.12, 8.03, 0.65496, 2, 7, 16.78, 8.93, 0.63201, 8, -1.89, 8.76, 0.36799, 2, 7, 18.52, 9.03, 0.46631, 8, -0.18, 9.07, 0.53369, 2, 7, 20.13, 9.11, 0.32289, 8, 1.41, 9.36, 0.67711, 2, 7, 25.75, 9.42, 0.05941, 8, 6.95, 10.36, 0.94059, 1, 8, 17.76, 0.9, 1, 2, 7, 23.98, -11.39, 0.10163, 8, 7.78, -10.51, 0.89837, 2, 7, 16.93, -10.28, 0.48535, 8, 0.65, -10.28, 0.51465, 2, 7, 15.16, -10, 0.62916, 8, -1.15, -10.22, 0.37084, 3, 6, 31, -13.11, 1.3E-4, 7, 13.69, -9.77, 0.73677, 8, -2.63, -10.18, 0.2631, 2, 6, 18.53, -7.38, 0.56449, 7, 0.13, -7.63, 0.43551, 2, 6, 16.93, -6.65, 0.76423, 7, -1.6, -7.36, 0.23577, 2, 6, 15.28, -6.45, 0.89971, 7, -3.24, -7.62, 0.10029, 1, 6, -1.28, -4.47, 1, 1, 6, -6.11, 5.46, 1, 2, 6, 19.94, 0.01, 0.94897, 7, -0.51, -0.13, 0.05103, 2, 7, 17.36, 0.27, 0.68153, 8, -0.24, 0.24, 0.31847, 1, 7, 1.07, -0.09, 1, 1, 6, 18.11, 0.4, 1, 1, 8, 1.41, 0.01, 1, 1, 7, 15.75, 0.24, 1 ],
- "hull": 18,
- "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 28, 36, 36, 4, 4, 6, 36, 40, 6, 40, 26, 28, 40, 26, 28, 30, 30, 32, 34, 42, 42, 36, 30, 42, 0, 2, 2, 4, 42, 2, 10, 38, 38, 22, 18, 20, 20, 22, 20, 44, 10, 12, 12, 14, 44, 12, 6, 8, 8, 10, 38, 46, 46, 40, 8, 46, 22, 24, 24, 26, 46, 24 ],
- "width": 41,
- "height": 47
- }
- },
- "zuoshou2": {
- "zuoshou2": {
- "type": "mesh",
- "uvs": [ 1, 0.60166, 0.58525, 1, 0, 1, 0, 0.48166, 0.54146, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
- "vertices": [ 9.51, 9.89, 22.51, 10.64, 29.74, 2.2, 19.51, -6.57, 3.31, -6.91, -2.36, -0.29 ],
- "hull": 6,
- "edges": [ 2, 4, 0, 10, 2, 0, 4, 6, 8, 10, 6, 8 ],
- "width": 19,
- "height": 26
- }
- },
- "zuoshou3": {
- "zuoshou3": {
- "type": "mesh",
- "uvs": [ 1, 0.68624, 1, 1, 0.69688, 1, 0.65814, 1, 0.6092, 1, 0.21012, 1, 0.20487, 0.46526, 0.2003, 0, 0.65814, 0, 0.70912, 0, 0.74582, 0, 1, 0, 0.67501, 0.59702, 0.71174, 0.6071, 0.62977, 0.58434 ],
- "triangles": [ 13, 12, 10, 13, 10, 11, 0, 13, 11, 13, 3, 12, 13, 2, 3, 0, 2, 13, 2, 0, 1, 6, 7, 8, 14, 6, 8, 9, 14, 8, 12, 14, 9, 10, 12, 9, 5, 6, 14, 4, 5, 14, 4, 14, 12, 3, 4, 12 ],
- "vertices": [ 1, 60, 16.46, 0.96, 1, 1, 60, 17.43, -4.6, 1, 2, 59, 21.04, -7.27, 0.41253, 60, 2.2, -7.25, 0.58747, 2, 59, 19.09, -7.59, 0.62197, 60, 0.25, -7.59, 0.37803, 2, 59, 16.62, -8, 0.83934, 60, -2.21, -8.02, 0.16066, 1, 59, -3.45, -11.35, 1, 1, 59, -5.3, -1.9, 1, 1, 59, -6.91, 6.32, 1, 2, 59, 16.13, 10.16, 0.78064, 60, -2.83, 10.14, 0.21936, 2, 59, 18.69, 10.59, 0.58369, 60, -0.27, 10.59, 0.41631, 2, 59, 20.54, 10.9, 0.43244, 60, 1.57, 10.91, 0.56756, 2, 59, 33.32, 13.03, 0.00294, 60, 14.35, 13.13, 0.99706, 2, 59, 18.74, -0.3, 0.66319, 60, -0.14, -0.3, 0.33681, 2, 59, 20.62, -0.17, 0.00645, 60, 1.73, -0.15, 0.99355, 2, 59, 16.43, -0.45, 0.99866, 60, -2.45, -0.47, 0.00134 ],
- "hull": 12,
- "edges": [ 10, 12, 12, 14, 2, 0, 0, 22, 18, 24, 24, 6, 18, 20, 20, 22, 0, 26, 26, 24, 20, 26, 2, 4, 4, 6, 26, 4, 6, 8, 8, 10, 12, 28, 28, 24, 8, 28, 14, 16, 16, 18, 28, 16 ],
- "width": 51,
- "height": 18
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 6.17, "y": 0.81, "rotation": -91.83, "width": 17, "height": 19 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biaoqing": {
- "attachment": [
- { "time": 0.1667, "name": "biaoqing" }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 0.2, "name": null }
- ]
- },
- "hua": {
- "color": [
- { "time": 0, "color": "ffffff00" },
- { "time": 0.2, "color": "ffffffff" }
- ],
- "attachment": [
- { "time": 0, "name": "hua" }
- ]
- },
- "youshou": {
- "attachment": [
- { "time": 0.1667, "name": null },
- { "time": 0.2667, "name": null }
- ]
- },
- "youshou2": {
- "attachment": [
- { "time": 0.1667, "name": "youshou2" }
- ]
- },
- "youshou3": {
- "attachment": [
- { "time": 0.1667, "name": "youshou3" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 0.2, "name": null },
- { "time": 0.3333, "name": null }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0.1667, "name": null },
- { "time": 0.2667, "name": null }
- ]
- },
- "zuoshou2": {
- "attachment": [
- { "time": 0.1667, "name": "zuoshou2" }
- ]
- },
- "zuoshou3": {
- "attachment": [
- { "time": 0.1667, "name": "zuoshou3" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.2, "name": null },
- { "time": 0.3333, "name": null }
- ]
- }
- },
- "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, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0 },
- { "time": 0.2667, "x": 0, "y": 0.93 },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0 },
- { "time": 0.4333, "angle": 3.25, "curve": "stepped" },
- { "time": 0.7333, "angle": 3.25, "curve": "stepped" },
- { "time": 1.0667, "angle": 3.25, "curve": "stepped" },
- { "time": 1.4, "angle": 3.25, "curve": "stepped" },
- { "time": 1.7333, "angle": 3.25, "curve": "stepped" },
- { "time": 2.0333, "angle": 3.25, "curve": "stepped" },
- { "time": 2.3333, "angle": 3.25, "curve": "stepped" },
- { "time": 2.6667, "angle": 3.25, "curve": "stepped" },
- { "time": 3, "angle": 3.25 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": 0, "y": -1.62 },
- { "time": 0.2667, "x": 0, "y": 1.9 },
- { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0 },
- { "time": 0.4333, "angle": -7.3 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": -7.3 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": -7.3 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": -7.3 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": -7.3 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1 },
- { "time": 0.7333, "x": 1.017, "y": 1 },
- { "time": 1.0667, "x": 1, "y": 1 },
- { "time": 1.4, "x": 1.017, "y": 1 },
- { "time": 1.7333, "x": 1, "y": 1 },
- { "time": 2.0333, "x": 1.017, "y": 1 },
- { "time": 2.3333, "x": 1, "y": 1 },
- { "time": 2.6667, "x": 1.017, "y": 1 },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 5.92 },
- { "time": 0.2667, "angle": -13.77, "curve": "stepped" },
- { "time": 0.4333, "angle": -13.77, "curve": "stepped" },
- { "time": 0.7333, "angle": -13.77, "curve": "stepped" },
- { "time": 1.0667, "angle": -13.77, "curve": "stepped" },
- { "time": 1.4, "angle": -13.77, "curve": "stepped" },
- { "time": 1.7333, "angle": -13.77, "curve": "stepped" },
- { "time": 2.0333, "angle": -13.77, "curve": "stepped" },
- { "time": 2.3333, "angle": -13.77, "curve": "stepped" },
- { "time": 2.6667, "angle": -13.77, "curve": "stepped" },
- { "time": 3, "angle": -13.77 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 5.5 },
- { "time": 0.2667, "angle": 55.49, "curve": "stepped" },
- { "time": 0.4333, "angle": 55.49, "curve": "stepped" },
- { "time": 0.7333, "angle": 55.49, "curve": "stepped" },
- { "time": 1.0667, "angle": 55.49, "curve": "stepped" },
- { "time": 1.4, "angle": 55.49, "curve": "stepped" },
- { "time": 1.7333, "angle": 55.49, "curve": "stepped" },
- { "time": 2.0333, "angle": 55.49, "curve": "stepped" },
- { "time": 2.3333, "angle": 55.49, "curve": "stepped" },
- { "time": 2.6667, "angle": 55.49, "curve": "stepped" },
- { "time": 3, "angle": 55.49 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -4.7 },
- { "time": 0.2667, "angle": 8.61, "curve": "stepped" },
- { "time": 0.4333, "angle": 8.61, "curve": "stepped" },
- { "time": 0.7333, "angle": 8.61, "curve": "stepped" },
- { "time": 1.0667, "angle": 8.61, "curve": "stepped" },
- { "time": 1.4, "angle": 8.61, "curve": "stepped" },
- { "time": 1.7333, "angle": 8.61, "curve": "stepped" },
- { "time": 2.0333, "angle": 8.61, "curve": "stepped" },
- { "time": 2.3333, "angle": 8.61, "curve": "stepped" },
- { "time": 2.6667, "angle": 8.61, "curve": "stepped" },
- { "time": 3, "angle": 8.61 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.03 },
- { "time": 0.2667, "angle": -95.19, "curve": "stepped" },
- { "time": 0.4333, "angle": -95.19, "curve": "stepped" },
- { "time": 0.7333, "angle": -95.19, "curve": "stepped" },
- { "time": 1.0667, "angle": -95.19, "curve": "stepped" },
- { "time": 1.4, "angle": -95.19, "curve": "stepped" },
- { "time": 1.7333, "angle": -95.19, "curve": "stepped" },
- { "time": 2.0333, "angle": -95.19, "curve": "stepped" },
- { "time": 2.3333, "angle": -95.19, "curve": "stepped" },
- { "time": 2.6667, "angle": -95.19, "curve": "stepped" },
- { "time": 3, "angle": -95.19 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -5.83 },
- { "time": 0.2667, "angle": 0 },
- { "time": 0.5, "angle": -5.83 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": -5.83 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": -5.83 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": -5.83 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": -5.83 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 10.26 },
- { "time": 0.2667, "angle": 0 },
- { "time": 0.5, "angle": 10.26 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": 10.26 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": 10.26 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": 10.26 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": 10.26 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.2667, "angle": 6.04 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -4.57 },
- { "time": 0.2667, "angle": 0 },
- { "time": 0.5, "angle": -4.57 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": -4.57 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": -4.57 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": -4.57 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": -4.57 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 10.7 },
- { "time": 0.2667, "angle": 0 },
- { "time": 0.5, "angle": 10.7 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": 10.7 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": 10.7 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": 10.7 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": 10.7 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.57 },
- { "time": 0.2667, "angle": 4.19 },
- { "time": 0.5, "angle": -6.57 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": -6.57 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": -6.57 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": -6.57 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": -6.57 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": 0.53, "y": -0.62 },
- { "time": 0.2667, "x": 0, "y": 0 },
- { "time": 0.5, "x": 0.53, "y": -0.62 },
- { "time": 0.7333, "x": 0, "y": 0 },
- { "time": 1.0667, "x": 0.53, "y": -0.62 },
- { "time": 1.4, "x": 0, "y": 0 },
- { "time": 1.7333, "x": 0.53, "y": -0.62 },
- { "time": 2.0333, "x": 0, "y": 0 },
- { "time": 2.3333, "x": 0.53, "y": -0.62 },
- { "time": 2.6667, "x": 0, "y": 0 },
- { "time": 3, "x": 0.53, "y": -0.62 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 4.91 },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 4.91 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.1333, "angle": -4.4 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2, "angle": -4.4 },
- { "time": 2.5667, "angle": 0 },
- { "time": 3, "angle": -4.08 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 4.91 },
- { "time": 0.7333, "angle": -3.27 },
- { "time": 1.2333, "angle": 7.84 },
- { "time": 1.7333, "angle": -3.27 },
- { "time": 2.1, "angle": 7.84 },
- { "time": 2.5667, "angle": -3.27 },
- { "time": 3, "angle": 5.66 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 4.91 },
- { "time": 0.7333, "angle": -3.27 },
- { "time": 1.2333, "angle": 7.84 },
- { "time": 1.7333, "angle": -3.27 },
- { "time": 2.1, "angle": 7.84 },
- { "time": 2.5667, "angle": -3.27 },
- { "time": 3, "angle": 5.66 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 4.91 },
- { "time": 0.7333, "angle": -3.27 },
- { "time": 1.2333, "angle": 7.84 },
- { "time": 1.7333, "angle": -3.27 },
- { "time": 2.1, "angle": 7.84 },
- { "time": 2.5667, "angle": -3.27 },
- { "time": 3, "angle": 5.66 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.4333, "angle": -356.02 },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.17 },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.17 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.2, "angle": -7.12 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2.0667, "angle": -7.12 },
- { "time": 2.5667, "angle": 0 },
- { "time": 3, "angle": -5.78 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.17 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.2, "angle": -7.12 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2.0667, "angle": -7.12 },
- { "time": 2.5667, "angle": 0 },
- { "time": 3, "angle": -5.78 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.17 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.2, "angle": -7.12 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2.0667, "angle": -7.12 },
- { "time": 2.5667, "angle": 0 },
- { "time": 3, "angle": -5.78 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.17 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.2, "angle": -7.12 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2.0667, "angle": -7.12 },
- { "time": 2.5667, "angle": 0 },
- { "time": 3, "angle": -5.78 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0 },
- { "time": 0.7333, "angle": -4.32 },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -4.32 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2.0333, "angle": -4.32 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.6667, "angle": -4.32 },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0 },
- { "time": 0.4333, "x": -3.09, "y": -0.33 },
- { "time": 0.7333, "x": -1.31, "y": -0.04 },
- { "time": 1.0667, "x": -3.09, "y": -0.33 },
- { "time": 1.4, "x": -1.31, "y": -0.04 },
- { "time": 1.7333, "x": -3.09, "y": -0.33 },
- { "time": 2.0333, "x": -1.31, "y": -0.04 },
- { "time": 2.3333, "x": -3.09, "y": -0.33 },
- { "time": 2.6667, "x": -1.31, "y": -0.04 },
- { "time": 3, "x": -3.09, "y": -0.33 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.4333, "angle": 2.11 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": -2.86 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": -2.86 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": -2.86 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": -2.86 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.4333, "angle": -2.03 },
- { "time": 0.5, "angle": -4.84 },
- { "time": 0.7333, "angle": -4.2 },
- { "time": 1.0667, "angle": 5.2 },
- { "time": 1.4, "angle": -4.2 },
- { "time": 1.7333, "angle": 5.2 },
- { "time": 2.0333, "angle": -4.2 },
- { "time": 2.3333, "angle": 5.2 },
- { "time": 2.6667, "angle": -4.2 },
- { "time": 3, "angle": 5.2 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -1.94 },
- { "time": 0.4333, "angle": 8.87 },
- { "time": 0.7333, "angle": -4.2 },
- { "time": 1.0667, "angle": 10.93 },
- { "time": 1.4, "angle": -4.2 },
- { "time": 1.7333, "angle": 10.93 },
- { "time": 2.0333, "angle": -4.2 },
- { "time": 2.3333, "angle": 10.93 },
- { "time": 2.6667, "angle": -4.2 },
- { "time": 3, "angle": 10.93 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -1.94 },
- { "time": 0.4, "angle": 0 },
- { "time": 0.7333, "angle": -4.2, "curve": "stepped" },
- { "time": 1.4, "angle": -4.2, "curve": "stepped" },
- { "time": 2.0333, "angle": -4.2, "curve": "stepped" },
- { "time": 2.6667, "angle": -4.2 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -5.81 },
- { "time": 0.4333, "angle": 5.18 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.7333, "angle": -10.14 },
- { "time": 1.0667, "angle": 5.18 },
- { "time": 1.4, "angle": -10.14 },
- { "time": 1.7333, "angle": 5.18 },
- { "time": 2.0333, "angle": -10.14 },
- { "time": 2.3333, "angle": 5.18 },
- { "time": 2.6667, "angle": -10.14 },
- { "time": 3, "angle": 5.18 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 0.35 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.7333, "angle": -10.14, "curve": "stepped" },
- { "time": 1.4, "angle": -10.14, "curve": "stepped" },
- { "time": 2.0333, "angle": -10.14, "curve": "stepped" },
- { "time": 2.6667, "angle": -10.14 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0 },
- { "time": 0.7333, "angle": -10.14, "curve": "stepped" },
- { "time": 1.4, "angle": -10.14, "curve": "stepped" },
- { "time": 2.0333, "angle": -10.14, "curve": "stepped" },
- { "time": 2.6667, "angle": -10.14 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.48 },
- { "time": 0.4333, "angle": 6.46 },
- { "time": 0.7333, "angle": -19.94 },
- { "time": 1.0667, "angle": 6.46 },
- { "time": 1.4, "angle": -19.94 },
- { "time": 1.7333, "angle": 6.46 },
- { "time": 2.0333, "angle": -19.94 },
- { "time": 2.3333, "angle": 6.46 },
- { "time": 2.6667, "angle": -19.94 },
- { "time": 3, "angle": 6.46 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -6.13 },
- { "time": 0.4333, "angle": 6.51 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": 6.51 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": 6.51 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": 6.51 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": 6.51 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.4333, "angle": 7.54 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": 7.54 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": 7.54 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": 7.54 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": 7.54 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.4333, "angle": 2.98 },
- { "time": 0.7333, "angle": 0 },
- { "time": 1.0667, "angle": 2.98 },
- { "time": 1.4, "angle": 0 },
- { "time": 1.7333, "angle": 2.98 },
- { "time": 2.0333, "angle": 0 },
- { "time": 2.3333, "angle": 2.98 },
- { "time": 2.6667, "angle": 0 },
- { "time": 3, "angle": 2.98 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.4333, "angle": 4.84 },
- { "time": 0.7333, "angle": 2.32 },
- { "time": 1.0667, "angle": 4.84 },
- { "time": 1.4, "angle": 2.32 },
- { "time": 1.7333, "angle": 4.84 },
- { "time": 2.0333, "angle": 2.32 },
- { "time": 2.3333, "angle": 4.84 },
- { "time": 2.6667, "angle": 2.32 },
- { "time": 3, "angle": 4.84 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -5.43 },
- { "time": 0.4333, "angle": 4.84 },
- { "time": 0.7333, "angle": 2.32 },
- { "time": 1.0667, "angle": 4.84 },
- { "time": 1.4, "angle": 2.32 },
- { "time": 1.7333, "angle": 4.84 },
- { "time": 2.0333, "angle": 2.32 },
- { "time": 2.3333, "angle": 4.84 },
- { "time": 2.6667, "angle": 2.32 },
- { "time": 3, "angle": 4.84 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -5.43 },
- { "time": 0.4333, "angle": 4.84 },
- { "time": 0.7333, "angle": 2.32 },
- { "time": 1.0667, "angle": 4.84 },
- { "time": 1.4, "angle": 2.32 },
- { "time": 1.7333, "angle": 4.84 },
- { "time": 2.0333, "angle": 2.32 },
- { "time": 2.3333, "angle": 4.84 },
- { "time": 2.6667, "angle": 2.32 },
- { "time": 3, "angle": 4.84 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "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.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": -2.89 },
- { "time": 0.2667, "angle": 3.72 },
- { "time": 0.4333, "angle": 10.13 },
- { "time": 0.7333, "angle": 5.06 },
- { "time": 1.0667, "angle": 10.13 },
- { "time": 1.4, "angle": 5.06 },
- { "time": 1.7333, "angle": 10.13 },
- { "time": 2.0333, "angle": 5.06 },
- { "time": 2.3333, "angle": 10.13 },
- { "time": 2.6667, "angle": 5.06 },
- { "time": 3, "angle": 10.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1, "angle": 5.07 },
- { "time": 0.2667, "angle": -6.03 },
- { "time": 0.4333, "angle": -0.21 },
- { "time": 0.7333, "angle": -13.56 },
- { "time": 1.0667, "angle": 10.13 },
- { "time": 1.4, "angle": -13.56 },
- { "time": 1.7333, "angle": 10.13 },
- { "time": 2.0333, "angle": -13.56 },
- { "time": 2.3333, "angle": 10.13 },
- { "time": 2.6667, "angle": -13.56 },
- { "time": 3, "angle": 10.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0 },
- { "time": 0.4333, "angle": 10.13 },
- { "time": 0.7333, "angle": 5.06 },
- { "time": 1.0667, "angle": 10.13 },
- { "time": 1.4, "angle": 5.06 },
- { "time": 1.7333, "angle": 10.13 },
- { "time": 2.0333, "angle": 5.06 },
- { "time": 2.3333, "angle": 10.13 },
- { "time": 2.6667, "angle": 5.06 },
- { "time": 3, "angle": 10.13 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone55": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0 },
- { "time": 0.2, "x": -0.01, "y": -0.79, "curve": "stepped" },
- { "time": 0.2667, "x": -0.01, "y": -0.79 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.0667, "x": 1, "y": 1 },
- { "time": 0.2, "x": 0.634, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 0.634, "y": 1 },
- { "time": 0.3333, "x": 0.431, "y": 1 },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0 },
- { "time": 0.2, "x": 0.02, "y": -0.79, "curve": "stepped" },
- { "time": 0.2667, "x": 0.02, "y": -0.79 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.0667, "x": 1, "y": 1 },
- { "time": 0.2, "x": 0.614, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 0.614, "y": 1 },
- { "time": 0.3333, "x": 0.343, "y": 1 },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone57": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0 },
- { "time": 0.2, "x": -0.67, "y": -1.05 },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0 },
- { "time": 0.7333, "x": 0, "y": 1.16 },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": 0, "y": 1.16 },
- { "time": 1.7333, "x": 0, "y": 0 },
- { "time": 2.0333, "x": 0, "y": 1.16 },
- { "time": 2.3333, "x": 0, "y": 0 },
- { "time": 2.6667, "x": 0, "y": 1.16 },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone58": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.0667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.0667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.0667, "x": 1, "y": 1 }
- ]
- },
- "bone59": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0 },
- { "time": 0.7333, "x": 0, "y": 1.46 },
- { "time": 1.0667, "x": 0, "y": 0 },
- { "time": 1.4, "x": 0, "y": 1.46 },
- { "time": 1.7333, "x": 0, "y": 0 },
- { "time": 2.0333, "x": 0, "y": 1.46 },
- { "time": 2.3333, "x": 0, "y": 0 },
- { "time": 2.6667, "x": 0, "y": 1.46 },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone60": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.4333, "angle": 0, "curve": "stepped" },
- { "time": 0.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.0667, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.0333, "angle": 0, "curve": "stepped" },
- { "time": 2.3333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone61": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": -2.41, "curve": "stepped" },
- { "time": 0.4333, "angle": -2.41, "curve": "stepped" },
- { "time": 0.7333, "angle": -2.41, "curve": "stepped" },
- { "time": 1.0667, "angle": -2.41, "curve": "stepped" },
- { "time": 1.4, "angle": -2.41, "curve": "stepped" },
- { "time": 1.7333, "angle": -2.41, "curve": "stepped" },
- { "time": 2.0333, "angle": -2.41, "curve": "stepped" },
- { "time": 2.3333, "angle": -2.41, "curve": "stepped" },
- { "time": 2.6667, "angle": -2.41, "curve": "stepped" },
- { "time": 3, "angle": -2.41 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 0.3333, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 0.4333, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 0.7333, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 1.0667, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 1.4, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 1.7333, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 2.0333, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 2.3333, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 2.6667, "x": -11.4, "y": 187.48, "curve": "stepped" },
- { "time": 3, "x": -11.4, "y": 187.48 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "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.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone62": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": -45.01 },
- { "time": 0.3333, "angle": -27.88 },
- { "time": 0.4333, "angle": -32.72, "curve": "stepped" },
- { "time": 0.5, "angle": -32.72, "curve": "stepped" },
- { "time": 1.0667, "angle": -32.72, "curve": "stepped" },
- { "time": 1.4, "angle": -32.72, "curve": "stepped" },
- { "time": 1.7333, "angle": -32.72, "curve": "stepped" },
- { "time": 2.0333, "angle": -32.72, "curve": "stepped" },
- { "time": 2.3333, "angle": -32.72, "curve": "stepped" },
- { "time": 2.6667, "angle": -32.72, "curve": "stepped" },
- { "time": 3, "angle": -32.72 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "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.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "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.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone63": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 25.4, "curve": "stepped" },
- { "time": 0.3333, "angle": 25.4, "curve": "stepped" },
- { "time": 0.4333, "angle": 25.4, "curve": "stepped" },
- { "time": 0.5, "angle": 25.4, "curve": "stepped" },
- { "time": 1.0667, "angle": 25.4, "curve": "stepped" },
- { "time": 1.4, "angle": 25.4, "curve": "stepped" },
- { "time": 1.7333, "angle": 25.4, "curve": "stepped" },
- { "time": 2.0333, "angle": 25.4, "curve": "stepped" },
- { "time": 2.3333, "angle": 25.4, "curve": "stepped" },
- { "time": 2.6667, "angle": 25.4, "curve": "stepped" },
- { "time": 3, "angle": 25.4 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "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.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "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.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone64": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": 3.73, "curve": "stepped" },
- { "time": 0.4333, "angle": 3.73, "curve": "stepped" },
- { "time": 0.7333, "angle": 3.73, "curve": "stepped" },
- { "time": 1.0667, "angle": 3.73, "curve": "stepped" },
- { "time": 1.4, "angle": 3.73, "curve": "stepped" },
- { "time": 1.7333, "angle": 3.73, "curve": "stepped" },
- { "time": 2.0333, "angle": 3.73, "curve": "stepped" },
- { "time": 2.3333, "angle": 3.73, "curve": "stepped" },
- { "time": 2.6667, "angle": 3.73, "curve": "stepped" },
- { "time": 3, "angle": 3.73 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 0.3333, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 0.4333, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 0.7333, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 1.0667, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 1.4, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 1.7333, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 2.0333, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 2.3333, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 2.6667, "x": -16.97, "y": 221.77, "curve": "stepped" },
- { "time": 3, "x": -16.97, "y": 221.77 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "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.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "bone65": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 12.05 },
- { "time": 0.3333, "angle": 5.73 },
- { "time": 0.5, "angle": 6.02, "curve": "stepped" },
- { "time": 1.4, "angle": 6.02, "curve": "stepped" },
- { "time": 2.0333, "angle": 6.02, "curve": "stepped" },
- { "time": 2.6667, "angle": 6.02 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "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": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "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": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone66": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1333, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": -11.05, "curve": "stepped" },
- { "time": 0.3333, "angle": -11.05, "curve": "stepped" },
- { "time": 0.4333, "angle": -11.05, "curve": "stepped" },
- { "time": 0.5, "angle": -11.05, "curve": "stepped" },
- { "time": 1.0667, "angle": -11.05, "curve": "stepped" },
- { "time": 1.4, "angle": -11.05, "curve": "stepped" },
- { "time": 1.7333, "angle": -11.05, "curve": "stepped" },
- { "time": 2.0333, "angle": -11.05, "curve": "stepped" },
- { "time": 2.3333, "angle": -11.05, "curve": "stepped" },
- { "time": 2.6667, "angle": -11.05, "curve": "stepped" },
- { "time": 3, "angle": -11.05 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1333, "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.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1333, "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.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "huo": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0 },
- { "time": 0.4333, "angle": -4.75 },
- { "time": 0.7333, "angle": 3.24 },
- { "time": 1.0667, "angle": -4.75 },
- { "time": 1.4, "angle": 3.24 },
- { "time": 1.7333, "angle": -4.75 },
- { "time": 2.0333, "angle": 3.24 },
- { "time": 2.3333, "angle": -4.75 },
- { "time": 2.6667, "angle": 3.24 },
- { "time": 3, "angle": -4.75 }
- ],
- "translate": [
- { "time": 0, "x": -215.42, "y": 20.76, "curve": "stepped" },
- { "time": 0.2, "x": -215.42, "y": 20.76 },
- { "time": 0.2667, "x": -215.97, "y": -6.08 },
- { "time": 0.4333, "x": -215.85, "y": -7.11 },
- { "time": 0.7333, "x": -216.37, "y": -7.13 },
- { "time": 1.0667, "x": -215.85, "y": -7.11 },
- { "time": 1.4, "x": -216.37, "y": -7.13 },
- { "time": 1.7333, "x": -215.85, "y": -7.11 },
- { "time": 2.0333, "x": -216.37, "y": -7.13 },
- { "time": 2.3333, "x": -215.85, "y": -7.11 },
- { "time": 2.6667, "x": -216.37, "y": -7.13 },
- { "time": 3, "x": -215.85, "y": -7.11 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "huo2": {
- "rotate": [
- { "time": 0.2667, "angle": -7.37 },
- { "time": 0.4333, "angle": 0 },
- { "time": 0.7333, "angle": -6.35 },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": -6.35 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2.0333, "angle": -6.35 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.6667, "angle": -6.35 },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0.2667, "x": 0, "y": 0 },
- { "time": 0.4333, "x": 0.09, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0.09, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0.09, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0.09, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0.09, "y": 0 }
- ],
- "scale": [
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "huo3": {
- "rotate": [
- { "time": 0.2667, "angle": -7.37 },
- { "time": 0.4333, "angle": 0 },
- { "time": 0.7333, "angle": 14.79 },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 14.79 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2.0333, "angle": 14.79 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.6667, "angle": 14.79 },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- },
- "huo4": {
- "rotate": [
- { "time": 0.2667, "angle": -7.37 },
- { "time": 0.4333, "angle": 0 },
- { "time": 0.7333, "angle": 23.19 },
- { "time": 1.0667, "angle": 0 },
- { "time": 1.4, "angle": 23.19 },
- { "time": 1.7333, "angle": 0 },
- { "time": 2.0333, "angle": 23.19 },
- { "time": 2.3333, "angle": 0 },
- { "time": 2.6667, "angle": 23.19 },
- { "time": 3, "angle": 0 }
- ],
- "translate": [
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "toufa6": {
- "toufa6": [
- { "time": 0 },
- {
- "time": 0.1,
- "offset": 6,
- "vertices": [ -1.78224, -1.08017, -0.13704, -3.17607, -1.22971, -1.68252, -4.92086, -0.07698 ]
- },
- { "time": 0.2667 },
- {
- "time": 0.4333,
- "offset": 8,
- "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -0.53738, -1.77346, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
- },
- { "time": 0.7333 },
- {
- "time": 1.0667,
- "offset": 8,
- "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -2.80107, -4.56712, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
- },
- { "time": 1.4 },
- {
- "time": 1.7333,
- "offset": 8,
- "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -2.80107, -4.56712, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
- },
- { "time": 2.0333 },
- {
- "time": 2.3333,
- "offset": 8,
- "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -2.80107, -4.56712, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
- },
- { "time": 2.6667 },
- {
- "time": 3,
- "offset": 8,
- "vertices": [ -1.75864, -10.60068, -0.92855, -8.81909, -2.80107, -4.56712, 0, 0, 0, 0, 0, 0, 0, 0, -1.09057, -2.96127, -1.00961, -5.89012 ]
- }
- ]
- }
- }
- }
- },
- "walk1": {
- "slots": {
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2, "name": null }
- ]
- },
- "hua": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyan" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.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, "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 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": 1 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": 0, "y": 1 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 0, "y": 1 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": 0, "y": 1 },
- { "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.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "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.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- {
- "time": 0,
- "angle": -0.19,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0.81,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -0.19,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0.81,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -0.19 }
- ],
- "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 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.6667, "angle": 0, "curve": "stepped" },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- {
- "time": 0,
- "angle": -308.26,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -308.26,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -308.26 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "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 }
- ],
- "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 }
- ]
- },
- "bone9": {
- "rotate": [
- {
- "time": 0,
- "angle": 316.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -1.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 316.69,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -1.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 316.69 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- {
- "time": 0,
- "angle": -25.04,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -11.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -25.04,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -11.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -25.04 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "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 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": -12.76 },
- { "time": 0.1667, "angle": -3.88 },
- { "time": 0.3333, "angle": 22.84 },
- { "time": 0.5, "angle": 42.33 },
- { "time": 0.6667, "angle": 13.94 },
- { "time": 0.8333, "angle": -8.39 },
- { "time": 1, "angle": -12.76 },
- { "time": 1.1667, "angle": -3.88 },
- { "time": 1.3333, "angle": 22.84 },
- { "time": 1.5, "angle": 42.33 },
- { "time": 1.6667, "angle": 13.94 },
- { "time": 1.8333, "angle": -8.39 },
- { "time": 2, "angle": -12.76 }
- ],
- "translate": [
- { "time": 0, "x": 0.32, "y": 1.17, "curve": "stepped" },
- { "time": 1, "x": 0.32, "y": 1.17, "curve": "stepped" },
- { "time": 2, "x": 0.32, "y": 1.17 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 10.34 },
- { "time": 0.3333, "angle": 12.23 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 46.41 },
- { "time": 0.8333, "angle": 41.46 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 10.34 },
- { "time": 1.3333, "angle": 12.23 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 46.41 },
- { "time": 1.8333, "angle": 41.46 },
- { "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 },
- { "time": 0.6667, "x": -0.38, "y": -0.39 },
- { "time": 0.8333, "x": -0.65, "y": -0.56 },
- { "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 },
- { "time": 1.6667, "x": -0.38, "y": -0.39 },
- { "time": 1.8333, "x": -0.65, "y": -0.56 },
- { "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 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": -11.49 },
- { "time": 0.1667, "angle": -6.37 },
- { "time": 0.3333, "angle": -28.82 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": -9.87 },
- { "time": 0.8333, "angle": -11.89 },
- { "time": 1, "angle": -11.49 },
- { "time": 1.1667, "angle": -6.37 },
- { "time": 1.3333, "angle": -28.82 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": -9.87 },
- { "time": 1.8333, "angle": -11.89 },
- { "time": 2, "angle": -11.49 }
- ],
- "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": 18.24 },
- { "time": 0.1667, "angle": -12.25 },
- { "time": 0.3333, "angle": -29.17 },
- { "time": 0.5, "angle": -30.91 },
- { "time": 0.6667, "angle": -15.23 },
- { "time": 0.8333, "angle": 0.45 },
- { "time": 1, "angle": 18.24 },
- { "time": 1.1667, "angle": -12.25 },
- { "time": 1.3333, "angle": -29.17 },
- { "time": 1.5, "angle": -30.91 },
- { "time": 1.6667, "angle": -15.23 },
- { "time": 1.8333, "angle": 0.45 },
- { "time": 2, "angle": 18.24 }
- ],
- "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.1667, "angle": 43.83 },
- { "time": 0.3333, "angle": 34.96 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 3.9 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 43.83 },
- { "time": 1.3333, "angle": 34.96 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 3.9 },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -3.07, "y": -1.32 },
- { "time": 0.3333, "x": -1.39, "y": -1.49 },
- { "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.1667, "x": -3.07, "y": -1.32 },
- { "time": 1.3333, "x": -1.39, "y": -1.49 },
- { "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 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": 14.2 },
- { "time": 0.5, "angle": 2.79 },
- { "time": 0.6667, "angle": 13.88 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0 },
- { "time": 1.3333, "angle": 14.2 },
- { "time": 1.5, "angle": 2.79 },
- { "time": 1.6667, "angle": 13.88 },
- { "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 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 4.84 },
- { "time": 0.5, "angle": 1.78 },
- { "time": 1, "angle": 4.84 },
- { "time": 1.5, "angle": 1.78 },
- { "time": 2, "angle": 4.84 }
- ],
- "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": -11.19 },
- { "time": 0.5, "angle": 1.78 },
- { "time": 1, "angle": -11.19 },
- { "time": 1.5, "angle": 1.78 },
- { "time": 2, "angle": -11.19 }
- ],
- "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 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 3.85 },
- { "time": 0.5, "angle": 1.78 },
- { "time": 1, "angle": 3.85 },
- { "time": 1.5, "angle": 1.78 },
- { "time": 2, "angle": 3.85 }
- ],
- "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": 1.55 },
- { "time": 0.5, "angle": 1.78 },
- { "time": 1, "angle": 1.55 },
- { "time": 1.5, "angle": 1.78 },
- { "time": 2, "angle": 1.55 }
- ],
- "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": -4.42 },
- { "time": 0.5, "angle": 1.78 },
- { "time": 1, "angle": -4.42 },
- { "time": 1.5, "angle": 1.78 },
- { "time": 2, "angle": -4.42 }
- ],
- "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 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": -4.42 },
- { "time": 0.5, "angle": 1.78 },
- { "time": 1, "angle": -4.42 },
- { "time": 1.5, "angle": 1.78 },
- { "time": 2, "angle": -4.42 }
- ],
- "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, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": -5.41 },
- { "time": 0.5, "angle": 0.5 },
- { "time": 1, "angle": -5.41 },
- { "time": 1.5, "angle": 0.5 },
- { "time": 2, "angle": -5.41 }
- ],
- "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": -5.41 },
- { "time": 0.5, "angle": 0.5 },
- { "time": 1, "angle": -5.41 },
- { "time": 1.5, "angle": 0.5 },
- { "time": 2, "angle": -5.41 }
- ],
- "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": -5.41 },
- { "time": 0.5, "angle": 0.5 },
- { "time": 1, "angle": -5.41 },
- { "time": 1.5, "angle": 0.5 },
- { "time": 2, "angle": -5.41 }
- ],
- "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": -5.41 },
- { "time": 0.5, "angle": 0.5 },
- { "time": 1, "angle": -5.41 },
- { "time": 1.5, "angle": 0.5 },
- { "time": 2, "angle": -5.41 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": -5.41 },
- { "time": 0.5, "angle": 0.5 },
- { "time": 1, "angle": -5.41 },
- { "time": 1.5, "angle": 0.5 },
- { "time": 2, "angle": -5.41 }
- ],
- "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": -1.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -0.94,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -1.36,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -0.94,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -1.36 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -5.95 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.95 },
- { "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, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -5.73 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.73 },
- { "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, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "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 }
- ],
- "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": -7.39 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -7.39 },
- { "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, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "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 }
- ],
- "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, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 4.37 },
- { "time": 0.5, "angle": 0 },
- { "time": 1, "angle": 4.37 },
- { "time": 1.5, "angle": 0 },
- { "time": 2, "angle": 4.37 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 7.19 },
- { "time": 0.5, "angle": 0.32 },
- { "time": 1, "angle": 7.19 },
- { "time": 1.5, "angle": 0.32 },
- { "time": 2, "angle": 7.19 }
- ],
- "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.32 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": 0.32 },
- { "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, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "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 }
- ],
- "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 },
- { "time": 0.5, "angle": -5.71 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.71 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.5, "angle": -5.71 },
- { "time": 1, "angle": 0 },
- { "time": 1.5, "angle": -5.71 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "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 }
- ],
- "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 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.56, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.56, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone56": {
- "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 }
- ],
- "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 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.544, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.544, "y": 1 },
- { "time": 1.3333, "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 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -2.13, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": -2.13, "y": 0 },
- { "time": 1.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 }
- ]
- },
- "bone58": {
- "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 }
- ],
- "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 }
- ],
- "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 }
- ]
- },
- "bone59": {
- "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 }
- ]
- },
- "bone60": {
- "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 }
- ]
- }
- },
- "deform": {
- "default": {
- "shangshen": {
- "shangshen": [
- {
- "time": 0,
- "offset": 24,
- "vertices": [ -0.82372, 3.20028, 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.82372, 3.20028, 0, 0, -0.82372, 3.20028, 1.05325, 2.51161 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "offset": 24,
- "vertices": [ -0.82372, 3.20028, 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.82372, 3.20028, 0, 0, -0.82372, 3.20028, 1.05325, 2.51161 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "offset": 24,
- "vertices": [ -0.82372, 3.20028, 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.82372, 3.20028, 0, 0, -0.82372, 3.20028, 1.05325, 2.51161 ]
- }
- ]
- },
- "toufa6": {
- "toufa6": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 8,
- "vertices": [ 0.07813, 2.92895, 3.33906, 4.30756, 1.86678, 4.05367, 0, 0, 0, 0, 0, 0, 0, 0, 0.01571, 0.58578 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 8,
- "vertices": [ 0.07813, 2.92895, 3.33906, 4.30756, 1.86678, 4.05367, 0, 0, 0, 0, 0, 0, 0, 0, 0.01571, 0.58578 ]
- },
- { "time": 2 }
- ]
- },
- "youjiap": {
- "youjiap": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 68,
- "vertices": [ 8.40677, 2.56524 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 68,
- "vertices": [ 8.40677, 2.56524 ]
- },
- { "time": 2 }
- ]
- }
- }
- }
- }
- }
- }
|