123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771 |
- {
- "skeleton": { "hash": "xkclE4Famye4RQ9qt2tcURsAVSc", "spine": "3.6.53", "width": 168.72, "height": 173, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "bone", "parent": "root", "x": -3.3, "y": 47.35 },
- { "name": "bone2", "parent": "bone", "length": 12.92, "rotation": 89.16 },
- { "name": "bone3", "parent": "bone2", "length": 24.33, "rotation": -0.95, "x": 12.92 },
- { "name": "bone4", "parent": "bone3", "length": 6.46, "rotation": 0.11, "x": 24.33 },
- { "name": "bone5", "parent": "bone4", "length": 53.21, "rotation": 0.66, "x": 6.46 },
- { "name": "bone6", "parent": "bone5", "length": 8.17, "rotation": 1.02, "x": 19.13, "y": 18.96 },
- { "name": "bone7", "parent": "bone5", "length": 7.03, "rotation": 2.57, "x": 19.61, "y": -8.01 },
- { "name": "bone8", "parent": "bone5", "rotation": 2.57, "x": 27.92, "y": 5.44 },
- { "name": "bone9", "parent": "bone5", "x": 6.96, "y": 5.02 },
- { "name": "bone10", "parent": "bone5", "length": 6.2, "rotation": -138.95, "x": 55.67, "y": -12.31, "color": "2a63c1ff" },
- { "name": "bone11", "parent": "bone10", "length": 14.19, "rotation": -12.09, "x": 6.2, "color": "2a63c1ff" },
- { "name": "bone12", "parent": "bone11", "length": 8.76, "rotation": -3.6, "x": 14.19, "color": "2a63c1ff" },
- { "name": "bone13", "parent": "bone12", "length": 7.3, "rotation": 14.32, "x": 9.18, "y": 0.02, "color": "2a63c1ff" },
- { "name": "bone14", "parent": "bone13", "length": 9.44, "rotation": 26.32, "x": 7.3, "color": "2a63c1ff" },
- { "name": "bone15", "parent": "bone14", "length": 7.43, "rotation": 29.42, "x": 9.44, "color": "2a63c1ff" },
- { "name": "bone16", "parent": "bone5", "length": 4.93, "rotation": 153.47, "x": 56.86, "y": -4.69, "color": "adcb45ff" },
- { "name": "bone17", "parent": "bone16", "length": 5.65, "rotation": 7.9, "x": 5.1, "y": 0.09, "color": "adcb45ff" },
- { "name": "bone18", "parent": "bone17", "length": 7.27, "rotation": -13.62, "x": 5.65, "color": "adcb45ff" },
- { "name": "bone19", "parent": "bone18", "length": 5.28, "rotation": -19.03, "x": 7.27, "color": "adcb45ff" },
- { "name": "bone20", "parent": "bone19", "length": 7.31, "rotation": -9.8, "x": 5.7, "y": -0.08, "color": "adcb45ff" },
- { "name": "bone21", "parent": "bone5", "length": 6.2, "rotation": 131.05, "x": 59.27, "y": -1.22, "color": "e16b1eff" },
- { "name": "bone22", "parent": "bone21", "length": 8.62, "rotation": 8.55, "x": 7.15, "y": -0.05, "color": "e16b1eff" },
- { "name": "bone23", "parent": "bone22", "length": 7.27, "rotation": 0.66, "x": 8.62, "color": "e16b1eff" },
- { "name": "bone24", "parent": "bone23", "length": 7.75, "rotation": -13.21, "x": 7.4, "y": -0.14, "color": "e16b1eff" },
- { "name": "bone25", "parent": "bone24", "length": 8.65, "rotation": -16.8, "x": 7.75, "color": "e16b1eff" },
- { "name": "bone26", "parent": "bone3", "length": 20.4, "rotation": -150.45, "x": 23.23, "y": -15.43, "color": "3ea8ccff" },
- { "name": "bone27", "parent": "bone26", "length": 14.5, "rotation": 3.85, "x": 20.4, "color": "3ea8ccff" },
- { "name": "bone28", "parent": "bone27", "length": 10.41, "rotation": -10.19, "x": 14.18, "y": 0.2, "color": "3ea8ccff" },
- { "name": "bone29", "parent": "bone3", "length": 19.89, "rotation": 153.27, "x": 21.24, "y": 11.5, "color": "ec842bff" },
- { "name": "bone30", "parent": "bone29", "length": 14.57, "rotation": -2.06, "x": 19.99, "y": -0.17, "color": "ec842bff" },
- { "name": "bone31", "parent": "bone30", "length": 10.46, "rotation": 1.22, "x": 14.57, "color": "ec842bff" },
- { "name": "bone32", "parent": "bone", "length": 7.81, "rotation": -71.57, "x": 5.32, "y": -2.43, "color": "7ec91eff" },
- { "name": "bone33", "parent": "bone32", "length": 6.46, "rotation": 9.64, "x": 7.81, "color": "7ec91eff" },
- { "name": "bone34", "parent": "bone33", "length": 7.82, "rotation": 0.98, "x": 6.46, "color": "7ec91eff" },
- { "name": "bone35", "parent": "bone", "length": 7.31, "rotation": -98.97, "x": -8.36, "y": -2.81, "color": "dfe177ff" },
- { "name": "bone36", "parent": "bone35", "length": 7.66, "rotation": 1.85, "x": 7.31, "color": "dfe177ff" },
- { "name": "bone37", "parent": "bone36", "length": 5.63, "rotation": -4.56, "x": 7.66, "color": "dfe177ff" },
- { "name": "bone38", "parent": "bone", "length": 18.15, "rotation": -79.75, "x": 10.45, "y": -5.66, "color": "173db4ff" },
- { "name": "bone39", "parent": "bone38", "length": 20.44, "rotation": -4.38, "x": 18.15, "color": "173db4ff" },
- { "name": "bone40", "parent": "bone39", "length": 10.1, "rotation": -83.93, "x": 20.44, "color": "173db4ff" },
- { "name": "bone41", "parent": "bone", "length": 22.72, "rotation": -95.76, "x": -5.46, "y": -1.84, "color": "aa14afff" },
- { "name": "bone42", "parent": "bone41", "length": 20, "rotation": 3.61, "x": 22.09, "y": -0.12, "color": "aa14afff" },
- { "name": "bone43", "parent": "bone42", "length": 10.83, "rotation": -72.6, "x": 19.9, "y": 0.04, "color": "aa14afff" },
- { "name": "bone44", "parent": "bone5", "x": 20.29, "y": 6.63 },
- { "name": "bone45", "parent": "bone", "length": 6.1, "rotation": -82.87, "x": 12.48, "y": 4.56, "color": "1f7426ff" },
- { "name": "bone46", "parent": "bone45", "length": 4.72, "rotation": 2.09, "x": 6.1, "color": "1f7426ff" },
- { "name": "bone47", "parent": "bone46", "length": 4.77, "rotation": 2.99, "x": 4.85, "y": -0.02, "color": "1f7426ff" },
- { "name": "bone48", "parent": "bone47", "length": 4.78, "rotation": 6.23, "x": 4.77, "color": "1f7426ff" },
- { "name": "bone49", "parent": "bone5", "length": 8, "rotation": -179.34, "x": 23.19, "y": 5.61 },
- { "name": "bone50", "parent": "bone3", "length": 21, "rotation": 153.74, "x": 18.77, "y": 83.22, "color": "2d46c8ff" },
- { "name": "bone51", "parent": "bone50", "length": 13.69, "rotation": -66.13, "x": 21.36, "y": -0.19, "color": "2d46c8ff" },
- { "name": "bone52", "parent": "bone51", "length": 7.47, "rotation": -0.93, "x": 13.69, "color": "2d46c8ff" },
- { "name": "bone53", "parent": "bone52", "length": 8.03, "rotation": -79.33, "x": 5.08, "y": 0.57 }
- ],
- "slots": [
- { "name": "teshuzuoshou1", "bone": "bone51", "attachment": "teshuzuoshou1" },
- { "name": "teshuzuoshou2", "bone": "bone50", "attachment": "teshuzuoshou2" },
- { "name": "teshuzuoshoushouzhi", "bone": "bone52", "attachment": "teshuzuoshoushouzhi" },
- { "name": "zuoshou", "bone": "bone29", "attachment": "zuoshou" },
- { "name": "zuotui", "bone": "bone41", "attachment": "zuotui" },
- { "name": "youtui", "bone": "bone38", "attachment": "youtui" },
- { "name": "xiaba1", "bone": "bone32", "attachment": "xiaba1" },
- { "name": "xiaba2", "bone": "bone35", "attachment": "xiaba2" },
- { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
- { "name": "yaodaichuixian", "bone": "bone45", "attachment": "yaodaichuixian" },
- { "name": "youshou", "bone": "bone26", "attachment": "youshou" },
- { "name": "toufa6", "bone": "bone5", "attachment": "toufa6" },
- { "name": "toufa5", "bone": "bone5", "attachment": "toufa5" },
- { "name": "lian", "bone": "bone5", "attachment": "lian" },
- { "name": "yanjingzhouwen", "bone": "bone8", "attachment": "yanjingzhouwen" },
- { "name": "zuiba", "bone": "bone9", "attachment": "zuiba" },
- { "name": "bizi", "bone": "bone49", "attachment": "bizi" },
- { "name": "zuoyan", "bone": "bone6", "attachment": "zuoyan" },
- { "name": "youyan", "bone": "bone7", "attachment": "youyan" },
- { "name": "biyan", "bone": "bone44" },
- { "name": "meimao", "bone": "bone8", "attachment": "meimao" },
- { "name": "erduo", "bone": "bone5", "attachment": "erduo" },
- { "name": "toufa4", "bone": "bone5", "attachment": "toufa4" },
- { "name": "toufa3", "bone": "bone10", "attachment": "toufa3" },
- { "name": "toufa2", "bone": "bone21", "attachment": "toufa2" },
- { "name": "toufa1", "bone": "bone16", "attachment": "toufa1" },
- { "name": "hongjiu", "bone": "bone53", "attachment": "hongjiu" },
- { "name": "beizi", "bone": "bone53", "attachment": "beizi" },
- { "name": "zuiba2", "bone": "bone9", "attachment": "zuiba2" },
- { "name": "teshuzuoshou3", "bone": "bone51", "attachment": "teshuzuoshou3" }
- ],
- "skins": {
- "default": {
- "beizi": {
- "beizi": { "x": 5.59, "y": -0.07, "rotation": -95.55, "width": 11, "height": 24 }
- },
- "biyan": {
- "biyan": { "x": 0.96, "y": -1.48, "rotation": -88.98, "width": 44, "height": 5 }
- },
- "bizi": {
- "bizi": { "x": 4.94, "y": 0.45, "rotation": 90.36, "width": 18, "height": 23 }
- },
- "erduo": {
- "erduo": { "x": 23.89, "y": -30.81, "rotation": -88.98, "width": 14, "height": 19 }
- },
- "hongjiu": {
- "hongjiu": {
- "type": "mesh",
- "uvs": [ 1, 0.29213, 0.59569, 1, 0.39933, 1, 0, 0.23813, 0, 0, 1, 0 ],
- "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 1, 2, 0 ],
- "vertices": [ 13.5, -6.6, 6.88, -1.49, 7.09, 0.66, 15.1, 4.3, 17.47, 4.07, 16.41, -6.88 ],
- "hull": 6,
- "edges": [ 8, 10, 6, 8, 4, 6, 2, 4, 0, 10, 2, 0 ],
- "width": 11,
- "height": 10
- }
- },
- "lian": {
- "lian": { "x": 34.88, "y": -1.61, "rotation": -88.98, "width": 70, "height": 80 }
- },
- "meimao": {
- "meimao": { "x": 1.27, "y": -2.21, "rotation": -91.55, "width": 48, "height": 9 }
- },
- "shenti": {
- "shenti": {
- "type": "mesh",
- "uvs": [ 0.71425, 0.03825, 0.726, 0.08624, 0.89489, 0.10487, 0.92246, 0.59002, 0.92444, 0.68791, 0.96473, 0.77443, 1, 0.8481, 1, 0.92298, 0.612, 1, 0.45604, 1, 0.29111, 1, 0.06616, 0.93216, 0.07781, 0.87028, 0.08641, 0.78567, 0.09689, 0.7084, 0.10147, 0.62603, 0.13489, 0.13095, 0.25945, 0.11232, 0.26924, 0.06494, 0.28267, 0, 0.48559, 0, 0.70489, 0, 0.4702, 0.72213, 0.46635, 0.8989, 0.46696, 0.63054, 0.48222, 0.11397, 0.48375, 0.06229, 0.46838, 0.81351, 0.70583, 0.70437, 0.71349, 0.79421 ],
- "triangles": [ 26, 19, 20, 26, 20, 21, 26, 21, 0, 18, 19, 26, 25, 18, 26, 17, 18, 25, 1, 25, 26, 1, 26, 0, 25, 24, 17, 1, 24, 25, 17, 24, 15, 3, 24, 1, 28, 24, 3, 4, 28, 3, 22, 24, 28, 14, 15, 24, 22, 14, 24, 29, 28, 4, 29, 4, 5, 27, 14, 22, 13, 14, 27, 29, 27, 22, 29, 22, 28, 27, 12, 13, 23, 12, 27, 23, 27, 29, 6, 23, 29, 6, 29, 5, 8, 23, 6, 10, 12, 23, 11, 12, 10, 9, 10, 23, 7, 8, 6, 9, 23, 8, 15, 16, 17, 3, 1, 2 ],
- "vertices": [ 2, 3, 29.01, -10.42, 0.45259, 4, 4.66, -10.43, 0.54741, 2, 3, 26.58, -11.03, 0.63153, 4, 2.23, -11.03, 0.36847, 2, 3, 25.87, -18.65, 0.85347, 4, 1.5, -18.65, 0.14653, 2, 3, 1.18, -20.67, 0.58789, 2, 13.76, -20.68, 0.41211, 2, 3, -3.81, -20.91, 0.36299, 2, 8.77, -20.84, 0.63701, 2, 3, -8.17, -22.86, 0.205, 2, 4.38, -22.72, 0.795, 2, 3, -11.87, -24.56, 0.14534, 2, 0.65, -24.36, 0.85466, 2, 3, -15.69, -24.68, 0.12652, 2, -3.17, -24.42, 0.87348, 2, 3, -20.16, -7.35, 0.00872, 2, -7.36, -7.02, 0.99128, 1, 2, -7.46, 0, 1, 1, 2, -7.57, 7.42, 1, 2, 3, -17.47, 17.3, 0.00524, 2, -4.26, 17.59, 0.99476, 2, 3, -14.3, 16.88, 0.01871, 2, -1.1, 17.11, 0.98129, 2, 3, -9.97, 16.63, 0.08326, 2, 3.23, 16.79, 0.91674, 2, 3, -6.02, 16.28, 0.20822, 2, 7.17, 16.38, 0.79178, 2, 3, -1.81, 16.2, 0.41593, 2, 11.38, 16.23, 0.58407, 2, 3, 23.47, 15.49, 0.90849, 4, -0.83, 15.49, 0.09151, 2, 3, 24.59, 9.92, 0.70144, 4, 0.28, 9.92, 0.29856, 2, 3, 27.02, 9.55, 0.45171, 4, 2.71, 9.55, 0.54829, 2, 3, 30.35, 9.05, 0.27859, 4, 6.04, 9.04, 0.72141, 2, 3, 30.64, -0.08, 2.8E-4, 4, 6.31, -0.09, 0.99972, 2, 3, 30.95, -9.94, 0.39471, 4, 6.6, -9.95, 0.60529, 2, 3, -6.19, -0.53, 0.00226, 2, 6.72, -0.43, 0.99774, 1, 2, -2.3, -0.39, 1, 2, 3, -1.53, -0.24, 0.00533, 2, 11.39, -0.22, 0.99467, 2, 3, 24.82, -0.11, 0.10969, 4, 0.49, -0.11, 0.89031, 2, 3, 27.46, -0.09, 0.00176, 4, 3.13, -0.1, 0.99824, 2, 3, -10.85, -0.6, 6.1E-4, 2, 2.06, -0.42, 0.99939, 2, 3, -4.96, -11.1, 0.18939, 2, 7.78, -11.02, 0.81061, 2, 3, -9.53, -11.59, 0.10154, 2, 3.2, -11.43, 0.89846 ],
- "hull": 22,
- "edges": [ 32, 34, 2, 4, 12, 14, 16, 14, 20, 22, 38, 40, 40, 42, 16, 18, 18, 20, 28, 44, 22, 24, 18, 46, 24, 46, 46, 12, 28, 30, 30, 32, 48, 44, 30, 48, 4, 6, 6, 8, 48, 6, 50, 48, 34, 50, 50, 2, 34, 36, 36, 38, 40, 52, 52, 50, 36, 52, 2, 0, 0, 42, 52, 0, 24, 26, 26, 28, 44, 54, 54, 46, 26, 54, 8, 10, 10, 12, 8, 56, 56, 44, 10, 58, 58, 54, 56, 58 ],
- "width": 45,
- "height": 51
- }
- },
- "teshuzuoshou1": {
- "teshuzuoshou1": {
- "type": "mesh",
- "uvs": [ 1, 0.52242, 1, 1, 0.70734, 1, 0.42242, 0.87366, 0.36597, 0.84621, 0.31807, 0.82739, 0, 0.68635, 0, 0.39492, 0, 0, 0.33759, 0, 0.37584, 0, 0.42866, 1.0E-5, 1, 0, 0.329, 0.43687, 0.38054, 0.44546, 0.43375, 0.45023 ],
- "triangles": [ 7, 8, 9, 13, 7, 9, 6, 7, 13, 5, 6, 13, 13, 9, 10, 10, 14, 13, 11, 14, 10, 15, 11, 12, 14, 11, 15, 15, 12, 0, 5, 13, 14, 14, 15, 4, 14, 4, 5, 3, 4, 15, 2, 3, 15, 0, 2, 15, 2, 0, 1 ],
- "vertices": [ 1, 51, -5.29, -0.34, 1, 1, 51, -5.78, 6.33, 1, 1, 51, 2.4, 6.93, 1, 2, 51, 10.48, 5.75, 0.90687, 52, -3.3, 5.69, 0.09313, 2, 51, 12.09, 5.48, 0.76378, 52, -1.69, 5.45, 0.23622, 2, 51, 13.44, 5.31, 0.56645, 52, -0.33, 5.31, 0.43355, 1, 52, 8.71, 4.14, 1, 1, 52, 9.08, 0.07, 1, 1, 52, 9.57, -5.43, 1, 2, 51, 13.74, -6.28, 0.46555, 52, 0.16, -6.28, 0.53445, 2, 51, 12.67, -6.36, 0.61041, 52, -0.91, -6.37, 0.38959, 2, 51, 11.2, -6.47, 0.77831, 52, -2.38, -6.51, 0.22169, 1, 51, -4.76, -7.63, 1, 2, 51, 13.54, -0.16, 0.77538, 52, -0.15, -0.16, 0.22462, 2, 51, 12.09, -0.15, 0.996, 52, -1.6, -0.17, 0.004, 2, 51, 10.6, -0.19, 0.99906, 52, -3.09, -0.24, 9.4E-4 ],
- "hull": 13,
- "edges": [ 2, 4, 2, 0, 0, 24, 12, 14, 14, 16, 16, 18, 26, 14, 18, 26, 10, 12, 26, 10, 8, 10, 28, 26, 8, 28, 18, 20, 28, 20, 20, 22, 22, 24, 0, 30, 30, 28, 22, 30, 4, 6, 6, 8, 30, 6 ],
- "width": 28,
- "height": 14
- }
- },
- "teshuzuoshou2": {
- "teshuzuoshou2": {
- "type": "mesh",
- "uvs": [ 1, 0.36543, 0.61737, 1, 0.37168, 1, 0, 0.78893, 0, 0.54393, 0.54912, 0, 1, 0 ],
- "triangles": [ 5, 6, 0, 4, 2, 3, 4, 1, 2, 1, 4, 5, 0, 1, 5 ],
- "vertices": [ 6.03, 7.22, 24.19, 8.23, 26.5, 3.89, 25.15, -5.25, 19.53, -8.24, 1.89, -5.2, -2.35, 2.75 ],
- "hull": 7,
- "edges": [ 0, 12, 0, 2, 10, 12, 10, 8, 2, 4, 6, 8, 4, 6 ],
- "width": 20,
- "height": 26
- }
- },
- "teshuzuoshou3": {
- "teshuzuoshou3": { "x": 15.42, "y": 0.55, "rotation": -175.82, "width": 14, "height": 14 }
- },
- "teshuzuoshoushouzhi": {
- "teshuzuoshoushouzhi": { "x": 5.32, "y": -1.95, "rotation": -174.88, "width": 6, "height": 5 }
- },
- "toufa1": {
- "toufa1": {
- "type": "mesh",
- "uvs": [ 1, 0.18984, 0.94329, 0.22977, 0.86319, 0.30645, 0.80279, 0.42952, 0.73367, 0.57617, 0.65919, 0.70759, 0.56294, 0.79606, 0.44953, 0.89259, 0.3116, 0.95831, 0.16471, 1, 0, 1, 0, 0.90575, 0.06776, 0.85344, 0.16516, 0.77825, 0.23687, 0.71297, 0.31723, 0.652, 0.41619, 0.56325, 0.51154, 0.40575, 0.55498, 0.24075, 0.64791, 0.11325, 0.75171, 0, 0.90964, 0, 1, 0, 0.68482, 0.34016, 0.63033, 0.5073, 0.44068, 0.74158, 0.34965, 0.82515, 0.83726, 0.10476, 0.76582, 0.20815, 0.53571, 0.64155, 0.24265, 0.87865, 0.10761, 0.94619 ],
- "triangles": [ 10, 31, 9, 9, 30, 8, 9, 31, 30, 10, 11, 31, 8, 30, 26, 11, 12, 31, 31, 12, 30, 12, 13, 30, 13, 14, 30, 30, 14, 26, 8, 26, 7, 26, 25, 7, 7, 25, 6, 14, 15, 26, 26, 15, 25, 25, 29, 6, 15, 16, 25, 6, 29, 5, 25, 16, 29, 29, 24, 5, 5, 24, 4, 29, 16, 24, 16, 17, 24, 4, 24, 3, 24, 23, 3, 24, 17, 23, 3, 23, 2, 17, 18, 23, 23, 28, 2, 23, 18, 28, 2, 28, 1, 18, 19, 28, 28, 27, 1, 1, 27, 0, 28, 19, 27, 27, 21, 0, 21, 22, 0, 19, 20, 27, 27, 20, 21 ],
- "vertices": [ 2, 16, -1.92, 6.37, 0.99766, 17, -6.09, 7.18, 0.00234, 2, 16, -0.17, 5.42, 0.97426, 17, -4.48, 6.01, 0.02574, 2, 16, 2.81, 4.36, 0.72612, 17, -1.68, 4.54, 0.27388, 3, 16, 6.68, 4.4, 0.0775, 17, 2.16, 4.05, 0.92041, 18, -4.35, 3.12, 0.0021, 2, 17, 6.7, 3.55, 0.38294, 18, 0.18, 3.69, 0.61706, 3, 17, 10.89, 2.75, 1.3E-4, 18, 4.45, 3.91, 0.99375, 19, -3.95, 2.77, 0.00612, 2, 18, 8.05, 2.93, 0.42529, 19, -0.22, 3.03, 0.57471, 2, 19, 4.03, 3.15, 0.98486, 20, -2.19, 2.9, 0.01514, 2, 19, 8.32, 2.16, 0.08275, 20, 2.2, 2.66, 0.91725, 1, 20, 6.51, 1.7, 1, 1, 20, 10.74, -0.54, 1, 1, 20, 9.5, -2.87, 1, 1, 20, 7.08, -3.24, 1, 2, 19, 8.6, -4.42, 0.00239, 20, 3.6, -3.78, 0.99761, 3, 18, 11.29, -6.25, 0.0138, 19, 5.84, -4.6, 0.1748, 20, 0.9, -4.43, 0.81141, 3, 18, 8.59, -5.24, 0.17177, 19, 2.95, -4.52, 0.52307, 20, -1.95, -4.84, 0.30516, 4, 17, 9.45, -5.25, 0.01029, 18, 4.93, -4.2, 0.79079, 19, -0.84, -4.73, 0.17806, 20, -5.65, -5.7, 0.02086, 3, 16, 9.99, -3.4, 0.06244, 17, 4.37, -4.12, 0.57407, 18, -0.27, -4.31, 0.36349, 3, 16, 5.32, -4.42, 0.7075, 17, -0.4, -4.49, 0.29093, 18, -4.82, -5.79, 0.00156, 1, 16, 0.9, -3.68, 1, 1, 16, -3.3, -2.48, 1, 1, 16, -5.42, 1.58, 1, 1, 16, -6.63, 3.91, 1, 2, 16, 6.04, 0.21, 0.0049, 17, 0.95, -0.01, 0.9951, 2, 17, 5.89, 0.08, 0.18049, 18, 0.22, 0.13, 0.81951, 3, 18, 8.72, -0.87, 0.02307, 19, 1.65, -0.35, 0.97143, 20, -3.94, -0.95, 0.0055, 2, 18, 12.12, -1.79, 9.0E-5, 19, 5.17, -0.11, 0.99991, 1, 16, -1.85, 1.08, 1, 2, 16, 1.68, 0.58, 0.98783, 17, -3.32, 0.96, 0.01217, 3, 18, 4.86, -0.1, 0.99902, 19, -2.24, -0.88, 9.3E-4, 20, -7.69, -2.14, 5.0E-5, 1, 20, 2.93, -0.25, 1, 1, 20, 7.27, -0.41, 1 ],
- "hull": 23,
- "edges": [ 40, 38, 38, 36, 36, 34, 34, 32, 32, 30, 20, 22, 0, 44, 8, 10, 14, 16, 18, 20, 16, 18, 40, 42, 42, 44, 46, 48, 50, 52, 42, 54, 40, 54, 0, 2, 2, 4, 54, 2, 0, 42, 46, 56, 56, 54, 38, 56, 56, 4, 36, 46, 4, 6, 6, 8, 46, 6, 34, 48, 48, 8, 48, 58, 58, 50, 32, 58, 58, 10, 30, 50, 10, 12, 12, 14, 50, 12, 14, 52, 26, 28, 28, 30, 52, 28, 60, 52, 26, 60, 60, 16, 20, 62, 62, 60, 18, 62, 22, 24, 24, 26, 62, 24 ],
- "width": 29,
- "height": 28
- }
- },
- "toufa2": {
- "toufa2": {
- "type": "mesh",
- "uvs": [ 1, 0.30209, 0.8896, 0.34207, 0.78788, 0.45757, 0.71197, 0.59202, 0.57817, 0.75767, 0.47299, 0.86783, 0.36855, 0.93391, 0.26408, 1, 0.11386, 1, 0, 1, 0, 0.8245, 0.119, 0.72038, 0.19413, 0.66241, 0.26134, 0.56031, 0.34199, 0.42102, 0.43086, 0.26896, 0.5397, 0.09312, 0.69946, 0, 0.92995, 0, 1, 0, 0.673, 0.27996, 0.58113, 0.41889, 0.483, 0.58038, 0.30198, 0.80532, 0.79708, 0.1355, 0.37599, 0.71915, 0.19023, 0.87218, 0.07668, 0.95057 ],
- "triangles": [ 8, 26, 7, 7, 26, 6, 9, 27, 8, 8, 27, 26, 9, 10, 27, 27, 10, 26, 26, 23, 6, 10, 11, 26, 26, 11, 23, 11, 12, 23, 6, 23, 5, 23, 25, 5, 5, 25, 4, 23, 12, 25, 12, 13, 25, 25, 13, 22, 13, 14, 22, 25, 22, 4, 4, 22, 3, 22, 14, 21, 22, 21, 3, 3, 21, 2, 21, 20, 2, 14, 15, 21, 21, 15, 20, 15, 16, 20, 24, 20, 16, 2, 20, 1, 20, 24, 1, 1, 24, 0, 24, 18, 0, 18, 19, 0, 24, 16, 17, 24, 17, 18 ],
- "vertices": [ 1, 21, -3.15, 10.17, 1, 2, 21, 1.45, 7.92, 0.96651, 22, -4.45, 8.73, 0.03349, 3, 21, 7.26, 7.72, 0.52862, 22, 1.26, 7.67, 0.44864, 23, -7.26, 7.75, 0.02274, 3, 21, 12.56, 8.72, 0.09825, 22, 6.65, 7.87, 0.60146, 23, -1.88, 7.89, 0.30029, 4, 21, 20.47, 8.77, 1.0E-5, 22, 14.48, 6.75, 0.03644, 23, 5.95, 6.68, 0.94794, 24, -2.97, 6.31, 0.01561, 3, 23, 11.62, 5.33, 0.46971, 24, 2.86, 6.29, 0.52274, 25, -6.5, 4.61, 0.00755, 3, 23, 16.24, 3.1, 0.06035, 24, 7.87, 5.18, 0.54789, 25, -1.39, 4.99, 0.39177, 3, 23, 20.86, 0.88, 2.0E-5, 24, 12.87, 4.07, 0.02757, 25, 3.73, 5.38, 0.97241, 1, 25, 10.11, 3.15, 1, 1, 25, 14.95, 1.47, 1, 1, 25, 13.15, -3.67, 1, 2, 24, 13.06, -6.78, 0.02336, 25, 7.04, -4.95, 0.97664, 2, 24, 9.27, -6.24, 0.28802, 25, 3.25, -5.54, 0.71198, 4, 22, 19.33, -7.99, 0.00221, 23, 10.62, -8.11, 9.6E-4, 24, 4.96, -7.02, 0.81682, 25, -0.65, -7.53, 0.18001, 4, 22, 13.69, -8.12, 0.11669, 23, 4.98, -8.18, 0.16217, 24, -0.52, -8.38, 0.71703, 25, -5.5, -10.41, 0.00411, 4, 21, 15.8, -7.09, 4.5E-4, 22, 7.51, -8.24, 0.64152, 23, -1.2, -8.23, 0.1677, 24, -6.52, -9.84, 0.19034, 4, 21, 8.55, -8.11, 0.20599, 22, 0.18, -8.18, 0.78095, 23, -8.53, -8.08, 0.00221, 24, -13.69, -11.37, 0.01085, 2, 21, 1.19, -5.7, 0.89986, 22, -6.74, -4.7, 0.10014, 1, 21, -6.76, 0.97, 1, 1, 21, -9.17, 3, 1, 2, 21, 7.68, 0.18, 2.4E-4, 22, 0.56, 0.15, 0.99976, 3, 22, 6.52, -0.1, 0.99872, 23, -2.1, -0.07, 7.4E-4, 24, -9.26, -2.1, 5.4E-4, 3, 22, 13.2, -0.1, 4.5E-4, 23, 4.58, -0.15, 0.98688, 24, -2.74, -0.65, 0.01267, 3, 23, 15.18, -1.77, 5.9E-4, 24, 7.95, 0.2, 0.32623, 25, 0.13, 0.24, 0.67318, 1, 21, 0.52, 0.34, 1, 1, 24, 3.68, 0, 1, 1, 25, 5.56, 0.55, 1, 1, 25, 11.18, 1.16, 1 ],
- "hull": 20,
- "edges": [ 34, 32, 32, 30, 30, 28, 24, 22, 18, 20, 22, 20, 0, 38, 4, 6, 6, 8, 8, 10, 34, 36, 36, 38, 40, 42, 42, 44, 36, 48, 48, 40, 34, 48, 0, 2, 2, 4, 48, 2, 4, 40, 40, 32, 30, 42, 42, 6, 8, 44, 44, 28, 24, 46, 10, 12, 12, 14, 46, 12, 44, 50, 50, 46, 10, 50, 24, 26, 26, 28, 50, 26, 52, 46, 22, 52, 52, 14, 18, 54, 54, 52, 20, 54, 14, 16, 16, 18, 54, 16 ],
- "width": 45,
- "height": 31
- }
- },
- "toufa3": {
- "toufa3": {
- "type": "mesh",
- "uvs": [ 0.29695, 0.04455, 0.3899, 0.1079, 0.4639, 0.21596, 0.53535, 0.33074, 0.61156, 0.4894, 0.66246, 0.58136, 0.72902, 0.68901, 0.79614, 0.76449, 0.89452, 0.80712, 1, 0.82939, 1, 0.90667, 0.82528, 1, 0.63099, 1, 0.47778, 0.93224, 0.34928, 0.84176, 0.28128, 0.73976, 0.23918, 0.60994, 0.2068, 0.46158, 0.16935, 0.34874, 0.11634, 0.26106, 0.09023, 0.21121, 0, 0.13085, 0, 0, 0.09974, 0, 0.22623, 0, 0.21058, 0.17666, 0.38737, 0.4978, 0.45641, 0.60519, 0.59701, 0.81723, 0.7301, 0.87632, 0.15455, 0.12666, 0.06581, 0.05393, 0.27649, 0.25818, 0.33531, 0.36041, 0.51812, 0.73302, 0.86745, 0.89176 ],
- "triangles": [ 11, 35, 10, 11, 29, 35, 10, 35, 9, 35, 8, 9, 35, 7, 8, 12, 29, 11, 13, 28, 12, 12, 28, 29, 29, 7, 35, 7, 29, 6, 29, 28, 6, 28, 34, 6, 13, 34, 28, 13, 14, 34, 14, 15, 34, 34, 5, 6, 15, 27, 34, 15, 16, 27, 34, 27, 5, 16, 26, 27, 16, 17, 26, 27, 4, 5, 27, 26, 4, 26, 3, 4, 17, 33, 26, 26, 33, 3, 17, 18, 33, 18, 32, 33, 33, 2, 3, 33, 32, 2, 18, 19, 32, 19, 25, 32, 19, 20, 25, 32, 1, 2, 32, 25, 1, 20, 21, 30, 20, 30, 25, 30, 21, 31, 25, 0, 1, 25, 30, 0, 21, 22, 31, 31, 23, 30, 30, 24, 0, 30, 23, 24, 31, 22, 23 ],
- "vertices": [ 1, 11, -4.75, 6.38, 1, 1, 11, -0.46, 8.53, 1, 2, 11, 5.19, 9.05, 0.97712, 12, -9.55, 8.46, 0.02288, 3, 11, 11.06, 9.33, 0.73979, 12, -3.71, 9.12, 0.26019, 14, -10.4, 18.54, 2.0E-5, 4, 11, 18.73, 8.89, 0.1202, 12, 3.97, 9.16, 0.79883, 13, -2.79, 10.14, 0.04449, 14, -4.55, 13.57, 0.03648, 4, 11, 23.3, 8.88, 0.00663, 12, 8.54, 9.44, 0.60917, 13, 1.7, 9.29, 0.21009, 14, -0.9, 10.81, 0.1741, 4, 12, 14, 10.03, 0.17328, 13, 7.15, 8.51, 0.2084, 14, 3.64, 7.7, 0.58025, 15, -1.27, 9.55, 0.03807, 4, 12, 18.19, 11.23, 0.02509, 13, 11.5, 8.64, 0.03464, 14, 7.6, 5.88, 0.59453, 15, 1.28, 6.02, 0.34574, 4, 12, 21.6, 14.22, 2.9E-4, 13, 15.55, 10.69, 6.0E-5, 14, 12.13, 5.93, 0.07275, 15, 5.26, 3.84, 0.92689, 1, 15, 9.6, 2.52, 1, 1, 15, 9.34, -0.87, 1, 2, 14, 13.09, -2.99, 0.10483, 15, 1.71, -4.4, 0.89517, 3, 13, 15.26, -3.25, 0.00526, 14, 5.69, -6.45, 0.99199, 15, -6.43, -3.78, 0.00275, 2, 13, 8.91, -6.42, 0.53401, 14, -1.4, -6.46, 0.46599, 3, 12, 13.55, -7.27, 0.15886, 13, 2.43, -8.14, 0.82954, 14, -7.97, -5.14, 0.0116, 3, 11, 21.96, -8.53, 5.8E-4, 12, 8.29, -8.02, 0.64074, 13, -2.86, -7.57, 0.35867, 3, 11, 16.09, -7.41, 0.15747, 12, 2.35, -7.28, 0.82536, 13, -8.42, -5.38, 0.01717, 2, 11, 9.68, -5.56, 0.8793, 12, -4.15, -5.83, 0.1207, 2, 11, 4.56, -4.62, 0.99993, 12, -9.33, -5.22, 7.0E-5, 1, 11, 0.11, -4.78, 1, 1, 11, -2.34, -4.72, 1, 1, 11, -7.24, -6.41, 1, 1, 11, -12.33, -3.72, 1, 1, 11, -10.37, -0.01, 1, 1, 11, -7.88, 4.68, 1, 1, 11, -1.32, 0.46, 1, 2, 11, 14.64, 0.4, 0.15646, 12, 0.42, 0.42, 0.84354, 2, 12, 5.92, 1.12, 0.99698, 14, -8.3, 6.2, 0.00302, 2, 12, 16.86, 2.65, 0.00124, 14, 1, 0.24, 0.99876, 4, 12, 21.53, 6.67, 2.3E-4, 13, 13.61, 3.4, 2.4E-4, 14, 7.16, 0.25, 0.98989, 15, -1.86, 1.33, 0.00964, 1, 11, -4.36, -0.59, 1, 1, 11, -8.94, -2.39, 1, 1, 11, 3.15, 1.22, 1, 2, 11, 8.28, 1.3, 0.99881, 12, -5.99, 0.92, 0.00119, 3, 12, 12.12, 1.16, 0.01803, 13, 3.13, 0.38, 0.97378, 14, -3.57, 2.19, 0.00819, 3, 12, 24.53, 11.65, 0, 14, 12.68, 2.07, 0.00257, 15, 3.84, 0.21, 0.99742 ],
- "hull": 25,
- "edges": [ 6, 8, 12, 14, 14, 16, 16, 18, 42, 44, 42, 40, 36, 34, 34, 32, 32, 30, 30, 28, 28, 26, 26, 24, 22, 24, 18, 20, 22, 20, 52, 54, 56, 58, 60, 50, 40, 60, 60, 48, 44, 62, 62, 60, 42, 62, 44, 46, 46, 48, 62, 46, 36, 38, 38, 40, 38, 50, 2, 0, 0, 48, 50, 0, 50, 64, 36, 64, 64, 2, 52, 66, 66, 64, 34, 66, 2, 4, 4, 6, 66, 4, 32, 52, 52, 6, 30, 54, 54, 8, 54, 68, 68, 56, 28, 68, 8, 10, 10, 12, 68, 10, 26, 56, 56, 12, 24, 58, 58, 14, 20, 70, 70, 58, 22, 70, 70, 16 ],
- "width": 42,
- "height": 44
- }
- },
- "toufa4": {
- "toufa4": {
- "type": "mesh",
- "uvs": [ 0.64117, 0.05838, 0.81258, 0.09754, 0.9099, 0.29964, 1, 0.56911, 1, 0.81978, 0.92538, 1, 0.85018, 1, 0.76613, 0.90594, 0.65665, 0.60984, 0.56154, 0.44378, 0.4598, 0.39834, 0.30609, 0.61768, 0.1391, 0.76024, 0.16232, 0.92474, 0.1203, 0.96391, 0, 0.71638, 0, 0.56598, 0.10371, 0.21661, 0.22314, 0.06778, 0.24747, 0.05054, 0.36801, 0, 0.5339, 0 ],
- "triangles": [ 10, 20, 21, 10, 21, 0, 19, 20, 10, 18, 19, 10, 17, 18, 10, 9, 10, 0, 9, 0, 1, 9, 1, 2, 11, 16, 17, 8, 9, 2, 3, 8, 2, 10, 11, 17, 12, 15, 16, 11, 12, 16, 8, 3, 4, 7, 8, 4, 14, 15, 12, 14, 12, 13, 5, 6, 7, 4, 5, 7 ],
- "vertices": [ 77.62, -15.35, 75.54, -29.96, 63.56, -38.44, 47.53, -46.39, 32.49, -46.66, 21.57, -40.51, 21.45, -34.12, 26.97, -26.87, 44.57, -17.25, 54.38, -8.99, 56.95, -0.3, 43.56, 12.53, 34.76, 26.57, 24.92, 24.42, 22.51, 27.95, 37.18, 38.44, 46.2, 38.6, 67.32, 30.16, 76.43, 20.17, 77.5, 18.12, 80.71, 7.93, 80.96, -6.17 ],
- "hull": 22,
- "edges": [ 30, 28, 28, 26, 26, 24, 24, 22, 22, 20, 20, 18, 18, 16, 16, 14, 14, 12, 10, 12, 10, 8, 8, 6, 6, 4, 4, 2, 2, 0, 0, 42, 30, 32, 32, 34, 34, 36, 40, 42, 38, 40, 36, 38 ],
- "width": 85,
- "height": 60
- }
- },
- "toufa5": {
- "toufa5": {
- "type": "mesh",
- "uvs": [ 1, 0.72991, 1, 1, 0.62733, 1, 0.57829, 0.89911, 0.30855, 0.76046, 0.30855, 0.54426, 0, 0.37271, 0, 0, 0.41072, 0 ],
- "triangles": [ 6, 7, 8, 5, 6, 8, 5, 8, 0, 3, 4, 5, 0, 3, 5, 2, 3, 0, 2, 0, 1 ],
- "vertices": [ 5.45, 10.87, -5.35, 10.68, -5.5, 19.25, -1.49, 20.45, 3.95, 26.75, 12.59, 26.9, 19.33, 34.12, 34.23, 34.39, 34.4, 24.94 ],
- "hull": 9,
- "edges": [ 12, 14, 12, 10, 10, 8, 8, 6, 2, 4, 6, 4, 14, 16, 2, 0, 16, 0 ],
- "width": 23,
- "height": 40
- }
- },
- "toufa6": {
- "toufa6": {
- "type": "mesh",
- "uvs": [ 1, 0.42105, 0.48033, 1, 0, 1, 0, 0.68216, 0.50122, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
- "vertices": [ 12.17, -39.02, -3.71, -25.27, -3.94, -12.3, 4.64, -12.15, 23.3, -25.35, 23.54, -38.82 ],
- "hull": 6,
- "edges": [ 2, 4, 0, 10, 2, 0, 8, 10, 4, 6, 8, 6 ],
- "width": 27,
- "height": 27
- }
- },
- "xiaba1": {
- "xiaba1": {
- "type": "mesh",
- "uvs": [ 0.86952, 0.19928, 0.92101, 0.39364, 0.97, 0.61065, 1, 0.7755, 1, 1, 0.78382, 1, 0.33882, 1, 0.32149, 0.92837, 0.28342, 0.77155, 0.23914, 0.58896, 0.17971, 0.34389, 0.09632, 0, 0.40382, 0, 0.80632, 0, 0.53882, 0.49888, 0.63065, 0.68672, 0.71045, 0.84994, 0.4803, 0.28265 ],
- "triangles": [ 5, 3, 4, 6, 16, 5, 5, 16, 3, 6, 7, 16, 7, 15, 16, 7, 8, 15, 3, 16, 2, 16, 15, 2, 8, 14, 15, 2, 15, 1, 8, 9, 14, 15, 14, 1, 9, 17, 14, 9, 10, 17, 14, 0, 1, 14, 17, 0, 10, 12, 17, 10, 11, 12, 17, 13, 0, 17, 12, 13 ],
- "vertices": [ 3, 32, 1.74, 15.33, 0.70005, 33, -3.42, 16.13, 0.2343, 34, -9.6, 16.29, 0.06565, 3, 32, 8.63, 15.09, 0.33507, 33, 3.34, 14.74, 0.37997, 34, -2.87, 14.8, 0.28496, 3, 32, 16.22, 14.53, 0.05077, 33, 10.72, 12.91, 0.23577, 34, 4.48, 12.84, 0.71346, 3, 32, 21.9, 13.84, 0.00192, 33, 16.2, 11.28, 0.06924, 34, 9.94, 11.11, 0.92883, 2, 33, 22.94, 7.69, 2.8E-4, 34, 16.61, 7.41, 0.99972, 1, 34, 12.62, 0.23, 1, 3, 32, 21.19, -12.41, 0.05016, 33, 11.12, -14.48, 0.13862, 34, 4.41, -14.56, 0.81122, 3, 32, 18.67, -12.27, 0.0758, 33, 8.66, -13.91, 0.16557, 34, 1.96, -13.95, 0.75863, 3, 32, 13.16, -11.95, 0.279, 33, 3.27, -12.68, 0.26874, 34, -3.41, -12.62, 0.45226, 3, 32, 6.74, -11.59, 0.71404, 33, -3, -11.24, 0.17322, 34, -9.65, -11.08, 0.11275, 3, 32, -1.88, -11.09, 0.99259, 33, -11.41, -9.32, 0.00622, 34, -18.03, -9.01, 0.00118, 1, 32, -13.98, -10.4, 1, 2, 32, -10.28, 0.68, 0.99973, 33, -17.72, 3.7, 2.7E-4, 3, 32, -5.44, 15.19, 0.87829, 33, -10.52, 17.2, 0.11616, 34, -16.69, 17.49, 0.00555, 2, 32, 7.43, 0.18, 0.89408, 33, -0.34, 0.25, 0.10592, 2, 33, 6.94, 0.32, 0.06026, 34, 0.48, 0.31, 0.93974, 2, 33, 13.26, 0.38, 3.4E-4, 34, 6.81, 0.27, 0.99966, 2, 32, -0.24, 0.4, 0.9992, 33, -7.87, 1.74, 8.0E-4 ],
- "hull": 14,
- "edges": [ 22, 24, 24, 26, 8, 10, 10, 12, 30, 28, 16, 30, 30, 4, 12, 14, 14, 16, 10, 32, 32, 30, 14, 32, 4, 6, 6, 8, 32, 6, 16, 18, 18, 28, 4, 2, 28, 2, 18, 20, 20, 22, 24, 34, 34, 28, 20, 34, 2, 0, 0, 26, 34, 0 ],
- "width": 38,
- "height": 34
- }
- },
- "xiaba2": {
- "xiaba2": {
- "type": "mesh",
- "uvs": [ 0.59716, 0.16614, 0.5962, 0.29478, 0.59542, 0.39836, 0.59454, 0.51552, 0.59387, 0.60492, 0.59291, 0.73361, 0.59161, 0.90669, 0.59091, 1, 0.22341, 1, 0, 1, 0, 0.88447, 0.0346, 0.73762, 0.06633, 0.60298, 0.09196, 0.49419, 0.11481, 0.39724, 0.13772, 0.3, 0.17123, 0.1578, 0.20841, 0, 0.36591, 0, 0.59841, 0, 0.23867, 0.8929, 0.26214, 0.72822, 0.29401, 0.50458, 0.28009, 0.60224, 0.32345, 0.29797, 0.3092, 0.39799, 0.34212, 0.16692 ],
- "triangles": [ 8, 20, 7, 7, 20, 6, 20, 8, 10, 8, 9, 10, 20, 21, 6, 10, 11, 20, 20, 11, 21, 6, 21, 5, 11, 12, 21, 21, 23, 5, 5, 23, 4, 21, 12, 23, 23, 22, 4, 12, 13, 23, 23, 13, 22, 4, 22, 3, 22, 25, 3, 3, 25, 2, 13, 14, 22, 22, 14, 25, 25, 24, 2, 2, 24, 1, 14, 15, 25, 25, 15, 24, 15, 16, 24, 24, 26, 1, 24, 16, 26, 1, 26, 0, 16, 17, 26, 26, 18, 0, 26, 17, 18, 0, 18, 19 ],
- "vertices": [ 2, 35, -6.27, 9.56, 0.98568, 36, -13.26, 10, 0.01432, 2, 35, -1.94, 10.21, 0.91328, 36, -8.92, 10.5, 0.08672, 3, 35, 1.54, 10.73, 0.77218, 36, -5.42, 10.91, 0.22742, 37, -13.91, 9.83, 4.0E-4, 3, 35, 5.48, 11.32, 0.51305, 36, -1.46, 11.37, 0.46711, 37, -10, 10.61, 0.01983, 3, 35, 8.49, 11.77, 0.30029, 36, 1.56, 11.72, 0.6196, 37, -7.02, 11.2, 0.08011, 3, 35, 12.81, 12.41, 0.09254, 36, 5.9, 12.23, 0.62888, 37, -2.72, 12.05, 0.27857, 3, 35, 18.64, 13.28, 0.00494, 36, 11.75, 12.91, 0.40821, 37, 3.05, 13.19, 0.58685, 2, 36, 14.9, 13.28, 0.35686, 37, 6.16, 13.81, 0.64314, 2, 36, 16.63, -0.58, 4.7E-4, 37, 8.99, 0.13, 0.99953, 1, 37, 10.71, -8.18, 1, 2, 36, 13.79, -9.49, 0.03213, 37, 6.86, -8.97, 0.96787, 3, 35, 16.26, -8.52, 8.5E-4, 36, 8.67, -8.81, 0.28107, 37, 1.71, -8.7, 0.71808, 3, 35, 11.55, -8.05, 0.08056, 36, 3.98, -8.18, 0.63615, 37, -3.02, -8.45, 0.28329, 3, 35, 7.74, -7.66, 0.38944, 36, 0.19, -7.67, 0.54352, 37, -6.84, -8.24, 0.06704, 3, 35, 4.35, -7.32, 0.77216, 36, -3.19, -7.22, 0.22033, 37, -10.24, -8.06, 0.00752, 2, 35, 0.95, -6.97, 0.96249, 36, -6.58, -6.76, 0.03751, 1, 35, -4.02, -6.47, 1, 1, 35, -9.54, -5.91, 1, 1, 35, -10.48, 0, 1, 1, 35, -11.86, 8.73, 1, 1, 37, 5.31, -0.03, 1, 2, 36, 7.28, -0.27, 0.89062, 37, -0.36, -0.3, 0.10938, 3, 35, 6.89, -0.02, 0.94573, 36, -0.42, -0.01, 0.05425, 37, -8.05, -0.65, 2.0E-5, 2, 36, 2.95, -0.12, 0.99934, 37, -4.69, -0.5, 6.6E-4, 1, 35, -0.22, -0.01, 1, 1, 35, 3.22, -0.02, 1, 1, 35, -4.73, -0.01, 1 ],
- "hull": 20,
- "edges": [ 18, 20, 34, 36, 36, 38, 14, 16, 16, 18, 16, 40, 20, 40, 14, 12, 40, 12, 20, 22, 42, 40, 22, 42, 12, 10, 42, 10, 26, 44, 44, 6, 22, 24, 24, 26, 42, 46, 46, 44, 24, 46, 6, 8, 8, 10, 46, 8, 30, 48, 48, 2, 26, 28, 28, 30, 44, 50, 50, 48, 28, 50, 2, 4, 4, 6, 50, 4, 30, 32, 32, 34, 36, 52, 52, 48, 32, 52, 2, 0, 0, 38, 52, 0 ],
- "width": 38,
- "height": 34
- }
- },
- "yanjingzhouwen": {
- "yanjingzhouwen": { "x": 3.32, "y": -0.26, "rotation": -91.55, "width": 14, "height": 11 }
- },
- "yaodaichuixian": {
- "yaodaichuixian": {
- "type": "mesh",
- "uvs": [ 0.6361, 0.17449, 0.72476, 0.3426, 0.8031, 0.49113, 0.91505, 0.70339, 1, 0.86447, 1, 1, 0.76406, 1, 0.33094, 1, 0.28113, 0.90762, 0.19683, 0.75126, 0.08014, 0.53484, 0, 0.38621, 0, 0.2236, 0, 0, 0.22095, 0, 0.54407, 0, 0.70292, 0.88743, 0.61261, 0.72114, 0.49911, 0.51216, 0.42109, 0.36852, 0.33054, 0.20179 ],
- "triangles": [ 10, 19, 18, 17, 18, 2, 9, 10, 18, 9, 18, 17, 17, 2, 3, 16, 17, 3, 16, 3, 4, 8, 9, 17, 8, 17, 16, 7, 8, 16, 6, 16, 4, 7, 16, 6, 6, 4, 5, 19, 0, 1, 11, 20, 19, 18, 19, 1, 18, 1, 2, 10, 11, 19, 20, 14, 15, 20, 15, 0, 12, 13, 14, 12, 14, 20, 19, 20, 0, 11, 12, 20 ],
- "vertices": [ 2, 45, 3.38, 2.58, 0.98529, 46, -2.62, 2.68, 0.01471, 3, 45, 7.3, 2.81, 0.16668, 46, 1.31, 2.76, 0.82798, 47, -3.39, 2.96, 0.00534, 2, 46, 4.78, 2.83, 0.39451, 47, 0.08, 2.85, 0.60549, 2, 48, 0.56, 2.65, 0.66634, 47, 5.04, 2.7, 0.33366, 1, 48, 4.29, 2.12, 1, 1, 48, 7.25, 1.14, 1, 1, 48, 6.65, -0.65, 1, 1, 48, 5.56, -3.94, 1, 2, 48, 3.42, -3.65, 0.99498, 47, 8.56, -3.25, 0.00502, 2, 48, -0.21, -3.15, 0.49939, 47, 4.9, -3.15, 0.50061, 2, 46, 4.85, -3.04, 0.24772, 47, -0.16, -3.01, 0.75228, 3, 45, 7.58, -3.07, 0.16009, 46, 1.37, -3.12, 0.76119, 47, -3.64, -2.92, 0.07872, 2, 45, 3.87, -2.61, 0.97168, 46, -2.32, -2.53, 0.02832, 1, 45, -1.24, -1.97, 1, 1, 45, -1.02, -0.22, 1, 1, 45, -0.7, 2.35, 1, 1, 48, 4.04, -0.3, 1, 2, 48, 0.18, 0.23, 0.84522, 47, 4.93, 0.24, 0.15478, 2, 46, 4.87, 0.35, 0.24965, 47, 0.04, 0.37, 0.75035, 2, 45, 7.59, 0.32, 0.00185, 46, 1.51, 0.27, 0.99815, 1, 45, 3.7, 0.08, 1 ],
- "hull": 16,
- "edges": [ 10, 8, 26, 28, 28, 30, 10, 12, 12, 14, 14, 16, 12, 32, 16, 32, 32, 8, 16, 18, 34, 32, 18, 34, 8, 6, 34, 6, 18, 20, 20, 22, 36, 34, 20, 36, 6, 4, 36, 4, 38, 36, 22, 38, 4, 2, 38, 2, 22, 24, 24, 26, 28, 40, 40, 38, 24, 40, 2, 0, 0, 30, 40, 0 ],
- "width": 8,
- "height": 23
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.67735, 0.29963, 0.74458, 0.33937, 0.76687, 0.3745, 0.89545, 0.5842, 0.9349, 0.63235, 0.99193, 0.69422, 1, 1, 0.63234, 0.98396, 0.55495, 0.8621, 0.50218, 0.81488, 0.44127, 0.77009, 0.23823, 0.59495, 0.19999, 0.56196, 0.17203, 0.52721, 0, 0.31335, 0, 0, 0.17048, 0, 0.43745, 0.44679, 0.71069, 0.72305, 0.66636, 0.67777, 0.76001, 0.77042, 0.40281, 0.41141, 0.49034, 0.50016 ],
- "triangles": [ 7, 20, 6, 20, 5, 6, 7, 8, 20, 8, 18, 20, 8, 9, 18, 20, 4, 5, 20, 18, 4, 18, 3, 4, 18, 19, 3, 9, 19, 18, 9, 10, 19, 10, 22, 19, 10, 11, 22, 19, 2, 3, 19, 22, 2, 11, 17, 22, 11, 12, 17, 22, 1, 2, 22, 17, 1, 17, 0, 1, 12, 21, 17, 12, 13, 21, 13, 14, 21, 17, 21, 0, 0, 21, 16, 16, 21, 15, 21, 14, 15 ],
- "vertices": [ 3, 26, 17.67, 9.54, 0.65249, 27, -2.08, 9.7, 0.33631, 28, -17.68, 6.48, 0.01121, 3, 26, 20.23, 10.4, 0.47193, 27, 0.53, 10.38, 0.49709, 28, -15.23, 7.61, 0.03098, 3, 26, 21.99, 10.2, 0.36231, 27, 2.28, 10.07, 0.58429, 28, -13.46, 7.61, 0.0534, 3, 26, 32.45, 8.91, 0.0028, 27, 12.63, 8.08, 0.28111, 28, -2.92, 7.48, 0.71609, 2, 27, 15.15, 7.87, 0.07821, 28, -0.4, 7.72, 0.92179, 2, 27, 18.5, 7.75, 0.00105, 28, 2.91, 8.2, 0.99895, 1, 28, 16.38, 3.17, 1, 2, 27, 24.63, -8.27, 0.01541, 28, 11.78, -6.48, 0.98459, 2, 27, 18.58, -7.17, 0.27972, 28, 5.63, -6.48, 0.72028, 2, 27, 15.88, -7.32, 0.62124, 28, 3.01, -7.09, 0.37876, 2, 27, 13.16, -7.72, 0.89249, 28, 0.4, -7.97, 0.10751, 2, 26, 24.02, -8.19, 0.23656, 27, 3.07, -8.42, 0.76344, 2, 26, 22.13, -8.45, 0.40185, 27, 1.17, -8.55, 0.59815, 2, 26, 20.31, -8.41, 0.57875, 27, -0.65, -8.38, 0.42125, 1, 26, 9.09, -8.14, 1, 1, 26, -3.94, -1.28, 1, 1, 26, -1.64, 3.09, 1, 3, 26, 20.55, 0.16, 0.34062, 27, 0.17, 0.15, 0.65931, 28, -13.78, -2.53, 7.0E-5, 1, 28, 1.2, 0.11, 1, 2, 27, 12.89, 0.12, 0.96409, 28, -1.25, -0.31, 0.03591, 1, 28, 3.79, 0.63, 1, 3, 26, 18.61, 0.05, 0.99969, 27, -1.78, 0.17, 3.0E-4, 28, -15.7, -2.85, 0, 3, 26, 23.49, 0.35, 0.0012, 27, 3.11, 0.14, 0.99848, 28, -10.89, -2.01, 3.2E-4 ],
- "hull": 17,
- "edges": [ 30, 32, 28, 30, 12, 14, 18, 36, 6, 8, 36, 8, 38, 36, 6, 38, 18, 20, 38, 20, 14, 16, 16, 18, 12, 40, 40, 36, 16, 40, 8, 10, 10, 12, 40, 10, 24, 34, 34, 2, 24, 26, 26, 28, 30, 42, 42, 34, 26, 42, 2, 0, 0, 32, 42, 0, 20, 22, 22, 24, 34, 44, 44, 38, 22, 44, 2, 4, 4, 6, 44, 4 ],
- "width": 29,
- "height": 47
- }
- },
- "youtui": {
- "youtui": {
- "type": "mesh",
- "uvs": [ 0.94478, 0.46695, 0.95397, 0.49647, 0.96457, 0.53052, 1, 0.64435, 1, 0.85372, 1, 0.8947, 1, 0.92058, 1, 1, 0.1929, 1, 0.18409, 0.96051, 0.17463, 0.91817, 0.44867, 0.88837, 0.43873, 0.87075, 0.42491, 0.84625, 0.26665, 0.5657, 0.24747, 0.5317, 0.23189, 0.50407, 0, 0.09298, 0.45859, 0.03964, 0.79944, 0, 0.73001, 0.90327, 0.72329, 0.88188, 0.71383, 0.85177, 0.60788, 0.51466, 0.61889, 0.5497, 0.59847, 0.48472 ],
- "triangles": [ 8, 9, 20, 9, 11, 20, 9, 10, 11, 8, 20, 7, 20, 6, 7, 20, 5, 6, 11, 21, 20, 20, 21, 5, 21, 4, 5, 11, 12, 21, 12, 22, 21, 21, 22, 4, 12, 13, 22, 22, 3, 4, 13, 24, 22, 3, 24, 2, 3, 22, 24, 13, 14, 24, 14, 23, 24, 14, 15, 23, 24, 1, 2, 24, 23, 1, 23, 0, 1, 15, 25, 23, 15, 16, 25, 23, 25, 0, 16, 18, 25, 16, 17, 18, 25, 19, 0, 25, 18, 19 ],
- "vertices": [ 2, 38, 17.41, 8.52, 0.61331, 39, -1.39, 8.44, 0.38669, 2, 38, 18.93, 8.49, 0.45585, 39, 0.13, 8.53, 0.54415, 2, 38, 20.69, 8.45, 0.28392, 39, 1.89, 8.62, 0.71608, 2, 38, 26.57, 8.33, 0.01618, 39, 7.76, 8.94, 0.98382, 2, 39, 18.38, 7.85, 0.99107, 40, -8.03, -1.21, 0.00893, 2, 39, 20.46, 7.64, 0.94538, 40, -7.59, 0.83, 0.05462, 2, 39, 21.77, 7.5, 0.89404, 40, -7.32, 2.12, 0.10596, 2, 39, 25.8, 7.09, 0.76905, 40, -6.48, 6.08, 0.23095, 1, 40, 14.05, 1.74, 1, 1, 40, 13.86, -0.28, 1, 1, 40, 13.65, -2.44, 1, 2, 39, 18.67, -6.59, 0.17365, 40, 6.36, -2.45, 0.82635, 2, 39, 17.75, -6.75, 0.35655, 40, 6.43, -3.38, 0.64345, 2, 39, 16.47, -6.98, 0.55001, 40, 6.52, -4.68, 0.44999, 2, 38, 19.23, -9.72, 0.36564, 39, 1.82, -9.61, 0.63436, 2, 38, 17.43, -9.91, 0.51974, 39, 0.04, -9.93, 0.48026, 2, 38, 15.97, -10.05, 0.63969, 39, -1.4, -10.19, 0.36031, 1, 38, -5.73, -12.26, 1, 1, 38, -6.28, -0.04, 1, 1, 38, -6.7, 9.04, 1, 2, 39, 20.18, 0.61, 0.84574, 40, -0.64, -0.19, 0.15426, 1, 39, 19.07, 0.55, 1, 1, 39, 17.52, 0.46, 1, 2, 38, 18.25, -0.53, 0.39224, 39, 0.14, -0.52, 0.60776, 2, 38, 20.06, -0.57, 0.01462, 39, 1.94, -0.42, 0.98538, 1, 38, 16.7, -0.5, 1 ],
- "hull": 20,
- "edges": [ 22, 20, 14, 16, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 6, 8, 8, 10, 44, 8, 30, 46, 46, 2, 26, 28, 28, 30, 44, 48, 48, 46, 28, 48, 2, 4, 4, 6, 48, 4, 30, 32, 32, 34, 36, 50, 50, 46, 32, 50, 2, 0, 0, 38, 50, 0 ],
- "width": 26,
- "height": 51
- }
- },
- "youyan": {
- "youyan": { "x": 3.36, "y": -0.46, "rotation": -91.55, "width": 21, "height": 12 }
- },
- "zuiba": {
- "zuiba": { "x": -0.78, "y": -1.19, "rotation": -88.98, "width": 10, "height": 4 }
- },
- "zuiba2": {
- "zuiba2": { "x": -2.7, "y": -3.01, "rotation": -88.98, "width": 27, "height": 21 }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.13008, 0.80978, 0.26894, 0.78113, 0.28986, 0.75662, 0.30775, 0.55987, 0.45138, 0.54234, 0.46418, 0.52303, 0.47828, 0.35921, 0.56059, 0.02887, 0.55718, 0, 0.39979, 0.05603, 0.36816, 0.0834, 0.35271, 0.10819, 0.33871, 0.33672, 0.20968, 0.36097, 0.19599, 0.39047, 0.17933, 0.70809, 0, 0.91853, 0, 1, 0, 0.52075, 0.25161, 0.54556, 0.23592, 0.56903, 0.22108, 0.28103, 0.40325, 0.2607, 0.4161, 0.30311, 0.38928 ],
- "triangles": [ 8, 23, 7, 7, 23, 6, 8, 10, 23, 8, 9, 10, 23, 22, 6, 10, 11, 23, 23, 11, 22, 6, 22, 5, 22, 24, 5, 5, 24, 4, 24, 19, 4, 11, 12, 22, 22, 12, 24, 24, 13, 19, 24, 12, 13, 4, 19, 3, 19, 20, 3, 3, 20, 2, 20, 21, 2, 2, 21, 1, 1, 17, 0, 1, 21, 17, 13, 14, 19, 19, 14, 20, 14, 15, 20, 20, 15, 21, 21, 16, 17, 21, 15, 16, 17, 18, 0 ],
- "vertices": [ 1, 29, 3.19, 8.58, 1, 2, 29, 16.35, 8.8, 0.99339, 30, -3.96, 8.83, 0.00661, 2, 29, 18.33, 8.83, 0.95507, 30, -1.98, 8.93, 0.04493, 2, 29, 20.02, 8.86, 0.87866, 30, -0.29, 9.02, 0.12134, 3, 29, 33.63, 9.09, 0.0458, 30, 13.3, 9.74, 0.48626, 31, -1.05, 9.76, 0.46794, 3, 29, 34.84, 9.11, 0.02887, 30, 14.51, 9.8, 0.39405, 31, 0.16, 9.8, 0.57708, 3, 29, 36.18, 9.13, 0.01688, 30, 15.85, 9.87, 0.29735, 31, 1.49, 9.84, 0.68577, 2, 30, 24.47, 8.88, 0.00161, 31, 10.09, 8.66, 0.99839, 1, 31, 15.02, -0.69, 1, 2, 30, 18.69, -7.89, 0.01783, 31, 3.95, -7.98, 0.98217, 2, 30, 15.49, -7.7, 0.14667, 31, 0.76, -7.72, 0.85333, 2, 30, 13.92, -7.6, 0.2839, 31, -0.8, -7.59, 0.7161, 2, 30, 12.51, -7.52, 0.43516, 31, -2.22, -7.47, 0.56484, 3, 29, 19.2, -6.88, 0.1997, 30, -0.54, -6.74, 0.79986, 31, -15.25, -6.41, 4.4E-4, 2, 29, 17.82, -6.75, 0.35851, 30, -1.93, -6.65, 0.64149, 2, 29, 16.14, -6.59, 0.56915, 30, -3.61, -6.55, 0.43085, 1, 29, -1.95, -4.85, 1, 1, 29, -5.16, 1.07, 1, 1, 29, -6.41, 3.36, 1, 2, 29, 19.48, -0.02, 0.97392, 30, -0.51, 0.12, 0.02608, 1, 29, 17.95, 0.04, 1, 1, 29, 16.49, 0.11, 1, 1, 30, 14.36, 0, 1, 1, 31, 1.06, -0.03, 1, 2, 29, 32.97, -0.62, 0, 30, 12.99, 0.01, 1 ],
- "hull": 19,
- "edges": [ 0, 36, 16, 18, 14, 16, 32, 34, 34, 36, 26, 38, 38, 6, 26, 28, 40, 38, 28, 40, 4, 6, 40, 4, 0, 2, 2, 4, 34, 42, 42, 40, 2, 42, 28, 30, 30, 32, 42, 30, 22, 44, 44, 10, 18, 20, 20, 22, 16, 46, 46, 44, 20, 46, 10, 12, 12, 14, 46, 12, 6, 8, 8, 10, 38, 48, 48, 44, 8, 48, 22, 24, 24, 26, 48, 24 ],
- "width": 32,
- "height": 84
- }
- },
- "zuotui": {
- "zuotui": {
- "type": "mesh",
- "uvs": [ 1, 0.2034, 0.91689, 0.53061, 0.9089, 0.56207, 0.90051, 0.59513, 0.83279, 0.86175, 0.82692, 0.88484, 0.81996, 0.91224, 0.79767, 1, 0, 1, 0, 0.97138, 0, 0.91504, 0.15014, 0.87716, 0.15461, 0.85075, 0.15806, 0.83038, 0.20346, 0.56246, 0.20777, 0.53701, 0.21391, 0.50077, 0.29875, 0, 0.68542, 0, 1, 0, 0.53773, 0.88667, 0.5411, 0.86644, 0.54547, 0.84019, 0.59392, 0.54934, 0.58892, 0.57931, 0.5997, 0.51461 ],
- "triangles": [ 8, 20, 7, 7, 20, 6, 8, 9, 20, 9, 11, 20, 9, 10, 11, 6, 21, 5, 11, 12, 20, 5, 22, 4, 20, 21, 6, 20, 12, 21, 21, 22, 5, 12, 13, 21, 21, 13, 22, 22, 24, 4, 4, 24, 3, 13, 14, 22, 22, 14, 24, 24, 23, 3, 14, 15, 24, 24, 15, 23, 15, 16, 23, 3, 23, 2, 23, 25, 2, 2, 25, 1, 23, 16, 25, 1, 25, 0, 16, 17, 25, 25, 18, 0, 25, 17, 18, 18, 19, 0 ],
- "vertices": [ 1, 41, 5.08, 9.39, 1, 3, 41, 21.9, 8.91, 0.96091, 42, 0.38, 9.03, 0.03895, 43, -14.41, -15.93, 1.4E-4, 3, 41, 23.52, 8.87, 0.88489, 42, 1.99, 8.88, 0.11369, 43, -13.79, -14.44, 0.00142, 3, 41, 25.22, 8.82, 0.75626, 42, 3.69, 8.72, 0.23792, 43, -13.13, -12.87, 0.00582, 3, 41, 38.92, 8.43, 0.00922, 42, 17.34, 7.47, 0.23537, 43, -7.86, -0.22, 0.75541, 3, 41, 40.11, 8.4, 0.00383, 42, 18.52, 7.37, 0.1173, 43, -7.4, 0.88, 0.87887, 3, 41, 41.52, 8.36, 8.3E-4, 42, 19.93, 7.24, 0.02245, 43, -6.86, 2.18, 0.97672, 2, 42, 24.42, 6.83, 0.06434, 43, -5.12, 6.35, 0.93566, 1, 43, 14.89, 0.89, 1, 1, 43, 14.5, -0.52, 1, 2, 42, 20.87, -14.06, 9.6E-4, 43, 13.75, -3.29, 0.99904, 2, 42, 18.79, -10.23, 0.1083, 43, 9.47, -4.13, 0.8917, 2, 42, 17.44, -10.17, 0.237, 43, 9.01, -5.4, 0.763, 2, 42, 16.4, -10.12, 0.33859, 43, 8.65, -6.38, 0.66141, 3, 41, 25.38, -9.38, 0.02197, 42, 2.7, -9.45, 0.97084, 43, 3.91, -19.25, 0.00719, 3, 41, 24.08, -9.4, 0.05791, 42, 1.4, -9.39, 0.93939, 43, 3.46, -20.47, 0.00269, 3, 41, 22.22, -9.42, 0.15208, 42, -0.45, -9.3, 0.84765, 43, 2.82, -22.21, 2.7E-4, 1, 41, -3.41, -9.79, 1, 1, 41, -4.42, 0.21, 1, 1, 41, -5.24, 8.35, 1, 1, 42, 18.9, -0.14, 1, 2, 42, 17.86, -0.1, 0.99619, 43, -0.48, -1.98, 0.00381, 1, 42, 16.52, -0.03, 1, 2, 41, 23.69, 0.66, 0.54168, 42, 1.65, 0.67, 0.45832, 2, 41, 25.23, 0.68, 0.12486, 42, 3.18, 0.6, 0.87514, 1, 41, 21.92, 0.63, 1 ],
- "hull": 20,
- "edges": [ 0, 38, 14, 16, 22, 20, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 46, 46, 4, 26, 28, 28, 30, 44, 48, 48, 46, 28, 48, 4, 6, 6, 8, 48, 6, 30, 32, 32, 34, 36, 50, 50, 46, 32, 50, 0, 2, 2, 4, 50, 2 ],
- "width": 26,
- "height": 51
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 3.38, "y": -0.85, "rotation": -90, "width": 20, "height": 12 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "beizi": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "beizi" }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 0.1, "name": "biyan" },
- { "time": 0.2333, "name": null },
- { "time": 1.7333, "name": "biyan" },
- { "time": 1.9333, "name": "biyan" },
- { "time": 2.0667, "name": null },
- { "time": 2.2667, "name": null },
- { "time": 2.6667, "name": "biyan" }
- ]
- },
- "hongjiu": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "hongjiu" }
- ]
- },
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuzuoshou1" }
- ]
- },
- "teshuzuoshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuzuoshou2" }
- ]
- },
- "teshuzuoshou3": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuzuoshou3" }
- ]
- },
- "teshuzuoshoushouzhi": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.1667, "name": "teshuzuoshoushouzhi" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2333, "name": "youyan" },
- { "time": 1.7333, "name": null },
- { "time": 2.0667, "name": "youyan" },
- { "time": 2.2667, "name": "youyan" },
- { "time": 2.6667, "name": null }
- ]
- },
- "zuiba": {
- "attachment": [
- { "time": 0.2333, "name": null },
- { "time": 3.2667, "name": "zuiba" },
- { "time": 3.3, "name": "zuiba" },
- { "time": 3.3667, "name": "zuiba" }
- ]
- },
- "zuiba2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2333, "name": "zuiba2" },
- { "time": 3.2667, "name": null },
- { "time": 3.3667, "name": null }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0.1667, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.1, "name": null },
- { "time": 0.2333, "name": "zuoyan" },
- { "time": 1.7333, "name": null },
- { "time": 2.0667, "name": "zuoyan" },
- { "time": 2.2667, "name": "zuoyan" },
- { "time": 2.6667, "name": null }
- ]
- }
- },
- "bones": {
- "root": {
- "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.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": -0.71 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- {
- "time": 2.4333,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "x": 3.77, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": -3.93, "curve": "stepped" },
- { "time": 0.6667, "angle": -3.93, "curve": "stepped" },
- { "time": 1, "angle": -3.93, "curve": "stepped" },
- { "time": 1.3667, "angle": -3.93, "curve": "stepped" },
- { "time": 2.4333, "angle": -3.93, "curve": "stepped" },
- { "time": 2.7, "angle": -3.93 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.01, "y": -0.8 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": 0.22 },
- { "time": 0.6667, "angle": 3.49 },
- { "time": 1, "angle": 0.22 },
- { "time": 1.3667, "angle": 6.25 },
- { "time": 1.7, "angle": 5.89, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": 5.89,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.3667, "angle": -4.67 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.04, "y": 0.02 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.3667, "x": -0.02, "y": 0.43 },
- { "time": 1.7, "x": 0.37, "y": 1.15 },
- { "time": 2.4333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "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.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0 },
- { "time": 1.7, "angle": 8.34, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": 8.34,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 1.51 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.2667, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.5667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.327, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 0.327, "y": 1 },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1 },
- { "time": 1.7333, "x": 0.327, "y": 1, "curve": "stepped" },
- { "time": 2.2667, "x": 0.327, "y": 1 },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1 },
- { "time": 2.6667, "x": 0.327, "y": 1 },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.2667, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.5667, "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.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1, "x": 0.327, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 0.327, "y": 1 },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1 },
- { "time": 1.7333, "x": 0.327, "y": 1, "curve": "stepped" },
- { "time": 2.2667, "x": 0.327, "y": 1 },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1 },
- { "time": 2.6667, "x": 0.327, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 2.2667, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.5667, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1, "x": -0.91, "y": -0.04, "curve": "stepped" },
- { "time": 0.2333, "x": -0.91, "y": -0.04 },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0 },
- { "time": 1.7333, "x": -0.91, "y": -0.04, "curve": "stepped" },
- { "time": 2.2667, "x": -0.91, "y": -0.04 },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0 },
- { "time": 2.6667, "x": -0.91, "y": -0.04 },
- { "time": 3.3667, "x": -0.67, "y": -0.03 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.4, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.2333, "x": 0.2, "y": 1 },
- { "time": 0.4, "x": 0.5, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 0.5, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 0.5, "y": 1 },
- { "time": 3.2333, "x": 0.056, "y": 1, "curve": "stepped" },
- { "time": 3.2667, "x": 0.5, "y": 2 },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.1333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -3.67,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": -0.47,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 },
- { "time": 3.3667, "angle": -2.16 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -2.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -5.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": 4.74,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 },
- { "time": 3.3667, "angle": -2.15 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -2.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 2.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": 16.17,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 },
- { "time": 3.3667, "angle": -6.41 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -2.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.1333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -2.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.1333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.1333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- {
- "time": 0.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 6.12,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.1333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- {
- "time": 0.1667,
- "x": 1.17,
- "y": 0.16,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -7.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": 10.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- {
- "time": 0.1667,
- "x": 0.62,
- "y": -0.25,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -7.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -7.12,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": -7.83,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -7.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -7.12,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": -8.01,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 6.88,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.1333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -3.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 7.57,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": 11.22,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 },
- { "time": 3.3667, "angle": -4.43 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -3.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -5.94,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": -10.27,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 },
- { "time": 3.3667, "angle": -4.43 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -3.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.6667,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -5.49,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.6333, "angle": 0 },
- {
- "time": 2.1333,
- "angle": -2.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 0 },
- { "time": 3.3667, "angle": -4.43 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -3.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.6333, "angle": 0, "curve": "stepped" },
- { "time": 2.1333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 },
- { "time": 3.3667, "angle": -4.43 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.6333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -8.29 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": 7.38 },
- { "time": 1, "angle": 0 },
- { "time": 1.3667, "angle": 7.38 },
- { "time": 1.7, "angle": -5.73, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": -5.73,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": -0.14 },
- { "time": 3.3667, "angle": 6.83 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -28.02 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": -6.59 },
- { "time": 1, "angle": 0 },
- { "time": 1.3667, "angle": -6.59 },
- { "time": 1.7, "angle": -21.32, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": -21.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": -11.93 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 6.99, "curve": "stepped" },
- { "time": 0.2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 2.04, "y": 73.43 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 69.26 },
- { "time": 0.2, "angle": -34.62 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": 4.03 },
- { "time": 1, "angle": 0 },
- { "time": 1.3667, "angle": 4.03 },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 3.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 1.02, "y": -0.23 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 1.83 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": 4.03 },
- { "time": 1, "angle": -4.83 },
- { "time": 1.3667, "angle": 4.03 },
- {
- "time": 2.4333,
- "angle": -6.33,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.3667, "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 13.14 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": 4.03 },
- { "time": 1, "angle": 0 },
- { "time": 1.3667, "angle": 4.03 },
- {
- "time": 2.4333,
- "angle": -8.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.3667, "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -7.78 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0 },
- {
- "time": 2.4333,
- "angle": -6.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 3.3667, "angle": 3.21 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -7.78 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": 5.71 },
- { "time": 1, "angle": -5.9 },
- { "time": 1.3667, "angle": 5.71 },
- {
- "time": 2.4333,
- "angle": -11.33,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7667, "angle": -5.46 },
- { "time": 3.3667, "angle": -2.06 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -7.78 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": 5.71 },
- { "time": 1, "angle": -5.9 },
- { "time": 1.3667, "angle": 5.71 },
- {
- "time": 2.4333,
- "angle": -14.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7667, "angle": -2.31 },
- { "time": 3.3667, "angle": -4.79 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -9.96 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": -6.06 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 16.42 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.96, "y": -0.2 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone40": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -3.56 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": -14.39 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 7.75 },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 39.26 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.2, "y": -0.24 },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": -15.55 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "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.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 2.4333, "angle": 0, "curve": "stepped" },
- { "time": 2.5667, "angle": 0, "curve": "stepped" },
- { "time": 2.7, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.8333, "angle": 9.49 },
- { "time": 1.3667, "angle": 0 },
- { "time": 1.9333, "angle": 14 },
- { "time": 2.5667, "angle": 0, "curve": "stepped" },
- { "time": 3.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0 },
- { "time": 0.6667, "x": -1.52, "y": -0.33 },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone46": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 6.79,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.8333, "angle": 9.49 },
- { "time": 1.3667, "angle": 0 },
- { "time": 1.9333, "angle": 14 },
- { "time": 2.5667, "angle": -8.23 },
- { "time": 3.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone47": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 15.76,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.8333, "angle": 9.49 },
- { "time": 1.3667, "angle": 0 },
- { "time": 1.9333, "angle": 14 },
- { "time": 2.5667, "angle": -8.23 },
- { "time": 3.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone48": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 6.79,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.4667, "angle": 0 },
- { "time": 0.8333, "angle": 9.49 },
- { "time": 1.3667, "angle": 0 },
- { "time": 1.9333, "angle": 14 },
- { "time": 2.5667, "angle": -8.23 },
- { "time": 3.3667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 3.3667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 3.3667, "x": 1, "y": 1 }
- ]
- },
- "bone49": {
- "translate": [
- { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.3, "x": 0, "y": 0 }
- ],
- "scale": [
- {
- "time": 1.8,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.8667,
- "x": 0.9,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- {
- "time": 1.9667,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 2.0667,
- "x": 0.9,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.3, "x": 1, "y": 1 }
- ]
- },
- "bone50": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 11.43 },
- { "time": 0.3333, "angle": -16.33 },
- { "time": 0.6667, "angle": -21.61 },
- { "time": 1, "angle": -16.33 },
- { "time": 1.3667, "angle": -21.61 },
- { "time": 1.7, "angle": -35.02, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": -35.02,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": -47.77 },
- { "time": 3.3667, "angle": -55 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 2.73, "y": -72.06, "curve": "stepped" },
- { "time": 0.3333, "x": 2.73, "y": -72.06, "curve": "stepped" },
- { "time": 0.6667, "x": 2.73, "y": -72.06, "curve": "stepped" },
- { "time": 1, "x": 2.73, "y": -72.06, "curve": "stepped" },
- { "time": 1.3667, "x": 2.73, "y": -72.06 },
- { "time": 1.7, "x": 1.54, "y": -77.53, "curve": "stepped" },
- { "time": 2.4333, "x": 1.54, "y": -77.53, "curve": "stepped" },
- { "time": 2.7, "x": 1.54, "y": -77.53 },
- { "time": 3.3667, "x": 3.35, "y": -77.56 }
- ],
- "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.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone51": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 35.53 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": 15.16 },
- { "time": 1, "angle": 0 },
- { "time": 1.3667, "angle": 15.16 },
- { "time": 1.7, "angle": -52.6, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": -52.6,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": -32.44 },
- { "time": 3.3667, "angle": -36.31 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0 },
- { "time": 1.7667, "x": -0.62, "y": 1.06, "curve": "stepped" },
- {
- "time": 2.4333,
- "x": -0.62,
- "y": 1.06,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "x": -1.18, "y": -2.67 }
- ],
- "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.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone52": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.3667, "angle": 0, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": -41.53 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "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.6667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.7, "x": 1, "y": 1 }
- ]
- },
- "bone53": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": -28.41 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.6667, "angle": 10.49 },
- { "time": 1, "angle": -1.46 },
- { "time": 1.3667, "angle": 10.49 },
- { "time": 1.7, "angle": 54.29, "curve": "stepped" },
- {
- "time": 2.4333,
- "angle": 54.29,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2.7, "angle": 50.91 }
- ],
- "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.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.4333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.7, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1.5, "y": 1.5 }
- ]
- }
- },
- "deform": {
- "default": {
- "hongjiu": {
- "hongjiu": [
- { "time": 0 },
- {
- "time": 0.3333,
- "offset": 6,
- "vertices": [ -2.86005, -0.55841, -4.74528, -1.35558 ]
- },
- {
- "time": 0.6667,
- "vertices": [ -3.18372, 1.51297, 0, 0, 0, 0, -1.73765, -0.14834, -1.45934, -0.19321, -2.73911, 0.7272 ]
- },
- {
- "time": 1,
- "offset": 6,
- "vertices": [ -2.86005, -0.55841, -4.74528, -1.35558 ]
- },
- {
- "time": 1.3667,
- "vertices": [ -3.18372, 1.51297, 0, 0, 0, 0, -1.73765, -0.14834, -1.45934, -0.19321, -2.73911, 0.7272 ]
- },
- {
- "time": 1.7,
- "offset": 6,
- "vertices": [ -2.86005, -0.55841, -4.74528, -1.35558 ]
- },
- {
- "time": 2.0333,
- "vertices": [ -0.85999, 0.8293, 0, 0, 0, 0, -2.86005, -0.55841, -2.80593, -0.35178 ],
- "curve": "stepped"
- },
- {
- "time": 2.4333,
- "vertices": [ -0.85999, 0.8293, 0, 0, 0, 0, -2.86005, -0.55841, -2.80593, -0.35178 ]
- },
- {
- "time": 2.8667,
- "vertices": [ -1.0891, 2.79115, -0.06751, 0.37419, -0.02495, 0.12027, -5.34186, -2.94249, -2.67406, -4.17969, -1.69477, 2.42556 ]
- },
- {
- "time": 3.3667,
- "vertices": [ -1.26533, 4.30027, -0.11943, 0.66203, -0.25717, -1.57653, -2.80495, -6.66375, -2.57262, -7.12424, -2.99844, 4.29138 ]
- }
- ]
- },
- "shenti": {
- "shenti": [
- { "time": 0 },
- {
- "time": 0.1667,
- "offset": 84,
- "vertices": [ -0.65567, -0.02049, -0.65596, -0.00965, 0, 0, -0.65567, -0.02049, -0.65596, -0.00965, 0, 0, 0, 0, 0, 0, 0, 0, -0.65567, -0.02049, -0.65596, -0.00965 ]
- },
- { "time": 0.3333 },
- {
- "time": 0.6667,
- "offset": 84,
- "vertices": [ 0.07448, 2.30064, -0.02754, 2.30167, 0, 0, 0.42138, 1.82179, 0.34024, 1.83866, -0.51471, 0.57439, -0.51372, 0.57534, 0, 0, 0, 0, 0.24474, 2.14315, 0.14953, 2.15188, 0.04546, 1.5347, -0.0226, 1.5352, 0.04546, 1.5347, -0.0226, 1.5352 ]
- },
- { "time": 1 },
- {
- "time": 1.3667,
- "offset": 84,
- "vertices": [ -0.0447, 1.14711, -0.09549, 1.144, 0, 0, 0.42138, 1.82179, 0.34024, 1.83866, -0.71612, 0.7607, -0.71484, 0.76202, 0, 0, 0, 0, 0.3086, 0.50439, 0.28593, 0.51755, 0.11223, 1.43909, -0.02125, 1.44329, 0.11223, 1.43909, -0.02125, 1.44329 ]
- },
- {
- "time": 1.8667,
- "offset": 84,
- "vertices": [ 0.61227, 1.47318, 0.53095, 1.52542, 0, 0, 1.73435, 2.14592, 1.62041, 2.27465, -1.20292, 0.38021, -1.20226, 0.38242, 0, 0, 0, 0, 0.3086, 0.50439, 0.28593, 0.51755, 0.37, 1.77254, 0.216, 1.79781, 0.1282, 1.78986, -0.02639, 1.79425 ],
- "curve": "stepped"
- },
- {
- "time": 2.4333,
- "offset": 84,
- "vertices": [ 0.61227, 1.47318, 0.53095, 1.52542, 0, 0, 1.73435, 2.14592, 1.62041, 2.27465, -1.20292, 0.38021, -1.20226, 0.38242, 0, 0, 0, 0, 0.3086, 0.50439, 0.28593, 0.51755, 0.37, 1.77254, 0.216, 1.79781, 0.1282, 1.78986, -0.02639, 1.79425 ]
- },
- {
- "time": 3.3667,
- "offset": 84,
- "vertices": [ -0.5318, 1.76911, -0.35601, 1.81267, 0, 0, 0.38121, 1.31431, 0.50808, 1.27066 ]
- }
- ]
- },
- "toufa6": {
- "toufa6": [
- { "time": 0 },
- {
- "time": 0.1667,
- "offset": 2,
- "vertices": [ -1.20401, 0.21856 ]
- },
- { "time": 0.6667 }
- ]
- }
- }
- },
- "drawOrder": [
- { "time": 1.6333 }
- ]
- },
- "walk1": {
- "slots": {
- "beizi": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2333, "name": null }
- ]
- },
- "hongjiu": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshou3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "teshuzuoshoushouzhi": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2333, "name": "youyan" }
- ]
- },
- "zuiba2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2333, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "bone": {
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": 1.65 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.6667, "x": 0, "y": 1.65 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1667, "x": 0, "y": 1.65 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.6667, "x": 0, "y": 1.65 },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 1.1, "curve": "stepped" },
- { "time": 1, "angle": 1.1 }
- ]
- },
- "bone3": {
- "rotate": [
- {
- "time": 0,
- "angle": -3.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -4,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -3.05,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -4,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -3.05 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "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.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.327, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.327, "y": 1 },
- { "time": 1.4, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "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.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.327, "y": 1, "curve": "stepped" },
- { "time": 1.2333, "x": 0.327, "y": 1 },
- { "time": 1.4, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2333, "angle": 0, "curve": "stepped" },
- { "time": 1.4, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -0.91, "y": -0.04, "curve": "stepped" },
- { "time": 1.2333, "x": -0.91, "y": -0.04 },
- { "time": 1.4, "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.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.4, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- {
- "time": 0,
- "angle": -4.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -4.56,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -4.56 }
- ],
- "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.78,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0.78,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0.78 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0.66,
- "y": -0.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0.66,
- "y": -0.03,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 0.66, "y": -0.03 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- {
- "time": 0,
- "angle": 4.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 9.07,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 9.07,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.93 }
- ]
- },
- "bone14": {
- "rotate": [
- {
- "time": 0,
- "angle": 4.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.93 }
- ]
- },
- "bone15": {
- "rotate": [
- {
- "time": 0,
- "angle": 4.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 4.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 4.93 }
- ]
- },
- "bone17": {
- "rotate": [
- {
- "time": 0,
- "angle": -1.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -1.99,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -1.99 }
- ]
- },
- "bone18": {
- "rotate": [
- {
- "time": 0,
- "angle": -7.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -7.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -7.24 }
- ]
- },
- "bone19": {
- "rotate": [
- {
- "time": 0,
- "angle": -7.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -6.87,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -7.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -6.87,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -7.24 }
- ]
- },
- "bone20": {
- "rotate": [
- {
- "time": 0,
- "angle": -7.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -14.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -7.24,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -14.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -7.24 }
- ]
- },
- "bone22": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone23": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.84,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone24": {
- "rotate": [
- {
- "time": 0,
- "angle": -21.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -17.09,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -21.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -17.09,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -21.51 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 1.36,
- "y": -0.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 1.36,
- "y": -0.32,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "x": 1.36, "y": -0.32 }
- ],
- "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": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -17.09,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -17.09,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone26": {
- "rotate": [
- {
- "time": 0,
- "angle": 325.15,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 0.6,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 325.15,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 0.6,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 325.15 }
- ],
- "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": -23.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 1.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -23.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 1.5,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -23.63 }
- ],
- "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": -295.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 8.3,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -295.43,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 8.3,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -295.43 }
- ],
- "translate": [
- { "time": 0, "x": -2.63, "y": -0.43, "curve": "stepped" },
- { "time": 0.5, "x": -2.63, "y": -0.43, "curve": "stepped" },
- { "time": 1, "x": -2.63, "y": -0.43, "curve": "stepped" },
- { "time": 1.5, "x": -2.63, "y": -0.43, "curve": "stepped" },
- { "time": 2, "x": -2.63, "y": -0.43 }
- ],
- "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": -11.09,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -23.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -11.09,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -23.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -11.09 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "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 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 18.85, "curve": "stepped" },
- { "time": 0.5, "angle": 18.85, "curve": "stepped" },
- { "time": 1, "angle": 18.85, "curve": "stepped" },
- { "time": 1.5, "angle": 18.85, "curve": "stepped" },
- { "time": 2, "angle": 18.85 }
- ],
- "translate": [
- {
- "time": 0,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "x": 2.12,
- "y": -0.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "x": 0,
- "y": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "x": 2.12,
- "y": -0.97,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "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": -8.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 2.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -8.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 2.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -8.51 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- {
- "time": 0,
- "angle": -8.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 2.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -8.51,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 2.23,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -8.51 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone35": {
- "rotate": [
- {
- "time": 0,
- "angle": -11.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -11.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -11.38 }
- ],
- "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": -11.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -11.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -11.38 }
- ],
- "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": -11.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 4.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -11.38,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 4.53,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -11.38 }
- ],
- "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": 18.5 },
- { "time": 0.1667, "angle": -3.98 },
- { "time": 0.3333, "angle": -38.36 },
- { "time": 0.5, "angle": -32.86 },
- { "time": 0.6667, "angle": -18.87 },
- { "time": 0.8333, "angle": 8.23 },
- { "time": 1, "angle": 18.5 },
- { "time": 1.1667, "angle": -3.98 },
- { "time": 1.3333, "angle": -38.36 },
- { "time": 1.5, "angle": -32.86 },
- { "time": 1.6667, "angle": -18.87 },
- { "time": 1.8333, "angle": 8.23 },
- { "time": 2, "angle": 18.5 }
- ]
- },
- "bone39": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 49.02 },
- { "time": 0.3333, "angle": 45.78 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 22.08 },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 49.02 },
- { "time": 1.3333, "angle": 45.78 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 22.08 },
- { "time": 1.8333, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.93, "y": -1.45 },
- { "time": 0.3333, "x": -1.51, "y": -1.01 },
- { "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": -1.93, "y": -1.45 },
- { "time": 1.3333, "x": -1.51, "y": -1.01 },
- { "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 }
- ]
- },
- "bone41": {
- "rotate": [
- { "time": 0, "angle": -13.05 },
- { "time": 0.1667, "angle": -3.3 },
- { "time": 0.3333, "angle": 22.57 },
- { "time": 0.5, "angle": 40.37 },
- { "time": 0.6667, "angle": 14.32 },
- { "time": 0.8333, "angle": -4.01 },
- { "time": 1, "angle": -13.05 },
- { "time": 1.1667, "angle": -3.3 },
- { "time": 1.3333, "angle": 22.57 },
- { "time": 1.5, "angle": 40.37 },
- { "time": 1.6667, "angle": 14.32 },
- { "time": 1.8333, "angle": -4.01 },
- { "time": 2, "angle": -13.05 }
- ]
- },
- "bone42": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 10.8 },
- { "time": 0.3333, "angle": 11.15 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6667, "angle": 50 },
- { "time": 0.8333, "angle": 29.72 },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": 10.8 },
- { "time": 1.3333, "angle": 11.15 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6667, "angle": 50 },
- { "time": 1.8333, "angle": 29.72 },
- { "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": -1.75, "y": -1.48 },
- { "time": 0.8333, "x": -3.25, "y": -2.14 },
- { "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": -1.75, "y": -1.48 },
- { "time": 1.8333, "x": -3.25, "y": -2.14 },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone43": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -8.14 },
- { "time": 0.3333, "angle": -26.04 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.1667, "angle": -8.14 },
- { "time": 1.3333, "angle": -26.04 },
- { "time": 1.5, "angle": 0 }
- ]
- },
- "bone44": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone45": {
- "rotate": [
- {
- "time": 0,
- "angle": -8.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 5.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -8.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 5.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -8.93 }
- ],
- "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": -8.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 5.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -8.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 5.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -8.93 }
- ]
- },
- "bone47": {
- "rotate": [
- {
- "time": 0,
- "angle": -8.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 5.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -8.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 5.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -8.93 }
- ],
- "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": -8.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 5.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -8.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 5.13,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -8.93 }
- ],
- "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": {
- "translate": [
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.4333, "x": 0, "y": 0 }
- ],
- "scale": [
- {
- "time": 1,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.0667,
- "x": 0.9,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
- {
- "time": 1.1667,
- "x": 1,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.2667,
- "x": 0.9,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 1.4333, "x": 1, "y": 1 }
- ]
- },
- "root": {
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- }
- },
- "deform": {
- "default": {
- "shenti": {
- "shenti": [
- {
- "time": 0,
- "offset": 38,
- "vertices": [ -0.03704, 2.51974, 0.34294, 0.551, 0.35204, 0.54525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.29795, 1.99027, 0.33084, 1.98507, -0.00794, 0.53993, 0.48352, 1.81597, 0.51349, 1.80773, 0, 0, 0, 0, 0, 0, 0, 0, -0.22493, 1.43368, -0.20115, 1.43721 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "offset": 38,
- "vertices": [ -0.03704, 2.51974, 0.34294, 0.551, 0.35204, 0.54525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.29795, 1.99027, 0.33084, 1.98507, -0.00794, 0.53993, 0.48352, 1.81597, 0.51349, 1.80773, 0, 0, 0, 0, 0, 0, 0, 0, -0.22493, 1.43368, -0.20115, 1.43721 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "offset": 38,
- "vertices": [ -0.03704, 2.51974, 0.34294, 0.551, 0.35204, 0.54525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.29795, 1.99027, 0.33084, 1.98507, -0.00794, 0.53993, 0.48352, 1.81597, 0.51349, 1.80773, 0, 0, 0, 0, 0, 0, 0, 0, -0.22493, 1.43368, -0.20115, 1.43721 ]
- }
- ]
- },
- "toufa4": {
- "toufa4": [
- {
- "time": 0,
- "offset": 32,
- "vertices": [ -1.05951, 0.60224, -0.86648, 2.6491 ]
- },
- { "time": 0.5 },
- {
- "time": 1,
- "offset": 32,
- "vertices": [ -1.05951, 0.60224, -0.86648, 2.6491 ]
- },
- { "time": 1.5 },
- {
- "time": 2,
- "offset": 32,
- "vertices": [ -1.05951, 0.60224, -0.86648, 2.6491 ]
- }
- ]
- },
- "toufa5": {
- "toufa5": [
- { "time": 0 },
- {
- "time": 0.5,
- "offset": 3,
- "vertices": [ -0.5697, 1.53005, 0.02609, 0.85136, 1.39391, 2.07642, 0.98922 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "offset": 3,
- "vertices": [ -0.5697, 1.53005, 0.02609, 0.85136, 1.39391, 2.07642, 0.98922 ]
- },
- { "time": 2 }
- ]
- },
- "toufa6": {
- "toufa6": [
- { "time": 0 },
- {
- "time": 0.5,
- "vertices": [ -1.08012, 0.56157, -1.22495, 0.40467, 0.2239, 1.97348 ]
- },
- { "time": 1 },
- {
- "time": 1.5,
- "vertices": [ -1.08012, 0.56157, -1.22495, 0.40467, 0.2239, 1.97348 ]
- },
- { "time": 2 }
- ]
- }
- }
- }
- }
- }
- }
|