60017.json 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072
  1. {
  2. "skeleton": { "hash": "tk0l9Ef9aIN5krOmrKQPAEbj57E", "spine": "3.6.53", "width": 177.21, "height": 203, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -1.93, "y": 62.76 },
  6. { "name": "bone2", "parent": "bone", "length": 13.25, "rotation": 93.29, "x": 0.18, "y": -0.34 },
  7. { "name": "bone3", "parent": "bone2", "length": 28.75, "rotation": -5.41, "x": 13.25 },
  8. { "name": "bone4", "parent": "bone3", "length": 6.84, "rotation": 2.12, "x": 28.75 },
  9. { "name": "bone5", "parent": "bone4", "length": 57.56, "rotation": 3.48, "x": 5.85, "y": -0.15 },
  10. { "name": "bone6", "parent": "bone3", "length": 22.37, "rotation": -137.58, "x": 27.75, "y": -18.13, "color": "2673c1ff" },
  11. { "name": "bone7", "parent": "bone6", "length": 17.37, "rotation": -1.86, "x": 22.37, "color": "2673c1ff" },
  12. { "name": "bone8", "parent": "bone7", "length": 13.93, "rotation": -8.69, "x": 17.37, "color": "2673c1ff" },
  13. { "name": "bone9", "parent": "bone3", "length": 21.1, "rotation": 152.84, "x": 29.17, "y": 12.79, "color": "f5c918ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 20.21, "rotation": -1.43, "x": 21.1, "color": "f5c918ff" },
  15. { "name": "bone11", "parent": "bone10", "length": 12.25, "rotation": -7.44, "x": 20.21, "color": "f5c918ff" },
  16. { "name": "bone12", "parent": "bone", "length": 14.21, "rotation": -86.96, "x": -0.16, "y": 0.73 },
  17. { "name": "bone13", "parent": "bone", "length": 19.8, "rotation": -92.62, "x": -9.11, "y": -13.01, "color": "23ad0cff" },
  18. { "name": "bone14", "parent": "bone13", "length": 20, "rotation": 0.87, "x": 22.16, "y": -0.12, "color": "23ad0cff" },
  19. { "name": "bone15", "parent": "bone14", "length": 10.04, "rotation": -76.09, "x": 23.57, "y": -0.03, "color": "23ad0cff" },
  20. { "name": "bone16", "parent": "bone", "length": 22.85, "rotation": -82.41, "x": 11.61, "y": -10.52, "color": "8520e5ff" },
  21. { "name": "bone17", "parent": "bone16", "length": 24.56, "rotation": 0.54, "x": 22.85, "color": "8520e5ff" },
  22. { "name": "bone18", "parent": "bone17", "length": 9.04, "rotation": -88.51, "x": 25.97, "y": 0.26, "color": "8520e5ff" },
  23. { "name": "bone19", "parent": "bone3", "length": 11.96, "rotation": -172.35, "x": 30.65, "y": -9.38, "color": "d10abdff" },
  24. { "name": "bone20", "parent": "bone19", "length": 8.91, "rotation": 1.9, "x": 11.96, "color": "d10abdff" },
  25. { "name": "bone21", "parent": "bone20", "length": 8.74, "rotation": 1.41, "x": 8.91, "color": "d10abdff" },
  26. { "name": "bone22", "parent": "bone21", "length": 9.86, "rotation": -2.13, "x": 8.74, "color": "d10abdff" },
  27. { "name": "bone23", "parent": "bone22", "length": 8.91, "rotation": 0.72, "x": 9.86, "color": "d10abdff" },
  28. { "name": "bone24", "parent": "bone3", "length": 7.81, "rotation": -179.76, "x": 28.61, "y": 11.13, "color": "af2121ff" },
  29. { "name": "bone25", "parent": "bone24", "length": 8.84, "rotation": 0.22, "x": 7.81, "color": "af2121ff" },
  30. { "name": "bone26", "parent": "bone25", "length": 6.91, "rotation": 1.66, "x": 8.84, "color": "af2121ff" },
  31. { "name": "bone27", "parent": "bone26", "length": 9.99, "rotation": -1.47, "x": 6.91, "color": "af2121ff" },
  32. { "name": "bone28", "parent": "bone27", "length": 7.17, "rotation": 1.47, "x": 10.24, "y": 0.01, "color": "af2121ff" },
  33. { "name": "bone29", "parent": "bone28", "length": 7.94, "x": 7.42, "color": "af2121ff" },
  34. { "name": "bone30", "parent": "bone5", "length": 8.25, "rotation": -0.51, "x": 26.16, "y": 19.52 },
  35. { "name": "bone31", "parent": "bone5", "length": 9.54, "rotation": 0.37, "x": 23.58, "y": -10.55 },
  36. { "name": "bone32", "parent": "bone5", "x": 27.33, "y": 5.3 },
  37. { "name": "bone33", "parent": "bone5", "x": 35.48, "y": 5.45 },
  38. { "name": "bone34", "parent": "bone5", "x": 8.39, "y": -3.17 },
  39. { "name": "bone35", "parent": "bone5", "length": 35.15, "rotation": 175.97, "x": 64.17, "y": -33.82 },
  40. { "name": "bone36", "parent": "bone35", "length": 14.35, "rotation": -101.69, "x": 0.25, "y": -25.86 },
  41. { "name": "bone37", "parent": "bone36", "length": 10.3, "rotation": -10.96, "x": 14.35 },
  42. { "name": "bone38", "parent": "bone37", "length": 9.87, "rotation": -14.85, "x": 10.3 },
  43. { "name": "bone39", "parent": "bone38", "length": 13.16, "rotation": -10.08, "x": 10.11, "y": -0.03 },
  44. { "name": "bone40", "parent": "bone3", "length": 24.64, "rotation": 115.15, "x": -7.64, "y": 89.73, "color": "f62d06ff" },
  45. { "name": "bone41", "parent": "bone40", "length": 18.51, "rotation": -140.38, "x": 28.37, "y": 0.06, "color": "f62d06ff" },
  46. { "name": "bone42", "parent": "bone41", "length": 12.46, "rotation": 5.06, "x": 18.51, "color": "f62d06ff" },
  47. { "name": "bone43", "parent": "bone31", "x": 4.96, "y": 4.12 },
  48. { "name": "bone44", "parent": "bone30", "x": 4.62, "y": 3 }
  49. ],
  50. "slots": [
  51. { "name": "zuoshou", "bone": "bone9", "attachment": "zuoshou" },
  52. { "name": "teshuzuoshou2", "bone": "bone40", "attachment": "teshuzuoshou2" },
  53. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  54. { "name": "zuotui", "bone": "bone13", "attachment": "zuotui" },
  55. { "name": "youtui", "bone": "bone16", "attachment": "youtui" },
  56. { "name": "kudang", "bone": "bone12", "attachment": "kudang" },
  57. { "name": "youwaitao", "bone": "bone19", "attachment": "youwaitao" },
  58. { "name": "zuowaitao", "bone": "bone24", "attachment": "zuowaitao" },
  59. { "name": "youshou", "bone": "bone6", "attachment": "youshou" },
  60. { "name": "toufa2", "bone": "bone5", "attachment": "toufa2" },
  61. { "name": "lian", "bone": "bone5", "attachment": "lian" },
  62. { "name": "teshuzuoshou1", "bone": "bone41", "attachment": "teshuzuoshou1" },
  63. { "name": "zuoyan", "bone": "bone30", "attachment": "zuoyan" },
  64. { "name": "zuoyantongkong", "bone": "bone44", "attachment": "zuoyantongkong" },
  65. { "name": "youyan", "bone": "bone31", "attachment": "youyan" },
  66. { "name": "youyantongkong", "bone": "bone43", "attachment": "youyantongkong" },
  67. { "name": "biyan", "bone": "bone32" },
  68. { "name": "meimao", "bone": "bone33", "attachment": "meimao" },
  69. { "name": "zuiba", "bone": "bone34", "attachment": "zuiba" },
  70. { "name": "toufa1", "bone": "bone35", "attachment": "toufa1" },
  71. { "name": "erduo", "bone": "bone5", "attachment": "erduo" },
  72. { "name": "xiaoyan", "bone": "bone32", "attachment": "xiaoyan" },
  73. { "name": "zhangzui", "bone": "bone34", "attachment": "zhangzui" }
  74. ],
  75. "skins": {
  76. "default": {
  77. "biyan": {
  78. "biyan": { "x": 0.93, "y": -2.07, "rotation": -93.48, "width": 49, "height": 5 }
  79. },
  80. "erduo": {
  81. "erduo": { "x": 23.93, "y": -35.07, "rotation": -93.48, "width": 16, "height": 21 }
  82. },
  83. "kudang": {
  84. "kudang": {
  85. "type": "mesh",
  86. "uvs": [ 1, 0.32615, 1, 0.56215, 1, 0.77455, 1, 1, 0.52577, 1, 0.33116, 1, 0, 1, 0, 0.79815, 0, 0.60345, 0, 0.33205, 0, 0, 0.33962, 0, 0.52577, 0, 1, 0, 0.52579, 0.32895, 0.52594, 0.58173, 0.52601, 0.78574, 0.33398, 0.33008, 0.33447, 0.58964, 0.33139, 0.79033 ],
  87. "triangles": [ 12, 13, 0, 14, 12, 0, 17, 10, 11, 11, 12, 14, 17, 11, 14, 9, 10, 17, 14, 0, 1, 15, 14, 1, 17, 14, 15, 18, 17, 15, 9, 17, 18, 8, 9, 18, 15, 1, 2, 16, 15, 2, 18, 15, 16, 19, 8, 18, 19, 18, 16, 7, 8, 19, 5, 6, 7, 19, 5, 7, 4, 19, 16, 5, 19, 4, 16, 2, 3, 4, 16, 3 ],
  88. "vertices": [ 6.45, 22.04, 11.16, 21.79, 15.41, 21.57, 19.91, 21.33, 18.93, 2.86, 18.52, -4.72, 17.84, -17.62, 13.81, -17.4, 9.92, -17.2, 4.5, -16.91, -2.13, -16.55, -1.43, -3.33, -1.05, 3.92, -0.06, 22.39, 5.52, 3.57, 10.57, 3.31, 14.65, 3.1, 5.15, -3.9, 10.33, -4.16, 14.34, -4.49 ],
  89. "hull": 14,
  90. "edges": [ 12, 14, 14, 16, 2, 4, 4, 6, 16, 18, 18, 20, 2, 0, 0, 26, 24, 26, 0, 28, 24, 28, 2, 30, 28, 30, 4, 32, 30, 32, 6, 8, 32, 8, 20, 22, 22, 24, 18, 34, 34, 28, 22, 34, 16, 36, 36, 30, 34, 36, 14, 38, 38, 32, 36, 38, 8, 10, 10, 12, 38, 10 ],
  91. "width": 39,
  92. "height": 20
  93. }
  94. },
  95. "lian": {
  96. "lian": { "x": 32.36, "y": -3.53, "rotation": -93.48, "width": 66, "height": 70 }
  97. },
  98. "meimao": {
  99. "meimao": { "x": 2.76, "y": -2.82, "rotation": -93.48, "width": 53, "height": 13 }
  100. },
  101. "shenti": {
  102. "shenti": {
  103. "type": "mesh",
  104. "uvs": [ 0.68152, 0.06342, 0.68875, 0.07514, 0.71405, 0.08863, 0.86715, 0.08025, 0.96342, 0.61914, 0.96986, 0.65517, 0.97856, 0.70392, 1, 0.82391, 1, 1, 0.45513, 1, 0, 1, 0, 0.71499, 0, 0.67455, 0, 0.62632, 0, 0.1581, 0.31461, 0.1069, 0.34124, 0.09122, 0.34059, 0.07855, 0.33859, 0.03889, 0.4677, 0.03127, 0.65488, 0.02022, 0.46572, 0.17055, 0.44188, 0.61699, 0.44355, 0.66522, 0.445, 0.70711, 0.46683, 0.09246, 0.46704, 0.07732, 0.46657, 0.11055 ],
  105. "triangles": [ 23, 22, 4, 23, 4, 5, 23, 12, 13, 23, 13, 22, 24, 23, 5, 24, 5, 6, 24, 11, 12, 24, 12, 23, 10, 11, 24, 7, 9, 24, 7, 24, 6, 10, 24, 9, 9, 7, 8, 22, 15, 21, 2, 22, 21, 4, 22, 2, 13, 14, 15, 13, 15, 22, 26, 18, 19, 26, 19, 20, 26, 20, 0, 17, 18, 26, 16, 17, 26, 25, 16, 26, 25, 26, 0, 25, 0, 1, 27, 16, 25, 15, 16, 27, 27, 25, 1, 27, 1, 2, 21, 15, 27, 2, 3, 4, 21, 27, 2 ],
  106. "vertices": [ 2, 4, 6.37, -7.92, 0.89424, 3, 35.41, -7.68, 0.10576, 2, 4, 5.63, -8.19, 0.85073, 3, 34.68, -7.98, 0.14927, 2, 4, 4.78, -9.13, 0.74658, 3, 33.86, -8.94, 0.25342, 2, 4, 5.31, -14.79, 0.59491, 3, 34.6, -14.58, 0.40509, 2, 3, 0.81, -19.4, 0.57532, 2, 12.23, -19.39, 0.42468, 2, 3, -1.45, -19.72, 0.47423, 2, 9.95, -19.5, 0.52577, 2, 3, -4.51, -20.16, 0.34493, 2, 6.86, -19.64, 0.65507, 2, 3, -12.03, -21.23, 0.11937, 2, -0.73, -20, 0.88063, 2, 3, -23.12, -21.64, 0.01281, 2, -11.8, -19.37, 0.98719, 1, 2, -10.65, 0.76, 1, 1, 2, -9.68, 17.57, 1, 2, 3, -6.55, 16, 0.27387, 2, 8.24, 16.54, 0.72613, 2, 3, -4, 16.09, 0.39556, 2, 10.79, 16.4, 0.60444, 3, 4, -29.09, 17.29, 0, 3, -0.96, 16.21, 0.55731, 2, 13.82, 16.22, 0.44269, 2, 4, 0.41, 17.29, 0.29466, 3, 28.51, 17.3, 0.70534, 2, 4, 3.63, 5.65, 0.77771, 3, 32.17, 5.78, 0.22229, 2, 4, 4.62, 4.67, 0.91124, 3, 33.19, 4.84, 0.08876, 2, 4, 5.42, 4.69, 0.95484, 3, 33.99, 4.89, 0.04516, 2, 4, 7.92, 4.77, 0.99928, 3, 36.48, 5.06, 7.2E-4, 1, 4, 8.4, -0.01, 1, 2, 4, 9.09, -6.94, 0.97353, 3, 38.09, -6.6, 0.02647, 2, 4, -0.38, 0.06, 0.25566, 3, 28.37, 0.05, 0.74434, 2, 3, 0.23, -0.11, 0.63125, 2, 13.47, -0.13, 0.36875, 1, 2, 10.43, -0.02, 1, 1, 2, 7.8, 0.08, 1, 2, 4, 4.54, 0.02, 0.9998, 3, 33.29, 0.19, 2.0E-4, 1, 4, 5.5, 0.01, 1, 2, 4, 3.4, 0.03, 0.99967, 3, 32.15, 0.16, 3.3E-4 ],
  107. "hull": 21,
  108. "edges": [ 16, 14, 36, 38, 38, 40, 42, 44, 16, 18, 18, 20, 26, 28, 26, 44, 6, 8, 44, 8, 24, 26, 46, 44, 24, 46, 8, 10, 46, 10, 20, 22, 22, 24, 18, 48, 48, 46, 22, 48, 10, 12, 12, 14, 48, 12, 32, 50, 50, 2, 32, 34, 34, 36, 38, 52, 52, 50, 34, 52, 2, 0, 0, 40, 52, 0, 28, 30, 30, 32, 42, 54, 54, 50, 30, 54, 2, 4, 4, 6, 54, 4 ],
  109. "width": 37,
  110. "height": 63
  111. }
  112. },
  113. "teshuzuoshou1": {
  114. "teshuzuoshou1": {
  115. "type": "mesh",
  116. "uvs": [ 1, 0.31499, 0.8285, 0.5266, 0.80405, 0.55677, 0.78094, 0.58528, 0.44483, 1, 0, 1, 0, 0.73126, 0.20227, 0.39875, 0.22385, 0.36327, 0.24298, 0.33183, 0.44483, 0, 1, 0, 0.56911, 0.43089, 0.53542, 0.46458, 0.50464, 0.49536 ],
  117. "triangles": [ 0, 12, 11, 12, 10, 11, 4, 14, 3, 4, 5, 14, 14, 6, 7, 14, 5, 6, 14, 13, 3, 3, 13, 2, 13, 12, 2, 2, 12, 1, 1, 12, 0, 7, 8, 14, 14, 8, 13, 8, 9, 13, 13, 9, 12, 9, 10, 12 ],
  118. "vertices": [ 2, 41, 26.23, -8.49, 0.07859, 42, 6.94, -9.14, 0.92141, 2, 41, 17.3, -8.28, 0.70123, 42, -1.93, -8.14, 0.29877, 2, 41, 16.03, -8.25, 0.80086, 42, -3.2, -8, 0.19914, 2, 41, 14.83, -8.22, 0.8745, 42, -4.39, -7.87, 0.1255, 1, 41, -2.66, -7.81, 1, 1, 41, -7.77, 2.07, 1, 1, 41, 1.06, 6.64, 1, 2, 41, 14.31, 7.8, 0.88213, 42, -3.49, 8.14, 0.11787, 2, 41, 15.73, 7.92, 0.78087, 42, -2.08, 8.14, 0.21913, 2, 41, 16.98, 8.03, 0.66206, 42, -0.82, 8.13, 0.33794, 1, 42, 12.46, 8.12, 1, 1, 42, 17.72, -4.72, 1, 2, 41, 17.47, -0.9, 0.88552, 42, -1.12, -0.8, 0.11448, 2, 41, 15.98, -0.72, 0.99356, 42, -2.59, -0.49, 0.00644, 2, 41, 14.61, -0.56, 0.99989, 42, -3.94, -0.21, 1.1E-4 ],
  119. "hull": 12,
  120. "edges": [ 8, 10, 0, 22, 10, 12, 20, 22, 18, 20, 24, 22, 18, 24, 0, 2, 24, 2, 16, 18, 26, 24, 16, 26, 2, 4, 26, 4, 12, 14, 14, 16, 10, 28, 28, 26, 14, 28, 4, 6, 6, 8, 28, 6 ],
  121. "width": 25,
  122. "height": 37
  123. }
  124. },
  125. "teshuzuoshou2": {
  126. "teshuzuoshou2": {
  127. "type": "mesh",
  128. "uvs": [ 1, 0.52139, 0.21356, 1, 0, 1, 0, 0.26072, 0.65215, 0, 1, 0 ],
  129. "triangles": [ 4, 5, 0, 3, 1, 2, 0, 3, 4, 0, 1, 3 ],
  130. "vertices": [ 0.62, 7.87, 25.7, 6.57, 31.6, 4.07, 26.39, -8.18, 6.55, -4.85, -3.05, -0.76 ],
  131. "hull": 6,
  132. "edges": [ 2, 4, 0, 10, 2, 0, 8, 10, 4, 6, 8, 6 ],
  133. "width": 30,
  134. "height": 18
  135. }
  136. },
  137. "toufa1": {
  138. "toufa1": {
  139. "type": "mesh",
  140. "uvs": [ 0.56391, 0.09, 0.76025, 0.10271, 0.88615, 0.19228, 1, 0.25471, 1, 1, 0.83942, 1, 0.77169, 1, 0.68013, 0.59942, 0.57982, 0.60358, 0.42471, 0.60347, 0.24303, 0.57479, 0.07242, 0.54914, 1.0E-5, 0.3802, 0, 0, 0.20943, 0, 0.33391, 0, 0.43109, 0.0144, 0.8288, 0.36633, 0.51, 0.36813, 0.33846, 0.33214, 0.23523, 0.27094, 0.12897, 0.19714, 0.66851, 0.35749 ],
  141. "triangles": [ 21, 13, 14, 20, 14, 15, 21, 14, 20, 12, 13, 21, 20, 12, 21, 16, 20, 15, 19, 20, 16, 19, 10, 20, 19, 16, 0, 22, 0, 1, 18, 19, 0, 22, 18, 0, 9, 19, 18, 20, 11, 12, 10, 11, 20, 8, 18, 22, 22, 1, 2, 17, 22, 2, 17, 2, 3, 7, 22, 17, 22, 7, 8, 5, 6, 7, 4, 5, 17, 5, 7, 17, 4, 17, 3, 8, 9, 18, 10, 19, 9 ],
  142. "vertices": [ 5, 35, -19.9, -21.69, 0.17279, 36, 0, -20.57, 0.72543, 37, -10.18, -22.93, 0.03957, 38, -13.91, -27.41, 0.04384, 39, -18.86, -31.16, 0.01838, 3, 35, -19.17, -5.39, 0.66489, 36, -16.11, -23.16, 0.33407, 38, -27.3, -36.75, 0.00104, 2, 35, -13, 5.12, 0.93724, 36, -27.65, -19.24, 0.06276, 2, 35, -8.72, 14.61, 0.99988, 36, -37.81, -16.98, 1.2E-4, 1, 35, 43.45, 15.11, 1, 1, 35, 43.58, 1.79, 1, 1, 35, 43.63, -3.83, 1, 1, 35, 15.67, -11.7, 1, 1, 35, 16.04, -20.03, 1, 1, 35, 16.15, -32.9, 1, 1, 35, 14.29, -48, 1, 1, 35, 12.63, -62.17, 1, 3, 37, 24.84, 14.18, 0.2068, 38, 10.42, 17.44, 0.03434, 39, -2.74, 17.25, 0.75886, 1, 39, 17.07, -0.51, 1, 4, 36, 30.09, -20.49, 0.05575, 37, 19.35, -17.13, 0.05465, 38, 13.14, -14.24, 0.14864, 39, 5.47, -13.46, 0.74096, 5, 35, -26.01, -40.84, 7.0E-4, 36, 19.99, -22.68, 0.27789, 37, 9.85, -21.2, 0.18126, 38, 5, -20.6, 0.24868, 39, -1.43, -21.15, 0.29146, 5, 35, -25.08, -32.77, 0.01604, 36, 11.9, -23.41, 0.51991, 37, 2.04, -23.45, 0.16864, 38, -1.97, -24.78, 0.17062, 39, -7.56, -26.48, 0.1248, 2, 35, -0.77, 0.48, 0.99954, 36, -25.58, -6.33, 4.6E-4, 4, 35, -0.39, -25.98, 0.00251, 36, 0.25, -0.6, 0.99714, 38, -22.39, -9.32, 3.2E-4, 39, -30.37, -14.83, 3.0E-5, 4, 36, 14.7, -0.04, 0.3629, 37, 0.35, 0.02, 0.63681, 38, -9.62, -2.53, 1.8E-4, 39, -18.99, -5.91, 1.1E-4, 3, 36, 23.98, -2.41, 0.00117, 37, 9.91, -0.54, 0.67438, 38, -0.24, -0.62, 0.32446, 2, 37, 20.05, -1.81, 1.3E-4, 39, -0.35, 0.73, 0.99987, 3, 35, -1.26, -12.83, 0.51458, 36, -12.45, -4.11, 0.48535, 38, -32.29, -18.01, 7.0E-5 ],
  143. "hull": 17,
  144. "edges": [ 24, 26, 24, 22, 14, 12, 8, 6, 6, 4, 4, 2, 2, 0, 0, 32, 8, 10, 10, 12, 34, 10, 36, 38, 38, 40, 40, 42, 42, 26, 14, 34, 34, 4, 18, 36, 36, 0, 34, 44, 44, 36, 2, 44, 14, 16, 16, 18, 44, 16, 32, 38, 18, 20, 20, 22, 38, 20, 22, 40, 30, 32, 40, 30, 24, 42, 26, 28, 28, 30, 42, 28 ],
  145. "width": 83,
  146. "height": 70
  147. }
  148. },
  149. "toufa2": {
  150. "toufa2": { "x": 51.59, "y": 24.36, "rotation": -93.48, "width": 14, "height": 33 }
  151. },
  152. "xiaoyan": {
  153. "xiaoyan": { "x": 0.7, "y": -0.2, "rotation": -93.48, "width": 47, "height": 6 }
  154. },
  155. "youshou": {
  156. "youshou": {
  157. "type": "mesh",
  158. "uvs": [ 0.55075, 0.29334, 0.57832, 0.31865, 0.59843, 0.33713, 0.8858, 0.60104, 0.91583, 0.62862, 0.93716, 0.64822, 1, 0.70593, 1, 1, 0.76055, 1, 0.60619, 0.86152, 0.58541, 0.84288, 0.56125, 0.8212, 0.28206, 0.57074, 0.26189, 0.55265, 0.23743, 0.5307, 0, 0.3177, 0, 0, 0.23135, 0, 0.7397, 0.7397, 0.75992, 0.75992, 0.71798, 0.71798, 0.42967, 0.42967, 0.40708, 0.40708, 0.44675, 0.44675 ],
  159. "triangles": [ 20, 2, 3, 18, 20, 3, 18, 3, 4, 19, 18, 4, 19, 4, 5, 11, 23, 20, 10, 11, 20, 10, 20, 18, 9, 10, 18, 9, 18, 19, 19, 7, 8, 6, 19, 5, 9, 19, 8, 7, 19, 6, 23, 21, 1, 23, 1, 2, 12, 13, 21, 12, 21, 23, 23, 2, 20, 12, 23, 11, 22, 15, 16, 17, 22, 16, 0, 22, 17, 21, 22, 0, 21, 0, 1, 14, 15, 22, 13, 14, 22, 13, 22, 21 ],
  160. "vertices": [ 2, 6, 20.63, 6.97, 0.74161, 7, -1.97, 6.91, 0.25839, 2, 6, 22.34, 6.96, 0.5394, 7, -0.26, 6.96, 0.4606, 2, 6, 23.6, 6.95, 0.37944, 7, 1, 6.99, 0.62056, 2, 7, 18.89, 7.46, 0.30696, 8, 0.37, 7.6, 0.69304, 2, 7, 20.76, 7.51, 0.15149, 8, 2.21, 7.94, 0.84851, 2, 7, 22.09, 7.55, 0.07955, 8, 3.52, 8.17, 0.92045, 2, 7, 26, 7.65, 0.00385, 8, 7.37, 8.86, 0.99615, 1, 8, 20.65, 1.28, 1, 1, 8, 15.9, -7.04, 1, 2, 7, 22.55, -9.72, 0.10307, 8, 6.58, -8.83, 0.89693, 2, 7, 21.27, -9.77, 0.16187, 8, 5.33, -9.07, 0.83813, 2, 7, 19.79, -9.82, 0.25293, 8, 3.87, -9.35, 0.74707, 3, 6, 24.68, -10.56, 0.32622, 7, 2.64, -10.48, 0.67205, 8, -12.98, -12.58, 0.00173, 3, 6, 23.44, -10.56, 0.42258, 7, 1.4, -10.52, 0.5771, 8, -14.19, -12.82, 3.2E-4, 2, 6, 21.93, -10.57, 0.54651, 7, -0.1, -10.58, 0.45349, 1, 6, 7.34, -10.65, 1, 1, 6, -5.26, 0.04, 1, 1, 6, 0.73, 7.09, 1, 2, 7, 20.91, -1.6, 0.02224, 8, 3.73, -1.05, 0.97776, 2, 7, 22.23, -1.62, 0.00753, 8, 5.05, -0.87, 0.99247, 2, 7, 19.48, -1.58, 0.07543, 8, 2.32, -1.24, 0.92457, 2, 6, 22.9, -1.31, 0.25861, 7, 0.57, -1.29, 0.74139, 2, 6, 21.42, -1.24, 0.89072, 7, -0.91, -1.27, 0.10928, 2, 6, 24.02, -1.36, 0.08719, 7, 1.69, -1.31, 0.91281 ],
  161. "hull": 18,
  162. "edges": [ 32, 34, 14, 12, 30, 32, 14, 16, 20, 36, 36, 8, 16, 18, 18, 20, 14, 38, 38, 36, 18, 38, 8, 10, 10, 12, 38, 10, 8, 6, 40, 36, 6, 40, 20, 22, 40, 22, 26, 42, 42, 2, 26, 28, 28, 30, 32, 44, 44, 42, 28, 44, 2, 0, 0, 34, 44, 0, 22, 24, 24, 26, 40, 46, 46, 42, 24, 46, 2, 4, 4, 6, 46, 4 ],
  163. "width": 40,
  164. "height": 52
  165. }
  166. },
  167. "youtui": {
  168. "youtui": {
  169. "type": "mesh",
  170. "uvs": [ 0.91932, 0.441, 0.92407, 0.46679, 0.92899, 0.49355, 0.99394, 0.84664, 0.99779, 0.86756, 1, 0.90744, 1, 1, 0, 1, 0, 0.97231, 0, 0.93163, 0.31391, 0.89835, 0.3, 0.87186, 0.28829, 0.84956, 0.12517, 0.53887, 0.11151, 0.51285, 0.09701, 0.48523, 0, 0.30045, 0, 0, 0.40528, 0, 0.8382, 0, 0.67328, 0.90835, 0.66506, 0.88049, 0.65599, 0.84977, 0.54874, 0.48626, 0.55695, 0.51407, 0.54191, 0.4631 ],
  171. "triangles": [ 8, 9, 10, 8, 10, 20, 7, 8, 20, 7, 20, 6, 24, 23, 1, 24, 1, 2, 13, 14, 23, 13, 23, 24, 12, 13, 24, 22, 24, 2, 22, 2, 3, 12, 24, 22, 11, 12, 22, 21, 22, 3, 11, 22, 21, 21, 3, 4, 10, 11, 21, 20, 21, 4, 20, 4, 5, 10, 21, 20, 20, 5, 6, 16, 17, 18, 25, 18, 19, 25, 19, 0, 15, 16, 18, 25, 15, 18, 23, 25, 0, 23, 0, 1, 14, 15, 25, 14, 25, 23 ],
  172. "vertices": [ 2, 16, 21.57, 9.88, 0.63155, 17, -1.19, 9.89, 0.36845, 2, 16, 23.07, 9.79, 0.49937, 17, 0.31, 9.79, 0.50063, 2, 16, 24.62, 9.7, 0.36135, 17, 1.86, 9.69, 0.63865, 2, 17, 22.35, 8.33, 0.81816, 18, -8.17, -3.4, 0.18184, 2, 17, 23.57, 8.25, 0.72364, 18, -8.06, -2.19, 0.27636, 2, 17, 25.87, 7.98, 0.49644, 18, -7.72, 0.1, 0.50356, 2, 17, 31.18, 7.22, 0.13606, 18, -6.83, 5.39, 0.86394, 1, 18, 16.84, 1.38, 1, 1, 18, 16.57, -0.2, 1, 1, 18, 16.17, -2.53, 1, 2, 17, 23.01, -8.25, 0.18864, 18, 8.42, -3.17, 0.81136, 2, 17, 21.45, -8.36, 0.44436, 18, 8.5, -4.74, 0.55564, 2, 17, 20.13, -8.46, 0.6003, 18, 8.56, -6.07, 0.3997, 2, 16, 24.68, -9.77, 0.37528, 17, 1.73, -9.78, 0.62472, 2, 16, 23.14, -9.89, 0.50416, 17, 0.19, -9.89, 0.49584, 2, 16, 21.5, -10.02, 0.63808, 17, -1.44, -10.01, 0.36192, 2, 16, 10.57, -10.92, 0.99806, 17, -12.38, -10.8, 0.00194, 1, 16, -6.7, -8.61, 1, 1, 16, -5.42, 1.03, 1, 1, 16, -4.04, 11.33, 1, 2, 17, 24.81, 0.21, 0.91458, 18, 0.02, -1.16, 0.08542, 1, 17, 23.18, 0.24, 1, 1, 17, 21.39, 0.28, 1, 2, 16, 22.99, 0.71, 0.38897, 17, 0.15, 0.71, 0.61103, 2, 16, 24.62, 0.7, 0.00974, 17, 1.78, 0.68, 0.99026, 2, 16, 21.64, 0.73, 0.95978, 17, -1.2, 0.74, 0.04022 ],
  173. "hull": 20,
  174. "edges": [ 12, 14, 32, 34, 20, 18, 34, 36, 36, 38, 14, 16, 16, 18, 40, 16, 20, 40, 8, 10, 10, 12, 40, 10, 20, 22, 42, 40, 22, 42, 42, 8, 22, 24, 44, 42, 24, 44, 8, 6, 44, 6, 28, 46, 46, 2, 24, 26, 26, 28, 44, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 36, 50, 50, 46, 30, 50, 2, 0, 0, 38, 50, 0 ],
  175. "width": 24,
  176. "height": 58
  177. }
  178. },
  179. "youwaitao": {
  180. "youwaitao": {
  181. "type": "mesh",
  182. "uvs": [ 1, 0.14404, 1, 0.24683, 1, 0.32644, 0.99587, 0.39945, 1, 0.47358, 0.99174, 0.5474, 1, 0.62296, 1, 0.71093, 0.99999, 0.80752, 1, 0.89002, 1, 1, 0.61825, 1, 0, 1, 0, 0.90092, 1.0E-5, 0.82288, 1.0E-5, 0.73117, 1.0E-5, 0.64901, 0, 0.56298, 0, 0.48696, 0, 0.41503, 0, 0.33312, 0, 0.24683, 0, 0.15806, 0, 0, 0.30425, 0, 1, 0, 0.39299, 0.33018, 0.43394, 0.47946, 0.49394, 0.63964, 0.54047, 0.81329, 0.41805, 0.40908, 0.46747, 0.56678, 0.51905, 0.71925, 0.57892, 0.89465, 0.36935, 0.24224, 0.34449, 0.14973 ],
  183. "triangles": [ 8, 29, 7, 14, 32, 29, 33, 29, 8, 9, 33, 8, 13, 14, 29, 13, 29, 33, 12, 13, 33, 11, 33, 9, 12, 33, 11, 11, 9, 10, 28, 5, 6, 32, 28, 6, 7, 32, 6, 15, 16, 28, 15, 28, 32, 7, 29, 32, 14, 15, 32, 4, 31, 27, 5, 31, 4, 17, 27, 31, 28, 31, 5, 16, 17, 31, 16, 31, 28, 2, 30, 26, 3, 30, 2, 19, 26, 30, 27, 30, 3, 27, 3, 4, 18, 19, 30, 18, 30, 27, 17, 18, 27, 35, 24, 25, 0, 35, 25, 22, 23, 24, 22, 24, 35, 34, 35, 0, 21, 22, 35, 21, 35, 34, 34, 0, 1, 26, 34, 1, 2, 26, 1, 20, 21, 34, 20, 34, 26, 19, 20, 26 ],
  184. "vertices": [ 3, 19, 1.44, 15.2, 0.93532, 20, -10.01, 15.54, 0.06428, 21, -18.53, 16, 4.1E-4, 3, 19, 7.68, 14.59, 0.73956, 20, -3.79, 14.73, 0.24002, 21, -12.33, 15.03, 0.02041, 4, 19, 12.52, 14.12, 0.47211, 20, 1.03, 14.1, 0.43617, 21, -7.53, 14.29, 0.09091, 22, -16.8, 13.67, 8.1E-4, 4, 19, 16.94, 13.6, 0.22141, 20, 5.43, 13.43, 0.52049, 21, -3.15, 13.51, 0.24059, 22, -12.38, 13.06, 0.01751, 4, 19, 21.45, 13.26, 0.06625, 20, 9.93, 12.94, 0.39807, 21, 1.34, 12.91, 0.44546, 22, -7.88, 12.62, 0.09023, 5, 19, 25.91, 12.64, 0.00964, 20, 14.37, 12.17, 0.185, 21, 5.76, 12.03, 0.52414, 22, -3.43, 11.91, 0.28103, 23, -13.14, 12.08, 2.0E-4, 5, 19, 30.52, 12.38, 3.0E-5, 20, 18.96, 11.76, 0.04805, 21, 10.34, 11.51, 0.34629, 22, 1.17, 11.56, 0.58297, 23, -8.55, 11.67, 0.02266, 4, 20, 24.28, 11.07, 0.00287, 21, 15.64, 10.68, 0.09167, 22, 6.5, 10.93, 0.71161, 23, -3.22, 10.97, 0.19385, 3, 21, 21.47, 9.78, 0.00368, 22, 12.35, 10.24, 0.35411, 23, 2.62, 10.21, 0.64221, 2, 22, 17.35, 9.66, 0.07549, 23, 7.61, 9.56, 0.92451, 1, 23, 14.26, 8.69, 1, 1, 23, 13.13, -0.01, 1, 2, 22, 21.32, -13.97, 0.06609, 23, 11.29, -14.11, 0.93391, 3, 21, 23.56, -13.82, 0.01031, 22, 15.32, -13.26, 0.17511, 23, 5.29, -13.33, 0.81459, 3, 21, 18.86, -13.09, 0.05934, 22, 10.59, -12.71, 0.39025, 23, 0.57, -12.72, 0.55041, 4, 20, 22.53, -11.9, 0.0018, 21, 13.33, -12.23, 0.23605, 22, 5.04, -12.05, 0.56454, 23, -4.97, -11.99, 0.19761, 4, 20, 17.56, -11.25, 0.04164, 21, 8.38, -11.46, 0.5155, 22, 0.06, -11.47, 0.40657, 23, -9.94, -11.34, 0.03629, 4, 20, 12.36, -10.57, 0.23556, 21, 3.19, -10.66, 0.63721, 22, -5.15, -10.86, 0.12649, 23, -15.15, -10.67, 7.4E-4, 4, 19, 20.05, -9.71, 0.01656, 20, 7.76, -9.97, 0.57348, 21, -1.39, -9.94, 0.39271, 22, -9.76, -10.31, 0.01725, 4, 19, 15.68, -9.29, 0.15665, 20, 3.41, -9.41, 0.72734, 21, -5.73, -9.27, 0.11598, 22, -14.12, -9.8, 3.0E-5, 3, 19, 10.71, -8.81, 0.58968, 20, -1.54, -8.76, 0.40372, 21, -10.66, -8.5, 0.0066, 2, 19, 5.47, -8.3, 0.94126, 20, -6.76, -8.08, 0.05874, 2, 19, 0.08, -7.78, 0.99971, 20, -12.13, -7.38, 2.9E-4, 1, 19, -9.52, -6.85, 1, 1, 19, -8.85, 0.12, 1, 2, 19, -7.3, 16.04, 0.99929, 20, -18.72, 16.67, 7.1E-4, 2, 19, 11.4, 0.21, 0.92464, 20, -0.55, 0.23, 0.07536, 2, 20, 8.6, -0.02, 0.71522, 21, -0.31, -0.01, 0.28478, 1, 22, 0.82, -0.12, 1, 2, 21, 20.19, -0.72, 1.4E-4, 23, 1.6, -0.31, 0.99986, 3, 19, 16.24, 0.32, 6.7E-4, 20, 4.29, 0.17, 0.99908, 21, -4.61, 0.29, 2.5E-4, 1, 21, 5.07, -0.07, 1, 2, 21, 14.44, -0.33, 2.5E-4, 22, 5.71, -0.11, 0.99975, 2, 22, 16.5, 0, 1.0E-4, 23, 6.64, -0.08, 0.9999, 2, 19, 6.01, 0.18, 0.99972, 20, -5.94, 0.38, 2.8E-4, 2, 19, 0.33, 0.16, 0.99999, 20, -11.61, 0.54, 1.0E-5 ],
  185. "hull": 26,
  186. "edges": [ 46, 48, 48, 50, 20, 22, 22, 24, 40, 52, 52, 4, 36, 54, 54, 8, 32, 56, 56, 12, 28, 58, 58, 16, 36, 38, 38, 40, 52, 60, 60, 54, 38, 60, 4, 6, 6, 8, 60, 6, 32, 34, 34, 36, 54, 62, 62, 56, 34, 62, 8, 10, 10, 12, 62, 10, 28, 30, 30, 32, 56, 64, 64, 58, 30, 64, 12, 14, 14, 16, 64, 14, 24, 26, 26, 28, 22, 66, 66, 58, 26, 66, 16, 18, 18, 20, 66, 18, 40, 42, 68, 52, 42, 68, 4, 2, 68, 2, 42, 44, 44, 46, 48, 70, 70, 68, 44, 70, 2, 0, 0, 50, 70, 0 ],
  187. "width": 23,
  188. "height": 61
  189. }
  190. },
  191. "youyan": {
  192. "youyan": { "x": 4.8, "y": -0.78, "rotation": -93.86, "width": 22, "height": 13 }
  193. },
  194. "youyantongkong": {
  195. "youyantongkong": { "x": -0.39, "y": -0.87, "rotation": -93.86, "width": 12, "height": 10 }
  196. },
  197. "zhangzui": {
  198. "zhangzui": { "x": 1.16, "y": 5.35, "rotation": -93.48, "width": 17, "height": 10 }
  199. },
  200. "zuiba": {
  201. "zuiba": { "x": 1.61, "y": 2.51, "rotation": -93.48, "width": 19, "height": 9 }
  202. },
  203. "zuoshou": {
  204. "zuoshou": {
  205. "type": "mesh",
  206. "uvs": [ 1, 0.16384, 0.75297, 0.50015, 0.73574, 0.52362, 0.72009, 0.54502, 0.52206, 0.81585, 0.50473, 0.84206, 0.48893, 0.85963, 0.38582, 1, 0, 1, 0, 0.80416, 0.11962, 0.68052, 0.13567, 0.66394, 0.1527, 0.64633, 0.41717, 0.37298, 0.43827, 0.35117, 0.45813, 0.33064, 0.77803, 0, 1, 0, 0.61098, 0.4426, 0.34177, 0.75724, 0.32301, 0.77795, 0.36391, 0.73845, 0.6289, 0.42221, 0.59029, 0.46738 ],
  207. "triangles": [ 20, 11, 19, 10, 11, 20, 20, 19, 6, 20, 8, 9, 20, 9, 10, 7, 20, 6, 8, 20, 7, 18, 15, 22, 14, 15, 18, 23, 14, 18, 13, 14, 23, 2, 22, 1, 18, 22, 2, 3, 18, 2, 23, 18, 3, 21, 12, 13, 21, 13, 23, 19, 12, 21, 11, 12, 19, 4, 21, 23, 4, 23, 3, 5, 21, 4, 19, 21, 5, 6, 19, 5, 22, 16, 17, 22, 15, 16, 0, 22, 17, 1, 22, 0 ],
  208. "vertices": [ 1, 9, 2.8, 6.69, 1, 2, 9, 22.06, 6.73, 0.40074, 10, 0.79, 6.75, 0.59926, 2, 9, 23.41, 6.73, 0.24904, 10, 2.14, 6.79, 0.75096, 2, 9, 24.63, 6.74, 0.1443, 10, 3.36, 6.82, 0.8557, 2, 10, 18.85, 7.27, 0.70953, 11, -2.29, 7.03, 0.29047, 2, 10, 20.31, 7.37, 0.54662, 11, -0.85, 7.33, 0.45338, 2, 10, 21.37, 7.31, 0.42253, 11, 0.21, 7.4, 0.57747, 2, 10, 29.41, 7.52, 0.00325, 11, 8.15, 8.65, 0.99675, 1, 11, 17.21, -2.88, 1, 2, 10, 28.48, -10.08, 0.01661, 11, 9.51, -8.93, 0.98339, 2, 10, 20.84, -9.33, 0.38705, 11, 1.84, -9.17, 0.61295, 2, 10, 19.81, -9.23, 0.48632, 11, 0.81, -9.2, 0.51368, 2, 10, 18.73, -9.12, 0.59329, 11, -0.28, -9.24, 0.40671, 2, 9, 22.76, -7.51, 0.26623, 10, 1.84, -7.46, 0.73377, 2, 9, 21.41, -7.34, 0.40993, 10, 0.5, -7.33, 0.59007, 2, 9, 20.15, -7.19, 0.5595, 10, -0.77, -7.21, 0.4405, 1, 9, -0.22, -4.67, 1, 1, 9, -4.34, 2.69, 1, 2, 9, 22.19, 0.62, 0.02969, 10, 1.07, 0.64, 0.97031, 2, 10, 19.83, -0.12, 0.82659, 11, -0.36, -0.16, 0.17341, 1, 11, 0.89, -0.08, 1, 1, 10, 18.59, 0.13, 1, 2, 9, 20.97, 0.71, 0.63491, 10, -0.15, 0.71, 0.36509, 1, 10, 2.54, 0.6, 1 ],
  209. "hull": 18,
  210. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 22, 38, 38, 10, 28, 36, 36, 4, 18, 20, 20, 22, 16, 40, 40, 38, 20, 40, 10, 12, 12, 14, 40, 12, 8, 10, 42, 38, 8, 42, 22, 24, 42, 24, 28, 30, 30, 32, 34, 44, 44, 36, 30, 44, 0, 2, 2, 4, 44, 2, 24, 26, 26, 28, 36, 46, 46, 42, 26, 46, 4, 6, 6, 8, 46, 6 ],
  211. "width": 38,
  212. "height": 50
  213. }
  214. },
  215. "zuotui": {
  216. "zuotui": {
  217. "type": "mesh",
  218. "uvs": [ 1, 0.11485, 0.89846, 0.45265, 0.89121, 0.47677, 0.88427, 0.49985, 0.77741, 0.85535, 0.77065, 0.87781, 0.76302, 0.9032, 0.73393, 1, 0, 1, 0, 0.96166, 0, 0.9073, 0.24993, 0.86503, 0.25034, 0.84301, 0.25075, 0.82044, 0.25689, 0.48853, 0.25731, 0.46606, 0.25785, 0.43657, 0.26593, 0, 0.58083, 0, 1, 0, 0.50854, 0.89397, 0.5105, 0.86972, 0.51224, 0.84821, 0.54283, 0.4699, 0.541, 0.49255, 0.54512, 0.44163 ],
  219. "triangles": [ 20, 11, 21, 9, 10, 11, 9, 11, 20, 8, 9, 20, 7, 20, 6, 8, 20, 7, 23, 16, 25, 15, 16, 23, 23, 25, 2, 24, 15, 23, 14, 15, 24, 3, 23, 2, 24, 23, 3, 24, 13, 14, 22, 13, 24, 12, 13, 22, 4, 24, 3, 22, 24, 4, 21, 11, 12, 22, 21, 12, 5, 22, 4, 21, 22, 5, 6, 21, 5, 20, 21, 6, 18, 19, 0, 25, 17, 18, 1, 25, 18, 16, 17, 25, 0, 1, 18, 2, 25, 1 ],
  220. "vertices": [ 1, 13, 2.53, 12.43, 1, 2, 13, 20.54, 10.41, 0.63037, 14, -1.45, 10.55, 0.36963, 2, 13, 21.83, 10.27, 0.52569, 14, -0.17, 10.39, 0.47431, 2, 13, 23.06, 10.13, 0.42387, 14, 1.06, 10.23, 0.57613, 2, 14, 19.99, 7.82, 0.76496, 15, -8.48, -1.59, 0.23504, 2, 14, 21.18, 7.67, 0.65203, 15, -8.05, -0.47, 0.34797, 2, 14, 22.53, 7.5, 0.50531, 15, -7.56, 0.8, 0.49469, 2, 14, 27.69, 6.84, 0.13065, 15, -5.68, 5.65, 0.86935, 1, 15, 14.41, 1.32, 1, 1, 15, 13.98, -0.66, 1, 1, 15, 13.38, -3.48, 1, 2, 14, 20.95, -6.93, 0.30298, 15, 6.06, -4.2, 0.69702, 2, 14, 19.78, -6.95, 0.53196, 15, 5.81, -5.34, 0.46804, 2, 14, 18.59, -6.98, 0.69445, 15, 5.54, -6.5, 0.30555, 2, 13, 23.27, -7.44, 0.2224, 14, 1, -7.34, 0.7776, 2, 13, 22.08, -7.49, 0.34094, 14, -0.19, -7.37, 0.65906, 2, 13, 20.51, -7.54, 0.51788, 14, -1.75, -7.4, 0.48212, 1, 13, -2.61, -8.38, 1, 1, 13, -3.01, 0.43, 1, 1, 13, -3.55, 12.16, 1, 2, 14, 22.26, 0.36, 0.36897, 15, -0.69, -1.17, 0.63103, 2, 14, 20.98, 0.37, 0.76802, 15, -1.02, -2.42, 0.23198, 1, 14, 19.83, 0.39, 1, 2, 13, 21.91, 0.51, 0.146, 14, -0.23, 0.63, 0.854, 2, 13, 23.12, 0.51, 0.02523, 14, 0.97, 0.61, 0.97477, 2, 13, 20.41, 0.5, 0.80482, 14, -1.73, 0.65, 0.19518 ],
  221. "hull": 20,
  222. "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 ],
  223. "width": 28,
  224. "height": 53
  225. }
  226. },
  227. "zuowaitao": {
  228. "zuowaitao": {
  229. "type": "mesh",
  230. "uvs": [ 0.72265, 0.19277, 0.66878, 0.30127, 0.66138, 0.36669, 0.65274, 0.44296, 0.64039, 0.55194, 0.63202, 0.62593, 0.62381, 0.69841, 0.6145, 0.78059, 0.60604, 0.85525, 0.59694, 0.93562, 0.58965, 1, 0.32552, 1, 0, 1, 0, 0.93433, 0, 0.85525, 0, 0.77916, 0, 0.69945, 0, 0.62995, 0, 0.54576, 0, 0.43535, 0, 0.34284, 0, 0.19475, 0.12081, 0.09089, 0.30791, 0, 0.619, 0, 1, 0, 0.46639, 0.14332, 0.39774, 0.25797, 0.39009, 0.44761, 0.37835, 0.55046, 0.36661, 0.70046, 0.349, 0.85046, 0.39663, 0.36517, 0.35737, 0.77916, 0.33627, 0.93151, 0.37268, 0.62283 ],
  231. "triangles": [ 11, 34, 10, 10, 34, 9, 34, 11, 13, 11, 12, 13, 34, 31, 9, 9, 31, 8, 13, 14, 34, 34, 14, 31, 14, 15, 31, 31, 33, 8, 8, 33, 7, 31, 15, 33, 33, 30, 7, 7, 30, 6, 33, 15, 16, 30, 33, 16, 30, 35, 6, 35, 30, 17, 30, 16, 17, 6, 35, 5, 17, 18, 35, 35, 29, 5, 5, 29, 4, 35, 18, 29, 29, 28, 4, 4, 28, 3, 28, 29, 19, 29, 18, 19, 28, 32, 3, 28, 19, 32, 3, 32, 2, 19, 20, 32, 2, 32, 1, 32, 20, 27, 32, 27, 1, 20, 21, 27, 27, 26, 1, 1, 26, 0, 21, 22, 27, 27, 22, 26, 26, 24, 0, 0, 24, 25, 22, 23, 26, 26, 23, 24 ],
  232. "vertices": [ 2, 24, 0.81, 7.49, 0.98874, 25, -6.97, 7.51, 0.01126, 3, 24, 7.68, 6.47, 0.50654, 25, -0.1, 6.47, 0.49255, 26, -8.75, 6.73, 9.1E-4, 3, 24, 11.81, 6.44, 0.07887, 25, 4.02, 6.42, 0.84561, 26, -4.63, 6.56, 0.07552, 3, 25, 8.83, 6.36, 0.46382, 26, 0.18, 6.36, 0.53403, 27, -6.89, 6.19, 0.00215, 4, 25, 15.7, 6.28, 0.00523, 26, 7.04, 6.08, 0.54997, 27, -0.02, 6.08, 0.42872, 28, -10.11, 6.33, 0.01608, 3, 26, 11.71, 5.89, 0.06452, 27, 4.64, 6.01, 0.75469, 28, -5.45, 6.14, 0.1808, 3, 27, 9.21, 5.93, 0.28861, 28, -0.88, 5.95, 0.68529, 29, -8.3, 5.95, 0.0261, 2, 28, 4.3, 5.74, 0.66374, 29, -3.13, 5.74, 0.33626, 2, 28, 9, 5.54, 0.05831, 29, 1.58, 5.54, 0.94169, 1, 29, 6.64, 5.33, 1, 1, 29, 10.7, 5.17, 1, 1, 29, 10.7, -0.91, 1, 1, 29, 10.7, -8.4, 1, 2, 28, 13.98, -8.4, 0.03146, 29, 6.56, -8.4, 0.96854, 3, 27, 19.46, -8.16, 0.00205, 28, 9, -8.4, 0.29839, 29, 1.58, -8.4, 0.69957, 3, 27, 14.66, -8.28, 0.10678, 28, 4.21, -8.4, 0.67478, 29, -3.22, -8.4, 0.21844, 4, 26, 16.34, -8.65, 0.01248, 27, 9.64, -8.41, 0.55407, 28, -0.81, -8.4, 0.41974, 29, -8.24, -8.4, 0.01371, 4, 25, 21.04, -8.3, 2.9E-4, 26, 11.96, -8.65, 0.11975, 27, 5.27, -8.52, 0.79327, 28, -5.19, -8.4, 0.08669, 4, 25, 15.74, -8.45, 0.05314, 26, 6.66, -8.65, 0.48437, 27, -0.03, -8.66, 0.46181, 28, -10.5, -8.4, 6.7E-4, 4, 24, 16.63, -8.62, 0.00829, 25, 8.79, -8.66, 0.52389, 26, -0.3, -8.65, 0.43459, 27, -6.99, -8.83, 0.03323, 3, 24, 10.81, -8.81, 0.21468, 25, 2.96, -8.83, 0.71679, 26, -6.13, -8.65, 0.06854, 2, 24, 1.48, -9.12, 0.91551, 25, -6.37, -9.1, 0.08449, 2, 24, -5.15, -6.56, 0.99997, 25, -12.99, -6.51, 3.0E-5, 1, 24, -11.01, -2.44, 1, 1, 24, -11.25, 4.71, 1, 1, 24, -11.54, 13.47, 1, 1, 24, -2.11, 1.5, 1, 2, 24, 5.16, 0.15, 0.9993, 25, -2.65, 0.16, 7.0E-4, 2, 25, 9.3, 0.33, 0.10684, 26, 0.47, 0.32, 0.89316, 3, 26, 6.95, 0.05, 0.47197, 27, 0.04, 0.05, 0.52801, 28, -10.2, 0.31, 3.0E-5, 2, 27, 9.49, 0.02, 0.99998, 29, -8.17, 0.04, 2.0E-5, 1, 29, 1.28, -0.37, 1, 2, 25, 4.1, 0.33, 0.99999, 26, -4.72, 0.47, 1.0E-5, 1, 28, 4.21, -0.18, 1, 1, 29, 6.38, -0.66, 1, 2, 27, 4.6, 0.04, 0.99969, 28, -5.64, 0.18, 3.1E-4 ],
  233. "hull": 26,
  234. "edges": [ 50, 0, 46, 48, 48, 50, 48, 52, 52, 54, 56, 58, 20, 22, 22, 24, 42, 44, 44, 46, 44, 52, 52, 0, 0, 2, 2, 54, 54, 42, 38, 56, 56, 6, 2, 4, 4, 6, 54, 64, 64, 56, 4, 64, 38, 40, 40, 42, 64, 40, 36, 38, 36, 58, 6, 8, 58, 8, 32, 60, 60, 12, 28, 62, 62, 16, 28, 30, 30, 32, 60, 66, 66, 62, 30, 66, 12, 14, 14, 16, 66, 14, 24, 26, 26, 28, 22, 68, 68, 62, 26, 68, 16, 18, 18, 20, 68, 18, 32, 34, 34, 36, 58, 70, 70, 60, 34, 70, 8, 10, 10, 12, 70, 10 ],
  235. "width": 23,
  236. "height": 63
  237. }
  238. },
  239. "zuoyan": {
  240. "zuoyan": { "x": 3.66, "y": 1.18, "rotation": -92.97, "width": 20, "height": 12 }
  241. },
  242. "zuoyantongkong": {
  243. "zuoyantongkong": { "x": -1.43, "y": -1.3, "rotation": -92.97, "width": 9, "height": 9 }
  244. }
  245. }
  246. },
  247. "animations": {
  248. "stand1": {
  249. "slots": {
  250. "teshuzuoshou1": {
  251. "attachment": [
  252. { "time": 0, "name": null },
  253. { "time": 0.2, "name": "teshuzuoshou1" },
  254. { "time": 0.3667, "name": "teshuzuoshou1" }
  255. ]
  256. },
  257. "teshuzuoshou2": {
  258. "attachment": [
  259. { "time": 0, "name": null },
  260. { "time": 0.2, "name": "teshuzuoshou2" },
  261. { "time": 0.3667, "name": "teshuzuoshou2" }
  262. ]
  263. },
  264. "xiaoyan": {
  265. "attachment": [
  266. { "time": 0, "name": null },
  267. { "time": 0.2333, "name": "xiaoyan" }
  268. ]
  269. },
  270. "youyan": {
  271. "attachment": [
  272. { "time": 0.2333, "name": null }
  273. ]
  274. },
  275. "youyantongkong": {
  276. "attachment": [
  277. { "time": 0.2333, "name": null }
  278. ]
  279. },
  280. "zhangzui": {
  281. "attachment": [
  282. { "time": 0, "name": null },
  283. { "time": 0.2, "name": "zhangzui" }
  284. ]
  285. },
  286. "zuiba": {
  287. "attachment": [
  288. { "time": 0.2, "name": null }
  289. ]
  290. },
  291. "zuoshou": {
  292. "attachment": [
  293. { "time": 0.2, "name": null },
  294. { "time": 0.3667, "name": null }
  295. ]
  296. },
  297. "zuoyan": {
  298. "attachment": [
  299. { "time": 0.2333, "name": null }
  300. ]
  301. },
  302. "zuoyantongkong": {
  303. "attachment": [
  304. { "time": 0.2333, "name": null }
  305. ]
  306. }
  307. },
  308. "bones": {
  309. "bone40": {
  310. "rotate": [
  311. { "time": 0, "angle": 0, "curve": "stepped" },
  312. { "time": 0.1, "angle": 0 },
  313. { "time": 0.2, "angle": 31.2 },
  314. { "time": 0.3667, "angle": 0 }
  315. ],
  316. "translate": [
  317. { "time": 0, "x": 37.82, "y": -76.99, "curve": "stepped" },
  318. { "time": 0.1, "x": 37.82, "y": -76.99, "curve": "stepped" },
  319. { "time": 0.2, "x": 37.82, "y": -76.99, "curve": "stepped" },
  320. { "time": 0.3667, "x": 37.82, "y": -76.99, "curve": "stepped" },
  321. { "time": 2.5667, "x": 37.82, "y": -76.99 }
  322. ],
  323. "scale": [
  324. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  325. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  326. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  327. { "time": 0.3667, "x": 1, "y": 1 }
  328. ]
  329. },
  330. "bone41": {
  331. "rotate": [
  332. { "time": 0, "angle": 0, "curve": "stepped" },
  333. { "time": 0.1, "angle": 0 },
  334. { "time": 0.2, "angle": 19.15 },
  335. { "time": 0.3667, "angle": 0 }
  336. ],
  337. "translate": [
  338. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  339. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  340. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  341. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  342. { "time": 2.5667, "x": 0, "y": 0 }
  343. ],
  344. "scale": [
  345. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  346. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  347. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  348. { "time": 0.3667, "x": 1, "y": 1 }
  349. ]
  350. },
  351. "bone32": {
  352. "rotate": [
  353. { "time": 0, "angle": 0, "curve": "stepped" },
  354. { "time": 0.1, "angle": 0, "curve": "stepped" },
  355. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  356. { "time": 0.3667, "angle": 0 }
  357. ],
  358. "translate": [
  359. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  360. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  361. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  362. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  363. { "time": 2.5667, "x": 0, "y": 0 }
  364. ],
  365. "scale": [
  366. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  367. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  368. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  369. { "time": 0.3667, "x": 1, "y": 1 }
  370. ]
  371. },
  372. "root": {
  373. "rotate": [
  374. { "time": 0, "angle": 0 }
  375. ],
  376. "translate": [
  377. { "time": 0, "x": 0, "y": 0 }
  378. ],
  379. "scale": [
  380. { "time": 0, "x": 0.65, "y": 0.65 }
  381. ]
  382. },
  383. "bone": {
  384. "rotate": [
  385. { "time": 0, "angle": 0, "curve": "stepped" },
  386. { "time": 0.1, "angle": 0, "curve": "stepped" },
  387. { "time": 0.2, "angle": 0, "curve": "stepped" },
  388. { "time": 0.3667, "angle": 0 }
  389. ],
  390. "translate": [
  391. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  392. { "time": 0.1, "x": 0, "y": 0 },
  393. { "time": 0.2, "x": 1.78, "y": 0 },
  394. { "time": 0.3667, "x": 2.23, "y": 0, "curve": "stepped" },
  395. { "time": 2.5667, "x": 2.23, "y": 0 }
  396. ],
  397. "scale": [
  398. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  399. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  400. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  401. { "time": 0.3667, "x": 1, "y": 1 }
  402. ]
  403. },
  404. "bone2": {
  405. "rotate": [
  406. { "time": 0, "angle": 0, "curve": "stepped" },
  407. { "time": 0.1, "angle": 0, "curve": "stepped" },
  408. { "time": 0.2, "angle": 0 },
  409. { "time": 0.3667, "angle": -9.32 }
  410. ],
  411. "translate": [
  412. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  413. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  414. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  415. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  416. { "time": 2.5667, "x": 0, "y": 0 }
  417. ],
  418. "scale": [
  419. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  420. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  421. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  422. { "time": 0.3667, "x": 1, "y": 1 }
  423. ]
  424. },
  425. "bone3": {
  426. "rotate": [
  427. { "time": 0, "angle": 0, "curve": "stepped" },
  428. { "time": 0.1, "angle": 0, "curve": "stepped" },
  429. { "time": 0.2, "angle": 0 },
  430. { "time": 0.3667, "angle": 6.68 }
  431. ],
  432. "translate": [
  433. { "time": 0, "x": 0, "y": 0 },
  434. { "time": 0.1, "x": -0.7, "y": 0.04 },
  435. { "time": 0.2, "x": 1.39, "y": -0.13 },
  436. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  437. { "time": 2.5667, "x": 0, "y": 0 }
  438. ],
  439. "scale": [
  440. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  441. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  442. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  443. { "time": 0.3667, "x": 1, "y": 1 }
  444. ]
  445. },
  446. "bone4": {
  447. "rotate": [
  448. { "time": 0, "angle": 0, "curve": "stepped" },
  449. { "time": 0.1, "angle": 0, "curve": "stepped" },
  450. { "time": 0.2, "angle": 0, "curve": "stepped" },
  451. { "time": 0.3667, "angle": 0 }
  452. ],
  453. "translate": [
  454. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  455. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  456. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  457. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  458. { "time": 2.5667, "x": 0, "y": 0 }
  459. ],
  460. "scale": [
  461. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  462. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  463. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  464. { "time": 0.3667, "x": 1, "y": 1 }
  465. ]
  466. },
  467. "bone5": {
  468. "rotate": [
  469. { "time": 0, "angle": 0, "curve": "stepped" },
  470. { "time": 0.1, "angle": 0, "curve": "stepped" },
  471. { "time": 0.2, "angle": 0 },
  472. { "time": 0.3667, "angle": 3.74 }
  473. ],
  474. "translate": [
  475. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  476. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  477. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  478. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  479. { "time": 2.5667, "x": 0, "y": 0 }
  480. ],
  481. "scale": [
  482. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  483. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  484. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  485. { "time": 0.3667, "x": 1, "y": 1 }
  486. ]
  487. },
  488. "bone6": {
  489. "rotate": [
  490. { "time": 0, "angle": 0 },
  491. { "time": 0.1, "angle": -10.09 },
  492. { "time": 0.2, "angle": 0 },
  493. { "time": 0.3667, "angle": 12 }
  494. ],
  495. "translate": [
  496. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  497. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  498. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  499. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  500. { "time": 2.5667, "x": 0, "y": 0 }
  501. ],
  502. "scale": [
  503. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  504. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  505. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  506. { "time": 0.3667, "x": 1, "y": 1 }
  507. ]
  508. },
  509. "bone7": {
  510. "rotate": [
  511. { "time": 0, "angle": 0 },
  512. { "time": 0.1, "angle": -12.76 },
  513. { "time": 0.2, "angle": -33.72 },
  514. { "time": 0.3667, "angle": -73.61 }
  515. ],
  516. "translate": [
  517. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  518. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  519. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  520. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  521. { "time": 2.5667, "x": 0, "y": 0 }
  522. ],
  523. "scale": [
  524. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  525. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  526. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  527. { "time": 0.3667, "x": 1, "y": 1 }
  528. ]
  529. },
  530. "bone8": {
  531. "rotate": [
  532. { "time": 0, "angle": 0, "curve": "stepped" },
  533. { "time": 0.1, "angle": 0, "curve": "stepped" },
  534. { "time": 0.2, "angle": 0, "curve": "stepped" },
  535. { "time": 0.3667, "angle": 0 }
  536. ],
  537. "translate": [
  538. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  539. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  540. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  541. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  542. { "time": 2.5667, "x": 0, "y": 0 }
  543. ],
  544. "scale": [
  545. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  546. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  547. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  548. { "time": 0.3667, "x": 1, "y": 1 }
  549. ]
  550. },
  551. "bone9": {
  552. "rotate": [
  553. { "time": 0, "angle": 0 },
  554. { "time": 0.1, "angle": 12.92 },
  555. { "time": 0.2, "angle": 0, "curve": "stepped" },
  556. { "time": 0.3667, "angle": 0 }
  557. ],
  558. "translate": [
  559. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  560. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  561. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  562. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  563. { "time": 2.5667, "x": 0, "y": 0 }
  564. ],
  565. "scale": [
  566. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  567. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  568. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  569. { "time": 0.3667, "x": 1, "y": 1 }
  570. ]
  571. },
  572. "bone10": {
  573. "rotate": [
  574. { "time": 0, "angle": 0 },
  575. { "time": 0.1, "angle": -7.23 },
  576. { "time": 0.2, "angle": -15.73 },
  577. { "time": 0.3667, "angle": 0 }
  578. ],
  579. "translate": [
  580. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  581. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  582. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  583. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  584. { "time": 2.5667, "x": 0, "y": 0 }
  585. ],
  586. "scale": [
  587. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  588. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  589. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  590. { "time": 0.3667, "x": 1, "y": 1 }
  591. ]
  592. },
  593. "bone11": {
  594. "rotate": [
  595. { "time": 0, "angle": 0, "curve": "stepped" },
  596. { "time": 0.1, "angle": 0, "curve": "stepped" },
  597. { "time": 0.2, "angle": 0, "curve": "stepped" },
  598. { "time": 0.3667, "angle": 0 }
  599. ],
  600. "translate": [
  601. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  602. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  603. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  604. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  605. { "time": 2.5667, "x": 0, "y": 0 }
  606. ],
  607. "scale": [
  608. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  609. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  610. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  611. { "time": 0.3667, "x": 1, "y": 1 }
  612. ]
  613. },
  614. "bone12": {
  615. "rotate": [
  616. { "time": 0, "angle": 0, "curve": "stepped" },
  617. { "time": 0.1, "angle": 0, "curve": "stepped" },
  618. { "time": 0.2, "angle": 0, "curve": "stepped" },
  619. { "time": 0.3667, "angle": 0 }
  620. ],
  621. "translate": [
  622. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  623. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  624. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  625. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  626. { "time": 2.5667, "x": 0, "y": 0 }
  627. ],
  628. "scale": [
  629. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  630. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  631. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  632. { "time": 0.3667, "x": 1, "y": 1 }
  633. ]
  634. },
  635. "bone13": {
  636. "rotate": [
  637. { "time": 0, "angle": 0 },
  638. { "time": 0.1, "angle": -2.55 },
  639. { "time": 0.2, "angle": -10.29 },
  640. { "time": 0.3667, "angle": -15.5 }
  641. ],
  642. "translate": [
  643. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  644. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  645. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  646. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  647. { "time": 2.5667, "x": 0, "y": 0 }
  648. ],
  649. "scale": [
  650. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  651. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  652. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  653. { "time": 0.3667, "x": 1, "y": 1 }
  654. ]
  655. },
  656. "bone14": {
  657. "rotate": [
  658. { "time": 0, "angle": 0 },
  659. { "time": 0.1, "angle": 10.67 },
  660. { "time": 0.2, "angle": 28.02 },
  661. { "time": 0.3667, "angle": 40.83 }
  662. ],
  663. "translate": [
  664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  665. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  666. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  667. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  668. { "time": 2.5667, "x": 0, "y": 0 }
  669. ],
  670. "scale": [
  671. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  672. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  673. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  674. { "time": 0.3667, "x": 1, "y": 1 }
  675. ]
  676. },
  677. "bone15": {
  678. "rotate": [
  679. { "time": 0, "angle": 0, "curve": "stepped" },
  680. { "time": 0.1, "angle": 0, "curve": "stepped" },
  681. { "time": 0.2, "angle": 0, "curve": "stepped" },
  682. { "time": 0.3667, "angle": 0 }
  683. ],
  684. "translate": [
  685. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  686. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  687. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  688. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  689. { "time": 2.5667, "x": 0, "y": 0 }
  690. ],
  691. "scale": [
  692. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  693. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  694. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  695. { "time": 0.3667, "x": 1, "y": 1 }
  696. ]
  697. },
  698. "bone16": {
  699. "rotate": [
  700. { "time": 0, "angle": 0 },
  701. { "time": 0.1, "angle": -0.23 },
  702. { "time": 0.2, "angle": -1.26 },
  703. { "time": 0.3667, "angle": -1.81 }
  704. ],
  705. "translate": [
  706. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  707. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  708. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  709. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  710. { "time": 2.5667, "x": 0, "y": 0 }
  711. ],
  712. "scale": [
  713. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  714. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  715. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  716. { "time": 0.3667, "x": 1, "y": 1 }
  717. ]
  718. },
  719. "bone17": {
  720. "rotate": [
  721. { "time": 0, "angle": 0 },
  722. { "time": 0.1, "angle": 1.65 },
  723. { "time": 0.2, "angle": 0 },
  724. { "time": 0.3667, "angle": -1.81 }
  725. ],
  726. "translate": [
  727. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  728. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  729. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  730. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  731. { "time": 2.5667, "x": 0, "y": 0 }
  732. ],
  733. "scale": [
  734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  735. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  736. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  737. { "time": 0.3667, "x": 1, "y": 1 }
  738. ]
  739. },
  740. "bone18": {
  741. "rotate": [
  742. { "time": 0, "angle": 0, "curve": "stepped" },
  743. { "time": 0.1, "angle": 0, "curve": "stepped" },
  744. { "time": 0.2, "angle": 0 },
  745. { "time": 0.3667, "angle": 4.4 }
  746. ],
  747. "translate": [
  748. { "time": 0, "x": 0, "y": 0 },
  749. { "time": 0.1, "x": 0.01, "y": -0.23 },
  750. { "time": 0.2, "x": 0.01, "y": -0.46 },
  751. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  752. { "time": 2.5667, "x": 0, "y": 0 }
  753. ],
  754. "scale": [
  755. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  756. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  757. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  758. { "time": 0.3667, "x": 1, "y": 1 }
  759. ]
  760. },
  761. "bone19": {
  762. "rotate": [
  763. { "time": 0, "angle": 1.13 },
  764. { "time": 0.1, "angle": -0.21 },
  765. { "time": 0.2, "angle": 4.19 },
  766. { "time": 0.4, "angle": 4.07, "curve": "stepped" },
  767. { "time": 0.6667, "angle": 4.07 },
  768. { "time": 1.0333, "angle": 16.01 },
  769. { "time": 1.5, "angle": 20.41 },
  770. { "time": 2, "angle": 13.61 },
  771. { "time": 2.5667, "angle": 11.51 }
  772. ],
  773. "translate": [
  774. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  775. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  776. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  777. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  778. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  779. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  780. { "time": 2.5667, "x": 0, "y": 0 }
  781. ],
  782. "scale": [
  783. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  784. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  785. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  786. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  787. { "time": 0.6667, "x": 1, "y": 1 }
  788. ]
  789. },
  790. "bone20": {
  791. "rotate": [
  792. { "time": 0, "angle": 1.13 },
  793. { "time": 0.1, "angle": -0.18 },
  794. { "time": 0.2, "angle": 4.19 },
  795. { "time": 0.4, "angle": 3.92 },
  796. { "time": 0.6667, "angle": 1.13 },
  797. { "time": 1.0333, "angle": -4.03 },
  798. { "time": 1.5, "angle": 2.05 },
  799. { "time": 2.5667, "angle": 6.87 }
  800. ],
  801. "translate": [
  802. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  803. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  804. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  805. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  806. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  807. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  808. { "time": 2.5667, "x": 0, "y": 0 }
  809. ],
  810. "scale": [
  811. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  812. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  813. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  814. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  815. { "time": 0.6667, "x": 1, "y": 1 }
  816. ]
  817. },
  818. "bone21": {
  819. "rotate": [
  820. { "time": 0, "angle": 1.13 },
  821. { "time": 0.1, "angle": -0.18 },
  822. { "time": 0.2, "angle": -3.7 },
  823. { "time": 0.4, "angle": 3.92 },
  824. { "time": 0.6667, "angle": 1.13 },
  825. { "time": 1.0333, "angle": -4.03 },
  826. { "time": 1.5, "angle": 2.05 },
  827. { "time": 2, "angle": 10.72 },
  828. { "time": 2.5667, "angle": -5.03 }
  829. ],
  830. "translate": [
  831. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  833. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  834. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  835. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  836. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  837. { "time": 2.5667, "x": 0, "y": 0 }
  838. ],
  839. "scale": [
  840. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  841. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  842. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  843. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  844. { "time": 0.6667, "x": 1, "y": 1 }
  845. ]
  846. },
  847. "bone22": {
  848. "rotate": [
  849. { "time": 0, "angle": 1.13 },
  850. { "time": 0.1, "angle": -0.18 },
  851. { "time": 0.2, "angle": -3.7 },
  852. { "time": 0.4, "angle": 3.92 },
  853. { "time": 0.6667, "angle": 1.13 },
  854. { "time": 1.0333, "angle": -4.03 },
  855. { "time": 1.5, "angle": 2.05 },
  856. { "time": 2, "angle": 10.72 },
  857. { "time": 2.5667, "angle": -1.06 }
  858. ],
  859. "translate": [
  860. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  861. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  862. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  863. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  864. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  865. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  866. { "time": 2.5667, "x": 0, "y": 0 }
  867. ],
  868. "scale": [
  869. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  870. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  871. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  872. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  873. { "time": 0.6667, "x": 1, "y": 1 }
  874. ]
  875. },
  876. "bone23": {
  877. "rotate": [
  878. { "time": 0, "angle": 1.13 },
  879. { "time": 0.1, "angle": -0.18 },
  880. { "time": 0.2, "angle": -3.7 },
  881. { "time": 0.4, "angle": 3.92 },
  882. { "time": 0.6667, "angle": 1.13 },
  883. { "time": 1.0333, "angle": -4.03 },
  884. { "time": 1.5, "angle": 2.05 },
  885. { "time": 2, "angle": 10.72 },
  886. { "time": 2.5667, "angle": -1.06 }
  887. ],
  888. "translate": [
  889. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  890. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  891. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  892. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  893. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  894. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  895. { "time": 2.5667, "x": 0, "y": 0 }
  896. ],
  897. "scale": [
  898. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  899. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  900. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  901. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  902. { "time": 0.6667, "x": 1, "y": 1 }
  903. ]
  904. },
  905. "bone24": {
  906. "rotate": [
  907. { "time": 0, "angle": 0, "curve": "stepped" },
  908. { "time": 0.1, "angle": 0, "curve": "stepped" },
  909. { "time": 0.2, "angle": 0, "curve": "stepped" },
  910. { "time": 0.4, "angle": 0 },
  911. { "time": 0.7667, "angle": -3.42 },
  912. { "time": 1.2333, "angle": 344.52 },
  913. { "time": 1.6667, "angle": 353.17 },
  914. { "time": 2.1667, "angle": -6.83 },
  915. { "time": 2.5667, "angle": 344.52 }
  916. ],
  917. "translate": [
  918. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  919. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  920. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  921. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  922. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  923. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  924. { "time": 2.5667, "x": 0, "y": 0 }
  925. ],
  926. "scale": [
  927. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  928. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  929. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  930. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  931. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  932. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  933. { "time": 2.5667, "x": 1, "y": 1 }
  934. ]
  935. },
  936. "bone25": {
  937. "rotate": [
  938. { "time": 0, "angle": -3.03 },
  939. { "time": 0.1, "angle": 2.36 },
  940. { "time": 0.2, "angle": -7.57 },
  941. { "time": 0.4, "angle": -8.46 },
  942. { "time": 0.7667, "angle": -3.03 },
  943. { "time": 1.2333, "angle": -4.75 },
  944. { "time": 1.6667, "angle": -4.17 },
  945. { "time": 2.1667, "angle": -4.75, "curve": "stepped" },
  946. { "time": 2.5667, "angle": -4.75 }
  947. ],
  948. "translate": [
  949. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  950. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  951. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  952. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  953. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  954. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  955. { "time": 2.5667, "x": 0, "y": 0 }
  956. ],
  957. "scale": [
  958. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  959. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  960. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  961. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  962. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  963. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  964. { "time": 2.5667, "x": 1, "y": 1 }
  965. ]
  966. },
  967. "bone26": {
  968. "rotate": [
  969. { "time": 0, "angle": -3.03 },
  970. { "time": 0.1, "angle": -2.78 },
  971. { "time": 0.2, "angle": -9.27 },
  972. { "time": 0.4, "angle": -8.46 },
  973. { "time": 0.7667, "angle": -3.03 },
  974. { "time": 1.2333, "angle": 2.84 },
  975. { "time": 1.6667, "angle": -7.05 },
  976. { "time": 2.1667, "angle": -1.86 },
  977. { "time": 2.5667, "angle": 2.84 }
  978. ],
  979. "translate": [
  980. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  981. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  982. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  983. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  984. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  985. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  986. { "time": 2.5667, "x": 0, "y": 0 }
  987. ],
  988. "scale": [
  989. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  990. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  991. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  992. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  993. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  994. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  995. { "time": 2.5667, "x": 1, "y": 1 }
  996. ]
  997. },
  998. "bone27": {
  999. "rotate": [
  1000. { "time": 0, "angle": -3.03 },
  1001. { "time": 0.1, "angle": 0.46 },
  1002. { "time": 0.2, "angle": 4.48 },
  1003. { "time": 0.4, "angle": -8.46 },
  1004. { "time": 0.7667, "angle": -3.03 },
  1005. { "time": 1.2333, "angle": 2.84 },
  1006. { "time": 1.6667, "angle": -7.05 },
  1007. { "time": 2.1667, "angle": -1.86 },
  1008. { "time": 2.5667, "angle": 2.84 }
  1009. ],
  1010. "translate": [
  1011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1013. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1014. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1015. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 2.5667, "x": 0, "y": 0 }
  1018. ],
  1019. "scale": [
  1020. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1021. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1022. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1023. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1024. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1025. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1026. { "time": 2.5667, "x": 1, "y": 1 }
  1027. ]
  1028. },
  1029. "bone28": {
  1030. "rotate": [
  1031. { "time": 0, "angle": -3.03 },
  1032. { "time": 0.1, "angle": -2.78 },
  1033. { "time": 0.2, "angle": 4.48 },
  1034. { "time": 0.4, "angle": -8.46 },
  1035. { "time": 0.7667, "angle": -3.03 },
  1036. { "time": 1.2333, "angle": 2.84 },
  1037. { "time": 1.6667, "angle": -7.05 },
  1038. { "time": 2.1667, "angle": -1.86 },
  1039. { "time": 2.5667, "angle": 2.84 }
  1040. ],
  1041. "translate": [
  1042. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1043. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1044. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1045. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1046. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1047. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1048. { "time": 2.5667, "x": 0, "y": 0 }
  1049. ],
  1050. "scale": [
  1051. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1052. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1053. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1054. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1055. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1056. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1057. { "time": 2.5667, "x": 1, "y": 1 }
  1058. ]
  1059. },
  1060. "bone29": {
  1061. "rotate": [
  1062. { "time": 0, "angle": -3.03 },
  1063. { "time": 0.1, "angle": -2.78 },
  1064. { "time": 0.2, "angle": 4.48 },
  1065. { "time": 0.4, "angle": -8.46 },
  1066. { "time": 0.7667, "angle": -3.03 },
  1067. { "time": 1.2333, "angle": 2.84 },
  1068. { "time": 1.6667, "angle": -7.05 },
  1069. { "time": 2.1667, "angle": -1.86 },
  1070. { "time": 2.5667, "angle": 2.84 }
  1071. ],
  1072. "translate": [
  1073. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1074. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1075. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 0.4, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 2.5667, "x": 0, "y": 0 }
  1080. ],
  1081. "scale": [
  1082. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1083. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1084. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 2.5667, "x": 1, "y": 1 }
  1089. ]
  1090. },
  1091. "bone30": {
  1092. "rotate": [
  1093. { "time": 0, "angle": 0, "curve": "stepped" },
  1094. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1095. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1096. { "time": 0.3667, "angle": 0 }
  1097. ],
  1098. "translate": [
  1099. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1100. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1101. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1102. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1103. { "time": 2.5667, "x": 0, "y": 0 }
  1104. ],
  1105. "scale": [
  1106. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1107. { "time": 0.1, "x": 1, "y": 1 },
  1108. { "time": 0.1667, "x": 0.717, "y": 1 },
  1109. { "time": 0.2333, "x": 0.435, "y": 1 },
  1110. { "time": 0.3667, "x": 1, "y": 1 }
  1111. ]
  1112. },
  1113. "bone31": {
  1114. "rotate": [
  1115. { "time": 0, "angle": 0, "curve": "stepped" },
  1116. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1117. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1118. { "time": 0.3667, "angle": 0 }
  1119. ],
  1120. "translate": [
  1121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1122. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1123. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  1124. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 2.5667, "x": 0, "y": 0 }
  1126. ],
  1127. "scale": [
  1128. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1129. { "time": 0.1, "x": 1, "y": 1 },
  1130. { "time": 0.1667, "x": 0.711, "y": 1 },
  1131. { "time": 0.2333, "x": 0.423, "y": 1 },
  1132. { "time": 0.3667, "x": 1, "y": 1 }
  1133. ]
  1134. },
  1135. "bone33": {
  1136. "rotate": [
  1137. { "time": 0, "angle": 0, "curve": "stepped" },
  1138. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1139. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1140. { "time": 0.3, "angle": 0 }
  1141. ],
  1142. "translate": [
  1143. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1144. { "time": 0.1, "x": 0, "y": 0 },
  1145. { "time": 0.2333, "x": -1.05, "y": 0 },
  1146. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  1147. { "time": 2.5667, "x": 0, "y": 0 }
  1148. ],
  1149. "scale": [
  1150. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1151. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1152. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1153. { "time": 0.3, "x": 1, "y": 1 }
  1154. ]
  1155. },
  1156. "bone34": {
  1157. "rotate": [
  1158. { "time": 0, "angle": 0, "curve": "stepped" },
  1159. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1160. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1161. { "time": 0.3667, "angle": 0 }
  1162. ],
  1163. "translate": [
  1164. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1165. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1166. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1167. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1168. { "time": 2.5667, "x": 0, "y": 0 }
  1169. ],
  1170. "scale": [
  1171. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1172. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1173. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1174. { "time": 0.3667, "x": 1, "y": 1 }
  1175. ]
  1176. },
  1177. "bone35": {
  1178. "rotate": [
  1179. { "time": 0, "angle": 0, "curve": "stepped" },
  1180. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1181. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1182. { "time": 0.3667, "angle": 0 }
  1183. ],
  1184. "translate": [
  1185. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1186. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1187. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1188. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1189. { "time": 2.5667, "x": 0, "y": 0 }
  1190. ],
  1191. "scale": [
  1192. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1193. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1194. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1195. { "time": 0.3667, "x": 1, "y": 1 }
  1196. ]
  1197. },
  1198. "bone36": {
  1199. "rotate": [
  1200. { "time": 0, "angle": 0, "curve": "stepped" },
  1201. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1202. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1203. { "time": 0.3667, "angle": 0 }
  1204. ],
  1205. "translate": [
  1206. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1207. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1208. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1209. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1210. { "time": 2.5667, "x": 0, "y": 0 }
  1211. ],
  1212. "scale": [
  1213. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1214. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1215. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1216. { "time": 0.3667, "x": 1, "y": 1 }
  1217. ]
  1218. },
  1219. "bone37": {
  1220. "rotate": [
  1221. { "time": 0, "angle": 0 },
  1222. { "time": 0.1, "angle": 4.4 },
  1223. { "time": 0.3667, "angle": 0 },
  1224. { "time": 0.8333, "angle": 3.5 },
  1225. { "time": 1.2333, "angle": 0 },
  1226. { "time": 1.6667, "angle": 3.5 },
  1227. { "time": 2.0667, "angle": 0 },
  1228. { "time": 2.5667, "angle": 3.5 }
  1229. ],
  1230. "translate": [
  1231. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1232. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1233. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1234. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1235. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1236. { "time": 2.5667, "x": 0, "y": 0 }
  1237. ],
  1238. "scale": [
  1239. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1240. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1241. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1242. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1243. { "time": 2.0667, "x": 1, "y": 1 }
  1244. ]
  1245. },
  1246. "bone38": {
  1247. "rotate": [
  1248. { "time": 0, "angle": 0 },
  1249. { "time": 0.1, "angle": 4.4 },
  1250. { "time": 0.3667, "angle": 0 },
  1251. { "time": 0.8333, "angle": 3.5 },
  1252. { "time": 1.2333, "angle": 0 },
  1253. { "time": 1.6667, "angle": 3.5 },
  1254. { "time": 2.0667, "angle": 0 },
  1255. { "time": 2.5667, "angle": 3.5 }
  1256. ],
  1257. "translate": [
  1258. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1259. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1260. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1261. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 2.5667, "x": 0, "y": 0 }
  1264. ],
  1265. "scale": [
  1266. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1267. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1268. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1269. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1270. { "time": 2.0667, "x": 1, "y": 1 }
  1271. ]
  1272. },
  1273. "bone39": {
  1274. "rotate": [
  1275. { "time": 0, "angle": 0 },
  1276. { "time": 0.1, "angle": 4.4 },
  1277. { "time": 0.3667, "angle": 0 },
  1278. { "time": 0.8333, "angle": 3.5 },
  1279. { "time": 1.2333, "angle": 0 },
  1280. { "time": 1.6667, "angle": 3.5 },
  1281. { "time": 2.0667, "angle": 0 },
  1282. { "time": 2.5667, "angle": 3.5 }
  1283. ],
  1284. "translate": [
  1285. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1286. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1287. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1288. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  1289. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  1290. { "time": 2.5667, "x": 0, "y": 0 }
  1291. ],
  1292. "scale": [
  1293. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 2.0667, "x": 1, "y": 1 }
  1298. ]
  1299. },
  1300. "bone42": {
  1301. "rotate": [
  1302. { "time": 0, "angle": 0, "curve": "stepped" },
  1303. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1304. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1305. { "time": 0.3667, "angle": 0 }
  1306. ],
  1307. "translate": [
  1308. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1309. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1310. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1311. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1312. { "time": 2.5667, "x": 0, "y": 0 }
  1313. ],
  1314. "scale": [
  1315. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1316. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1317. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1318. { "time": 0.3667, "x": 1, "y": 1 }
  1319. ]
  1320. },
  1321. "bone43": {
  1322. "rotate": [
  1323. { "time": 0, "angle": 0, "curve": "stepped" },
  1324. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1325. { "time": 0.3667, "angle": 0 }
  1326. ],
  1327. "translate": [
  1328. { "time": 0, "x": 0, "y": -1.58, "curve": "stepped" },
  1329. { "time": 0.2, "x": 0, "y": -1.58 },
  1330. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1331. { "time": 2.5667, "x": 0, "y": 0 }
  1332. ],
  1333. "scale": [
  1334. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1335. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1336. { "time": 0.3667, "x": 1, "y": 1 }
  1337. ]
  1338. },
  1339. "bone44": {
  1340. "rotate": [
  1341. { "time": 0, "angle": 0, "curve": "stepped" },
  1342. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  1343. { "time": 0.3667, "angle": 0 }
  1344. ],
  1345. "translate": [
  1346. { "time": 0, "x": 0.4, "y": -1.3, "curve": "stepped" },
  1347. { "time": 0.2333, "x": 0.4, "y": -1.3 },
  1348. { "time": 0.3667, "x": 0, "y": 0, "curve": "stepped" },
  1349. { "time": 2.5667, "x": 0, "y": 0 }
  1350. ],
  1351. "scale": [
  1352. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1353. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  1354. { "time": 0.3667, "x": 1, "y": 1 }
  1355. ]
  1356. }
  1357. },
  1358. "deform": {
  1359. "default": {
  1360. "shenti": {
  1361. "shenti": [
  1362. { "time": 0.2 },
  1363. {
  1364. "time": 0.3667,
  1365. "offset": 32,
  1366. "vertices": [ 0.62113, -2.15586, 0.669, -2.14149, 0.20831, -1.96899, -0.64366, -2.28039, -0.32883, 1.29719, -0.35763, 1.28955, 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.89964, 0.39631, 0.89053, 0.41626, 0.89053, 0.41626, 0.89053, 0.41626 ]
  1367. }
  1368. ]
  1369. },
  1370. "zuotui": {
  1371. "zuotui": [
  1372. {
  1373. "time": 0,
  1374. "offset": 60,
  1375. "vertices": [ -9.13642, 0.15215, -5.17674, 0.90407 ]
  1376. }
  1377. ]
  1378. },
  1379. "zuowaitao": {
  1380. "zuowaitao": [
  1381. { "time": 0.4, "curve": "stepped" },
  1382. { "time": 0.7667 },
  1383. {
  1384. "time": 1.2333,
  1385. "vertices": [ -1.55952, -1.50423, -1.43579, -1.62274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.48009, -2.28355, 1.3832, -4.76426 ],
  1386. "curve": "stepped"
  1387. },
  1388. {
  1389. "time": 2.1667,
  1390. "vertices": [ -1.55952, -1.50423, -1.43579, -1.62274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.48009, -2.28355, 1.3832, -4.76426 ],
  1391. "curve": "stepped"
  1392. },
  1393. {
  1394. "time": 2.5667,
  1395. "vertices": [ -1.55952, -1.50423, -1.43579, -1.62274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.48009, -2.28355, 1.3832, -4.76426 ]
  1396. }
  1397. ]
  1398. }
  1399. }
  1400. }
  1401. },
  1402. "walk1": {
  1403. "slots": {
  1404. "biyan": {
  1405. "attachment": [
  1406. { "time": 1.1, "name": "biyan" },
  1407. { "time": 1.2333, "name": null }
  1408. ]
  1409. },
  1410. "teshuzuoshou1": {
  1411. "attachment": [
  1412. { "time": 0, "name": null }
  1413. ]
  1414. },
  1415. "teshuzuoshou2": {
  1416. "attachment": [
  1417. { "time": 0, "name": null }
  1418. ]
  1419. },
  1420. "xiaoyan": {
  1421. "attachment": [
  1422. { "time": 0, "name": null }
  1423. ]
  1424. },
  1425. "youyan": {
  1426. "attachment": [
  1427. { "time": 1.1, "name": null },
  1428. { "time": 1.2333, "name": "youyan" }
  1429. ]
  1430. },
  1431. "youyantongkong": {
  1432. "attachment": [
  1433. { "time": 1.1, "name": null },
  1434. { "time": 1.2333, "name": "youyantongkong" }
  1435. ]
  1436. },
  1437. "zhangzui": {
  1438. "attachment": [
  1439. { "time": 0, "name": null }
  1440. ]
  1441. },
  1442. "zuoyan": {
  1443. "attachment": [
  1444. { "time": 1.1, "name": null },
  1445. { "time": 1.2333, "name": "zuoyan" }
  1446. ]
  1447. },
  1448. "zuoyantongkong": {
  1449. "attachment": [
  1450. { "time": 1.1, "name": null },
  1451. { "time": 1.2333, "name": "zuoyantongkong" }
  1452. ]
  1453. }
  1454. },
  1455. "bones": {
  1456. "root": {
  1457. "rotate": [
  1458. { "time": 0, "angle": 0 }
  1459. ],
  1460. "translate": [
  1461. { "time": 0, "x": 0, "y": 0 }
  1462. ],
  1463. "scale": [
  1464. { "time": 0, "x": 0.65, "y": 0.65 }
  1465. ]
  1466. },
  1467. "bone": {
  1468. "rotate": [
  1469. { "time": 0, "angle": 0, "curve": "stepped" },
  1470. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1471. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1472. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1473. { "time": 1, "angle": 0, "curve": "stepped" },
  1474. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1475. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1476. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1477. { "time": 2, "angle": 0 }
  1478. ],
  1479. "translate": [
  1480. { "time": 0, "x": 0, "y": -0.76 },
  1481. { "time": 0.1667, "x": 0, "y": 0.24 },
  1482. { "time": 0.5, "x": 0, "y": -0.76 },
  1483. { "time": 0.6667, "x": 0, "y": 0.24 },
  1484. { "time": 1, "x": 0, "y": -0.76 },
  1485. { "time": 1.1667, "x": 0, "y": 0.24 },
  1486. { "time": 1.5, "x": 0, "y": -0.76 },
  1487. { "time": 1.6667, "x": 0, "y": 0.24 },
  1488. { "time": 2, "x": 0, "y": -0.76 }
  1489. ],
  1490. "scale": [
  1491. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1492. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1493. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1494. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1495. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1496. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1497. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1498. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 2, "x": 1, "y": 1 }
  1500. ]
  1501. },
  1502. "bone2": {
  1503. "rotate": [
  1504. { "time": 0, "angle": 0, "curve": "stepped" },
  1505. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1506. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1507. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1508. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1509. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1510. { "time": 1, "angle": 0, "curve": "stepped" },
  1511. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1512. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1513. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1514. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1515. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1516. { "time": 2, "angle": 0 }
  1517. ],
  1518. "translate": [
  1519. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1522. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1523. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1524. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1525. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1526. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1527. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1528. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1529. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1530. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1531. { "time": 2, "x": 0, "y": 0 }
  1532. ],
  1533. "scale": [
  1534. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1535. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1536. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1537. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1538. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1539. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1540. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1541. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1542. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1543. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1544. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1545. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1546. { "time": 2, "x": 1, "y": 1 }
  1547. ]
  1548. },
  1549. "bone3": {
  1550. "rotate": [
  1551. { "time": 0, "angle": 0, "curve": "stepped" },
  1552. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1553. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1554. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1555. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1556. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1557. { "time": 1, "angle": 0, "curve": "stepped" },
  1558. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1559. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1560. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1561. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1562. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1563. { "time": 2, "angle": 0 }
  1564. ],
  1565. "translate": [
  1566. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1567. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1568. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1569. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1570. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1571. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1572. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1573. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1574. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1575. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1576. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1577. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1578. { "time": 2, "x": 0, "y": 0 }
  1579. ],
  1580. "scale": [
  1581. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1582. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1583. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1584. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1585. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1586. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1587. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1588. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1589. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1590. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1591. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1592. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1593. { "time": 2, "x": 1, "y": 1 }
  1594. ]
  1595. },
  1596. "bone4": {
  1597. "rotate": [
  1598. { "time": 0, "angle": 0, "curve": "stepped" },
  1599. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1600. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1601. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1602. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1603. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1604. { "time": 1, "angle": 0, "curve": "stepped" },
  1605. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1606. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1607. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1608. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1609. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1610. { "time": 2, "angle": 0 }
  1611. ],
  1612. "translate": [
  1613. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1614. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1616. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1617. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1618. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1619. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1620. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1621. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1622. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1623. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1624. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1625. { "time": 2, "x": 0, "y": 0 }
  1626. ],
  1627. "scale": [
  1628. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1629. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1630. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1631. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1632. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1633. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1634. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1635. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1636. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1637. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1638. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1639. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1640. { "time": 2, "x": 1, "y": 1 }
  1641. ]
  1642. },
  1643. "bone5": {
  1644. "rotate": [
  1645. { "time": 0, "angle": 0, "curve": "stepped" },
  1646. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1647. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1648. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1649. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1650. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1651. { "time": 1, "angle": 0, "curve": "stepped" },
  1652. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1653. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1654. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1655. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1656. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1657. { "time": 2, "angle": 0 }
  1658. ],
  1659. "translate": [
  1660. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1661. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1662. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1663. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1664. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1665. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1666. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1667. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1668. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1669. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1670. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1671. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1672. { "time": 2, "x": 0, "y": 0 }
  1673. ],
  1674. "scale": [
  1675. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1676. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1677. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1678. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1679. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1680. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1681. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1682. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1683. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1684. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1685. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1686. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1687. { "time": 2, "x": 1, "y": 1 }
  1688. ]
  1689. },
  1690. "bone6": {
  1691. "rotate": [
  1692. {
  1693. "time": 0,
  1694. "angle": 310.5,
  1695. "curve": [ 0.25, 0, 0.75, 1 ]
  1696. },
  1697. {
  1698. "time": 0.5,
  1699. "angle": -17.91,
  1700. "curve": [ 0.25, 0, 0.75, 1 ]
  1701. },
  1702. {
  1703. "time": 1,
  1704. "angle": 310.5,
  1705. "curve": [ 0.25, 0, 0.75, 1 ]
  1706. },
  1707. {
  1708. "time": 1.5,
  1709. "angle": -17.91,
  1710. "curve": [ 0.25, 0, 0.75, 1 ]
  1711. },
  1712. { "time": 2, "angle": -49.5 }
  1713. ],
  1714. "translate": [
  1715. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1716. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1717. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 2, "x": 0, "y": 0 }
  1720. ],
  1721. "scale": [
  1722. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1723. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1724. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1725. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 2, "x": 1, "y": 1 }
  1727. ]
  1728. },
  1729. "bone7": {
  1730. "rotate": [
  1731. {
  1732. "time": 0,
  1733. "angle": -20.28,
  1734. "curve": [ 0.25, 0, 0.75, 1 ]
  1735. },
  1736. {
  1737. "time": 0.5,
  1738. "angle": -11.55,
  1739. "curve": [ 0.25, 0, 0.75, 1 ]
  1740. },
  1741. {
  1742. "time": 1,
  1743. "angle": -20.28,
  1744. "curve": [ 0.25, 0, 0.75, 1 ]
  1745. },
  1746. {
  1747. "time": 1.5,
  1748. "angle": -11.55,
  1749. "curve": [ 0.25, 0, 0.75, 1 ]
  1750. },
  1751. { "time": 2, "angle": -20.28 }
  1752. ],
  1753. "translate": [
  1754. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1755. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1756. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1757. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1758. { "time": 2, "x": 0, "y": 0 }
  1759. ],
  1760. "scale": [
  1761. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1762. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1763. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1764. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1765. { "time": 2, "x": 1, "y": 1 }
  1766. ]
  1767. },
  1768. "bone8": {
  1769. "rotate": [
  1770. { "time": 0, "angle": 0, "curve": "stepped" },
  1771. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1772. { "time": 1, "angle": 0, "curve": "stepped" },
  1773. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1774. { "time": 2, "angle": 0 }
  1775. ],
  1776. "translate": [
  1777. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1778. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1779. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1780. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1781. { "time": 2, "x": 0, "y": 0 }
  1782. ],
  1783. "scale": [
  1784. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1785. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1786. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1787. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1788. { "time": 2, "x": 1, "y": 1 }
  1789. ]
  1790. },
  1791. "bone9": {
  1792. "rotate": [
  1793. {
  1794. "time": 0,
  1795. "angle": -314.32,
  1796. "curve": [ 0.25, 0, 0.75, 1 ]
  1797. },
  1798. {
  1799. "time": 0.5,
  1800. "angle": 9.25,
  1801. "curve": [ 0.25, 0, 0.75, 1 ]
  1802. },
  1803. {
  1804. "time": 1,
  1805. "angle": -314.32,
  1806. "curve": [ 0.25, 0, 0.75, 1 ]
  1807. },
  1808. {
  1809. "time": 1.5,
  1810. "angle": 9.25,
  1811. "curve": [ 0.25, 0, 0.75, 1 ]
  1812. },
  1813. { "time": 2, "angle": 45.68 }
  1814. ],
  1815. "translate": [
  1816. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1818. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1819. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1820. { "time": 2, "x": 0, "y": 0 }
  1821. ],
  1822. "scale": [
  1823. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1825. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 2, "x": 1, "y": 1 }
  1828. ]
  1829. },
  1830. "bone10": {
  1831. "rotate": [
  1832. {
  1833. "time": 0,
  1834. "angle": -12.38,
  1835. "curve": [ 0.25, 0, 0.75, 1 ]
  1836. },
  1837. {
  1838. "time": 0.5,
  1839. "angle": -9.77,
  1840. "curve": [ 0.25, 0, 0.75, 1 ]
  1841. },
  1842. {
  1843. "time": 1,
  1844. "angle": -12.38,
  1845. "curve": [ 0.25, 0, 0.75, 1 ]
  1846. },
  1847. {
  1848. "time": 1.5,
  1849. "angle": -9.77,
  1850. "curve": [ 0.25, 0, 0.75, 1 ]
  1851. },
  1852. { "time": 2, "angle": -12.38 }
  1853. ],
  1854. "translate": [
  1855. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1856. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1857. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1858. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1859. { "time": 2, "x": 0, "y": 0 }
  1860. ],
  1861. "scale": [
  1862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1863. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1865. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1866. { "time": 2, "x": 1, "y": 1 }
  1867. ]
  1868. },
  1869. "bone11": {
  1870. "rotate": [
  1871. { "time": 0, "angle": 0, "curve": "stepped" },
  1872. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1873. { "time": 1, "angle": 0, "curve": "stepped" },
  1874. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1875. { "time": 2, "angle": 0 }
  1876. ],
  1877. "translate": [
  1878. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1879. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1880. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1881. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1882. { "time": 2, "x": 0, "y": 0 }
  1883. ],
  1884. "scale": [
  1885. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1886. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1887. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1888. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 2, "x": 1, "y": 1 }
  1890. ]
  1891. },
  1892. "bone12": {
  1893. "rotate": [
  1894. { "time": 0, "angle": 0, "curve": "stepped" },
  1895. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1896. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1897. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1898. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1899. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  1900. { "time": 1, "angle": 0, "curve": "stepped" },
  1901. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1902. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1903. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1904. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  1905. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  1906. { "time": 2, "angle": 0 }
  1907. ],
  1908. "translate": [
  1909. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1910. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1911. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1912. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1913. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1914. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1915. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1916. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1917. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1918. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1919. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1920. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  1921. { "time": 2, "x": 0, "y": 0 }
  1922. ],
  1923. "scale": [
  1924. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1925. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1926. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1927. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1928. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1929. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1930. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1931. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1932. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1933. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1934. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1935. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1936. { "time": 2, "x": 1, "y": 1 }
  1937. ]
  1938. },
  1939. "bone13": {
  1940. "rotate": [
  1941. { "time": 0, "angle": -18.16 },
  1942. { "time": 0.1667, "angle": 0.51 },
  1943. { "time": 0.3333, "angle": 23.06 },
  1944. { "time": 0.5, "angle": 43.67 },
  1945. { "time": 0.6667, "angle": 19.43 },
  1946. { "time": 0.8333, "angle": -6.42 },
  1947. { "time": 1, "angle": -18.16 },
  1948. { "time": 1.1667, "angle": 0.51 },
  1949. { "time": 1.3333, "angle": 23.06 },
  1950. { "time": 1.5, "angle": 43.67 },
  1951. { "time": 1.6667, "angle": 19.43 },
  1952. { "time": 1.8333, "angle": -6.42 },
  1953. { "time": 2, "angle": -18.16 }
  1954. ],
  1955. "translate": [
  1956. { "time": 0, "x": 0.58, "y": 1.53 },
  1957. { "time": 0.1667, "x": 0.09, "y": 2.34 },
  1958. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1959. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1960. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1961. { "time": 0.8333, "x": 0, "y": 0 },
  1962. { "time": 1, "x": 0.58, "y": 1.53 },
  1963. { "time": 1.1667, "x": 0.09, "y": 2.34 },
  1964. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1965. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1966. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  1967. { "time": 1.8333, "x": 0, "y": 0 },
  1968. { "time": 2, "x": 0.58, "y": 1.53 }
  1969. ],
  1970. "scale": [
  1971. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1972. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1973. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1974. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1975. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1976. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1977. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1978. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1979. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1980. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1981. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  1982. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 2, "x": 1, "y": 1 }
  1984. ]
  1985. },
  1986. "bone14": {
  1987. "rotate": [
  1988. { "time": 0, "angle": 0 },
  1989. { "time": 0.1667, "angle": 10.96 },
  1990. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1991. { "time": 0.5, "angle": 0 },
  1992. { "time": 0.6667, "angle": 40.21 },
  1993. { "time": 0.8333, "angle": 32.35 },
  1994. { "time": 1, "angle": 0 },
  1995. { "time": 1.1667, "angle": 10.96 },
  1996. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1997. { "time": 1.5, "angle": 0 },
  1998. { "time": 1.6667, "angle": 40.21 },
  1999. { "time": 1.8333, "angle": 32.35 },
  2000. { "time": 2, "angle": 0 }
  2001. ],
  2002. "translate": [
  2003. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2004. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2005. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2006. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2007. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2008. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2011. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2013. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2014. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2015. { "time": 2, "x": 0, "y": 0 }
  2016. ],
  2017. "scale": [
  2018. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2019. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2022. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2023. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2024. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2025. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2026. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2027. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2028. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2029. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2030. { "time": 2, "x": 1, "y": 1 }
  2031. ]
  2032. },
  2033. "bone15": {
  2034. "rotate": [
  2035. { "time": 0, "angle": 0 },
  2036. { "time": 0.1667, "angle": -10.33 },
  2037. { "time": 0.3333, "angle": -18.58 },
  2038. { "time": 0.5, "angle": 0 },
  2039. { "time": 0.6667, "angle": -12.42 },
  2040. { "time": 0.8333, "angle": -11.87 },
  2041. { "time": 1, "angle": 0 },
  2042. { "time": 1.1667, "angle": -10.33 },
  2043. { "time": 1.3333, "angle": -18.58 },
  2044. { "time": 1.5, "angle": 0 },
  2045. { "time": 1.6667, "angle": -12.42 },
  2046. { "time": 1.8333, "angle": -11.87 },
  2047. { "time": 2, "angle": 0 }
  2048. ],
  2049. "translate": [
  2050. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2051. { "time": 0.1667, "x": 0, "y": 0 },
  2052. { "time": 0.3333, "x": 0.48, "y": -1.94 },
  2053. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2054. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2055. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2056. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2057. { "time": 1.1667, "x": 0, "y": 0 },
  2058. { "time": 1.3333, "x": 0.48, "y": -1.94 },
  2059. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2060. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2061. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2062. { "time": 2, "x": 0, "y": 0 }
  2063. ],
  2064. "scale": [
  2065. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2066. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2067. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2068. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2069. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2070. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2071. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2072. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2073. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2075. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2076. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2077. { "time": 2, "x": 1, "y": 1 }
  2078. ]
  2079. },
  2080. "bone16": {
  2081. "rotate": [
  2082. { "time": 0, "angle": 15.76 },
  2083. { "time": 0.1667, "angle": -11.06 },
  2084. { "time": 0.3333, "angle": -28.66 },
  2085. { "time": 0.5, "angle": -37.65 },
  2086. { "time": 0.6667, "angle": -22.76 },
  2087. { "time": 0.8333, "angle": -3.39 },
  2088. { "time": 1, "angle": 15.76 },
  2089. { "time": 1.1667, "angle": -11.06 },
  2090. { "time": 1.3333, "angle": -28.66 },
  2091. { "time": 1.5, "angle": -37.65 },
  2092. { "time": 1.6667, "angle": -22.76 },
  2093. { "time": 1.8333, "angle": -3.39 },
  2094. { "time": 2, "angle": 15.76 }
  2095. ],
  2096. "translate": [
  2097. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2098. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2099. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2103. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2104. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2105. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2106. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2107. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2108. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2109. { "time": 2, "x": 0, "y": 0 }
  2110. ],
  2111. "scale": [
  2112. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2113. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2114. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2115. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2116. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2117. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2118. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2119. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2120. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2121. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2122. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2123. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2124. { "time": 2, "x": 1, "y": 1 }
  2125. ]
  2126. },
  2127. "bone17": {
  2128. "rotate": [
  2129. { "time": 0, "angle": 0 },
  2130. { "time": 0.1667, "angle": 39.42 },
  2131. { "time": 0.3333, "angle": 30.85 },
  2132. { "time": 0.5, "angle": 0 },
  2133. { "time": 0.6667, "angle": 13.74 },
  2134. { "time": 0.8333, "angle": 7.07 },
  2135. { "time": 1, "angle": 0 },
  2136. { "time": 1.1667, "angle": 39.42 },
  2137. { "time": 1.3333, "angle": 30.85 },
  2138. { "time": 1.5, "angle": 0 },
  2139. { "time": 1.6667, "angle": 13.74 },
  2140. { "time": 1.8333, "angle": 7.07 },
  2141. { "time": 2, "angle": 0 }
  2142. ],
  2143. "translate": [
  2144. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2145. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2146. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2147. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2148. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2149. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2150. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2151. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2152. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2153. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2154. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2155. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2156. { "time": 2, "x": 0, "y": 0 }
  2157. ],
  2158. "scale": [
  2159. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2160. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2161. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2162. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2163. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2164. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2165. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2166. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2167. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2168. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2169. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2170. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2171. { "time": 2, "x": 1, "y": 1 }
  2172. ]
  2173. },
  2174. "bone18": {
  2175. "rotate": [
  2176. { "time": 0, "angle": 6.44 },
  2177. { "time": 0.1667, "angle": -2.09 },
  2178. { "time": 0.3333, "angle": 10.31 },
  2179. { "time": 0.5, "angle": 0 },
  2180. { "time": 0.6667, "angle": 8.24 },
  2181. { "time": 0.8333, "angle": 0 },
  2182. { "time": 1, "angle": 6.44 },
  2183. { "time": 1.1667, "angle": -2.09 },
  2184. { "time": 1.3333, "angle": 10.31 },
  2185. { "time": 1.5, "angle": 0 },
  2186. { "time": 1.6667, "angle": 8.24 },
  2187. { "time": 1.8333, "angle": 0 },
  2188. { "time": 2, "angle": 6.44 }
  2189. ],
  2190. "translate": [
  2191. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2192. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2193. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2194. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2195. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2196. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2197. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2198. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2199. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2200. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2201. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2202. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2203. { "time": 2, "x": 0, "y": 0 }
  2204. ],
  2205. "scale": [
  2206. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2207. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2208. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2209. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2210. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2211. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2213. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2214. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2215. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2216. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2217. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2218. { "time": 2, "x": 1, "y": 1 }
  2219. ]
  2220. },
  2221. "bone19": {
  2222. "rotate": [
  2223. {
  2224. "time": 0,
  2225. "angle": 0,
  2226. "curve": [ 0.25, 0, 0.75, 1 ]
  2227. },
  2228. {
  2229. "time": 0.5,
  2230. "angle": 1.79,
  2231. "curve": [ 0.25, 0, 0.75, 1 ]
  2232. },
  2233. {
  2234. "time": 1,
  2235. "angle": 0,
  2236. "curve": [ 0.25, 0, 0.75, 1 ]
  2237. },
  2238. {
  2239. "time": 1.5,
  2240. "angle": 1.79,
  2241. "curve": [ 0.25, 0, 0.75, 1 ]
  2242. },
  2243. { "time": 2, "angle": 0 }
  2244. ],
  2245. "translate": [
  2246. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2247. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2248. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2249. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2250. { "time": 2, "x": 0, "y": 0 }
  2251. ],
  2252. "scale": [
  2253. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 2, "x": 1, "y": 1 }
  2258. ]
  2259. },
  2260. "bone20": {
  2261. "rotate": [
  2262. {
  2263. "time": 0,
  2264. "angle": 0,
  2265. "curve": [ 0.25, 0, 0.75, 1 ]
  2266. },
  2267. {
  2268. "time": 0.5,
  2269. "angle": 7.12,
  2270. "curve": [ 0.25, 0, 0.75, 1 ]
  2271. },
  2272. {
  2273. "time": 1,
  2274. "angle": 0,
  2275. "curve": [ 0.25, 0, 0.75, 1 ]
  2276. },
  2277. {
  2278. "time": 1.5,
  2279. "angle": 7.12,
  2280. "curve": [ 0.25, 0, 0.75, 1 ]
  2281. },
  2282. { "time": 2, "angle": 0 }
  2283. ],
  2284. "translate": [
  2285. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2286. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2287. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2288. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2289. { "time": 2, "x": 0, "y": 0 }
  2290. ],
  2291. "scale": [
  2292. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2293. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2294. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2295. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2296. { "time": 2, "x": 1, "y": 1 }
  2297. ]
  2298. },
  2299. "bone21": {
  2300. "rotate": [
  2301. {
  2302. "time": 0,
  2303. "angle": 0,
  2304. "curve": [ 0.25, 0, 0.75, 1 ]
  2305. },
  2306. {
  2307. "time": 0.5,
  2308. "angle": 7.12,
  2309. "curve": [ 0.25, 0, 0.75, 1 ]
  2310. },
  2311. {
  2312. "time": 1,
  2313. "angle": 0,
  2314. "curve": [ 0.25, 0, 0.75, 1 ]
  2315. },
  2316. {
  2317. "time": 1.5,
  2318. "angle": 7.12,
  2319. "curve": [ 0.25, 0, 0.75, 1 ]
  2320. },
  2321. { "time": 2, "angle": 0 }
  2322. ],
  2323. "translate": [
  2324. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2325. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2326. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2327. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 2, "x": 0, "y": 0 }
  2329. ],
  2330. "scale": [
  2331. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2332. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2333. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 2, "x": 1, "y": 1 }
  2336. ]
  2337. },
  2338. "bone22": {
  2339. "rotate": [
  2340. {
  2341. "time": 0,
  2342. "angle": 0,
  2343. "curve": [ 0.25, 0, 0.75, 1 ]
  2344. },
  2345. {
  2346. "time": 0.5,
  2347. "angle": 7.12,
  2348. "curve": [ 0.25, 0, 0.75, 1 ]
  2349. },
  2350. {
  2351. "time": 1,
  2352. "angle": 0,
  2353. "curve": [ 0.25, 0, 0.75, 1 ]
  2354. },
  2355. {
  2356. "time": 1.5,
  2357. "angle": 7.12,
  2358. "curve": [ 0.25, 0, 0.75, 1 ]
  2359. },
  2360. { "time": 2, "angle": 0 }
  2361. ],
  2362. "translate": [
  2363. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2364. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2365. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2366. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2367. { "time": 2, "x": 0, "y": 0 }
  2368. ],
  2369. "scale": [
  2370. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2371. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2372. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2373. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2374. { "time": 2, "x": 1, "y": 1 }
  2375. ]
  2376. },
  2377. "bone23": {
  2378. "rotate": [
  2379. {
  2380. "time": 0,
  2381. "angle": 0,
  2382. "curve": [ 0.25, 0, 0.75, 1 ]
  2383. },
  2384. {
  2385. "time": 0.5,
  2386. "angle": 7.12,
  2387. "curve": [ 0.25, 0, 0.75, 1 ]
  2388. },
  2389. {
  2390. "time": 1,
  2391. "angle": 0,
  2392. "curve": [ 0.25, 0, 0.75, 1 ]
  2393. },
  2394. {
  2395. "time": 1.5,
  2396. "angle": 7.12,
  2397. "curve": [ 0.25, 0, 0.75, 1 ]
  2398. },
  2399. { "time": 2, "angle": 0 }
  2400. ],
  2401. "translate": [
  2402. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2403. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2404. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2405. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2406. { "time": 2, "x": 0, "y": 0 }
  2407. ],
  2408. "scale": [
  2409. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2410. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2411. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2412. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2413. { "time": 2, "x": 1, "y": 1 }
  2414. ]
  2415. },
  2416. "bone24": {
  2417. "rotate": [
  2418. { "time": 0, "angle": 0, "curve": "stepped" },
  2419. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2420. { "time": 1, "angle": 0, "curve": "stepped" },
  2421. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2422. { "time": 2, "angle": 0 }
  2423. ],
  2424. "translate": [
  2425. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2426. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2427. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2428. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2429. { "time": 2, "x": 0, "y": 0 }
  2430. ],
  2431. "scale": [
  2432. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2433. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2434. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2435. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2436. { "time": 2, "x": 1, "y": 1 }
  2437. ]
  2438. },
  2439. "bone25": {
  2440. "rotate": [
  2441. {
  2442. "time": 0,
  2443. "angle": 0,
  2444. "curve": [ 0.25, 0, 0.75, 1 ]
  2445. },
  2446. {
  2447. "time": 0.5,
  2448. "angle": -6.69,
  2449. "curve": [ 0.25, 0, 0.75, 1 ]
  2450. },
  2451. {
  2452. "time": 1,
  2453. "angle": 0,
  2454. "curve": [ 0.25, 0, 0.75, 1 ]
  2455. },
  2456. {
  2457. "time": 1.5,
  2458. "angle": -6.69,
  2459. "curve": [ 0.25, 0, 0.75, 1 ]
  2460. },
  2461. { "time": 2, "angle": 0 }
  2462. ],
  2463. "translate": [
  2464. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2465. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2466. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2467. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2468. { "time": 2, "x": 0, "y": 0 }
  2469. ],
  2470. "scale": [
  2471. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2472. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2473. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2474. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2475. { "time": 2, "x": 1, "y": 1 }
  2476. ]
  2477. },
  2478. "bone26": {
  2479. "rotate": [
  2480. {
  2481. "time": 0,
  2482. "angle": 0,
  2483. "curve": [ 0.25, 0, 0.75, 1 ]
  2484. },
  2485. {
  2486. "time": 0.5,
  2487. "angle": -6.69,
  2488. "curve": [ 0.25, 0, 0.75, 1 ]
  2489. },
  2490. {
  2491. "time": 1,
  2492. "angle": 0,
  2493. "curve": [ 0.25, 0, 0.75, 1 ]
  2494. },
  2495. {
  2496. "time": 1.5,
  2497. "angle": -6.69,
  2498. "curve": [ 0.25, 0, 0.75, 1 ]
  2499. },
  2500. { "time": 2, "angle": 0 }
  2501. ],
  2502. "translate": [
  2503. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 2, "x": 0, "y": 0 }
  2508. ],
  2509. "scale": [
  2510. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2511. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 2, "x": 1, "y": 1 }
  2515. ]
  2516. },
  2517. "bone27": {
  2518. "rotate": [
  2519. {
  2520. "time": 0,
  2521. "angle": 0,
  2522. "curve": [ 0.25, 0, 0.75, 1 ]
  2523. },
  2524. {
  2525. "time": 0.5,
  2526. "angle": -6.69,
  2527. "curve": [ 0.25, 0, 0.75, 1 ]
  2528. },
  2529. {
  2530. "time": 1,
  2531. "angle": 0,
  2532. "curve": [ 0.25, 0, 0.75, 1 ]
  2533. },
  2534. {
  2535. "time": 1.5,
  2536. "angle": -6.69,
  2537. "curve": [ 0.25, 0, 0.75, 1 ]
  2538. },
  2539. { "time": 2, "angle": 0 }
  2540. ],
  2541. "translate": [
  2542. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2543. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2544. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2545. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2546. { "time": 2, "x": 0, "y": 0 }
  2547. ],
  2548. "scale": [
  2549. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2550. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2551. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2552. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2553. { "time": 2, "x": 1, "y": 1 }
  2554. ]
  2555. },
  2556. "bone28": {
  2557. "rotate": [
  2558. {
  2559. "time": 0,
  2560. "angle": 0,
  2561. "curve": [ 0.25, 0, 0.75, 1 ]
  2562. },
  2563. {
  2564. "time": 0.5,
  2565. "angle": -6.69,
  2566. "curve": [ 0.25, 0, 0.75, 1 ]
  2567. },
  2568. {
  2569. "time": 1,
  2570. "angle": 0,
  2571. "curve": [ 0.25, 0, 0.75, 1 ]
  2572. },
  2573. {
  2574. "time": 1.5,
  2575. "angle": -6.69,
  2576. "curve": [ 0.25, 0, 0.75, 1 ]
  2577. },
  2578. { "time": 2, "angle": 0 }
  2579. ],
  2580. "translate": [
  2581. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2582. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2583. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2584. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2585. { "time": 2, "x": 0, "y": 0 }
  2586. ],
  2587. "scale": [
  2588. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2591. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2592. { "time": 2, "x": 1, "y": 1 }
  2593. ]
  2594. },
  2595. "bone29": {
  2596. "rotate": [
  2597. {
  2598. "time": 0,
  2599. "angle": 0,
  2600. "curve": [ 0.25, 0, 0.75, 1 ]
  2601. },
  2602. {
  2603. "time": 0.5,
  2604. "angle": -6.69,
  2605. "curve": [ 0.25, 0, 0.75, 1 ]
  2606. },
  2607. {
  2608. "time": 1,
  2609. "angle": 0,
  2610. "curve": [ 0.25, 0, 0.75, 1 ]
  2611. },
  2612. {
  2613. "time": 1.5,
  2614. "angle": -6.69,
  2615. "curve": [ 0.25, 0, 0.75, 1 ]
  2616. },
  2617. { "time": 2, "angle": 0 }
  2618. ],
  2619. "translate": [
  2620. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2621. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2622. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2623. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2624. { "time": 2, "x": 0, "y": 0 }
  2625. ],
  2626. "scale": [
  2627. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2628. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2629. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2630. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2631. { "time": 2, "x": 1, "y": 1 }
  2632. ]
  2633. },
  2634. "bone30": {
  2635. "rotate": [
  2636. { "time": 0, "angle": 0, "curve": "stepped" },
  2637. { "time": 1, "angle": 0, "curve": "stepped" },
  2638. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2639. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2640. { "time": 1.3667, "angle": 0 }
  2641. ],
  2642. "translate": [
  2643. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2644. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2645. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2646. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2647. { "time": 1.3667, "x": 0, "y": 0 }
  2648. ],
  2649. "scale": [
  2650. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2651. { "time": 1, "x": 1, "y": 1 },
  2652. { "time": 1.1, "x": 0.403, "y": 1, "curve": "stepped" },
  2653. { "time": 1.2333, "x": 0.403, "y": 1 },
  2654. { "time": 1.3667, "x": 1, "y": 1 }
  2655. ]
  2656. },
  2657. "bone31": {
  2658. "rotate": [
  2659. { "time": 0, "angle": 0, "curve": "stepped" },
  2660. { "time": 1, "angle": 0, "curve": "stepped" },
  2661. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2662. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2663. { "time": 1.3667, "angle": 0 }
  2664. ],
  2665. "translate": [
  2666. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2667. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2668. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2669. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2670. { "time": 1.3667, "x": 0, "y": 0 }
  2671. ],
  2672. "scale": [
  2673. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2674. { "time": 1, "x": 1, "y": 1 },
  2675. { "time": 1.1, "x": 0.404, "y": 1, "curve": "stepped" },
  2676. { "time": 1.2333, "x": 0.404, "y": 1 },
  2677. { "time": 1.3667, "x": 1, "y": 1 }
  2678. ]
  2679. },
  2680. "bone32": {
  2681. "rotate": [
  2682. { "time": 0, "angle": 0 }
  2683. ],
  2684. "translate": [
  2685. { "time": 0, "x": -0.89, "y": 0 }
  2686. ],
  2687. "scale": [
  2688. { "time": 0, "x": 1, "y": 1 }
  2689. ]
  2690. },
  2691. "bone33": {
  2692. "rotate": [
  2693. { "time": 0, "angle": 0, "curve": "stepped" },
  2694. { "time": 1, "angle": 0, "curve": "stepped" },
  2695. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2696. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2697. { "time": 1.3667, "angle": 0 }
  2698. ],
  2699. "translate": [
  2700. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2701. { "time": 1, "x": 0, "y": 0 },
  2702. { "time": 1.1, "x": -1.23, "y": 0, "curve": "stepped" },
  2703. { "time": 1.2333, "x": -1.23, "y": 0 },
  2704. { "time": 1.3667, "x": 0, "y": 0 }
  2705. ],
  2706. "scale": [
  2707. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2708. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 1.3667, "x": 1, "y": 1 }
  2712. ]
  2713. },
  2714. "bone34": {
  2715. "rotate": [
  2716. { "time": 0, "angle": 0, "curve": "stepped" },
  2717. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2718. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2719. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2720. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2721. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2722. { "time": 1, "angle": 0, "curve": "stepped" },
  2723. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2724. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2725. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2726. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2727. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2728. { "time": 2, "angle": 0 }
  2729. ],
  2730. "translate": [
  2731. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2732. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2733. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2734. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2735. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2736. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2737. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2738. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2739. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2740. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2741. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2742. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2743. { "time": 2, "x": 0, "y": 0 }
  2744. ],
  2745. "scale": [
  2746. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2747. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2748. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2749. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2750. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2751. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2752. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2753. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2754. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2755. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2756. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2757. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2758. { "time": 2, "x": 1, "y": 1 }
  2759. ]
  2760. },
  2761. "bone35": {
  2762. "rotate": [
  2763. { "time": 0, "angle": 0, "curve": "stepped" },
  2764. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2765. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2766. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2767. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2768. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2769. { "time": 1, "angle": 0, "curve": "stepped" },
  2770. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2771. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2772. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2773. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2774. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  2775. { "time": 2, "angle": 0 }
  2776. ],
  2777. "translate": [
  2778. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2779. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2780. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2781. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2782. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2783. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2784. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2785. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2786. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 2, "x": 0, "y": 0 }
  2791. ],
  2792. "scale": [
  2793. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2794. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2795. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2796. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2797. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2798. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2799. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2800. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2801. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2802. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2803. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2804. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2805. { "time": 2, "x": 1, "y": 1 }
  2806. ]
  2807. },
  2808. "bone36": {
  2809. "rotate": [
  2810. { "time": 0, "angle": 0, "curve": "stepped" },
  2811. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2812. { "time": 1, "angle": 0, "curve": "stepped" },
  2813. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2814. { "time": 2, "angle": 0 }
  2815. ],
  2816. "translate": [
  2817. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2818. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2819. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2820. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2821. { "time": 2, "x": 0, "y": 0 }
  2822. ],
  2823. "scale": [
  2824. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2826. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2827. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 2, "x": 1, "y": 1 }
  2829. ]
  2830. },
  2831. "bone37": {
  2832. "rotate": [
  2833. { "time": 0, "angle": 0 },
  2834. { "time": 0.5, "angle": -0.48 },
  2835. { "time": 1, "angle": 0 },
  2836. { "time": 1.5, "angle": -0.48 },
  2837. { "time": 2, "angle": 0 }
  2838. ],
  2839. "translate": [
  2840. { "time": 0, "x": 0, "y": 0 },
  2841. { "time": 0.5, "x": 0.15, "y": 0.74 },
  2842. { "time": 1, "x": 0, "y": 0 },
  2843. { "time": 1.5, "x": 0.15, "y": 0.74 },
  2844. { "time": 2, "x": 0, "y": 0 }
  2845. ],
  2846. "scale": [
  2847. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2848. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2849. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2850. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2851. { "time": 2, "x": 1, "y": 1 }
  2852. ]
  2853. },
  2854. "bone38": {
  2855. "rotate": [
  2856. { "time": 0, "angle": 0 },
  2857. { "time": 0.5, "angle": 7.83 },
  2858. { "time": 1, "angle": 0 },
  2859. { "time": 1.5, "angle": 7.83 },
  2860. { "time": 2, "angle": 0 }
  2861. ],
  2862. "translate": [
  2863. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2864. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2865. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2866. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2867. { "time": 2, "x": 0, "y": 0 }
  2868. ],
  2869. "scale": [
  2870. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 2, "x": 1, "y": 1 }
  2875. ]
  2876. },
  2877. "bone39": {
  2878. "rotate": [
  2879. { "time": 0, "angle": 0 },
  2880. { "time": 0.5, "angle": 7.83 },
  2881. { "time": 1, "angle": 0 },
  2882. { "time": 1.5, "angle": 7.83 },
  2883. { "time": 2, "angle": 0 }
  2884. ],
  2885. "translate": [
  2886. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2887. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2888. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2889. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2890. { "time": 2, "x": 0, "y": 0 }
  2891. ],
  2892. "scale": [
  2893. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2894. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2895. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2896. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2897. { "time": 2, "x": 1, "y": 1 }
  2898. ]
  2899. },
  2900. "bone43": {
  2901. "rotate": [
  2902. { "time": 0, "angle": 0, "curve": "stepped" },
  2903. { "time": 1, "angle": 0, "curve": "stepped" },
  2904. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2905. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2906. { "time": 1.3667, "angle": 0 }
  2907. ],
  2908. "translate": [
  2909. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2910. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2911. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2912. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2913. { "time": 1.3667, "x": 0, "y": 0 }
  2914. ],
  2915. "scale": [
  2916. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2917. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2918. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2919. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2920. { "time": 1.3667, "x": 1, "y": 1 }
  2921. ]
  2922. },
  2923. "bone44": {
  2924. "rotate": [
  2925. { "time": 0, "angle": 0, "curve": "stepped" },
  2926. { "time": 1, "angle": 0, "curve": "stepped" },
  2927. { "time": 1.1, "angle": 0, "curve": "stepped" },
  2928. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  2929. { "time": 1.3667, "angle": 0 }
  2930. ],
  2931. "translate": [
  2932. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  2936. { "time": 1.3667, "x": 0, "y": 0 }
  2937. ],
  2938. "scale": [
  2939. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2941. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  2942. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  2943. { "time": 1.3667, "x": 1, "y": 1 }
  2944. ]
  2945. }
  2946. },
  2947. "deform": {
  2948. "default": {
  2949. "kudang": {
  2950. "kudang": [
  2951. {
  2952. "time": 0,
  2953. "offset": 4,
  2954. "vertices": [ -0.03191, 0.84989, 0.83108, 2.5775, 0, 0, 0, 0, 0.06769, -0.94894, -0.34028, -0.59875 ]
  2955. },
  2956. {
  2957. "time": 0.5,
  2958. "vertices": [ -0.3959, 1.25479, -0.3681, 0.32801, 0.82125, -0.50632, 1.46421, -1.4658, -0.42068, -7.90879, 0, 0, 1.0239, 2.11759, 0.70567, -0.40099, -0.77092, -2.51956, -0.40152, -4.25457, -2.61114, -4.37648, 0, 0, 0, 0, 0.17504, 1.84129, 0, 0, -0.09933, -1.86736, -0.31433, -3.83871, 0.13204, -1.65935, -0.75256, -1.72246, -0.05844, -1.09845 ]
  2959. },
  2960. {
  2961. "time": 1,
  2962. "offset": 4,
  2963. "vertices": [ -0.03191, 0.84989, 0.83108, 2.5775, 0, 0, 0, 0, 0.06769, -0.94894, -0.34028, -0.59875 ]
  2964. },
  2965. {
  2966. "time": 1.5,
  2967. "vertices": [ -0.3959, 1.25479, -0.3681, 0.32801, 0.82125, -0.50632, 1.46421, -1.4658, -0.42068, -7.90879, 0, 0, 1.0239, 2.11759, 0.70567, -0.40099, -0.77092, -2.51956, -0.40152, -4.25457, -2.61114, -4.37648, 0, 0, 0, 0, 0.17504, 1.84129, 0, 0, -0.09933, -1.86736, -0.31433, -3.83871, 0.13204, -1.65935, -0.75256, -1.72246, -0.05844, -1.09845 ]
  2968. },
  2969. {
  2970. "time": 2,
  2971. "offset": 4,
  2972. "vertices": [ -0.03191, 0.84989, 0.83108, 2.5775, 0, 0, 0, 0, 0.06769, -0.94894, -0.34028, -0.59875 ]
  2973. }
  2974. ]
  2975. },
  2976. "toufa1": {
  2977. "toufa1": [
  2978. { "time": 0 },
  2979. {
  2980. "time": 0.5,
  2981. "offset": 40,
  2982. "vertices": [ 1.59489, 2.18977, 1.31552, 2.36804, 1.2218, 2.41776 ]
  2983. },
  2984. { "time": 1 },
  2985. {
  2986. "time": 1.5,
  2987. "offset": 40,
  2988. "vertices": [ 1.59489, 2.18977, 1.31552, 2.36804, 1.2218, 2.41776 ]
  2989. },
  2990. { "time": 2 }
  2991. ]
  2992. },
  2993. "youtui": {
  2994. "youtui": [
  2995. { "time": 0 },
  2996. {
  2997. "time": 0.5,
  2998. "offset": 66,
  2999. "vertices": [ -1.32861, 0.05616 ]
  3000. },
  3001. { "time": 1 },
  3002. {
  3003. "time": 1.5,
  3004. "offset": 66,
  3005. "vertices": [ -1.32861, 0.05616 ]
  3006. },
  3007. { "time": 2 }
  3008. ]
  3009. },
  3010. "youwaitao": {
  3011. "youwaitao": [
  3012. { "time": 0 },
  3013. {
  3014. "time": 0.5,
  3015. "offset": 152,
  3016. "vertices": [ -2.17266, -0.10207, -2.1618, 0.24014 ]
  3017. },
  3018. { "time": 1 },
  3019. {
  3020. "time": 1.5,
  3021. "offset": 152,
  3022. "vertices": [ -2.17266, -0.10207, -2.1618, 0.24014 ]
  3023. },
  3024. { "time": 2 }
  3025. ]
  3026. },
  3027. "zuotui": {
  3028. "zuotui": [
  3029. {
  3030. "time": 0,
  3031. "vertices": [ -2.30621, 1.46084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6.71029, -1.35893, -5.58592, 1.69882, -4.45377, 0.45135 ]
  3032. },
  3033. {
  3034. "time": 0.5,
  3035. "vertices": [ 0.27424, 3.36303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12.03417, 3.98033, -7.50331, 4.08875, -1.20943, -0.59646 ]
  3036. },
  3037. {
  3038. "time": 1,
  3039. "vertices": [ -2.30621, 1.46084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6.71029, -1.35893, -5.58592, 1.69882, -4.45377, 0.45135 ]
  3040. },
  3041. {
  3042. "time": 1.5,
  3043. "vertices": [ 0.27424, 3.36303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -12.03417, 3.98033, -7.50331, 4.08875, -1.20943, -0.59646 ]
  3044. },
  3045. {
  3046. "time": 2,
  3047. "vertices": [ -2.30621, 1.46084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -6.71029, -1.35893, -5.58592, 1.69882, -4.45377, 0.45135 ]
  3048. }
  3049. ]
  3050. },
  3051. "zuowaitao": {
  3052. "zuowaitao": [
  3053. { "time": 0 },
  3054. {
  3055. "time": 0.5,
  3056. "offset": 116,
  3057. "vertices": [ -2.21307, -1.7114, -2.00587, -1.95012, 0, 0, 2.36793, 0.83403, 0, 0, 1.14578, -0.34063 ]
  3058. },
  3059. { "time": 1 },
  3060. {
  3061. "time": 1.5,
  3062. "offset": 116,
  3063. "vertices": [ -2.21307, -1.7114, -2.00587, -1.95012, 0, 0, 2.36793, 0.83403, 0, 0, 1.14578, -0.34063 ]
  3064. },
  3065. { "time": 2 }
  3066. ]
  3067. }
  3068. }
  3069. }
  3070. }
  3071. }
  3072. }