senlinjisi.json 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564
  1. {
  2. "skeleton": {
  3. "hash": "N/OxZ8OZwDL0nqGR3H0ufTjMdKM",
  4. "spine": "3.8.75",
  5. "x": -286.86,
  6. "y": -44,
  7. "width": 493.86,
  8. "height": 546.71,
  9. "images": "./images/",
  10. "audio": "G:/2D项目/研发项目/罗宾"
  11. },
  12. "bones": [
  13. { "name": "root" },
  14. { "name": "bone", "parent": "root", "x": 5.67, "y": 95.83 },
  15. { "name": "bone2", "parent": "bone", "length": 70.49, "rotation": 92.2, "x": -0.7, "y": 16.72 },
  16. { "name": "bone3", "parent": "bone2", "length": 73.14, "rotation": -2.2, "x": 70.49 },
  17. { "name": "bone4", "parent": "bone3", "length": 164.76, "rotation": -3.36, "x": 79.92, "y": -11.53 },
  18. { "name": "bone5", "parent": "bone4", "length": 68.27, "rotation": 139.23, "x": 91.06, "y": 60.68 },
  19. { "name": "bone6", "parent": "bone5", "length": 47.47, "rotation": -4.73, "x": 68.27 },
  20. { "name": "bone7", "parent": "bone4", "length": 67.31, "rotation": 28.84, "x": 24.48, "y": 51.93 },
  21. { "name": "bone8", "parent": "bone3", "length": 59.55, "rotation": -148.81, "x": 55.22, "y": -68.14 },
  22. { "name": "bone9", "parent": "bone8", "length": 49.18, "rotation": 2.86, "x": 60.1, "y": 0.56 },
  23. { "name": "bone10", "parent": "bone3", "length": 39.05, "rotation": 126.85, "x": 44.5, "y": 73.9 },
  24. { "name": "bone11", "parent": "bone10", "length": 30.61, "rotation": -8.87, "x": 39.18, "y": 0.4 },
  25. { "name": "bone12", "parent": "bone11", "length": 54.12, "rotation": -4.52, "x": 31.45, "y": -0.52 },
  26. { "name": "bone13", "parent": "bone3", "length": 65.68, "rotation": 162.52, "x": 39.35, "y": 45.31 },
  27. { "name": "bone14", "parent": "bone13", "length": 52.52, "rotation": -6.73, "x": 65.68 },
  28. { "name": "bone15", "parent": "bone", "length": 46.35, "rotation": -90.99, "x": 4.73, "y": 1.39 },
  29. { "name": "bone16", "parent": "bone", "length": 52.6, "rotation": -54.21, "x": 66.47, "y": 3.18 },
  30. { "name": "bone17", "parent": "bone", "length": 57.73, "rotation": -115.87, "x": -38.35, "y": -11.04 },
  31. {
  32. "name": "bone18",
  33. "parent": "root",
  34. "length": 45.28,
  35. "rotation": -110.83,
  36. "x": -57.91,
  37. "y": 37.68,
  38. "color": "ff3f00ff"
  39. },
  40. { "name": "bone19", "parent": "bone", "length": 53.54, "rotation": -65.7, "x": 43.27, "y": -11.48 },
  41. {
  42. "name": "bone20",
  43. "parent": "root",
  44. "length": 45.63,
  45. "rotation": -75,
  46. "x": 77.07,
  47. "y": 38.95,
  48. "color": "ff3f00ff"
  49. },
  50. { "name": "bone22", "parent": "bone9", "length": 49.18, "rotation": 2.28, "x": 49.27, "y": 0.25 },
  51. { "name": "bone23", "parent": "bone15", "length": 33.48, "x": 48.82, "y": 0.17 },
  52. { "name": "bone24", "parent": "bone12", "length": 245.84, "rotation": -99.58, "x": 24.75, "y": 6.53 },
  53. { "name": "bone25", "parent": "bone6", "length": 36.68, "rotation": -7.49, "x": 49.49, "y": 0.27 },
  54. { "name": "bone26", "parent": "bone14", "length": 41.49, "rotation": -8.03, "x": 52.77, "y": -0.16 },
  55. { "name": "bone21", "parent": "bone4", "length": 68.27, "rotation": -173.82, "x": 4.06, "y": -18.22 },
  56. { "name": "bone27", "parent": "bone21", "length": 47.47, "rotation": 1.01, "x": 68.27 },
  57. { "name": "bone28", "parent": "bone3", "length": 91.06, "rotation": 69.95, "x": 65.68, "y": 44.45 },
  58. { "name": "bone29", "parent": "bone3", "length": 77.32, "rotation": -61.9, "x": 61.64, "y": -85.03 },
  59. { "name": "bone30", "parent": "root", "length": 129.12, "rotation": -78.57, "x": -169.16, "y": 229.04 },
  60. { "name": "shadow", "parent": "root", "scaleX": 3 },
  61. { "name": "skill_effects2", "parent": "root", "y": 200 }
  62. ],
  63. "slots": [
  64. { "name": "shadow", "bone": "shadow", "attachment": "shadow" },
  65. { "name": "toufa", "bone": "root", "attachment": "toufa" },
  66. { "name": "youbi", "bone": "root", "attachment": "youbi" },
  67. { "name": "youshou", "bone": "root", "attachment": "youshou" },
  68. { "name": "youshouhuan", "bone": "root", "attachment": "youshouhuan" },
  69. { "name": "pifeng", "bone": "root", "attachment": "pifeng" },
  70. { "name": "youtui", "bone": "root", "attachment": "youtui" },
  71. { "name": "zuotui", "bone": "root", "attachment": "zuotui" },
  72. { "name": "shangshen", "bone": "root", "attachment": "shangshen" },
  73. { "name": "weijin", "bone": "root", "attachment": "weijin" },
  74. { "name": "lian", "bone": "root", "attachment": "lian" },
  75. { "name": "youyan", "bone": "root", "attachment": "youyan" },
  76. { "name": "zuoyan", "bone": "root", "attachment": "zuoyan" },
  77. { "name": "jiao", "bone": "root", "attachment": "jiao" },
  78. { "name": "er", "bone": "root", "attachment": "er" },
  79. { "name": "kuzi", "bone": "root", "attachment": "kuzi" },
  80. { "name": "youyumao", "bone": "root", "attachment": "youyumao" },
  81. { "name": "zuobi", "bone": "root", "attachment": "zuobi" },
  82. { "name": "zuoyumao", "bone": "root", "attachment": "zuoyumao" },
  83. { "name": "huzi", "bone": "root", "attachment": "huzi" },
  84. { "name": "fazhang", "bone": "root", "attachment": "fazhang" },
  85. { "name": "fazhang2", "bone": "bone30" },
  86. { "name": "zuoshou", "bone": "root", "attachment": "zuoshou" },
  87. { "name": "skill_effects2", "bone": "skill_effects2", "color": "ffffff00", "attachment": "s2_001" }
  88. ],
  89. "ik": [
  90. {
  91. "name": "bone18",
  92. "order": 1,
  93. "bones": [ "bone17" ],
  94. "target": "bone18",
  95. "compress": true,
  96. "stretch": true
  97. },
  98. {
  99. "name": "bone20",
  100. "bones": [ "bone19" ],
  101. "target": "bone20",
  102. "compress": true,
  103. "stretch": true
  104. }
  105. ],
  106. "skins": [
  107. {
  108. "name": "default",
  109. "attachments": {
  110. "youyumao": {
  111. "youyumao": {
  112. "type": "mesh",
  113. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  114. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  115. "vertices": [ 1, 29, 61.65, -66.82, 1, 1, 29, -28.33, -18.78, 1, 1, 29, 20.65, 72.96, 1, 1, 29, 110.63, 24.92, 1 ],
  116. "hull": 4,
  117. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  118. "width": 102,
  119. "height": 104
  120. }
  121. },
  122. "fazhang2": {
  123. "fazhang": {
  124. "type": "mesh",
  125. "uvs": [ 0.95098, 0.99093, 0.04902, 0.99093, 0.04902, 0.00907, 0.95098, 0.00907 ],
  126. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  127. "vertices": [ 1, 30, 239.88, 19.13, 1, 1, 30, 203.4, -161.22, 1, 1, 30, -221, -75.38, 1, 1, 30, -184.53, 104.96, 1 ],
  128. "hull": 4,
  129. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  130. "width": 204,
  131. "height": 441
  132. }
  133. },
  134. "youtui": {
  135. "youtui": {
  136. "type": "mesh",
  137. "uvs": [ 0.68695, 0.1198, 0.61182, 0.04925, 0.55937, 0, 0.44817, 0.0152, 0.32973, 0.10912, 0.11427, 0.29601, 0.03815, 0.44363, 0, 0.51761, 0.02558, 0.56602, 0.06324, 0.63726, 0.15396, 0.7307, 0.222, 0.81881, 0.29004, 0.95765, 0.36942, 1, 0.65293, 1, 0.89958, 0.95231, 1, 0.85886, 0.97612, 0.70134, 0.91942, 0.5091, 0.85705, 0.36226, 0.77484, 0.22876, 0.53953, 0.54648, 0.55883, 0.16361, 0.67199, 0.31013, 0.74069, 0.43192, 0.79524, 0.55751, 0.84374, 0.71165, 0.85788, 0.80108, 0.63966, 0.87149, 0.42951, 0.87627, 0.36081, 0.81919, 0.29817, 0.68408, 0.19108, 0.54707, 0.49316, 0.09996, 0.41456, 0.23372, 0.10298, 0.48747, 0.24866, 0.36883 ],
  138. "triangles": [ 26, 28, 21, 13, 29, 14, 29, 28, 14, 14, 28, 15, 13, 12, 29, 12, 30, 29, 12, 11, 30, 28, 27, 15, 15, 27, 16, 28, 29, 21, 29, 30, 21, 28, 26, 27, 27, 17, 16, 11, 31, 30, 11, 10, 31, 27, 26, 17, 17, 26, 18, 26, 25, 18, 26, 21, 25, 30, 31, 21, 31, 10, 32, 10, 9, 32, 31, 32, 21, 32, 8, 35, 32, 9, 8, 8, 7, 35, 21, 24, 25, 25, 24, 18, 32, 36, 21, 32, 35, 36, 36, 34, 21, 21, 23, 24, 23, 34, 22, 23, 21, 34, 7, 6, 35, 24, 19, 18, 36, 35, 5, 35, 6, 5, 24, 23, 19, 34, 36, 4, 23, 20, 19, 23, 0, 20, 23, 22, 0, 36, 5, 4, 34, 33, 22, 34, 4, 33, 22, 1, 0, 22, 33, 1, 4, 3, 33, 33, 2, 1, 33, 3, 2 ],
  139. "vertices": [ 2, 19, 21.55, 34.72, 0.99964, 20, -40.59, 24.02, 3.6E-4, 2, 19, 1.35, 31.28, 0.99985, 20, -58.88, 14.9, 1.5E-4, 1, 19, -12.75, 28.87, 1, 1, 19, -17.17, 18.87, 1, 1, 19, -14.94, 4.01, 1, 2, 19, -9.57, -23.89, 0.9325, 20, -53.38, -41.06, 0.0675, 2, 19, -0.51, -38.18, 0.79698, 20, -40.6, -52.13, 0.20302, 2, 19, 4.02, -45.34, 0.72905, 20, -34.2, -57.67, 0.27095, 2, 19, 16.56, -45.11, 0.67439, 20, -22.29, -53.85, 0.32561, 2, 19, 35.01, -44.78, 0.59393, 20, -4.76, -48.21, 0.40607, 2, 19, 47.86, -42.37, 0.37108, 20, 6.81, -42.2, 0.62892, 2, 19, 59.07, -41.54, 0.15633, 20, 17.29, -38.17, 0.84367, 1, 20, 32.81, -35.5, 1, 1, 20, 39.02, -29.19, 1, 1, 20, 46.13, -2.62, 1, 1, 20, 47.58, 21.76, 1, 1, 20, 40.8, 33.66, 1, 1, 20, 24.53, 35.62, 1, 2, 19, 67.62, 32.77, 0.39456, 20, 3.98, 35.43, 0.60544, 2, 19, 51.54, 35.59, 0.77408, 20, -12.2, 33.5, 0.22592, 2, 19, 35.61, 36.06, 0.96759, 20, -27.54, 29.35, 0.03241, 1, 19, 51.44, -0.58, 1, 2, 19, 18.83, 21.78, 0.99979, 20, -39.45, 10.85, 2.1E-4, 2, 19, 37.48, 23.16, 0.98215, 20, -22.03, 17.55, 0.01785, 2, 19, 51.69, 22.22, 0.85294, 20, -8.19, 20.74, 0.14706, 2, 19, 65.5, 19.9, 0.54803, 20, 5.68, 22.5, 0.45197, 1, 20, 22.23, 22.94, 1, 1, 20, 31.48, 21.88, 1, 1, 20, 33.01, -0.44, 1, 1, 20, 28.21, -20.26, 1, 1, 20, 20.81, -25.18, 1, 2, 19, 51.15, -27.95, 0.55216, 20, 5.8, -27.44, 0.44784, 2, 19, 33.65, -29.34, 0.68908, 20, -10.52, -33.83, 0.31092, 2, 19, 0.75, 18.85, 0.9999, 20, -55.87, 2.83, 1.0E-4, 2, 19, 1.87, 4.41, 0.97523, 20, -50.62, -10.67, 0.02477, 2, 19, 13.97, -34.43, 0.75124, 20, -27.85, -44.37, 0.24876, 2, 19, 8.31, -16.27, 0.85597, 20, -38.5, -28.61, 0.14403 ],
  140. "hull": 21,
  141. "edges": [ 4, 6, 6, 8, 8, 10, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 0, 40, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 10, 12, 12, 14, 0, 2, 2, 4, 6, 66, 66, 44, 2, 66, 66, 68, 12, 70, 70, 64, 14, 16, 16, 18, 70, 16, 68, 72, 72, 70 ],
  142. "width": 97,
  143. "height": 103
  144. }
  145. },
  146. "zuoshou": {
  147. "zuoshou": {
  148. "type": "mesh",
  149. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  150. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  151. "vertices": [ 1, 12, 5.05, 54.12, 1, 1, 12, 82.11, 20.68, 1, 1, 12, 44.29, -66.47, 1, 1, 12, -32.77, -33.03, 1 ],
  152. "hull": 4,
  153. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  154. "width": 84,
  155. "height": 95
  156. }
  157. },
  158. "fazhang": {
  159. "fazhang": {
  160. "type": "mesh",
  161. "uvs": [ 0.95098, 0.99093, 0.04902, 0.99093, 0.04902, 0.00907, 0.95098, 0.00907 ],
  162. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  163. "vertices": [ 1, 23, -182.2, -4.43, 1, 1, 23, -138.05, 174.19, 1, 1, 23, 282.3, 70.3, 1, 1, 23, 238.15, -108.33, 1 ],
  164. "hull": 4,
  165. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  166. "width": 204,
  167. "height": 441
  168. }
  169. },
  170. "zuoyan": {
  171. "zuoyan": {
  172. "type": "mesh",
  173. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  174. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  175. "vertices": [ 1, 4, 23.9, -17.98, 1, 1, 4, 20.73, 35.93, 1, 1, 4, 57.67, 38.09, 1, 1, 4, 60.84, -15.81, 1 ],
  176. "hull": 4,
  177. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  178. "width": 54,
  179. "height": 37
  180. }
  181. },
  182. "youshouhuan": {
  183. "youshouhuan": {
  184. "type": "mesh",
  185. "uvs": [ 1, 0.23297, 0.77007, 0, 0.53944, 0, 0.25729, 0.11124, 0, 0.48185, 0, 0.7226, 0.13216, 1, 0.33826, 1, 0.44376, 0.74965, 0.76026, 0.4575, 1, 0.47373 ],
  186. "triangles": [ 9, 0, 10, 9, 2, 1, 8, 5, 4, 9, 8, 3, 9, 3, 2, 8, 4, 3, 6, 5, 8, 7, 6, 8, 9, 1, 0 ],
  187. "vertices": [ 2, 9, 51.3, 46.36, 0.664, 21, 3.86, 45.99, 0.336, 1, 9, 25.17, 40.15, 1, 1, 9, 14.06, 23.72, 1, 1, 9, 7.67, -1.25, 1, 2, 9, 19.23, -35.77, 1, 21, -31.45, -34.79, 0, 2, 9, 34.78, -46.28, 1, 21, -16.33, -45.92, 0, 2, 9, 59.07, -48.98, 0.664, 21, 7.84, -49.58, 0.336, 2, 9, 69, -34.3, 0.592, 21, 18.34, -35.3, 0.408, 2, 9, 57.9, -15.84, 0.56411, 21, 7.98, -16.43, 0.43589, 2, 9, 54.26, 19.47, 0.69031, 21, 5.75, 19, 0.30969, 2, 9, 66.86, 35.84, 0.624, 21, 18.99, 34.86, 0.376 ],
  188. "hull": 11,
  189. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 0, 20 ],
  190. "width": 86,
  191. "height": 78
  192. }
  193. },
  194. "toufa": {
  195. "toufa": {
  196. "type": "mesh",
  197. "uvs": [ 0.75719, 0, 0.63651, 0, 0.53148, 0.05134, 0.42197, 0.14183, 0.32587, 0.24438, 0.24542, 0.34694, 0.18955, 0.45252, 0.14165, 0.56639, 0.11042, 0.69506, 0.08247, 0.81265, 0.03645, 0.89695, 0, 0.95464, 0.02001, 1, 0.09234, 1, 0.17781, 0.99013, 0.26328, 0.97682, 0.37177, 0.94133, 0.47477, 0.88744, 0.57996, 0.82089, 0.66379, 0.75211, 0.76899, 0.68334, 0.88405, 0.63675, 0.98268, 0.62343, 1, 0.51251, 1, 0.31234, 0.96788, 0.21251, 0.90707, 0.10601, 0.82488, 0.0328, 0.36363, 0.30693, 0.2798, 0.41488, 0.23258, 0.50202, 0.19693, 0.61126, 0.16514, 0.74132, 0.12563, 0.85706, 0.09287, 0.92599, 0.15454, 0.92469, 0.25186, 0.89738, 0.34243, 0.86747, 0.44746, 0.81155, 0.55538, 0.74522, 0.6386, 0.67629, 0.74748, 0.61516, 0.88143, 0.56704, 0.44879, 0.21589, 0.55864, 0.11835, 0.63765, 0.06763, 0.73786, 0.06633, 0.7899, 0.10925, 0.85831, 0.17948, 0.90649, 0.26402, 0.92769, 0.33555, 0.93443, 0.49551, 0.93347, 0.56054 ],
  198. "triangles": [ 34, 10, 9, 35, 33, 36, 33, 34, 9, 34, 33, 35, 14, 35, 36, 15, 14, 36, 12, 11, 10, 12, 10, 34, 13, 12, 34, 13, 34, 35, 13, 35, 14, 33, 9, 32, 36, 33, 32, 8, 7, 31, 32, 8, 31, 37, 32, 31, 9, 8, 32, 38, 37, 31, 37, 36, 32, 16, 37, 38, 16, 38, 17, 15, 36, 37, 15, 37, 16, 28, 4, 43, 5, 4, 28, 29, 5, 28, 6, 5, 29, 30, 6, 29, 7, 6, 30, 31, 7, 30, 29, 28, 39, 38, 30, 29, 38, 31, 30, 29, 39, 38, 28, 43, 40, 39, 28, 40, 17, 38, 18, 3, 2, 44, 46, 1, 0, 45, 1, 46, 2, 1, 45, 47, 0, 27, 48, 47, 27, 46, 0, 47, 44, 2, 45, 26, 48, 27, 48, 26, 25, 49, 48, 25, 50, 49, 25, 24, 50, 25, 51, 50, 24, 51, 24, 23, 51, 42, 50, 52, 51, 23, 49, 41, 48, 50, 41, 49, 52, 42, 51, 47, 45, 46, 41, 47, 48, 50, 42, 41, 22, 52, 23, 21, 42, 52, 21, 52, 22, 41, 42, 21, 45, 41, 44, 47, 41, 45, 40, 44, 41, 43, 44, 40, 20, 41, 21, 20, 19, 40, 20, 40, 41, 39, 40, 19, 18, 39, 19, 38, 39, 18, 43, 3, 44, 4, 3, 43 ],
  199. "vertices": [ 1, 4, 171.18, -1.34, 1, 1, 4, 169.43, 28.41, 1, 1, 4, 158.53, 53.76, 1, 3, 4, 140.41, 79.79, 0.85134, 5, -24.89, -46.71, 0.14677, 6, -88.99, -54.23, 0.00189, 3, 4, 120.29, 102.39, 0.19283, 5, 5.11, -50.67, 0.76806, 6, -58.77, -55.71, 0.03911, 4, 4, 100.38, 121.12, 0.04599, 5, 32.41, -51.87, 0.82621, 6, -31.45, -54.65, 0.12739, 24, -73.1, -64.99, 4.2E-4, 4, 4, 80.29, 133.77, 0.00899, 5, 55.89, -48.32, 0.69771, 6, -8.35, -49.17, 0.27211, 24, -50.91, -56.55, 0.02119, 4, 4, 58.79, 144.36, 6.4E-4, 5, 79.08, -42.3, 0.48406, 6, 14.27, -41.26, 0.41632, 24, -29.52, -45.76, 0.09898, 3, 5, 101.36, -31.44, 0.2668, 6, 35.57, -28.6, 0.46363, 24, -10.05, -30.43, 0.26957, 3, 5, 121.61, -21.41, 0.10983, 6, 54.92, -16.93, 0.38001, 24, 7.62, -16.34, 0.51016, 3, 5, 140.59, -18.82, 0.03055, 6, 73.63, -12.79, 0.22161, 24, 25.63, -9.8, 0.74784, 4, 4, -14.19, 175.12, 0, 5, 154.44, -17.93, 0.00433, 6, 87.36, -10.76, 0.08959, 24, 38.98, -6, 0.90607, 4, 4, -22.18, 169.7, 2.4E-4, 5, 156.96, -8.61, 6.7E-4, 6, 89.09, -1.26, 0.04938, 24, 39.46, 3.65, 0.94971, 4, 4, -21.14, 151.86, 0.00255, 5, 144.52, 4.21, 0.00898, 6, 75.64, 10.49, 0.10652, 24, 24.59, 13.55, 0.88195, 4, 4, -18.1, 130.89, 0.01378, 5, 128.52, 18.11, 0.04235, 6, 58.55, 23.02, 0.22953, 24, 6.01, 23.74, 0.71434, 4, 4, -14.43, 109.96, 0.05084, 5, 112.07, 31.57, 0.11485, 6, 41.05, 35.07, 0.34454, 24, -12.91, 33.41, 0.48977, 4, 4, -6.37, 83.59, 0.13868, 5, 88.75, 46.27, 0.21046, 6, 16.59, 47.81, 0.38128, 24, -38.82, 42.85, 0.26957, 4, 4, 4.96, 58.77, 0.29379, 5, 63.96, 57.67, 0.27796, 6, -9.06, 57.12, 0.31408, 24, -65.46, 48.74, 0.11417, 4, 4, 18.65, 33.55, 0.50105, 5, 37.12, 67.84, 0.27155, 6, -36.64, 65.03, 0.19271, 24, -93.84, 52.99, 0.03469, 4, 4, 32.43, 13.62, 0.71165, 5, 13.67, 73.93, 0.19527, 6, -60.51, 69.17, 0.08585, 24, -118.05, 53.99, 0.00723, 4, 4, 46.51, -11.59, 0.87208, 5, -13.46, 83.82, 0.10037, 6, -88.36, 76.79, 0.02656, 24, -146.65, 57.91, 0.001, 4, 4, 56.69, -39.46, 0.96084, 5, -39.36, 98.28, 0.03374, 6, -115.38, 89.06, 0.00537, 24, -175.04, 66.56, 5.0E-5, 3, 4, 60.55, -63.63, 0.99342, 5, -58.08, 114.07, 0.00597, 6, -135.33, 103.25, 6.0E-4, 1, 4, 81.07, -66.71, 1, 1, 4, 117.63, -64.57, 1, 1, 4, 135.41, -55.58, 1, 1, 4, 153.98, -39.44, 1, 1, 4, 166.17, -18.39, 1, 4, 4, 109.41, 92.41, 0.25619, 5, 6.83, -36.01, 0.66983, 6, -58.26, -40.96, 0.07163, 24, -101.47, -54.91, 0.00236, 4, 4, 88.47, 111.92, 0.10849, 5, 35.42, -37.11, 0.70912, 6, -29.67, -39.7, 0.16794, 24, -73.28, -49.94, 0.01446, 4, 4, 71.87, 122.62, 0.05654, 5, 54.99, -34.38, 0.59976, 6, -10.4, -35.36, 0.29193, 24, -54.74, -43.12, 0.05177, 4, 4, 51.4, 130.24, 0.03203, 5, 75.47, -26.78, 0.42804, 6, 9.38, -26.09, 0.39255, 24, -36.33, -31.36, 0.14738, 4, 4, 27.18, 136.69, 0.01665, 5, 98.02, -15.84, 0.25582, 6, 30.95, -13.33, 0.41758, 24, -16.61, -15.9, 0.30994, 4, 4, 5.46, 145.19, 0.00737, 5, 120.02, -8.1, 0.1245, 6, 52.24, -3.8, 0.3737, 24, 3.25, -3.67, 0.49444, 4, 4, -7.61, 152.53, 0.00575, 5, 134.71, -5.12, 0.06727, 6, 66.63, 0.38, 0.3297, 24, 16.98, 2.35, 0.59728, 4, 4, -6.48, 137.33, 0.01651, 5, 123.93, 5.65, 0.0847, 6, 55, 10.22, 0.34573, 24, 4.16, 10.59, 0.55306, 4, 4, -0.08, 113.63, 0.05228, 5, 103.6, 19.42, 0.16714, 6, 33.61, 22.27, 0.38814, 24, -18.62, 19.74, 0.39244, 4, 4, 6.7, 91.62, 0.138, 5, 84.09, 31.66, 0.26082, 6, 13.16, 32.86, 0.38509, 24, -40.27, 27.58, 0.21609, 4, 4, 18.43, 66.32, 0.28079, 5, 58.69, 43.16, 0.32239, 6, -13.11, 42.22, 0.3043, 24, -67.54, 33.44, 0.09251, 4, 4, 32.11, 40.42, 0.47424, 5, 31.41, 53.83, 0.3025, 6, -41.18, 50.61, 0.18959, 24, -96.46, 38.1, 0.03367, 4, 4, 45.91, 20.64, 0.66808, 5, 8.05, 59.8, 0.22625, 6, -64.96, 54.63, 0.09499, 24, -120.56, 38.99, 0.01068, 4, 4, 58.66, -5.55, 0.83057, 5, -18.71, 71.32, 0.12689, 6, -92.57, 63.9, 0.03859, 24, -149.14, 44.58, 0.00394, 4, 4, 69.39, -38.06, 0.92881, 5, -48.07, 88.93, 0.05662, 6, -123.28, 79.03, 0.01331, 24, -181.57, 55.58, 0.00126, 4, 4, 127.27, 72.38, 0.90242, 5, -19.78, -32.51, 0.09336, 6, -85.07, -39.67, 0.00412, 24, -128.21, -57.12, 1.0E-4, 1, 4, 146.68, 46.34, 1, 1, 4, 157.09, 27.41, 1, 1, 4, 158.78, 2.71, 1, 4, 4, 151.69, -10.58, 0.99615, 5, -92.45, 14.37, 0.00371, 6, -161.36, 1.06, 1.3E-4, 24, -209.16, -26.69, 1.0E-5, 4, 4, 139.85, -28.2, 0.98943, 5, -95, 35.45, 0.01017, 6, -165.63, 21.85, 3.7E-4, 24, -216.11, -6.63, 3.0E-5, 4, 4, 125.11, -40.99, 0.9811, 5, -92.18, 54.76, 0.01804, 6, -164.42, 41.33, 8.0E-4, 24, -217.44, 12.84, 6.0E-5, 4, 4, 112.35, -46.98, 0.97919, 5, -86.43, 67.63, 0.01958, 6, -159.75, 54.63, 0.00115, 24, -214.55, 26.64, 9.0E-5, 4, 4, 83.22, -50.36, 0.98071, 5, -66.58, 89.21, 0.0175, 6, -141.75, 77.78, 0.00166, 24, -199.72, 51.93, 1.3E-4, 4, 4, 71.33, -50.82, 0.97339, 5, -57.87, 97.33, 0.02249, 6, -133.75, 86.58, 0.0038, 24, -192.92, 61.71, 3.1E-4 ],
  200. "hull": 28,
  201. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 0, 54, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 56, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 84 ],
  202. "width": 247,
  203. "height": 183
  204. }
  205. },
  206. "kuzi": {
  207. "kuzi": {
  208. "type": "mesh",
  209. "uvs": [ 0.23584, 0.11136, 0.15165, 0, 0.05195, 0, 0, 0.17809, 0, 0.43284, 0.10291, 0.42374, 0.27572, 0.51473, 0.3577, 0.69366, 0.37542, 0.90292, 0.38872, 1, 0.6568, 1, 0.68117, 0.87866, 0.73435, 0.6785, 0.80524, 0.49046, 0.90938, 0.40555, 1, 0.39948, 1, 0.25997, 0.92488, 0.03251, 0.8562, 0.02948, 0.78309, 0.11743, 0.60584, 0.17202, 0.47512, 0.16899, 0.34662, 0.14473, 0.11977, 0.28556 ],
  210. "triangles": [ 8, 7, 11, 10, 9, 8, 11, 10, 8, 11, 7, 12, 7, 20, 12, 1, 3, 2, 23, 1, 0, 23, 3, 1, 17, 19, 18, 19, 17, 16, 15, 14, 16, 14, 19, 16, 23, 4, 3, 5, 4, 23, 13, 19, 14, 20, 19, 13, 22, 23, 0, 6, 23, 22, 5, 23, 6, 12, 20, 13, 21, 6, 22, 7, 6, 21, 7, 21, 20 ],
  211. "vertices": [ 2, 1, -44.14, 24.29, 0.888, 2, 9.24, 43.12, 0.112, 2, 1, -58.2, 37.88, 0.888, 2, 23.36, 56.65, 0.112, 2, 1, -74.85, 37.88, 0.92533, 2, 24, 73.29, 0.07467, 2, 1, -83.53, 16.15, 0.96267, 2, 2.62, 82.79, 0.03733, 1, 1, -83.53, -14.93, 1, 3, 1, -66.34, -13.82, 0.96622, 15, 16.43, -70.8, 0.02708, 22, -32.39, -70.97, 0.0067, 3, 1, -37.48, -24.92, 0.65364, 15, 27.03, -41.75, 0.2248, 22, -21.79, -41.92, 0.12156, 3, 1, -23.79, -46.75, 0.32061, 15, 48.62, -27.69, 0.33185, 22, -0.2, -27.86, 0.34754, 3, 1, -20.83, -72.28, 0.02136, 15, 74.1, -24.29, 0.3407, 22, 25.28, -24.46, 0.63794, 3, 1, -18.61, -84.12, 6.1E-4, 15, 85.9, -21.86, 0.18214, 22, 37.08, -22.04, 0.81725, 3, 1, 26.16, -84.12, 3.0E-4, 15, 85.13, 22.9, 0.18535, 22, 36.31, 22.73, 0.81434, 3, 1, 30.23, -69.32, 0.02044, 15, 70.26, 26.71, 0.35034, 22, 21.44, 26.54, 0.62921, 3, 1, 39.11, -44.9, 0.16611, 15, 45.69, 35.17, 0.49561, 22, -3.13, 35, 0.33829, 3, 1, 50.95, -21.96, 0.49944, 15, 22.55, 46.62, 0.38534, 22, -26.27, 46.44, 0.11522, 3, 1, 68.34, -11.6, 0.81233, 15, 11.89, 63.83, 0.18441, 22, -36.93, 63.65, 0.00326, 1, 1, 83.47, -10.86, 1, 2, 1, 83.47, 6.16, 0.96267, 2, -13.78, -83.7, 0.03733, 2, 1, 70.93, 33.91, 0.92533, 2, 14.43, -72.23, 0.07467, 2, 1, 59.46, 34.28, 0.888, 2, 15.24, -60.79, 0.112, 2, 1, 47.25, 23.55, 0.888, 2, 4.99, -48.17, 0.112, 2, 1, 17.65, 16.89, 0.888, 2, -0.53, -18.34, 0.112, 2, 1, -4.18, 17.26, 0.888, 2, 0.68, 3.46, 0.112, 2, 1, -25.64, 20.22, 0.888, 2, 4.46, 24.79, 0.112, 2, 1, -63.52, 3.04, 0.96826, 2, -11.25, 63.31, 0.03174 ],
  212. "hull": 23,
  213. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 0, 44 ],
  214. "width": 167,
  215. "height": 122
  216. }
  217. },
  218. "youshou": {
  219. "youshou": {
  220. "type": "mesh",
  221. "uvs": [ 0.54937, 1.0E-5, 0.26916, 0.11254, 0, 0.45222, 0, 0.68408, 0.14108, 0.90514, 0.36275, 1, 0.69242, 1, 1, 0.65172, 1, 0.31204, 0.83564, 0.04783, 0.34667, 0.29973 ],
  222. "triangles": [ 10, 1, 0, 9, 10, 0, 3, 2, 10, 4, 3, 10, 10, 9, 8, 7, 6, 8, 6, 10, 8, 5, 4, 10, 6, 5, 10, 2, 1, 10 ],
  223. "vertices": [ 2, 9, 43.26, 25.84, 0.00262, 21, -4.99, 25.81, 0.99738, 2, 9, 37.45, 2.37, 0.91604, 21, -11.73, 2.59, 0.08396, 2, 9, 46.07, -29.77, 0.72142, 21, -4.39, -29.87, 0.27858, 2, 9, 60.28, -39.38, 0.4986, 21, 9.43, -40.03, 0.5014, 1, 21, 29.38, -40.52, 1, 1, 21, 45.67, -30.21, 1, 1, 21, 61.49, -8.7, 1, 1, 21, 55.49, 26.64, 1, 1, 21, 35.24, 41.53, 1, 1, 21, 11.6, 42.39, 1, 2, 9, 52.44, -0.18, 0.03105, 21, 3.15, -0.56, 0.96895 ],
  224. "hull": 10,
  225. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 0, 18 ],
  226. "width": 81,
  227. "height": 74
  228. }
  229. },
  230. "zuobi": {
  231. "zuobi": {
  232. "type": "mesh",
  233. "uvs": [ 0.59081, 0, 0.45987, 0.05177, 0.36634, 0.10585, 0.30087, 0.1329, 0.17616, 0.11938, 0, 0.21402, 0.07328, 0.40601, 0.16681, 0.67101, 0.22916, 0.97927, 0.36322, 1, 0.57834, 0.92519, 0.75916, 0.76565, 0.91504, 0.6656, 1, 0.47902, 1, 0.36274, 0.90257, 0.19509, 0.7654, 0.068, 0.65316, 0, 0.56158, 0.4019, 0.45127, 0.22788, 0.60857, 0.67769 ],
  234. "triangles": [ 6, 5, 4, 18, 14, 13, 6, 18, 7, 19, 6, 3, 18, 6, 19, 18, 13, 20, 12, 20, 13, 7, 18, 20, 11, 20, 12, 20, 9, 7, 10, 20, 11, 9, 8, 7, 20, 10, 9, 6, 4, 3, 19, 2, 1, 0, 19, 1, 0, 17, 16, 16, 19, 0, 18, 15, 14, 3, 2, 19, 15, 18, 16, 16, 18, 19 ],
  235. "vertices": [ 1, 10, 10.87, -27.18, 1, 2, 10, 22.82, -29.8, 0.98833, 11, -11.51, -32.36, 0.01167, 2, 10, 32.36, -30.32, 0.9005, 11, -2, -31.41, 0.0995, 2, 10, 38.4, -31.54, 0.5218, 11, 4.15, -31.68, 0.4782, 2, 10, 46.09, -38.96, 0.57507, 11, 12.89, -37.82, 0.42493, 2, 10, 80.81, -46.76, 0.40928, 11, 48.4, -40.18, 0.59072, 2, 10, 72.21, -23.1, 0.17952, 11, 36.26, -18.13, 0.82048, 1, 11, 41.63, 7.23, 1, 1, 11, 56.56, 26.3, 1, 1, 11, 41.53, 43.19, 1, 1, 11, 19.76, 47.96, 1, 2, 10, 44.42, 41.44, 0.03306, 11, -1.15, 41.36, 0.96694, 2, 10, 27.94, 41.54, 0.19184, 11, -17.45, 38.92, 0.80816, 2, 10, 11.19, 31.24, 0.53927, 11, -32.41, 26.16, 0.46073, 2, 10, 4.36, 22.12, 0.74178, 11, -37.76, 16.1, 0.25822, 2, 10, 1.13, 4.01, 0.9858, 11, -38.15, -2.3, 0.0142, 1, 10, 2.99, -12.95, 1, 1, 10, 6.63, -24, 1, 2, 10, 36.27, 2.95, 0.04815, 11, -3.27, 2.07, 0.95185, 2, 10, 33.58, -16.32, 0.49396, 11, -2.96, -17.38, 0.50604, 2, 10, 49.9, 26.41, 0.03203, 11, 6.58, 27.35, 0.96797 ],
  236. "hull": 18,
  237. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 0, 34 ],
  238. "width": 85,
  239. "height": 98
  240. }
  241. },
  242. "skill_effects2": {
  243. "s2_001": { "x": 0.5, "y": 0.5, "width": 67, "height": 69 },
  244. "s2_002": { "x": 0.5, "y": 0.5, "width": 63, "height": 69 },
  245. "s2_003": { "x": 0.5, "y": 0.5, "width": 59, "height": 69 },
  246. "s2_004": { "x": 0.5, "y": 0.5, "width": 55, "height": 69 },
  247. "s2_005": { "x": 0.5, "y": 0.5, "width": 51, "height": 69 },
  248. "s2_006": { "x": 0.5, "y": 0.5, "width": 49, "height": 69 },
  249. "s2_007": { "y": 0.5, "width": 48, "height": 69 },
  250. "s2_008": { "y": 0.5, "width": 48, "height": 69 },
  251. "s2_009": { "y": 0.5, "width": 48, "height": 69 },
  252. "s2_010": { "y": 0.5, "width": 48, "height": 69 },
  253. "s2_011": { "y": 0.5, "width": 48, "height": 69 },
  254. "s2_012": { "y": 0.5, "width": 50, "height": 69 },
  255. "s2_013": { "x": 0.5, "width": 51, "height": 68 },
  256. "s2_014": { "width": 50, "height": 68 },
  257. "s2_015": { "width": 52, "height": 68 },
  258. "s2_016": { "x": 0.5, "width": 53, "height": 68 },
  259. "s2_017": { "width": 52, "height": 58 }
  260. },
  261. "shadow": {
  262. "shadow": { "y": 0.5, "width": 138, "height": 89 }
  263. },
  264. "shangshen": {
  265. "shangshen": {
  266. "type": "mesh",
  267. "uvs": [ 0.4189, 0.03382, 0.26563, 0, 0.10826, 0, 0, 0.06539, 0, 0.24432, 0, 0.43956, 0.07148, 0.60796, 0.15527, 0.7711, 0.22475, 0.9395, 0.36986, 0.97107, 0.55583, 1, 0.68458, 1, 0.81538, 0.90792, 0.87056, 0.81583, 0.93596, 0.61848, 0.96866, 0.42904, 1, 0.26853, 1, 0.11329, 0.89304, 0.02119, 0.69071, 0.04487, 0.49861, 0.44482, 0.52109, 0.88687, 0.74181, 0.4343, 0.71728, 0.79215, 0.24519, 0.43693, 0.28402, 0.80004 ],
  268. "triangles": [ 4, 3, 2, 18, 17, 16, 16, 22, 18, 22, 19, 18, 15, 22, 16, 24, 2, 1, 24, 1, 0, 4, 2, 24, 5, 4, 24, 20, 0, 19, 20, 19, 22, 24, 0, 20, 6, 5, 24, 14, 22, 15, 7, 6, 24, 23, 20, 22, 23, 22, 14, 25, 24, 20, 21, 25, 20, 7, 24, 25, 13, 23, 14, 23, 21, 20, 8, 7, 25, 9, 25, 21, 23, 11, 21, 8, 25, 9, 9, 21, 10, 11, 10, 21, 11, 23, 12, 12, 23, 13 ],
  269. "vertices": [ 2, 2, 135.44, 15.34, 0.01256, 3, 64.32, 17.83, 0.98744, 2, 2, 142.06, 46.69, 0.08624, 3, 69.73, 49.4, 0.91376, 2, 2, 143.31, 79.08, 0.15953, 3, 69.73, 81.82, 0.84047, 2, 2, 133.71, 101.77, 0.19827, 3, 59.26, 104.12, 0.80173, 2, 2, 105.1, 102.87, 0.29072, 3, 30.64, 104.12, 0.70928, 2, 2, 73.89, 104.07, 0.46428, 3, -0.6, 104.12, 0.53572, 3, 1, -92.8, 59.61, 9.0E-5, 2, 46.4, 90.39, 0.66294, 3, -27.55, 89.4, 0.33697, 3, 1, -75.54, 33.5, 0.01135, 2, 19.65, 74.15, 0.86713, 3, -53.65, 72.14, 0.12153, 3, 1, -61.23, 6.56, 0.89745, 2, -7.82, 60.88, 0.10008, 3, -80.59, 57.82, 0.00247, 3, 1, -31.34, 1.51, 0.88366, 2, -14.02, 31.2, 0.11622, 3, -85.64, 27.93, 1.2E-4, 2, 1, 6.97, -3.12, 0.94139, 2, -20.12, -6.9, 0.05861, 3, 1, 33.5, -3.12, 0.90532, 2, -21.14, -33.41, 0.09448, 3, -90.27, -36.9, 2.0E-4, 3, 1, 60.44, 11.61, 0.88206, 2, -7.45, -60.9, 0.11252, 3, -75.54, -63.85, 0.00541, 3, 1, 71.81, 26.35, 0.89199, 2, 6.84, -72.82, 0.09679, 3, -60.81, -75.21, 0.01122, 3, 1, 85.28, 57.92, 0.09012, 2, 37.87, -87.5, 0.62639, 3, -29.23, -88.69, 0.28349, 3, 1, 92.02, 88.23, 0.03023, 2, 67.9, -95.39, 0.41828, 3, 1.08, -95.42, 0.55149, 3, 1, 98.47, 113.91, 0.00842, 2, 93.31, -102.83, 0.25584, 3, 26.76, -101.88, 0.73574, 3, 1, 98.47, 138.75, 0.00184, 2, 118.13, -103.79, 0.1808, 3, 51.6, -101.88, 0.81735, 3, 1, 76.44, 153.49, 1.1E-4, 2, 133.71, -82.33, 0.13621, 3, 66.34, -79.84, 0.86368, 2, 2, 131.52, -40.54, 0.0425, 3, 62.55, -38.17, 0.9575, 2, 2, 69.1, 1.46, 0.82016, 3, -1.44, 1.41, 0.17984, 2, 1, -0.18, 14.98, 0.0655, 2, -1.76, -0.45, 0.9345, 3, 1, 45.29, 87.39, 0.02154, 2, 68.85, -48.66, 0.48976, 3, 0.24, -48.69, 0.48869, 3, 1, 40.23, 30.14, 0.22683, 2, 11.83, -41.41, 0.74273, 3, -57.02, -43.64, 0.03044, 2, 2, 72.37, 53.58, 0.52545, 3, -0.18, 53.61, 0.47455, 3, 1, -49.02, 28.87, 0.0315, 2, 14, 47.82, 0.92808, 3, -58.28, 45.61, 0.04042 ],
  270. "hull": 20,
  271. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 0, 38 ],
  272. "width": 206,
  273. "height": 160
  274. }
  275. },
  276. "er": {
  277. "er": {
  278. "type": "mesh",
  279. "uvs": [ 0.47976, 0, 0.14049, 0, 0, 0.15098, 0, 0.41659, 0.07758, 0.64218, 0.31037, 0.88233, 0.52429, 0.98785, 0.78853, 1, 0.82628, 0.78773, 1, 0.50392, 1, 0.37293, 0.80741, 0.27105, 0.65012, 0.12551 ],
  280. "triangles": [ 2, 1, 0, 3, 11, 4, 7, 6, 8, 6, 5, 8, 8, 5, 9, 4, 9, 5, 11, 10, 9, 11, 9, 4, 12, 11, 3, 2, 0, 12, 12, 3, 2 ],
  281. "vertices": [ 2, 4, 87.8, 70.89, 0.472, 7, 64.61, -13.93, 0.528, 2, 4, 86.84, 87.15, 0.472, 7, 71.61, 0.77, 0.528, 2, 4, 73.94, 93.14, 0.472, 7, 63.2, 12.25, 0.528, 2, 4, 51.93, 91.85, 0.58311, 7, 43.3, 21.73, 0.41689, 2, 4, 33.46, 87.04, 0.75911, 7, 24.79, 26.42, 0.24089, 2, 4, 14.21, 74.71, 0.93511, 7, 1.99, 24.91, 0.06489, 1, 4, 6.07, 63.95, 1, 1, 4, 5.81, 51.23, 1, 1, 4, 23.51, 50.45, 1, 1, 4, 47.51, 43.51, 1, 2, 4, 58.36, 44.15, 0.93511, 7, 25.93, -23.16, 0.06489, 2, 4, 66.26, 53.87, 0.75911, 7, 37.54, -18.45, 0.24089, 2, 4, 77.88, 62.12, 0.58311, 7, 51.69, -16.83, 0.41689 ],
  282. "hull": 13,
  283. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 0, 24 ],
  284. "width": 48,
  285. "height": 83
  286. }
  287. },
  288. "youbi": {
  289. "youbi": {
  290. "type": "mesh",
  291. "uvs": [ 0.32314, 0, 0.15914, 0.17367, 0, 0.21877, 0, 0.41967, 0.17451, 0.66567, 0.33339, 0.90757, 0.44101, 1, 0.58964, 1, 0.74851, 0.83377, 0.99964, 0.64517, 1, 0.51397, 0.89201, 0.29257, 0.72801, 0.04657, 0.54351, 0.52217 ],
  292. "triangles": [ 13, 11, 10, 9, 13, 10, 8, 13, 9, 7, 6, 5, 8, 7, 5, 3, 2, 1, 12, 1, 0, 13, 12, 11, 13, 1, 12, 3, 1, 13, 4, 3, 13, 5, 4, 13, 5, 13, 8 ],
  293. "vertices": [ 2, 8, -2.86, 13.63, 0.99395, 9, -62.23, 16.19, 0.00605, 1, 8, 6, -8.61, 1, 1, 8, 2.99, -23.16, 1, 1, 8, 21.9, -34.61, 1, 2, 8, 53, -35.48, 0.98029, 9, -8.89, -35.64, 0.01971, 2, 8, 83, -37.3, 0.52301, 9, 20.99, -38.96, 0.47699, 2, 8, 96.61, -34.47, 0.35359, 9, 34.71, -36.81, 0.64641, 2, 8, 103.38, -23.28, 0.25782, 9, 42.04, -25.97, 0.74218, 2, 8, 94.98, -1.85, 0.02778, 9, 34.72, -4.15, 0.97222, 1, 9, 29.9, 25.78, 1, 2, 8, 76.35, 35.3, 0.0122, 9, 17.96, 33.89, 0.9878, 2, 8, 50.59, 39.79, 0.36132, 9, -7.54, 39.65, 0.63868, 2, 8, 19.97, 41.45, 0.81855, 9, -38.04, 42.85, 0.18145, 2, 8, 56.31, 0.47, 0.97589, 9, -3.78, 0.1, 0.02411 ],
  294. "hull": 13,
  295. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 0, 24 ],
  296. "width": 88,
  297. "height": 110
  298. }
  299. },
  300. "youyan": {
  301. "youyan": {
  302. "type": "mesh",
  303. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  304. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  305. "vertices": [ 1, 4, 29.53, -62.73, 1, 1, 4, 27.42, -26.79, 1, 1, 4, 59.37, -24.91, 1, 1, 4, 61.48, -60.85, 1 ],
  306. "hull": 4,
  307. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  308. "width": 36,
  309. "height": 32
  310. }
  311. },
  312. "lian": {
  313. "lian": {
  314. "type": "mesh",
  315. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  316. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  317. "vertices": [ 1, 4, -27.31, -84.1, 1, 1, 4, -35.75, 59.65, 1, 1, 4, 106, 67.98, 1, 1, 4, 114.44, -75.77, 1 ],
  318. "hull": 4,
  319. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  320. "width": 144,
  321. "height": 142
  322. }
  323. },
  324. "zuoyumao": {
  325. "zuoyumao": {
  326. "type": "mesh",
  327. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  328. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  329. "vertices": [ 1, 28, -36.55, 29.2, 1, 1, 28, 80.88, 72.04, 1, 1, 28, 117.9, -29.41, 1, 1, 28, 0.47, -72.26, 1 ],
  330. "hull": 4,
  331. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  332. "width": 125,
  333. "height": 108
  334. }
  335. },
  336. "jiao": {
  337. "jiao": {
  338. "type": "mesh",
  339. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  340. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  341. "vertices": [ 1, 4, 54.78, -134.37, 1, 1, 4, 37.3, 163.12, 1, 1, 4, 229.97, 174.43, 1, 1, 4, 247.45, -123.06, 1 ],
  342. "hull": 4,
  343. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  344. "width": 298,
  345. "height": 193
  346. }
  347. },
  348. "pifeng": {
  349. "pifeng": {
  350. "type": "mesh",
  351. "uvs": [ 0.5017, 0, 0.38869, 0, 0.35339, 0, 0.27581, 0.08696, 0.2164, 0.26279, 0.17057, 0.42492, 0.11965, 0.55736, 0.06534, 0.70807, 0, 0.85193, 0, 0.92501, 0.11626, 0.92272, 0.19431, 0.92819, 0.2792, 0.93414, 0.36469, 0.95805, 0.45063, 0.98209, 0.57963, 1, 0.75445, 1, 0.83932, 0.92044, 0.90042, 0.74461, 0.95473, 0.58476, 0.98698, 0.42263, 1, 0.24224, 1, 0.11208, 0.94656, 0.09718, 0.84441, 0.06869, 0.66279, 0.02074, 0.32889, 0.12616, 0.2663, 0.30204, 0.21902, 0.44612, 0.16338, 0.59207, 0.10497, 0.75673, 0.05629, 0.85403, 0.14252, 0.84093, 0.29273, 0.84467, 0.46102, 0.89332, 0.59731, 0.92513, 0.71414, 0.9139, 0.77534, 0.85964, 0.85044, 0.72492, 0.89564, 0.55278, 0.93737, 0.37315, 0.95406, 0.22159, 0.51284, 0.4767, 0.43432, 0.7329, 0.37954, 0.86977, 0.21804, 0.84281 ],
  352. "triangles": [ 16, 15, 36, 15, 35, 36, 35, 15, 34, 14, 13, 34, 15, 14, 34, 34, 13, 44, 44, 13, 33, 11, 45, 12, 13, 12, 33, 12, 45, 33, 10, 32, 11, 11, 32, 45, 36, 35, 43, 9, 31, 10, 9, 8, 31, 10, 31, 32, 44, 43, 34, 43, 35, 34, 44, 33, 43, 32, 31, 30, 30, 31, 7, 31, 8, 7, 43, 33, 29, 29, 33, 45, 29, 45, 30, 45, 32, 30, 30, 7, 29, 29, 28, 43, 7, 6, 29, 29, 5, 28, 29, 6, 5, 42, 37, 36, 36, 43, 42, 43, 28, 42, 42, 28, 27, 42, 27, 26, 42, 26, 0, 26, 1, 0, 42, 0, 25, 28, 5, 27, 5, 4, 27, 27, 4, 26, 4, 3, 26, 26, 2, 1, 26, 3, 2, 16, 37, 17, 16, 36, 37, 37, 42, 38, 17, 38, 18, 17, 37, 38, 19, 18, 39, 38, 42, 39, 40, 42, 25, 18, 38, 39, 40, 39, 42, 19, 39, 20, 39, 40, 20, 24, 40, 25, 20, 40, 21, 40, 41, 21, 41, 24, 23, 41, 40, 24, 41, 22, 21, 41, 23, 22 ],
  353. "vertices": [ 4, 3, 69.73, 68.18, 0.21205, 13, -22.11, -30.93, 0.77064, 14, -83.55, -41.01, 0.01644, 25, -129.28, -59.49, 8.7E-4, 4, 3, 69.73, 97.67, 0.0379, 13, -13.25, -59.07, 0.89299, 14, -71.45, -67.91, 0.05893, 25, -113.54, -84.43, 0.01019, 4, 3, 69.73, 106.89, 5.0E-5, 13, -10.48, -67.86, 0.91045, 14, -67.67, -76.32, 0.07583, 25, -108.63, -92.23, 0.01367, 3, 13, 11.69, -82.1, 0.79539, 14, -43.98, -87.87, 0.14553, 25, -83.55, -100.35, 0.05908, 3, 13, 48.89, -86.65, 0.59877, 14, -6.51, -88.02, 0.23017, 25, -46.43, -95.27, 0.17106, 3, 13, 82.48, -88.61, 0.36969, 14, 27.08, -86.03, 0.26839, 25, -13.45, -88.61, 0.36193, 3, 13, 110.98, -93.57, 0.17933, 14, 55.96, -87.61, 0.22708, 25, 15.38, -86.14, 0.59359, 3, 13, 143.12, -98.3, 0.06421, 14, 88.44, -88.54, 0.13485, 25, 47.67, -82.53, 0.80093, 3, 13, 174.87, -106.19, 0.01621, 14, 120.89, -92.65, 0.05317, 25, 80.37, -82.07, 0.93062, 3, 13, 188.39, -101.93, 0.00214, 14, 133.82, -86.84, 0.01293, 25, 92.36, -74.5, 0.98493, 3, 13, 178.85, -73.12, 1.8E-4, 14, 120.97, -59.34, 0.00494, 25, 75.8, -49.08, 0.99488, 4, 3, -110.34, 148.41, 0.00127, 13, 173.74, -53.37, 4.4E-4, 14, 113.58, -40.33, 0.00948, 25, 65.83, -31.28, 0.98881, 4, 3, -111.5, 126.25, 0.00678, 13, 168.19, -31.89, 1.7E-4, 14, 105.55, -19.65, 0.01719, 25, 54.98, -11.92, 0.97586, 4, 3, -116.14, 103.94, 0.02439, 13, 165.91, -9.21, 9.0E-5, 14, 100.63, 2.6, 0.05216, 25, 47, 9.42, 0.92337, 4, 3, -120.8, 81.51, 0.08104, 13, 163.62, 13.58, 3.0E-5, 14, 95.68, 24.97, 0.13264, 25, 38.98, 30.88, 0.78629, 3, 3, -124.27, 47.84, 0.17418, 14, 85.04, 57.1, 0.23759, 25, 23.96, 61.21, 0.58823, 3, 3, -124.27, 2.21, 0.30508, 14, 66.32, 98.72, 0.31276, 25, -0.38, 99.81, 0.38216, 3, 3, -108.84, -19.94, 0.45833, 14, 43.16, 112.59, 0.31987, 25, -25.26, 110.31, 0.22179, 4, 3, -74.73, -35.89, 0.62911, 13, 84.42, 111.72, 0, 14, 5.51, 113.14, 0.25358, 25, -62.61, 105.6, 0.11732, 4, 3, -43.72, -50.06, 0.78843, 13, 50.58, 115.92, 4.0E-5, 14, -28.58, 113.35, 0.15606, 25, -96.41, 101.04, 0.05547, 4, 3, -12.26, -58.48, 0.90897, 13, 18.05, 114.5, 1.2E-4, 14, -60.72, 108.13, 0.07197, 25, -127.5, 91.38, 0.01895, 4, 3, 22.73, -61.88, 0.97311, 13, -16.35, 107.23, 2.5E-4, 14, -94.03, 96.87, 0.02228, 25, -158.91, 75.59, 0.00436, 4, 3, 47.98, -61.88, 0.99532, 13, -40.44, 99.65, 3.7E-4, 14, -117.06, 86.52, 0.00378, 25, -180.27, 62.12, 5.3E-4, 4, 3, 50.87, -47.93, 0.9523, 13, -39, 85.47, 0.04591, 14, -113.98, 72.61, 0.00161, 25, -175.27, 48.78, 1.9E-4, 3, 3, 56.4, -21.27, 0.76719, 13, -36.27, 58.38, 0.23261, 14, -108.08, 46.03, 2.0E-4, 4, 3, 65.7, 26.13, 0.4845, 13, -30.9, 10.38, 0.51198, 14, -97.13, -1.02, 0.0035, 25, -148.31, -21.78, 1.0E-5, 4, 3, 45.25, 113.28, 5.0E-5, 13, 14.78, -66.6, 0.80153, 14, -42.73, -72.11, 0.1424, 25, -84.51, -84.58, 0.05601, 3, 13, 52.24, -71.94, 0.5967, 14, -4.91, -73.01, 0.23578, 25, -46.94, -80.19, 0.16753, 3, 13, 82.6, -75.31, 0.36557, 14, 25.64, -72.81, 0.27426, 25, -16.71, -75.72, 0.36017, 3, 13, 113.97, -80.66, 0.17361, 14, 57.42, -74.44, 0.22868, 25, 14.98, -72.89, 0.5977, 3, 13, 149.02, -85.6, 0.06078, 14, 92.81, -75.24, 0.13437, 25, 50.13, -68.75, 0.80485, 3, 13, 170.84, -92.05, 0.01472, 14, 115.23, -79.08, 0.05818, 25, 72.88, -69.42, 0.9271, 3, 13, 161.66, -71.35, 0.00285, 14, 103.69, -59.6, 0.02394, 25, 58.72, -51.74, 0.97321, 4, 3, -94.14, 122.72, 0.00669, 13, 150.57, -33.74, 8.3E-4, 14, 88.27, -23.55, 0.02866, 25, 38.42, -18.2, 0.96382, 4, 3, -103.58, 78.8, 0.08284, 13, 146.38, 10.99, 1.2E-4, 14, 78.86, 20.38, 0.15385, 25, 22.97, 23.99, 0.76318, 4, 3, -109.75, 43.22, 0.17411, 13, 141.58, 46.78, 7.0E-5, 14, 69.9, 55.36, 0.26322, 25, 9.21, 57.37, 0.5626, 4, 3, -107.57, 12.73, 0.29668, 13, 130.35, 75.21, 2.1E-4, 14, 55.41, 82.27, 0.3322, 25, -8.9, 82, 0.37092, 4, 3, -97.04, -3.24, 0.44632, 13, 115.51, 87.28, 4.1E-4, 14, 39.25, 92.52, 0.33335, 25, -26.32, 89.89, 0.21992, 4, 3, -70.91, -22.84, 0.61914, 13, 84.69, 98.13, 5.5E-4, 14, 7.38, 99.68, 0.25942, 25, -58.89, 92.53, 0.12089, 4, 3, -37.51, -34.64, 0.78713, 13, 49.29, 99.35, 4.4E-4, 14, -27.92, 96.74, 0.15644, 25, -93.43, 84.69, 0.05599, 4, 3, -2.66, -45.53, 0.9133, 13, 12.78, 99.27, 3.3E-4, 14, -64.17, 92.38, 0.06817, 25, -128.71, 75.31, 0.01819, 4, 3, 26.74, -49.89, 0.97739, 13, -16.57, 94.59, 3.1E-4, 14, -92.77, 84.29, 0.01871, 25, -155.9, 63.31, 0.00359, 3, 13, 65.23, -0.38, 0.5704, 14, -0.4, -0.43, 0.42956, 25, -52.61, -7.69, 3.0E-5, 3, 3, -72.46, 85.76, 9.5E-4, 14, 53.34, 1.26, 0.41125, 25, 0.36, 1.49, 0.58781, 4, 3, -99.01, 100.06, 0.02589, 13, 148.41, -10.66, 3.5E-4, 14, 83.42, -0.89, 0.0637, 25, 30.45, 3.56, 0.91006, 4, 3, -93.78, 142.21, 0.00127, 13, 156.09, -52.44, 0.00112, 14, 95.93, -41.47, 0.01773, 25, 48.51, -34.88, 0.97988 ],
  354. "hull": 26,
  355. "edges": [ 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 48, 50, 0, 50, 0, 2, 2, 4, 2, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 44, 46, 46, 48, 82, 46, 66, 88, 88, 68, 24, 26, 26, 28, 88, 26, 64, 90, 90, 66, 20, 22, 22, 24, 90, 22 ],
  356. "width": 261,
  357. "height": 194
  358. }
  359. },
  360. "zuotui": {
  361. "zuotui": {
  362. "type": "mesh",
  363. "uvs": [ 0.39087, 0, 0.32901, 0.07737, 0.26279, 0.16019, 0.17166, 0.32946, 0.09531, 0.50599, 0.03866, 0.67042, 0.00172, 0.88322, 0.07561, 0.98721, 0.34161, 1, 0.6347, 1, 0.68396, 0.94126, 0.73322, 0.79617, 0.82189, 0.66075, 0.91055, 0.53984, 0.94101, 0.51679, 1, 0.47213, 0.96474, 0.33913, 0.75046, 0.15777, 0.54603, 0.03202, 0.36131, 0.23999, 0.27757, 0.39475, 0.19629, 0.56161, 0.13226, 0.71395, 0.13226, 0.83728, 0.33914, 0.89048, 0.53618, 0.87597, 0.61253, 0.7599, 0.72583, 0.5737, 0.86622, 0.43344, 0.44512, 0.14564 ],
  364. "triangles": [ 21, 4, 20, 5, 4, 21, 22, 5, 21, 11, 26, 27, 21, 20, 26, 25, 22, 21, 22, 24, 23, 21, 26, 25, 23, 6, 5, 23, 5, 22, 25, 24, 22, 10, 26, 11, 25, 26, 10, 7, 6, 23, 8, 24, 25, 23, 24, 8, 7, 23, 8, 9, 25, 10, 8, 25, 9, 29, 0, 18, 1, 0, 29, 19, 1, 29, 2, 1, 19, 3, 2, 19, 20, 3, 19, 28, 17, 16, 29, 18, 17, 28, 29, 17, 28, 16, 15, 4, 3, 20, 14, 28, 15, 13, 28, 14, 27, 29, 28, 27, 28, 13, 19, 29, 27, 20, 19, 27, 12, 27, 13, 26, 20, 27, 12, 11, 27 ],
  365. "vertices": [ 2, 17, -19.42, -32.28, 0.98775, 18, -74.95, -22.89, 0.01225, 2, 17, 1.28, -34.52, 0.94733, 18, -56.23, -27.56, 0.05267, 2, 17, 23.44, -36.92, 0.84086, 18, -36.2, -32.57, 0.15914, 2, 17, 46.19, -36.81, 0.65457, 18, -15.29, -35.14, 0.34543, 2, 17, 68.89, -34.91, 0.42427, 18, 5.79, -35.95, 0.57573, 2, 17, 89.23, -31.77, 0.21569, 18, 24.87, -35.23, 0.78431, 2, 17, 113.56, -24.23, 0.08236, 18, 48.17, -30.64, 0.91764, 2, 17, 120.38, -11.8, 0.02852, 18, 56.02, -19.11, 0.97148, 2, 17, 107.07, 14.19, 0.0366, 18, 47.12, 8.24, 0.9634, 2, 17, 90.93, 42.09, 0.09776, 18, 35.87, 37.82, 0.90224, 2, 17, 82.07, 43.73, 0.22387, 18, 27.94, 40.5, 0.77613, 2, 17, 64.15, 40.89, 0.4111, 18, 11.13, 39.79, 0.5889, 2, 17, 45.08, 42.3, 0.62224, 18, -6.2, 43.45, 0.37776, 2, 17, 26.93, 43.87, 0.80083, 18, -22.67, 47.16, 0.19917, 2, 17, 16.57, 46.04, 0.91284, 18, -31.9, 50.53, 0.08716, 2, 17, -3.51, 50.24, 0.96229, 18, -49.8, 57.07, 0.03771, 2, 17, -15.5, 39.97, 0.96423, 18, -62.12, 48.31, 0.03577, 2, 17, -22.7, 10.15, 0.98904, 18, -72.54, 19.58, 0.01096, 2, 17, -24.61, -15.84, 0.98778, 18, -77.62, -5.97, 0.01222, 2, 17, 26.37, -23.4, 0.83142, 18, -31.77, -19.5, 0.16858, 2, 17, 47.2, -23.34, 0.63893, 18, -12.65, -21.9, 0.36107, 2, 17, 69.15, -22.41, 0.4034, 18, 7.63, -23.58, 0.5966, 2, 17, 88.64, -20.6, 0.19741, 18, 25.75, -24.08, 0.80259, 2, 17, 101.56, -14.19, 0.0833, 18, 38.43, -19.26, 0.9167, 2, 17, 95.74, 8.27, 0.08416, 18, 35.96, 3.7, 0.91584, 2, 17, 83.36, 26.27, 0.19751, 18, 26.9, 23.03, 0.80249, 2, 17, 67, 27.52, 0.40387, 18, 12.03, 26.19, 0.59613, 2, 17, 41.26, 28.63, 0.65294, 18, -11.46, 30.35, 0.34706, 2, 17, 16.16, 32.81, 0.89032, 18, -33.97, 37.46, 0.10968, 2, 17, 3.24, -19.97, 0.93485, 18, -52.57, -13.36, 0.06515 ],
  366. "hull": 19,
  367. "edges": [ 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 30, 32, 32, 34, 34, 36, 0, 36, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 32, 0, 2, 2, 4, 36, 58, 58, 38, 58, 56, 26, 28, 28, 30, 56, 28 ],
  368. "width": 108,
  369. "height": 110
  370. }
  371. },
  372. "weijin": {
  373. "weijin": {
  374. "type": "mesh",
  375. "uvs": [ 0.44709, 0.17607, 0.32164, 0, 0.23403, 0, 0.11256, 0.08036, 0, 0.21708, 0, 0.31962, 0.07671, 0.36747, 0.18225, 0.51102, 0.26589, 0.69901, 0.37541, 0.86648, 0.50278, 0.9789, 0.61827, 1, 0.75368, 0.98232, 0.86718, 0.90029, 0.95281, 0.77383, 0.99861, 0.53458, 1, 0.35685, 0.99463, 0.21329, 0.87316, 0.1005, 0.77758, 0.05607, 0.68797, 0.18595, 0.59239, 0.25773 ],
  376. "triangles": [ 6, 5, 4, 3, 6, 4, 7, 3, 2, 6, 3, 7, 17, 16, 18, 7, 1, 0, 1, 7, 2, 8, 7, 0, 18, 16, 19, 15, 14, 16, 9, 8, 0, 9, 0, 21, 19, 14, 20, 16, 14, 19, 13, 20, 14, 21, 20, 13, 10, 9, 21, 10, 21, 11, 13, 12, 21, 12, 11, 21 ],
  377. "vertices": [ 1, 3, 77.13, 13.29, 1, 1, 3, 100.73, 42.14, 1, 1, 3, 100.73, 62.3, 1, 1, 3, 89.96, 90.23, 1, 1, 3, 71.64, 116.12, 1, 1, 3, 57.9, 116.12, 1, 1, 3, 51.49, 98.48, 1, 2, 3, 32.25, 74.2, 0.94667, 27, -24.68, -106.1, 0.05333, 2, 3, 7.06, 54.97, 0.89333, 27, 1.74, -88.59, 0.10667, 2, 3, -15.38, 29.78, 0.84, 27, 25.82, -64.95, 0.16, 2, 3, -30.45, 0.48, 0.84, 27, 42.81, -36.73, 0.16, 2, 3, -33.27, -26.08, 0.84, 27, 47.4, -10.42, 0.16, 2, 3, -30.9, -57.22, 0.84, 27, 47.12, 20.82, 0.16, 2, 3, -19.91, -83.33, 0.84, 27, 37.9, 47.6, 0.16, 2, 3, -2.97, -103.02, 0.89333, 27, 22.31, 68.38, 0.10667, 2, 3, 29.09, -113.56, 0.94667, 27, -8.98, 81.03, 0.05333, 1, 3, 52.91, -113.88, 1, 1, 3, 72.15, -112.64, 1, 1, 3, 87.26, -84.7, 1, 1, 3, 93.21, -62.72, 1, 1, 3, 75.81, -42.11, 1, 1, 3, 66.19, -20.13, 1 ],
  378. "hull": 22,
  379. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 0, 42 ],
  380. "width": 230,
  381. "height": 134
  382. }
  383. },
  384. "huzi": {
  385. "huzi": {
  386. "type": "mesh",
  387. "uvs": [ 0.32181, 0.11176, 0.1815, 0.08187, 0.1495, 0, 0.08058, 0, 0.01904, 0.10716, 1.0E-5, 0.23593, 0, 0.41758, 0.02397, 0.60383, 0.1175, 0.7418, 0.22335, 0.83377, 0.29227, 0.80158, 0.37104, 0.89126, 0.48427, 0.97864, 0.58766, 1, 0.65412, 1, 0.72796, 0.93035, 0.81658, 0.84757, 0.91258, 0.7395, 0.9815, 0.60383, 0.99627, 0.42908, 0.98643, 0.26582, 0.93227, 0.11866, 0.85596, 0, 0.78212, 0.01059, 0.74273, 0.09567, 0.6295, 0.16925, 0.45966, 0.16465, 0.55812, 0.64522, 0.55073, 0.39689, 0.75504, 0.3348, 0.75996, 0.61073, 0.25043, 0.3532, 0.2775, 0.58544 ],
  388. "triangles": [ 15, 13, 27, 27, 13, 12, 12, 11, 27, 16, 15, 27, 11, 10, 27, 9, 8, 10, 8, 32, 10, 16, 30, 17, 14, 13, 15, 10, 32, 27, 17, 30, 18, 16, 27, 30, 31, 6, 1, 7, 6, 32, 31, 26, 28, 32, 28, 27, 27, 28, 30, 28, 29, 30, 18, 30, 19, 19, 30, 29, 20, 29, 21, 29, 20, 19, 32, 31, 28, 28, 25, 29, 32, 6, 31, 8, 7, 32, 28, 26, 25, 24, 23, 22, 4, 3, 1, 3, 2, 1, 4, 1, 5, 31, 0, 26, 31, 1, 0, 22, 21, 24, 25, 24, 29, 21, 29, 24, 5, 1, 6 ],
  389. "vertices": [ 1, 4, 22.19, 16.78, 1, 1, 4, 25.89, 38.92, 1, 1, 4, 39.25, 44.7, 1, 2, 4, 38.62, 55.44, 0.88889, 26, -42.29, -69.5, 0.11111, 2, 4, 20.19, 63.97, 0.66667, 26, -24.89, -79.97, 0.33333, 3, 4, -1.45, 65.67, 0.33333, 26, -3.55, -83.99, 0.63111, 27, -73.3, -82.71, 0.03556, 3, 4, -31.73, 63.9, 0.11111, 26, 26.74, -85.49, 0.70667, 27, -43.03, -84.74, 0.18222, 2, 26, 57.99, -83.28, 0.56, 27, -11.75, -83.09, 0.44, 2, 26, 81.72, -69.84, 0.26222, 27, 12.22, -70.07, 0.73778, 2, 26, 97.88, -54.11, 0.07556, 27, 28.65, -54.62, 0.92444, 1, 27, 24, -43.53, 1, 1, 27, 39.77, -32.28, 1, 1, 27, 55.51, -15.63, 1, 1, 27, 60.14, 0.23, 1, 1, 27, 60.84, 10.57, 1, 1, 27, 50, 22.84, 1, 2, 26, 104.73, 38.21, 0.07556, 27, 37.13, 37.56, 0.92444, 2, 26, 87.44, 54.06, 0.24839, 27, 20.12, 53.71, 0.75161, 2, 26, 65.34, 65.91, 0.52966, 27, -1.76, 65.95, 0.47034, 3, 4, -24.54, -91.37, 0.11111, 26, 36.31, 69.65, 0.65981, 27, -30.73, 70.2, 0.22908, 3, 4, 2.59, -88.23, 0.33333, 26, 9, 69.45, 0.59539, 27, -58.03, 70.49, 0.07127, 3, 4, 26.63, -78.36, 0.66667, 26, -15.96, 62.23, 0.31413, 27, -83.12, 63.7, 0.0192, 3, 4, 45.71, -65.31, 0.88889, 26, -36.34, 51.31, 0.10842, 27, -103.69, 53.15, 0.00269, 1, 4, 43.27, -53.92, 1, 1, 4, 28.73, -48.62, 1, 1, 4, 15.43, -31.7, 1, 1, 4, 14.64, -5.21, 1, 2, 26, 69, -0.4, 0.68, 27, 0.72, -0.41, 0.32, 1, 26, 27.52, 0.49, 1, 2, 26, 18.73, 32.84, 0.9835, 27, -48.95, 33.7, 0.0165, 2, 26, 64.79, 31.34, 0.68, 27, -2.92, 31.39, 0.32, 1, 26, 17.93, -45.94, 1, 2, 26, 56.87, -43.63, 0.68, 27, -12.17, -43.42, 0.32 ],
  390. "hull": 27,
  391. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 0, 52 ],
  392. "width": 156,
  393. "height": 167
  394. }
  395. }
  396. }
  397. }
  398. ],
  399. "animations": {
  400. "attack": {
  401. "bones": {
  402. "root": {
  403. "rotate": [
  404. { "curve": "stepped" },
  405. { "time": 1 }
  406. ],
  407. "translate": [
  408. { "curve": "stepped" },
  409. { "time": 1 }
  410. ],
  411. "scale": [
  412. { "curve": "stepped" },
  413. { "time": 1 }
  414. ]
  415. },
  416. "bone20": {
  417. "rotate": [
  418. { "curve": "stepped" },
  419. { "time": 1 }
  420. ],
  421. "translate": [
  422. { "curve": "stepped" },
  423. { "time": 1 }
  424. ],
  425. "scale": [
  426. { "curve": "stepped" },
  427. { "time": 1 }
  428. ]
  429. },
  430. "bone19": {
  431. "rotate": [
  432. { "curve": "stepped" },
  433. { "time": 1 }
  434. ],
  435. "translate": [
  436. { "curve": "stepped" },
  437. { "time": 1 }
  438. ],
  439. "scale": [
  440. { "curve": "stepped" },
  441. { "time": 1 }
  442. ]
  443. },
  444. "bone18": {
  445. "rotate": [
  446. { "curve": "stepped" },
  447. { "time": 1 }
  448. ],
  449. "translate": [
  450. { "curve": "stepped" },
  451. { "time": 1 }
  452. ],
  453. "scale": [
  454. { "curve": "stepped" },
  455. { "time": 1 }
  456. ]
  457. },
  458. "bone17": {
  459. "rotate": [
  460. { "curve": 0.25, "c3": 0.75 },
  461. { "time": 0.5667, "angle": -0.27, "curve": 0.366, "c2": 0.46, "c3": 0.754 },
  462. { "time": 1 }
  463. ],
  464. "translate": [
  465. { "curve": "stepped" },
  466. { "time": 0.5667, "curve": "stepped" },
  467. { "time": 1 }
  468. ],
  469. "scale": [
  470. { "curve": "stepped" },
  471. { "time": 0.5667, "curve": "stepped" },
  472. { "time": 1 }
  473. ]
  474. },
  475. "bone16": {
  476. "rotate": [
  477. { "angle": 6.16, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  478. { "time": 0.3333, "angle": 12.33, "curve": 0.263, "c3": 0.618, "c4": 0.43 },
  479. { "time": 0.5667, "angle": 8.57, "curve": 0.327, "c2": 0.31, "c3": 0.663, "c4": 0.66 },
  480. { "time": 1, "angle": 6.16 }
  481. ],
  482. "translate": [
  483. { "curve": "stepped" },
  484. { "time": 1 }
  485. ],
  486. "scale": [
  487. { "curve": "stepped" },
  488. { "time": 1 }
  489. ]
  490. },
  491. "bone15": {
  492. "rotate": [
  493. { "angle": -5.64, "curve": 0.25, "c3": 0.75 },
  494. { "time": 0.1, "angle": 13.25, "curve": 0.25, "c3": 0.75 },
  495. { "time": 0.2667, "angle": -11.28, "curve": 0.25, "c3": 0.75 },
  496. { "time": 0.5667, "angle": 9.64, "curve": 0.25, "c3": 0.75 },
  497. { "time": 1, "angle": -5.64 }
  498. ],
  499. "translate": [
  500. { "curve": "stepped" },
  501. { "time": 1 }
  502. ],
  503. "scale": [
  504. { "curve": "stepped" },
  505. { "time": 1 }
  506. ]
  507. },
  508. "bone14": {
  509. "rotate": [
  510. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  511. { "time": 0.1, "angle": -6.81, "curve": 0.25, "c3": 0.75 },
  512. { "time": 0.2333, "angle": 11.83, "curve": 0.25, "c3": 0.75 },
  513. { "time": 0.5667, "angle": -19.39, "curve": 0.25, "c3": 0.75 },
  514. { "time": 1, "angle": 12.56 }
  515. ],
  516. "translate": [
  517. { "curve": "stepped" },
  518. { "time": 1 }
  519. ],
  520. "scale": [
  521. { "curve": "stepped" },
  522. { "time": 1 }
  523. ]
  524. },
  525. "bone13": {
  526. "rotate": [
  527. { "angle": -9.43, "curve": 0.25, "c3": 0.75 },
  528. { "time": 0.1, "angle": -7.64, "curve": 0.25, "c3": 0.75 },
  529. { "time": 0.2333, "angle": 1.91, "curve": 0.25, "c3": 0.75 },
  530. { "time": 0.4667, "angle": -10.85, "curve": 0.25, "c3": 0.75 },
  531. { "time": 1, "angle": -9.43 }
  532. ],
  533. "translate": [
  534. { "curve": "stepped" },
  535. { "time": 1 }
  536. ],
  537. "scale": [
  538. { "curve": "stepped" },
  539. { "time": 1 }
  540. ]
  541. },
  542. "bone12": {
  543. "rotate": [
  544. { "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  545. { "time": 0.1667, "angle": -16.96, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7 },
  546. { "time": 0.2333, "angle": 20.06, "curve": 0.382, "c2": 0.58, "c3": 0.731 },
  547. { "time": 0.3333, "angle": 17.55, "curve": 0.314, "c2": 0.27, "c3": 0.657, "c4": 0.64 },
  548. { "time": 0.5667, "angle": 12.09, "curve": 0.314, "c2": 0.27, "c3": 0.657, "c4": 0.64 },
  549. { "time": 1 }
  550. ],
  551. "translate": [
  552. { "curve": 0.25, "c3": 0.75 },
  553. { "time": 0.3333, "x": -5.01, "y": -9.63, "curve": "stepped" },
  554. { "time": 0.5667, "x": -5.01, "y": -9.63, "curve": 0.333, "c2": 0.33, "c3": 0.758 },
  555. { "time": 1 }
  556. ],
  557. "scale": [
  558. { "curve": "stepped" },
  559. { "time": 0.3333, "curve": "stepped" },
  560. { "time": 0.5667, "curve": "stepped" },
  561. { "time": 1 }
  562. ]
  563. },
  564. "bone11": {
  565. "rotate": [
  566. { "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  567. { "time": 0.1667, "angle": -25.87, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7 },
  568. { "time": 0.2333, "angle": -1.47, "curve": 0.382, "c2": 0.58, "c3": 0.731 },
  569. { "time": 0.3333, "angle": 2.46, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  570. { "time": 0.5667, "angle": -1.83, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  571. { "time": 1 }
  572. ],
  573. "translate": [
  574. { "curve": 0.25, "c3": 0.75 },
  575. { "time": 0.3333, "x": 13.56, "y": -0.88, "curve": "stepped" },
  576. { "time": 0.5667, "x": 13.56, "y": -0.88, "curve": 0.333, "c2": 0.33, "c3": 0.758 },
  577. { "time": 1 }
  578. ],
  579. "scale": [
  580. { "curve": "stepped" },
  581. { "time": 0.3333, "curve": "stepped" },
  582. { "time": 0.5667, "curve": "stepped" },
  583. { "time": 1 }
  584. ]
  585. },
  586. "bone10": {
  587. "rotate": [
  588. { "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  589. { "time": 0.1667, "angle": 26.45, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  590. { "time": 0.3333, "angle": -54.58, "curve": "stepped" },
  591. { "time": 0.5667, "angle": -54.58, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  592. { "time": 1 }
  593. ],
  594. "translate": [
  595. { "curve": "stepped" },
  596. { "time": 0.3333, "curve": "stepped" },
  597. { "time": 0.5667, "curve": "stepped" },
  598. { "time": 1 }
  599. ],
  600. "scale": [
  601. { "curve": "stepped" },
  602. { "time": 0.3333, "curve": "stepped" },
  603. { "time": 0.5667, "curve": "stepped" },
  604. { "time": 1 }
  605. ]
  606. },
  607. "bone9": {
  608. "rotate": [
  609. { "curve": 0.25, "c3": 0.75 },
  610. { "time": 0.3333, "angle": 3.69, "curve": "stepped" },
  611. { "time": 0.5667, "angle": 3.69, "curve": 0.334, "c2": 0.33, "c3": 0.667, "c4": 0.67 },
  612. { "time": 1 }
  613. ],
  614. "translate": [
  615. { "curve": "stepped" },
  616. { "time": 0.3333, "curve": "stepped" },
  617. { "time": 0.5667, "curve": "stepped" },
  618. { "time": 1 }
  619. ],
  620. "scale": [
  621. { "curve": "stepped" },
  622. { "time": 0.3333, "curve": "stepped" },
  623. { "time": 0.5667, "curve": "stepped" },
  624. { "time": 1 }
  625. ]
  626. },
  627. "bone8": {
  628. "rotate": [
  629. { "curve": 0.25, "c3": 0.75 },
  630. { "time": 0.3333, "angle": -16.61, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  631. { "time": 0.5667, "angle": -24.61, "curve": 0.334, "c2": 0.33, "c3": 0.667, "c4": 0.67 },
  632. { "time": 1 }
  633. ],
  634. "translate": [
  635. { "curve": "stepped" },
  636. { "time": 0.3333, "curve": "stepped" },
  637. { "time": 0.5667, "curve": "stepped" },
  638. { "time": 1 }
  639. ],
  640. "scale": [
  641. { "curve": "stepped" },
  642. { "time": 0.3333, "curve": "stepped" },
  643. { "time": 0.5667, "curve": "stepped" },
  644. { "time": 1 }
  645. ]
  646. },
  647. "bone7": {
  648. "rotate": [
  649. { "angle": -3.57, "curve": 0.25, "c3": 0.75 },
  650. { "time": 0.5667, "angle": 11.84, "curve": 0.25, "c3": 0.75 },
  651. { "time": 1, "angle": -3.57 }
  652. ],
  653. "translate": [
  654. { "curve": "stepped" },
  655. { "time": 1 }
  656. ],
  657. "scale": [
  658. { "curve": "stepped" },
  659. { "time": 1 }
  660. ]
  661. },
  662. "bone6": {
  663. "rotate": [
  664. { "curve": 0.25, "c3": 0.75 },
  665. { "time": 0.1667, "angle": 18.6, "curve": 0.31, "c2": 0.26, "c3": 0.662, "c4": 0.65 },
  666. { "time": 0.3333, "angle": -7.31, "curve": 0.381, "c2": 0.54, "c3": 0.743 },
  667. { "time": 0.5667, "angle": 10.53, "curve": 0.25, "c3": 0.75 },
  668. { "time": 1 }
  669. ],
  670. "translate": [
  671. { "curve": "stepped" },
  672. { "time": 1 }
  673. ],
  674. "scale": [
  675. { "curve": "stepped" },
  676. { "time": 1 }
  677. ]
  678. },
  679. "bone5": {
  680. "rotate": [
  681. { "angle": 4.52, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  682. { "time": 0.1667, "angle": 23.01, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  683. { "time": 0.3333, "angle": -12.57, "curve": 0.25, "c3": 0.75 },
  684. { "time": 0.5667, "angle": -14.44, "curve": 0.25, "c3": 0.75 },
  685. { "time": 1, "angle": 4.52 }
  686. ],
  687. "translate": [
  688. { "curve": "stepped" },
  689. { "time": 1 }
  690. ],
  691. "scale": [
  692. { "curve": "stepped" },
  693. { "time": 1 }
  694. ]
  695. },
  696. "bone4": {
  697. "rotate": [
  698. { "angle": -0.51, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  699. { "time": 0.3333, "angle": 1.78, "curve": "stepped" },
  700. { "time": 0.5667, "angle": 1.78, "curve": 0.25, "c3": 0.75 },
  701. { "time": 1, "angle": -0.51 }
  702. ],
  703. "translate": [
  704. { "curve": "stepped" },
  705. { "time": 0.3333, "curve": "stepped" },
  706. { "time": 0.5667, "curve": "stepped" },
  707. { "time": 1 }
  708. ],
  709. "scale": [
  710. { "curve": "stepped" },
  711. { "time": 0.3333, "curve": "stepped" },
  712. { "time": 0.5667, "curve": "stepped" },
  713. { "time": 1 }
  714. ]
  715. },
  716. "bone3": {
  717. "rotate": [
  718. { "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  719. { "time": 0.1667, "angle": 3.83, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  720. { "time": 0.3333, "angle": -5.45, "curve": 0.333, "c2": 0.33, "c3": 0.758 },
  721. { "time": 0.5667, "angle": -3.4, "curve": 0.326, "c2": 0.31, "c3": 0.66, "c4": 0.64 },
  722. { "time": 1 }
  723. ],
  724. "translate": [
  725. { "curve": 0.25, "c3": 0.75 },
  726. { "time": 0.3333, "x": -3.57, "y": 0.14, "curve": "stepped" },
  727. { "time": 0.5667, "x": -3.57, "y": 0.14, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  728. { "time": 1 }
  729. ],
  730. "scale": [
  731. { "curve": "stepped" },
  732. { "time": 0.3333, "curve": "stepped" },
  733. { "time": 0.5667, "curve": "stepped" },
  734. { "time": 1 }
  735. ]
  736. },
  737. "bone2": {
  738. "rotate": [
  739. { "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  740. { "time": 0.1667, "angle": 3.83, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  741. { "time": 0.3333, "angle": -5.45, "curve": 0.333, "c2": 0.33, "c3": 0.758 },
  742. { "time": 0.5667, "angle": -3.4, "curve": 0.326, "c2": 0.31, "c3": 0.66, "c4": 0.64 },
  743. { "time": 1 }
  744. ],
  745. "translate": [
  746. { "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  747. { "time": 0.1667, "x": 0.07, "y": -3.97, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  748. { "time": 0.3333, "y": -1.99, "curve": "stepped" },
  749. { "time": 0.5667, "y": -1.99, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  750. { "time": 1 }
  751. ],
  752. "scale": [
  753. { "curve": "stepped" },
  754. { "time": 0.3333, "curve": "stepped" },
  755. { "time": 0.5667, "curve": "stepped" },
  756. { "time": 1 }
  757. ]
  758. },
  759. "bone": {
  760. "rotate": [
  761. { "curve": 0.25, "c3": 0.75 },
  762. { "time": 0.1667, "angle": -1.33, "curve": 0.306, "c2": 0.21, "c3": 0.643, "c4": 0.56 },
  763. { "time": 0.3333, "curve": "stepped" },
  764. { "time": 0.5667, "curve": "stepped" },
  765. { "time": 1 }
  766. ],
  767. "translate": [
  768. { "curve": 0.25, "c3": 0.75 },
  769. {
  770. "time": 0.1667,
  771. "x": -1.94,
  772. "y": -26.04,
  773. "curve": 0.306,
  774. "c2": 0.24,
  775. "c3": 0.653,
  776. "c4": 0.62
  777. },
  778. { "time": 0.3333, "x": 0.27, "y": -0.06, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  779. {
  780. "time": 0.5667,
  781. "x": 5,
  782. "y": -0.06,
  783. "curve": 0.334,
  784. "c2": 0.33,
  785. "c3": 0.667,
  786. "c4": 0.67
  787. },
  788. { "time": 1 }
  789. ],
  790. "scale": [
  791. { "curve": "stepped" },
  792. { "time": 0.3333, "curve": "stepped" },
  793. { "time": 0.5667, "curve": "stepped" },
  794. { "time": 1 }
  795. ]
  796. },
  797. "bone22": {
  798. "rotate": [
  799. { "angle": 10.15, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  800. { "time": 0.3333, "angle": 3.69, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  801. { "time": 0.5667, "angle": -13.38, "curve": 0.334, "c2": 0.33, "c3": 0.667, "c4": 0.67 },
  802. { "time": 1, "angle": 10.15 }
  803. ],
  804. "translate": [
  805. { "curve": "stepped" },
  806. { "time": 0.3333, "curve": "stepped" },
  807. { "time": 0.5667, "curve": "stepped" },
  808. { "time": 1 }
  809. ],
  810. "scale": [
  811. { "curve": "stepped" },
  812. { "time": 0.3333, "curve": "stepped" },
  813. { "time": 0.5667, "curve": "stepped" },
  814. { "time": 1 }
  815. ]
  816. },
  817. "bone23": {
  818. "rotate": [
  819. { "angle": -5.64, "curve": 0.25, "c3": 0.75 },
  820. { "time": 0.0667, "angle": -45.17, "curve": 0.25, "c3": 0.75 },
  821. { "time": 0.2333, "angle": 21.45, "curve": 0.25, "c3": 0.75 },
  822. { "time": 0.4667, "angle": -11.28, "curve": 0.25, "c3": 0.75 },
  823. { "time": 0.7, "angle": 9.64, "curve": 0.25, "c3": 0.75 },
  824. { "time": 1, "angle": -5.64 }
  825. ],
  826. "translate": [
  827. { "curve": "stepped" },
  828. { "time": 1 }
  829. ],
  830. "scale": [
  831. { "curve": "stepped" },
  832. { "time": 1 }
  833. ]
  834. },
  835. "bone25": {
  836. "rotate": [
  837. { "curve": 0.25, "c3": 0.75 },
  838. { "time": 0.1667, "angle": 18.6, "curve": 0.31, "c2": 0.26, "c3": 0.662, "c4": 0.65 },
  839. { "time": 0.3333, "angle": -7.31, "curve": 0.381, "c2": 0.54, "c3": 0.743 },
  840. { "time": 0.5667, "angle": 10.53, "curve": 0.25, "c3": 0.75 },
  841. { "time": 1 }
  842. ],
  843. "translate": [
  844. { "curve": "stepped" },
  845. { "time": 1 }
  846. ],
  847. "scale": [
  848. { "curve": "stepped" },
  849. { "time": 1 }
  850. ]
  851. },
  852. "bone26": {
  853. "rotate": [
  854. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  855. { "time": 0.1, "angle": -6.81, "curve": 0.25, "c3": 0.75 },
  856. { "time": 0.2333, "angle": 11.83, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  857. { "time": 0.3667, "angle": 39.39, "curve": 0.351, "c2": 0.4, "c3": 0.757 },
  858. { "time": 0.6333, "angle": -19.39, "curve": 0.25, "c3": 0.75 },
  859. { "time": 1, "angle": 12.56 }
  860. ],
  861. "translate": [
  862. { "curve": "stepped" },
  863. { "time": 1 }
  864. ],
  865. "scale": [
  866. { "curve": "stepped" },
  867. { "time": 1 }
  868. ]
  869. },
  870. "bone27": {
  871. "rotate": [
  872. { "curve": 0.25, "c3": 0.75 },
  873. { "time": 0.1667, "angle": 18.6, "curve": 0.243, "c3": 0.68, "c4": 0.71 },
  874. { "time": 0.3, "angle": 29.85, "curve": 0.375, "c2": 0.62, "c3": 0.716 },
  875. { "time": 0.4667, "angle": -24.34, "curve": 0.25, "c3": 0.75 },
  876. { "time": 0.7333, "angle": 27.98, "curve": 0.25, "c3": 0.75 },
  877. { "time": 1 }
  878. ],
  879. "translate": [
  880. { "curve": "stepped" },
  881. { "time": 1 }
  882. ],
  883. "scale": [
  884. { "curve": "stepped" },
  885. { "time": 1 }
  886. ]
  887. },
  888. "bone21": {
  889. "rotate": [
  890. { "angle": 4.52, "curve": 0.25, "c3": 0.75 },
  891. { "time": 0.1667, "angle": 23.01, "curve": 0.25, "c3": 0.75 },
  892. { "time": 0.3333, "angle": -14.93, "curve": 0.25, "c3": 0.75 },
  893. { "time": 0.6667, "angle": 5.82, "curve": 0.25, "c3": 0.75 },
  894. { "time": 1, "angle": 4.52 }
  895. ],
  896. "translate": [
  897. { "curve": "stepped" },
  898. { "time": 1 }
  899. ],
  900. "scale": [
  901. { "curve": "stepped" },
  902. { "time": 1 }
  903. ]
  904. },
  905. "bone28": {
  906. "rotate": [
  907. { "angle": -5.07, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68 },
  908. { "time": 0.3333, "angle": -30.88, "curve": 0.344, "c2": 0.37, "c3": 0.68, "c4": 0.71 },
  909. { "time": 0.5667, "angle": -25.92, "curve": 0.379, "c2": 0.6, "c3": 0.723 },
  910. { "time": 1, "angle": -5.07 }
  911. ],
  912. "translate": [
  913. { "curve": "stepped" },
  914. { "time": 1 }
  915. ],
  916. "scale": [
  917. { "curve": "stepped" },
  918. { "time": 1 }
  919. ]
  920. },
  921. "bone29": {
  922. "rotate": [
  923. { "angle": 7.66, "curve": 0.25, "c3": 0.75 },
  924. { "time": 0.1333, "angle": 12.48, "curve": 0.25, "c3": 0.75 },
  925. { "time": 0.3333, "angle": -4.57, "curve": 0.25, "c3": 0.75 },
  926. { "time": 1, "angle": 7.66 }
  927. ],
  928. "translate": [
  929. { "curve": "stepped" },
  930. { "time": 1 }
  931. ],
  932. "scale": [
  933. { "curve": "stepped" },
  934. { "time": 1 }
  935. ]
  936. },
  937. "bone24": {
  938. "rotate": [
  939. { "curve": "stepped" },
  940. { "time": 1 }
  941. ],
  942. "translate": [
  943. { "curve": "stepped" },
  944. { "time": 1 }
  945. ],
  946. "scale": [
  947. { "curve": "stepped" },
  948. { "time": 1 }
  949. ]
  950. },
  951. "shadow": {
  952. "translate": [
  953. { "curve": "stepped" },
  954. { "time": 1 }
  955. ],
  956. "scale": [
  957. {},
  958. { "time": 0.1667, "x": 1.067 },
  959. { "time": 0.3333, "x": 0.967 },
  960. { "time": 1 }
  961. ]
  962. }
  963. }
  964. },
  965. "die": {
  966. "slots": {
  967. "fazhang": {
  968. "attachment": [
  969. { "time": 0.2, "name": null }
  970. ]
  971. },
  972. "fazhang2": {
  973. "attachment": [
  974. { "time": 0.2, "name": "fazhang" }
  975. ]
  976. }
  977. },
  978. "bones": {
  979. "root": {
  980. "rotate": [
  981. { "curve": "stepped" },
  982. { "time": 0.3333, "curve": "stepped" },
  983. { "time": 0.5333, "curve": "stepped" },
  984. { "time": 1.1667 }
  985. ],
  986. "translate": [
  987. { "curve": "stepped" },
  988. { "time": 0.3333, "curve": "stepped" },
  989. { "time": 0.5333, "curve": "stepped" },
  990. { "time": 1.1667 }
  991. ],
  992. "scale": [
  993. { "curve": "stepped" },
  994. { "time": 0.3333, "curve": "stepped" },
  995. { "time": 0.5333, "curve": "stepped" },
  996. { "time": 1.1667 }
  997. ]
  998. },
  999. "bone20": {
  1000. "rotate": [
  1001. { "curve": 0.25, "c3": 0.75 },
  1002. { "time": 0.3333, "angle": -28.22, "curve": 0.25, "c3": 0.75 },
  1003. { "time": 0.5333, "angle": -117.9, "curve": "stepped" },
  1004. { "time": 1.1667, "angle": -117.9 }
  1005. ],
  1006. "translate": [
  1007. { "curve": 0.25, "c3": 0.75 },
  1008. { "time": 0.3333, "x": -69.3, "curve": 0.25, "c3": 0.75 },
  1009. { "time": 0.5333, "x": -56.28, "y": -30.83, "curve": "stepped" },
  1010. { "time": 1.1667, "x": -56.28, "y": -30.83 }
  1011. ],
  1012. "scale": [
  1013. { "curve": "stepped" },
  1014. { "time": 0.3333, "curve": "stepped" },
  1015. { "time": 0.5333, "curve": "stepped" },
  1016. { "time": 1.1667 }
  1017. ]
  1018. },
  1019. "bone19": {
  1020. "rotate": [
  1021. { "curve": 0.25, "c3": 0.75 },
  1022. { "time": 0.3333, "angle": -49.41, "curve": 0.25, "c3": 0.75 },
  1023. { "time": 0.5333, "angle": -18.74, "curve": "stepped" },
  1024. { "time": 1.1667, "angle": -18.74 }
  1025. ],
  1026. "translate": [
  1027. { "curve": 0.25, "c3": 0.75 },
  1028. { "time": 0.3333, "x": -6.68, "y": 2.79, "curve": "stepped" },
  1029. { "time": 0.5333, "x": -6.68, "y": 2.79, "curve": "stepped" },
  1030. { "time": 1.1667, "x": -6.68, "y": 2.79 }
  1031. ],
  1032. "scale": [
  1033. { "curve": "stepped" },
  1034. { "time": 0.3333, "curve": "stepped" },
  1035. { "time": 0.5333, "curve": "stepped" },
  1036. { "time": 1.1667 }
  1037. ]
  1038. },
  1039. "bone18": {
  1040. "rotate": [
  1041. { "curve": "stepped" },
  1042. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  1043. { "time": 0.5333, "angle": -74.73, "curve": "stepped" },
  1044. { "time": 0.7667, "angle": -74.73, "curve": "stepped" },
  1045. { "time": 1.1667, "angle": -74.73 }
  1046. ],
  1047. "translate": [
  1048. { "curve": 0.25, "c3": 0.75 },
  1049. { "time": 0.3333, "x": -8.49, "curve": 0.25, "c3": 0.75 },
  1050. { "time": 0.5333, "x": -16.33, "y": -23.1, "curve": "stepped" },
  1051. { "time": 0.7667, "x": -16.33, "y": -23.1, "curve": "stepped" },
  1052. { "time": 1.1667, "x": -16.33, "y": -23.1 }
  1053. ],
  1054. "scale": [
  1055. { "curve": "stepped" },
  1056. { "time": 0.3333, "curve": "stepped" },
  1057. { "time": 0.5333, "curve": "stepped" },
  1058. { "time": 0.7667, "curve": "stepped" },
  1059. { "time": 1.1667 }
  1060. ]
  1061. },
  1062. "bone17": {
  1063. "rotate": [
  1064. { "curve": 0.25, "c3": 0.75 },
  1065. { "time": 0.3333, "angle": 0.19, "curve": 0.25, "c3": 0.75 },
  1066. { "time": 0.5333, "angle": 26.69, "curve": "stepped" },
  1067. { "time": 1.1667, "angle": 26.69 }
  1068. ],
  1069. "translate": [
  1070. { "curve": 0.25, "c3": 0.75 },
  1071. { "time": 0.3333, "x": -6.24, "y": 2.51, "curve": 0.25, "c3": 0.75 },
  1072. { "time": 0.5333, "x": 10.08, "y": 2.46, "curve": 0.274, "c3": 0.62, "c4": 0.4 },
  1073. { "time": 0.7, "x": 3.8, "y": 2.48, "curve": 0.336, "c2": 0.34, "c3": 0.758 },
  1074. { "time": 1.1667, "x": 10.71, "y": 2.46 }
  1075. ],
  1076. "scale": [
  1077. { "curve": "stepped" },
  1078. { "time": 0.3333, "curve": "stepped" },
  1079. { "time": 0.5333, "curve": "stepped" },
  1080. { "time": 1.1667 }
  1081. ]
  1082. },
  1083. "bone16": {
  1084. "rotate": [
  1085. { "angle": 6.16, "curve": 0.25, "c3": 0.75 },
  1086. { "time": 0.3333, "angle": 12.33, "curve": "stepped" },
  1087. { "time": 0.5333, "angle": 12.33, "curve": "stepped" },
  1088. { "time": 1.1667, "angle": 12.33 }
  1089. ],
  1090. "translate": [
  1091. { "curve": "stepped" },
  1092. { "time": 0.3333, "curve": "stepped" },
  1093. { "time": 0.5333, "curve": "stepped" },
  1094. { "time": 1.1667 }
  1095. ],
  1096. "scale": [
  1097. { "curve": "stepped" },
  1098. { "time": 0.3333, "curve": "stepped" },
  1099. { "time": 0.5333, "curve": "stepped" },
  1100. { "time": 1.1667 }
  1101. ]
  1102. },
  1103. "bone15": {
  1104. "rotate": [
  1105. { "angle": -5.64, "curve": 0.25, "c3": 0.75 },
  1106. { "time": 0.1, "angle": 29.45, "curve": 0.25, "c3": 0.75 },
  1107. { "time": 0.3333, "angle": -11.28, "curve": 0.25, "c3": 0.75 },
  1108. { "time": 0.4667, "angle": 12.27, "curve": 0.25, "c3": 0.75 },
  1109. { "time": 0.8, "angle": -20.33, "curve": 0.25, "c3": 0.75 },
  1110. { "time": 1.1667, "angle": -11.28 }
  1111. ],
  1112. "translate": [
  1113. { "curve": "stepped" },
  1114. { "time": 0.3333, "curve": "stepped" },
  1115. { "time": 0.4667, "curve": "stepped" },
  1116. { "time": 1.1667 }
  1117. ],
  1118. "scale": [
  1119. { "curve": "stepped" },
  1120. { "time": 0.3333, "curve": "stepped" },
  1121. { "time": 0.4667, "curve": "stepped" },
  1122. { "time": 1.1667 }
  1123. ]
  1124. },
  1125. "bone14": {
  1126. "rotate": [
  1127. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  1128. { "time": 0.0667, "angle": 35.27, "curve": 0.25, "c3": 0.75 },
  1129. { "time": 0.3333, "angle": -42.98, "curve": 0.25, "c3": 0.75 },
  1130. { "time": 0.5333, "angle": 13.79, "curve": "stepped" },
  1131. { "time": 1.1667, "angle": 13.79 }
  1132. ],
  1133. "translate": [
  1134. { "curve": "stepped" },
  1135. { "time": 0.3333, "curve": "stepped" },
  1136. { "time": 0.5333, "curve": "stepped" },
  1137. { "time": 1.1667 }
  1138. ],
  1139. "scale": [
  1140. { "curve": "stepped" },
  1141. { "time": 0.3333, "curve": "stepped" },
  1142. { "time": 0.5333, "curve": "stepped" },
  1143. { "time": 1.1667 }
  1144. ]
  1145. },
  1146. "bone13": {
  1147. "rotate": [
  1148. { "angle": -9.43, "curve": 0.25, "c3": 0.75 },
  1149. { "time": 0.0667, "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  1150. { "time": 0.3333, "angle": -27.65, "curve": 0.25, "c3": 0.75 },
  1151. { "time": 0.5333, "angle": 3.6, "curve": "stepped" },
  1152. { "time": 1.1667, "angle": 3.6 }
  1153. ],
  1154. "translate": [
  1155. { "curve": "stepped" },
  1156. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  1157. { "time": 0.5333, "x": -21.05, "y": -21.02, "curve": "stepped" },
  1158. { "time": 1.1667, "x": -21.05, "y": -21.02 }
  1159. ],
  1160. "scale": [
  1161. { "curve": "stepped" },
  1162. { "time": 0.3333, "curve": "stepped" },
  1163. { "time": 0.5333, "curve": "stepped" },
  1164. { "time": 1.1667 }
  1165. ]
  1166. },
  1167. "bone12": {
  1168. "rotate": [
  1169. { "curve": 0.269, "c3": 0.618, "c4": 0.42 },
  1170. { "time": 0.0333, "angle": -159.59, "curve": 0.32, "c2": 0.29, "c3": 0.668, "c4": 0.67 },
  1171. { "time": 0.1667, "angle": -92.09, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  1172. { "time": 0.3333, "angle": -14.14, "curve": 0.25, "c3": 0.75 },
  1173. { "time": 0.5333, "angle": 10.53, "curve": 0.267, "c3": 0.618, "c4": 0.42 },
  1174. { "time": 0.7333, "angle": 5.17, "curve": 0.348, "c2": 0.39, "c3": 0.757 },
  1175. { "time": 1.1667, "angle": 10.53 }
  1176. ],
  1177. "translate": [
  1178. { "curve": 0.305, "c3": 0.64, "c4": 0.36 },
  1179. {
  1180. "time": 0.0333,
  1181. "x": 33.81,
  1182. "y": -7.57,
  1183. "curve": 0.282,
  1184. "c2": 0.15,
  1185. "c3": 0.641,
  1186. "c4": 0.58
  1187. },
  1188. { "time": 0.1667, "x": 10.28, "y": 21.56, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1189. { "time": 0.3333, "curve": "stepped" },
  1190. { "time": 0.5333, "curve": "stepped" },
  1191. { "time": 1.1667 }
  1192. ],
  1193. "scale": [
  1194. { "curve": "stepped" },
  1195. { "time": 0.3333, "curve": "stepped" },
  1196. { "time": 0.5333, "curve": "stepped" },
  1197. { "time": 1.1667 }
  1198. ]
  1199. },
  1200. "bone11": {
  1201. "rotate": [
  1202. { "curve": 0.269, "c3": 0.618, "c4": 0.42 },
  1203. { "time": 0.0333, "angle": 18.07, "curve": 0.345, "c2": 0.37, "c3": 0.757 },
  1204. { "time": 0.3333, "angle": -6.74, "curve": 0.25, "c3": 0.75 },
  1205. { "time": 0.5333, "angle": 3.17, "curve": 0.267, "c3": 0.618, "c4": 0.42 },
  1206. { "time": 0.7333, "angle": 12.84, "curve": 0.348, "c2": 0.39, "c3": 0.757 },
  1207. { "time": 1.1667, "angle": 7.21 }
  1208. ],
  1209. "translate": [
  1210. { "curve": "stepped" },
  1211. { "time": 0.3333, "curve": "stepped" },
  1212. { "time": 0.5333, "curve": "stepped" },
  1213. { "time": 1.1667 }
  1214. ],
  1215. "scale": [
  1216. { "curve": "stepped" },
  1217. { "time": 0.3333, "curve": "stepped" },
  1218. { "time": 0.5333, "curve": "stepped" },
  1219. { "time": 1.1667 }
  1220. ]
  1221. },
  1222. "bone10": {
  1223. "rotate": [
  1224. { "curve": 0.25, "c3": 0.75 },
  1225. { "time": 0.0333, "angle": -169.29, "curve": 0.25, "c3": 0.75 },
  1226. { "time": 0.1667, "angle": 165.84, "curve": 0.25, "c3": 0.75 },
  1227. { "time": 0.3333, "angle": 178.65, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1228. { "time": 0.4333, "angle": -168.89, "curve": 0.25, "c3": 0.75 },
  1229. { "time": 0.5333, "angle": -143.67, "curve": 0.25, "c3": 0.75 },
  1230. { "time": 0.6, "angle": -128.99, "curve": 0.25, "c3": 0.75 },
  1231. { "time": 0.7, "angle": -116.5, "curve": 0.25, "c3": 0.75 },
  1232. { "time": 0.9, "angle": -130.02, "curve": 0.25, "c3": 0.75 },
  1233. { "time": 1.1667, "angle": -123.62 }
  1234. ],
  1235. "translate": [
  1236. { "curve": "stepped" },
  1237. { "time": 0.3333, "curve": "stepped" },
  1238. { "time": 0.5333, "curve": "stepped" },
  1239. { "time": 1.1667 }
  1240. ],
  1241. "scale": [
  1242. { "curve": 0.25, "c3": 0.75 },
  1243. { "time": 0.0333, "x": -1, "curve": "stepped" },
  1244. { "time": 0.3333, "x": -1, "curve": "stepped" },
  1245. { "time": 0.5333, "x": -1, "curve": "stepped" },
  1246. { "time": 1.1667, "x": -1 }
  1247. ]
  1248. },
  1249. "bone9": {
  1250. "rotate": [
  1251. { "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  1252. { "time": 0.1333, "angle": -15.83, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1253. { "time": 0.3333, "angle": 5.29, "curve": "stepped" },
  1254. { "time": 0.5333, "angle": 5.29, "curve": 0.25, "c3": 0.75 },
  1255. { "time": 0.7333, "angle": -3.18, "curve": 0.25, "c3": 0.75 },
  1256. { "time": 1.1667, "angle": 5.29 }
  1257. ],
  1258. "translate": [
  1259. { "curve": "stepped" },
  1260. { "time": 0.3333, "curve": "stepped" },
  1261. { "time": 0.5333, "curve": "stepped" },
  1262. { "time": 1.1667 }
  1263. ],
  1264. "scale": [
  1265. { "curve": "stepped" },
  1266. { "time": 0.3333, "curve": "stepped" },
  1267. { "time": 0.5333, "curve": "stepped" },
  1268. { "time": 1.1667 }
  1269. ]
  1270. },
  1271. "bone8": {
  1272. "rotate": [
  1273. { "curve": 0.25, "c3": 0.75 },
  1274. { "time": 0.3333, "angle": -3.76, "curve": 0.25, "c3": 0.75 },
  1275. { "time": 0.5333, "angle": -15.2, "curve": 0.25, "c3": 0.75 },
  1276. { "time": 0.7333, "angle": -3.69, "curve": 0.25, "c3": 0.75 },
  1277. { "time": 1.1667, "angle": -15.2 }
  1278. ],
  1279. "translate": [
  1280. { "curve": "stepped" },
  1281. { "time": 0.3333, "curve": "stepped" },
  1282. { "time": 0.5333, "curve": "stepped" },
  1283. { "time": 1.1667 }
  1284. ],
  1285. "scale": [
  1286. { "curve": "stepped" },
  1287. { "time": 0.3333, "curve": "stepped" },
  1288. { "time": 0.5333, "curve": "stepped" },
  1289. { "time": 1.1667 }
  1290. ]
  1291. },
  1292. "bone7": {
  1293. "rotate": [
  1294. { "angle": -3.57, "curve": 0.25, "c3": 0.75 },
  1295. { "time": 0.1, "angle": 19.51, "curve": 0.25, "c3": 0.75 },
  1296. { "time": 0.2667, "angle": -20.12, "curve": 0.25, "c3": 0.75 },
  1297. { "time": 0.3333, "angle": -7.96, "curve": "stepped" },
  1298. { "time": 0.5333, "angle": -7.96, "curve": "stepped" },
  1299. { "time": 1.1667, "angle": -7.96 }
  1300. ],
  1301. "translate": [
  1302. { "curve": "stepped" },
  1303. { "time": 0.3333, "curve": "stepped" },
  1304. { "time": 0.5333, "curve": "stepped" },
  1305. { "time": 1.1667 }
  1306. ],
  1307. "scale": [
  1308. { "curve": "stepped" },
  1309. { "time": 0.3333, "curve": "stepped" },
  1310. { "time": 0.5333, "curve": "stepped" },
  1311. { "time": 1.1667 }
  1312. ]
  1313. },
  1314. "bone6": {
  1315. "rotate": [
  1316. { "curve": 0.25, "c3": 0.75 },
  1317. { "time": 0.0667, "angle": 29.54, "curve": 0.25, "c3": 0.75 },
  1318. { "time": 0.2333, "angle": -17.03, "curve": 0.25, "c3": 0.75 },
  1319. { "time": 0.3333, "angle": -15.31, "curve": 0.25, "c3": 0.75 },
  1320. { "time": 0.5333, "angle": -33.83, "curve": 0.25, "c3": 0.75 },
  1321. { "time": 1.1667, "angle": 5.29 }
  1322. ],
  1323. "translate": [
  1324. { "curve": "stepped" },
  1325. { "time": 0.3333, "curve": "stepped" },
  1326. { "time": 0.5333, "curve": "stepped" },
  1327. { "time": 1.1667 }
  1328. ],
  1329. "scale": [
  1330. { "curve": "stepped" },
  1331. { "time": 0.3333, "curve": "stepped" },
  1332. { "time": 0.5333, "curve": "stepped" },
  1333. { "time": 1.1667 }
  1334. ]
  1335. },
  1336. "bone5": {
  1337. "rotate": [
  1338. { "angle": 4.52, "curve": 0.25, "c3": 0.75 },
  1339. { "time": 0.0667, "angle": 33.08, "curve": 0.25, "c3": 0.75 },
  1340. { "time": 0.2333, "angle": -49.11, "curve": 0.25, "c3": 0.75 },
  1341. { "time": 0.3333, "angle": -47.12, "curve": 0.25, "c3": 0.75 },
  1342. { "time": 0.5333, "angle": 33.23, "curve": 0.25, "c3": 0.75 },
  1343. { "time": 1.1667, "angle": 24.21 }
  1344. ],
  1345. "translate": [
  1346. { "curve": "stepped" },
  1347. { "time": 0.3333, "curve": "stepped" },
  1348. { "time": 0.5333, "curve": "stepped" },
  1349. { "time": 1.1667 }
  1350. ],
  1351. "scale": [
  1352. { "curve": "stepped" },
  1353. { "time": 0.3333, "curve": "stepped" },
  1354. { "time": 0.5333, "curve": "stepped" },
  1355. { "time": 1.1667 }
  1356. ]
  1357. },
  1358. "bone4": {
  1359. "rotate": [
  1360. { "angle": -0.51, "curve": 0.25, "c3": 0.75 },
  1361. { "time": 0.0667, "angle": -24.5, "curve": 0.25, "c3": 0.75 },
  1362. { "time": 0.3333, "angle": 11.82, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1363. { "time": 0.5, "angle": 20.68, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1364. { "time": 0.6667, "angle": -12.92, "curve": "stepped" },
  1365. { "time": 1.1667, "angle": -12.92 }
  1366. ],
  1367. "translate": [
  1368. { "curve": "stepped" },
  1369. { "time": 0.3333, "curve": "stepped" },
  1370. { "time": 0.6667, "curve": "stepped" },
  1371. { "time": 1.1667 }
  1372. ],
  1373. "scale": [
  1374. { "curve": "stepped" },
  1375. { "time": 0.3333, "curve": "stepped" },
  1376. { "time": 0.6667, "curve": "stepped" },
  1377. { "time": 1.1667 }
  1378. ]
  1379. },
  1380. "bone3": {
  1381. "rotate": [
  1382. { "curve": 0.25, "c3": 0.75 },
  1383. { "time": 0.0333, "angle": 1.07, "curve": 0.25, "c3": 0.75 },
  1384. { "time": 0.3333, "angle": -1.97, "curve": 0.25, "c3": 0.75 },
  1385. { "time": 0.6, "angle": -16.81, "curve": 0.25, "c3": 0.75 },
  1386. { "time": 1.1667, "angle": -13.92 }
  1387. ],
  1388. "translate": [
  1389. { "curve": 0.25, "c3": 0.75 },
  1390. { "time": 0.3333, "x": -5.12, "y": 0.2, "curve": 0.25, "c3": 0.75 },
  1391. { "time": 0.6, "x": -9.7, "y": -0.41, "curve": "stepped" },
  1392. { "time": 1.1667, "x": -9.7, "y": -0.41 }
  1393. ],
  1394. "scale": [
  1395. { "curve": "stepped" },
  1396. { "time": 0.3333, "curve": "stepped" },
  1397. { "time": 0.6, "curve": "stepped" },
  1398. { "time": 1.1667 }
  1399. ]
  1400. },
  1401. "bone2": {
  1402. "rotate": [
  1403. { "curve": 0.25, "c3": 0.75 },
  1404. { "time": 0.0333, "angle": -12.6, "curve": 0.25, "c3": 0.75 },
  1405. { "time": 0.3333, "angle": -3.2, "curve": 0.25, "c3": 0.75 },
  1406. { "time": 0.5333, "angle": -9.97, "curve": "stepped" },
  1407. { "time": 1.1667, "angle": -9.97 }
  1408. ],
  1409. "translate": [
  1410. { "curve": 0.25, "c3": 0.75 },
  1411. { "time": 0.3333, "y": -2.85, "curve": 0.25, "c3": 0.75 },
  1412. { "time": 0.5333, "x": -1.57, "y": -12.08, "curve": "stepped" },
  1413. { "time": 1.1667, "x": -1.57, "y": -12.08 }
  1414. ],
  1415. "scale": [
  1416. { "curve": "stepped" },
  1417. { "time": 0.3333, "curve": "stepped" },
  1418. { "time": 0.5333, "curve": "stepped" },
  1419. { "time": 1.1667 }
  1420. ]
  1421. },
  1422. "bone": {
  1423. "rotate": [
  1424. { "curve": 0.25, "c3": 0.75 },
  1425. { "time": 0.0333, "angle": -4.41, "curve": 0.25, "c3": 0.75 },
  1426. { "time": 0.3333, "angle": 20.9, "curve": 0.25, "c3": 0.75 },
  1427. { "time": 0.5333, "angle": 0.18, "curve": "stepped" },
  1428. { "time": 1.1667, "angle": 0.18 }
  1429. ],
  1430. "translate": [
  1431. { "curve": 0.25, "c3": 0.75 },
  1432. { "time": 0.0333, "x": -3.18, "y": -1.23, "curve": 0.28, "c3": 0.623, "c4": 0.39 },
  1433. { "time": 0.1, "x": -27.43, "y": -0.6, "curve": 0.326, "c2": 0.31, "c3": 0.757 },
  1434. { "time": 0.3333, "x": -31, "y": -4.98, "curve": 0.25, "c3": 0.75 },
  1435. { "time": 0.5333, "x": -12.52, "y": -48.1, "curve": 0.273, "c3": 0.62, "c4": 0.41 },
  1436. {
  1437. "time": 0.6667,
  1438. "x": -12.52,
  1439. "y": -34.6,
  1440. "curve": 0.316,
  1441. "c2": 0.28,
  1442. "c3": 0.66,
  1443. "c4": 0.65
  1444. },
  1445. { "time": 0.8667, "x": -12.52, "y": -50.14, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  1446. { "time": 1.1667, "x": -12.52, "y": -48.1 }
  1447. ],
  1448. "scale": [
  1449. { "curve": "stepped" },
  1450. { "time": 0.3333, "curve": "stepped" },
  1451. { "time": 0.5333, "curve": "stepped" },
  1452. { "time": 1.1667 }
  1453. ]
  1454. },
  1455. "bone22": {
  1456. "rotate": [
  1457. { "angle": 10.15, "curve": 0.258, "c3": 0.619, "c4": 0.45 },
  1458. { "time": 0.1333, "angle": -8.45, "curve": 0.363, "c2": 0.44, "c3": 0.755 },
  1459. { "time": 0.3333, "angle": 7.92, "curve": "stepped" },
  1460. { "time": 0.5333, "angle": 7.92, "curve": 0.25, "c3": 0.75 },
  1461. { "time": 0.7333, "angle": -0.55, "curve": 0.25, "c3": 0.75 },
  1462. { "time": 1.1667, "angle": 7.92 }
  1463. ],
  1464. "translate": [
  1465. { "curve": "stepped" },
  1466. { "time": 0.3333, "curve": "stepped" },
  1467. { "time": 0.5333, "curve": "stepped" },
  1468. { "time": 1.1667 }
  1469. ],
  1470. "scale": [
  1471. { "curve": "stepped" },
  1472. { "time": 0.3333, "curve": "stepped" },
  1473. { "time": 0.5333, "curve": "stepped" },
  1474. { "time": 1.1667 }
  1475. ]
  1476. },
  1477. "bone23": {
  1478. "rotate": [
  1479. { "angle": -5.64, "curve": 0.25, "c3": 0.75 },
  1480. { "time": 0.1, "angle": 29.45, "curve": 0.25, "c3": 0.75 },
  1481. { "time": 0.3333, "angle": -11.28, "curve": 0.25, "c3": 0.75 },
  1482. { "time": 0.4667, "angle": 12.27, "curve": 0.262, "c3": 0.618, "c4": 0.44 },
  1483. { "time": 0.6333, "angle": 36.99, "curve": 0.356, "c2": 0.42, "c3": 0.756 },
  1484. { "time": 0.9333, "angle": -20.33, "curve": 0.25, "c3": 0.75 },
  1485. { "time": 1.1667, "angle": -11.28 }
  1486. ],
  1487. "translate": [
  1488. { "curve": "stepped" },
  1489. { "time": 0.3333, "curve": "stepped" },
  1490. { "time": 0.4667, "curve": "stepped" },
  1491. { "time": 1.1667 }
  1492. ],
  1493. "scale": [
  1494. { "curve": "stepped" },
  1495. { "time": 0.3333, "curve": "stepped" },
  1496. { "time": 0.4667, "curve": "stepped" },
  1497. { "time": 1.1667 }
  1498. ]
  1499. },
  1500. "bone25": {
  1501. "rotate": [
  1502. { "curve": 0.25, "c3": 0.75 },
  1503. { "time": 0.0667, "angle": 47.97, "curve": 0.25, "c3": 0.75 },
  1504. { "time": 0.2333, "angle": -17.03, "curve": 0.25, "c3": 0.75 },
  1505. { "time": 0.3333, "angle": -15.31, "curve": 0.25, "c3": 0.75 },
  1506. { "time": 0.5333, "angle": -33.83, "curve": 0.25, "c3": 0.75 },
  1507. { "time": 1.1667, "angle": 5.29 }
  1508. ],
  1509. "translate": [
  1510. { "curve": "stepped" },
  1511. { "time": 0.3333, "curve": "stepped" },
  1512. { "time": 0.5333, "curve": "stepped" },
  1513. { "time": 1.1667 }
  1514. ],
  1515. "scale": [
  1516. { "curve": "stepped" },
  1517. { "time": 0.3333, "curve": "stepped" },
  1518. { "time": 0.5333, "curve": "stepped" },
  1519. { "time": 1.1667 }
  1520. ]
  1521. },
  1522. "bone26": {
  1523. "rotate": [
  1524. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  1525. { "time": 0.0667, "angle": 35.27, "curve": 0.25, "c3": 0.75 },
  1526. { "time": 0.3333, "angle": -42.98, "curve": 0.25, "c3": 0.75 },
  1527. { "time": 0.5333, "angle": 13.79, "curve": "stepped" },
  1528. { "time": 1.1667, "angle": 13.79 }
  1529. ],
  1530. "translate": [
  1531. { "curve": "stepped" },
  1532. { "time": 0.3333, "curve": "stepped" },
  1533. { "time": 0.5333, "curve": "stepped" },
  1534. { "time": 1.1667 }
  1535. ],
  1536. "scale": [
  1537. { "curve": "stepped" },
  1538. { "time": 0.3333, "curve": "stepped" },
  1539. { "time": 0.5333, "curve": "stepped" },
  1540. { "time": 1.1667 }
  1541. ]
  1542. },
  1543. "bone27": {
  1544. "rotate": [
  1545. { "curve": 0.25, "c3": 0.75 },
  1546. { "time": 0.0667, "angle": 32.7, "curve": 0.25, "c3": 0.75 },
  1547. { "time": 0.3333, "angle": -17.03, "curve": 0.25, "c3": 0.75 },
  1548. { "time": 0.5333, "angle": 3.01, "curve": 0.256, "c3": 0.619, "c4": 0.46 },
  1549. { "time": 0.8, "angle": -15.73, "curve": 0.366, "c2": 0.46, "c3": 0.754 },
  1550. { "time": 1.1667, "angle": 3.01 }
  1551. ],
  1552. "translate": [
  1553. { "curve": "stepped" },
  1554. { "time": 0.3333, "curve": "stepped" },
  1555. { "time": 0.5333, "curve": "stepped" },
  1556. { "time": 1.1667 }
  1557. ],
  1558. "scale": [
  1559. { "curve": "stepped" },
  1560. { "time": 0.3333, "curve": "stepped" },
  1561. { "time": 0.5333, "curve": "stepped" },
  1562. { "time": 1.1667 }
  1563. ]
  1564. },
  1565. "bone21": {
  1566. "rotate": [
  1567. { "angle": 4.52, "curve": 0.25, "c3": 0.75 },
  1568. { "time": 0.0667, "angle": 36.24, "curve": 0.25, "c3": 0.75 },
  1569. { "time": 0.3333, "angle": -25.76, "curve": 0.25, "c3": 0.75 },
  1570. { "time": 0.5333, "angle": 29.09, "curve": 0.256, "c3": 0.619, "c4": 0.46 },
  1571. { "time": 0.8, "angle": 10.36, "curve": 0.366, "c2": 0.46, "c3": 0.754 },
  1572. { "time": 1.1667, "angle": 29.09 }
  1573. ],
  1574. "translate": [
  1575. { "curve": "stepped" },
  1576. { "time": 0.3333, "curve": "stepped" },
  1577. { "time": 0.5333, "curve": "stepped" },
  1578. { "time": 1.1667 }
  1579. ],
  1580. "scale": [
  1581. { "curve": "stepped" },
  1582. { "time": 0.3333, "curve": "stepped" },
  1583. { "time": 0.5333, "curve": "stepped" },
  1584. { "time": 1.1667 }
  1585. ]
  1586. },
  1587. "bone28": {
  1588. "rotate": [
  1589. { "angle": -5.07, "curve": 0.25, "c3": 0.75 },
  1590. { "time": 0.1667, "angle": 16.94, "curve": 0.25, "c3": 0.75 },
  1591. { "time": 0.3333, "angle": -5.07, "curve": 0.25, "c3": 0.75 },
  1592. { "time": 0.5333, "angle": -12.36, "curve": 0.25, "c3": 0.75 },
  1593. { "time": 0.6667, "angle": 7.74, "curve": 0.25, "c3": 0.75 },
  1594. { "time": 1.1667, "angle": -5.07 }
  1595. ],
  1596. "translate": [
  1597. { "curve": "stepped" },
  1598. { "time": 0.3333, "curve": "stepped" },
  1599. { "time": 0.5333, "curve": "stepped" },
  1600. { "time": 1.1667 }
  1601. ],
  1602. "scale": [
  1603. { "curve": "stepped" },
  1604. { "time": 0.3333, "curve": "stepped" },
  1605. { "time": 0.5333, "curve": "stepped" },
  1606. { "time": 1.1667 }
  1607. ]
  1608. },
  1609. "bone29": {
  1610. "rotate": [
  1611. { "angle": 7.66, "curve": 0.25, "c3": 0.75 },
  1612. { "time": 0.1667, "angle": -20.27, "curve": 0.25, "c3": 0.75 },
  1613. { "time": 0.3333, "angle": 7.66, "curve": 0.25, "c3": 0.75 },
  1614. { "time": 0.5333, "angle": 23.73, "curve": 0.25, "c3": 0.75 },
  1615. { "time": 0.6667, "angle": -0.7, "curve": 0.25, "c3": 0.75 },
  1616. { "time": 1.1667, "angle": 7.66 }
  1617. ],
  1618. "translate": [
  1619. { "curve": "stepped" },
  1620. { "time": 0.3333, "curve": "stepped" },
  1621. { "time": 0.5333, "curve": "stepped" },
  1622. { "time": 1.1667 }
  1623. ],
  1624. "scale": [
  1625. { "curve": "stepped" },
  1626. { "time": 0.3333, "curve": "stepped" },
  1627. { "time": 0.5333, "curve": "stepped" },
  1628. { "time": 1.1667 }
  1629. ]
  1630. },
  1631. "bone24": {
  1632. "rotate": [
  1633. { "curve": "stepped" },
  1634. { "time": 0.3333, "curve": 0.25, "c3": 0.75 },
  1635. { "time": 0.5333, "angle": -2.96, "curve": "stepped" },
  1636. { "time": 1.1667, "angle": -2.96 }
  1637. ],
  1638. "translate": [
  1639. { "curve": "stepped" },
  1640. { "time": 0.3333, "curve": "stepped" },
  1641. { "time": 0.5333, "curve": "stepped" },
  1642. { "time": 1.1667 }
  1643. ],
  1644. "scale": [
  1645. { "curve": 0.305, "c3": 0.64, "c4": 0.36 },
  1646. { "time": 0.0333, "y": -1, "curve": "stepped" },
  1647. { "time": 0.3333, "y": -1, "curve": "stepped" },
  1648. { "time": 0.5333, "y": -1, "curve": "stepped" },
  1649. { "time": 1.1667, "y": -1 }
  1650. ]
  1651. },
  1652. "bone30": {
  1653. "rotate": [
  1654. {},
  1655. { "time": 0.2, "angle": -75.24 },
  1656. { "time": 0.3333, "angle": -120.11 },
  1657. { "time": 0.4333, "angle": -91.96 },
  1658. { "time": 0.5667, "angle": -101.65 }
  1659. ],
  1660. "translate": [
  1661. {},
  1662. { "time": 0.2, "x": 37.98, "y": -29.93 },
  1663. { "time": 0.3333, "x": 42.59, "y": -161.14 },
  1664. { "time": 0.5667, "x": 42.59, "y": -216.39 }
  1665. ],
  1666. "scale": [
  1667. { "y": 1.149 },
  1668. { "time": 0.3333 },
  1669. { "time": 0.5667, "y": 0.826 }
  1670. ]
  1671. },
  1672. "shadow": {
  1673. "translate": [
  1674. {},
  1675. { "time": 0.0667, "x": 7.07 },
  1676. { "time": 0.1333, "x": -2.36 },
  1677. { "time": 0.2667, "x": -18.85 },
  1678. { "time": 0.5, "x": -11.78 }
  1679. ],
  1680. "scale": [
  1681. { "curve": "stepped" },
  1682. { "time": 0.3333 },
  1683. { "time": 0.5, "x": 1.167 }
  1684. ]
  1685. }
  1686. }
  1687. },
  1688. "run": {
  1689. "slots": {
  1690. "fazhang": {
  1691. "attachment": [
  1692. { "name": "fazhang" }
  1693. ]
  1694. },
  1695. "zuotui": {
  1696. "attachment": [
  1697. { "name": "zuotui" }
  1698. ]
  1699. }
  1700. },
  1701. "bones": {
  1702. "root": {
  1703. "rotate": [
  1704. { "curve": "stepped" },
  1705. { "time": 1.2 }
  1706. ],
  1707. "translate": [
  1708. { "curve": "stepped" },
  1709. { "time": 1.2 }
  1710. ],
  1711. "scale": [
  1712. { "curve": "stepped" },
  1713. { "time": 1.2 }
  1714. ]
  1715. },
  1716. "bone20": {
  1717. "rotate": [
  1718. { "angle": 22.88 },
  1719. { "time": 0.0667, "angle": -0.22 },
  1720. { "time": 0.3, "angle": -9.44 },
  1721. { "time": 0.4667, "angle": -31.08 },
  1722. { "time": 0.6, "angle": -81.97 },
  1723. { "time": 0.7, "angle": -73.11 },
  1724. { "time": 0.9, "angle": -25.34 },
  1725. { "time": 1.2, "angle": 22.88 }
  1726. ],
  1727. "translate": [
  1728. { "x": -2.83, "y": 4.33 },
  1729. { "time": 0.0667, "x": -14.75, "y": 0.28 },
  1730. { "time": 0.3, "x": -69.06, "y": 1.81 },
  1731. { "time": 0.4667, "x": -119.46, "y": 4.83 },
  1732. { "time": 0.6, "x": -137.39, "y": 13.25 },
  1733. { "time": 0.7, "x": -108.24, "y": 24.46 },
  1734. { "time": 0.9, "x": -43.66, "y": 4.98 },
  1735. { "time": 1.2, "x": -2.83, "y": 4.33 }
  1736. ],
  1737. "scale": [
  1738. { "curve": "stepped" },
  1739. { "time": 1.2 }
  1740. ]
  1741. },
  1742. "bone19": {
  1743. "rotate": [
  1744. { "curve": "stepped" },
  1745. { "time": 1.2 }
  1746. ],
  1747. "translate": [
  1748. { "x": -11.49, "y": 3.74, "curve": 0.268, "c3": 0.618, "c4": 0.42 },
  1749. {
  1750. "time": 0.3,
  1751. "x": -59.56,
  1752. "y": 31.41,
  1753. "curve": 0.322,
  1754. "c2": 0.3,
  1755. "c3": 0.661,
  1756. "c4": 0.65
  1757. },
  1758. { "time": 0.6, "x": -62.89, "y": 4.41, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1759. { "time": 1.2, "x": -11.49, "y": 3.74 }
  1760. ],
  1761. "scale": [
  1762. { "curve": "stepped" },
  1763. { "time": 1.2 }
  1764. ]
  1765. },
  1766. "bone18": {
  1767. "rotate": [
  1768. { "angle": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1769. { "time": 0.1333, "angle": -55.91, "curve": 0.25, "c3": 0.75 },
  1770. { "time": 0.6, "angle": 29.62, "curve": 0.335, "c2": 0.34, "c3": 0.67, "c4": 0.68 },
  1771. { "time": 0.7, "angle": 10.99, "curve": 0.25, "c3": 0.75 },
  1772. { "time": 0.9333, "angle": 6.61, "curve": 0.25, "c3": 0.75 },
  1773. { "time": 1.2, "angle": -41.86 }
  1774. ],
  1775. "translate": [
  1776. { "x": -9.29, "y": 16.37 },
  1777. { "time": 0.1333, "x": 18.38, "y": 20.51 },
  1778. { "time": 0.6, "x": 124.21, "y": 3.58 },
  1779. { "time": 0.7, "x": 112.48, "y": 0.13 },
  1780. { "time": 0.9333, "x": 45.25, "y": 3.52 },
  1781. { "time": 1.2, "x": -9.29, "y": 16.37 }
  1782. ],
  1783. "scale": [
  1784. { "curve": "stepped" },
  1785. { "time": 1.2 }
  1786. ]
  1787. },
  1788. "bone17": {
  1789. "rotate": [
  1790. { "curve": "stepped" },
  1791. { "time": 1.2 }
  1792. ],
  1793. "translate": [
  1794. { "curve": 0.276, "c3": 0.621, "c4": 0.4 },
  1795. {
  1796. "time": 0.3,
  1797. "x": -2.92,
  1798. "y": 29.01,
  1799. "curve": 0.314,
  1800. "c2": 0.27,
  1801. "c3": 0.657,
  1802. "c4": 0.64
  1803. },
  1804. {
  1805. "time": 0.6,
  1806. "x": 63.38,
  1807. "y": 9.45,
  1808. "curve": 0.343,
  1809. "c2": 0.36,
  1810. "c3": 0.686,
  1811. "c4": 0.73
  1812. },
  1813. { "time": 0.9, "x": 0.09, "y": 29.05, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
  1814. { "time": 1.2 }
  1815. ],
  1816. "scale": [
  1817. { "curve": "stepped" },
  1818. { "time": 1.2 }
  1819. ]
  1820. },
  1821. "bone16": {
  1822. "rotate": [
  1823. { "angle": 21.5, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1824. { "time": 0.1667, "angle": 27.67, "curve": 0.25, "c3": 0.75 },
  1825. { "time": 0.4667, "angle": 15.34, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1826. { "time": 0.6, "angle": 21.5, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1827. { "time": 0.7667, "angle": 27.67, "curve": 0.25, "c3": 0.75 },
  1828. { "time": 1.0667, "angle": 15.34, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1829. { "time": 1.2, "angle": 21.5 }
  1830. ],
  1831. "translate": [
  1832. { "curve": "stepped" },
  1833. { "time": 0.6, "curve": "stepped" },
  1834. { "time": 1.2 }
  1835. ],
  1836. "scale": [
  1837. { "curve": "stepped" },
  1838. { "time": 0.6, "curve": "stepped" },
  1839. { "time": 1.2 }
  1840. ]
  1841. },
  1842. "bone15": {
  1843. "rotate": [
  1844. { "angle": 9.7, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1845. { "time": 0.1667, "angle": 4.07, "curve": 0.25, "c3": 0.75 },
  1846. { "time": 0.4667, "angle": 15.34, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1847. { "time": 0.6, "angle": 9.7, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1848. { "time": 0.7667, "angle": 4.07, "curve": 0.25, "c3": 0.75 },
  1849. { "time": 1.0667, "angle": 15.34, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1850. { "time": 1.2, "angle": 9.7 }
  1851. ],
  1852. "translate": [
  1853. { "curve": 0.25, "c3": 0.75 },
  1854. { "time": 0.6, "x": 42.34, "y": 19.08, "curve": 0.25, "c3": 0.75 },
  1855. { "time": 1.2 }
  1856. ],
  1857. "scale": [
  1858. { "curve": "stepped" },
  1859. { "time": 0.6, "curve": "stepped" },
  1860. { "time": 1.2 }
  1861. ]
  1862. },
  1863. "bone14": {
  1864. "rotate": [
  1865. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  1866. { "time": 0.3, "angle": -11.92, "curve": 0.25, "c3": 0.75 },
  1867. { "time": 0.6, "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  1868. { "time": 0.9, "angle": -10.83, "curve": 0.25, "c3": 0.75 },
  1869. { "time": 1.2, "angle": 12.56 }
  1870. ],
  1871. "translate": [
  1872. { "curve": "stepped" },
  1873. { "time": 0.6, "curve": "stepped" },
  1874. { "time": 1.2 }
  1875. ],
  1876. "scale": [
  1877. { "curve": "stepped" },
  1878. { "time": 0.6, "curve": "stepped" },
  1879. { "time": 1.2 }
  1880. ]
  1881. },
  1882. "bone13": {
  1883. "rotate": [
  1884. { "angle": -9.43, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1885. { "time": 0.1667, "angle": -23.18, "curve": 0.25, "c3": 0.75 },
  1886. { "time": 0.4667, "angle": 4.32, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1887. { "time": 0.6, "angle": -9.43, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  1888. { "time": 0.7667, "angle": -23.18, "curve": 0.25, "c3": 0.75 },
  1889. { "time": 1.0667, "angle": 4.32, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  1890. { "time": 1.2, "angle": -9.43 }
  1891. ],
  1892. "translate": [
  1893. { "curve": "stepped" },
  1894. { "time": 0.6, "curve": "stepped" },
  1895. { "time": 1.2 }
  1896. ],
  1897. "scale": [
  1898. { "curve": "stepped" },
  1899. { "time": 0.6, "curve": "stepped" },
  1900. { "time": 1.2 }
  1901. ]
  1902. },
  1903. "bone12": {
  1904. "rotate": [
  1905. { "angle": 8.08, "curve": 0.25, "c3": 0.75 },
  1906. { "time": 0.6, "angle": -3.94, "curve": 0.25, "c3": 0.75 },
  1907. { "time": 1.2, "angle": 8.08 }
  1908. ],
  1909. "translate": [
  1910. { "curve": "stepped" },
  1911. { "time": 1.2 }
  1912. ],
  1913. "scale": [
  1914. { "curve": "stepped" },
  1915. { "time": 1.2 }
  1916. ]
  1917. },
  1918. "bone11": {
  1919. "rotate": [
  1920. { "curve": 0.25, "c3": 0.75 },
  1921. { "time": 0.6, "angle": 1.65, "curve": 0.25, "c3": 0.75 },
  1922. { "time": 1.2 }
  1923. ],
  1924. "translate": [
  1925. { "curve": "stepped" },
  1926. { "time": 1.2 }
  1927. ],
  1928. "scale": [
  1929. { "curve": "stepped" },
  1930. { "time": 1.2 }
  1931. ]
  1932. },
  1933. "bone10": {
  1934. "rotate": [
  1935. { "angle": -151.59, "curve": 0.25, "c3": 0.75 },
  1936. { "time": 0.6, "angle": -141.78, "curve": 0.25, "c3": 0.75 },
  1937. { "time": 1.2, "angle": -151.59 }
  1938. ],
  1939. "translate": [
  1940. { "curve": "stepped" },
  1941. { "time": 1.2 }
  1942. ],
  1943. "scale": [
  1944. { "x": -1 }
  1945. ]
  1946. },
  1947. "bone9": {
  1948. "rotate": [
  1949. { "curve": 0.282, "c2": 0.36, "c3": 0.75 },
  1950. { "time": 0.3, "angle": 11.02, "curve": 0.25, "c3": 0.75 },
  1951. { "time": 0.9, "angle": -10.12, "curve": 0.25, "c3": 0.746, "c4": 0.66 },
  1952. { "time": 1.2 }
  1953. ],
  1954. "translate": [
  1955. { "curve": "stepped" },
  1956. { "time": 1.2 }
  1957. ],
  1958. "scale": [
  1959. { "curve": "stepped" },
  1960. { "time": 1.2 }
  1961. ]
  1962. },
  1963. "bone8": {
  1964. "rotate": [
  1965. { "curve": 0.25, "c3": 0.75 },
  1966. { "time": 0.6, "angle": -29.69, "curve": 0.25, "c3": 0.75 },
  1967. { "time": 1.2 }
  1968. ],
  1969. "translate": [
  1970. { "curve": "stepped" },
  1971. { "time": 1.2 }
  1972. ],
  1973. "scale": [
  1974. { "curve": "stepped" },
  1975. { "time": 1.2 }
  1976. ]
  1977. },
  1978. "bone7": {
  1979. "rotate": [
  1980. { "angle": -3.57, "curve": 0.25, "c3": 0.75 },
  1981. { "time": 0.6, "angle": 11.84, "curve": 0.25, "c3": 0.75 },
  1982. { "time": 1.2, "angle": -3.57 }
  1983. ],
  1984. "translate": [
  1985. { "curve": "stepped" },
  1986. { "time": 1.2 }
  1987. ],
  1988. "scale": [
  1989. { "curve": "stepped" },
  1990. { "time": 1.2 }
  1991. ]
  1992. },
  1993. "bone6": {
  1994. "rotate": [
  1995. { "curve": 0.25, "c3": 0.75 },
  1996. { "time": 0.3, "angle": 31.25, "curve": 0.25, "c3": 0.75 },
  1997. { "time": 0.6, "curve": 0.25, "c3": 0.75 },
  1998. { "time": 0.9, "angle": 31.25, "curve": 0.25, "c3": 0.75 },
  1999. { "time": 1.2 }
  2000. ],
  2001. "translate": [
  2002. { "curve": "stepped" },
  2003. { "time": 0.6, "curve": "stepped" },
  2004. { "time": 1.2 }
  2005. ],
  2006. "scale": [
  2007. { "curve": "stepped" },
  2008. { "time": 0.6, "curve": "stepped" },
  2009. { "time": 1.2 }
  2010. ]
  2011. },
  2012. "bone5": {
  2013. "rotate": [
  2014. { "angle": 4.52, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2015. { "time": 0.1333, "angle": 9.03, "curve": 0.25, "c3": 0.75 },
  2016. { "time": 0.4333, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2017. { "time": 0.6, "angle": 4.52, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2018. { "time": 0.7333, "angle": 9.03, "curve": 0.25, "c3": 0.75 },
  2019. { "time": 1.0333, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2020. { "time": 1.2, "angle": 4.52 }
  2021. ],
  2022. "translate": [
  2023. { "curve": "stepped" },
  2024. { "time": 0.6, "curve": "stepped" },
  2025. { "time": 1.2 }
  2026. ],
  2027. "scale": [
  2028. { "curve": "stepped" },
  2029. { "time": 0.6, "curve": "stepped" },
  2030. { "time": 1.2 }
  2031. ]
  2032. },
  2033. "bone4": {
  2034. "rotate": [
  2035. { "angle": -0.51, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2036. { "time": 0.1667, "angle": 1.78, "curve": 0.25, "c3": 0.75 },
  2037. { "time": 0.4667, "angle": -2.81, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2038. { "time": 0.6, "angle": -0.51, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2039. { "time": 0.7667, "angle": 1.78, "curve": 0.25, "c3": 0.75 },
  2040. { "time": 1.0667, "angle": -2.81, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2041. { "time": 1.2, "angle": -0.51 }
  2042. ],
  2043. "translate": [
  2044. { "curve": "stepped" },
  2045. { "time": 0.6, "curve": "stepped" },
  2046. { "time": 1.2 }
  2047. ],
  2048. "scale": [
  2049. { "curve": "stepped" },
  2050. { "time": 0.6, "curve": "stepped" },
  2051. { "time": 1.2 }
  2052. ]
  2053. },
  2054. "bone3": {
  2055. "rotate": [
  2056. { "curve": "stepped" },
  2057. { "time": 0.6, "curve": "stepped" },
  2058. { "time": 1.2 }
  2059. ],
  2060. "translate": [
  2061. { "curve": 0.25, "c3": 0.75 },
  2062. { "time": 0.3, "x": -7.15, "y": 0.27, "curve": 0.25, "c3": 0.75 },
  2063. { "time": 0.6, "curve": 0.25, "c3": 0.75 },
  2064. { "time": 0.9, "x": -7.15, "y": 0.27, "curve": 0.25, "c3": 0.75 },
  2065. { "time": 1.2 }
  2066. ],
  2067. "scale": [
  2068. { "curve": "stepped" },
  2069. { "time": 0.6, "curve": "stepped" },
  2070. { "time": 1.2 }
  2071. ]
  2072. },
  2073. "bone2": {
  2074. "rotate": [
  2075. { "curve": "stepped" },
  2076. { "time": 0.6, "curve": "stepped" },
  2077. { "time": 1.2 }
  2078. ],
  2079. "translate": [
  2080. { "curve": 0.25, "c3": 0.75 },
  2081. { "time": 0.3, "y": -3.98, "curve": 0.25, "c3": 0.75 },
  2082. { "time": 0.6, "curve": 0.25, "c3": 0.75 },
  2083. { "time": 0.9, "y": -3.98, "curve": 0.25, "c3": 0.75 },
  2084. { "time": 1.2 }
  2085. ],
  2086. "scale": [
  2087. { "curve": "stepped" },
  2088. { "time": 0.6, "curve": "stepped" },
  2089. { "time": 1.2 }
  2090. ]
  2091. },
  2092. "bone": {
  2093. "rotate": [
  2094. { "angle": -12.2, "curve": "stepped" },
  2095. { "time": 0.6, "angle": -12.2, "curve": "stepped" },
  2096. { "time": 1.2, "angle": -12.2 }
  2097. ],
  2098. "translate": [
  2099. { "curve": 0.25, "c3": 0.75 },
  2100. { "time": 0.3, "x": 5.14, "y": -11.64, "curve": 0.25, "c3": 0.75 },
  2101. { "time": 0.6, "curve": 0.25, "c3": 0.75 },
  2102. { "time": 0.9, "x": 5.14, "y": -11.64, "curve": 0.25, "c3": 0.75 },
  2103. { "time": 1.2 }
  2104. ],
  2105. "scale": [
  2106. { "curve": "stepped" },
  2107. { "time": 0.6, "curve": "stepped" },
  2108. { "time": 1.2 }
  2109. ]
  2110. },
  2111. "bone22": {
  2112. "rotate": [
  2113. { "curve": 0.282, "c2": 0.36, "c3": 0.75 },
  2114. { "time": 0.3, "angle": 11.02, "curve": 0.25, "c3": 0.75 },
  2115. { "time": 0.9, "angle": -10.12, "curve": 0.25, "c3": 0.746, "c4": 0.66 },
  2116. { "time": 1.2 }
  2117. ],
  2118. "translate": [
  2119. { "curve": "stepped" },
  2120. { "time": 1.2 }
  2121. ],
  2122. "scale": [
  2123. { "curve": "stepped" },
  2124. { "time": 1.2 }
  2125. ]
  2126. },
  2127. "bone23": {
  2128. "rotate": [
  2129. { "angle": 15.34, "curve": 0.25, "c3": 0.75 },
  2130. { "time": 0.3, "angle": -23.65, "curve": 0.25, "c3": 0.75 },
  2131. { "time": 0.6, "angle": 15.34, "curve": 0.25, "c3": 0.75 },
  2132. { "time": 0.9, "angle": -23.65, "curve": 0.25, "c3": 0.75 },
  2133. { "time": 1.2, "angle": 15.34 }
  2134. ],
  2135. "translate": [
  2136. { "curve": "stepped" },
  2137. { "time": 0.6, "curve": "stepped" },
  2138. { "time": 1.2 }
  2139. ],
  2140. "scale": [
  2141. { "curve": "stepped" },
  2142. { "time": 0.6, "curve": "stepped" },
  2143. { "time": 1.2 }
  2144. ]
  2145. },
  2146. "bone25": {
  2147. "rotate": [
  2148. { "curve": 0.25, "c3": 0.75 },
  2149. { "time": 0.3, "angle": 31.25, "curve": 0.25, "c3": 0.75 },
  2150. { "time": 0.6, "curve": 0.25, "c3": 0.75 },
  2151. { "time": 0.9, "angle": 31.25, "curve": 0.25, "c3": 0.75 },
  2152. { "time": 1.2 }
  2153. ],
  2154. "translate": [
  2155. { "curve": "stepped" },
  2156. { "time": 0.6, "curve": "stepped" },
  2157. { "time": 1.2 }
  2158. ],
  2159. "scale": [
  2160. { "curve": "stepped" },
  2161. { "time": 0.6, "curve": "stepped" },
  2162. { "time": 1.2 }
  2163. ]
  2164. },
  2165. "bone26": {
  2166. "rotate": [
  2167. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  2168. { "time": 0.3, "angle": -11.92, "curve": 0.25, "c3": 0.75 },
  2169. { "time": 0.6, "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  2170. { "time": 0.9, "angle": -10.83, "curve": 0.25, "c3": 0.75 },
  2171. { "time": 1.2, "angle": 12.56 }
  2172. ],
  2173. "translate": [
  2174. { "curve": "stepped" },
  2175. { "time": 0.6, "curve": "stepped" },
  2176. { "time": 1.2 }
  2177. ],
  2178. "scale": [
  2179. { "curve": "stepped" },
  2180. { "time": 0.6, "curve": "stepped" },
  2181. { "time": 1.2 }
  2182. ]
  2183. },
  2184. "bone27": {
  2185. "rotate": [
  2186. { "angle": -5.44, "curve": 0.25, "c3": 0.75 },
  2187. { "time": 0.3, "angle": 25.81, "curve": 0.25, "c3": 0.75 },
  2188. { "time": 0.6, "angle": -5.44, "curve": 0.25, "c3": 0.75 },
  2189. { "time": 0.9, "angle": 25.81, "curve": 0.25, "c3": 0.75 },
  2190. { "time": 1.2, "angle": -5.44 }
  2191. ],
  2192. "translate": [
  2193. { "curve": "stepped" },
  2194. { "time": 0.6, "curve": "stepped" },
  2195. { "time": 1.2 }
  2196. ],
  2197. "scale": [
  2198. { "curve": "stepped" },
  2199. { "time": 0.6, "curve": "stepped" },
  2200. { "time": 1.2 }
  2201. ]
  2202. },
  2203. "bone21": {
  2204. "rotate": [
  2205. { "angle": -0.93, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2206. { "time": 0.1667, "angle": 3.59, "curve": 0.25, "c3": 0.75 },
  2207. { "time": 0.4667, "angle": -5.44, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2208. { "time": 0.6, "angle": -0.93, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2209. { "time": 0.7667, "angle": 3.59, "curve": 0.25, "c3": 0.75 },
  2210. { "time": 1.0667, "angle": -5.44, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2211. { "time": 1.2, "angle": -0.93 }
  2212. ],
  2213. "translate": [
  2214. { "curve": "stepped" },
  2215. { "time": 0.6, "curve": "stepped" },
  2216. { "time": 1.2 }
  2217. ],
  2218. "scale": [
  2219. { "curve": "stepped" },
  2220. { "time": 0.6, "curve": "stepped" },
  2221. { "time": 1.2 }
  2222. ]
  2223. },
  2224. "bone28": {
  2225. "rotate": [
  2226. { "angle": -5.07, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2227. { "time": 0.1667, "angle": -10.15, "curve": 0.25, "c3": 0.75 },
  2228. { "time": 0.4667, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2229. { "time": 0.6, "angle": -5.07, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2230. { "time": 0.7667, "angle": -10.15, "curve": 0.25, "c3": 0.75 },
  2231. { "time": 1.0667, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2232. { "time": 1.2, "angle": -5.07 }
  2233. ],
  2234. "translate": [
  2235. { "curve": "stepped" },
  2236. { "time": 0.6, "curve": "stepped" },
  2237. { "time": 1.2 }
  2238. ],
  2239. "scale": [
  2240. { "curve": "stepped" },
  2241. { "time": 0.6, "curve": "stepped" },
  2242. { "time": 1.2 }
  2243. ]
  2244. },
  2245. "bone29": {
  2246. "rotate": [
  2247. { "angle": 7.66, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2248. { "time": 0.1667, "angle": 15.32, "curve": 0.25, "c3": 0.75 },
  2249. { "time": 0.4667, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2250. { "time": 0.6, "angle": 7.66, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2251. { "time": 0.7667, "angle": 15.32, "curve": 0.25, "c3": 0.75 },
  2252. { "time": 1.0667, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2253. { "time": 1.2, "angle": 7.66 }
  2254. ],
  2255. "translate": [
  2256. { "curve": "stepped" },
  2257. { "time": 0.6, "curve": "stepped" },
  2258. { "time": 1.2 }
  2259. ],
  2260. "scale": [
  2261. { "curve": "stepped" },
  2262. { "time": 0.6, "curve": "stepped" },
  2263. { "time": 1.2 }
  2264. ]
  2265. },
  2266. "shadow": {
  2267. "translate": [
  2268. { "curve": "stepped" },
  2269. { "time": 1.2 }
  2270. ],
  2271. "scale": [
  2272. { "curve": 0.25, "c3": 0.75 },
  2273. { "time": 0.3, "x": 1.067, "curve": 0.25, "c3": 0.75 },
  2274. { "time": 0.6, "curve": 0.25, "c3": 0.75 },
  2275. { "time": 0.9, "x": 1.067, "curve": 0.25, "c3": 0.75 },
  2276. { "time": 1.2 }
  2277. ]
  2278. }
  2279. },
  2280. "deform": {
  2281. "default": {
  2282. "fazhang": {
  2283. "fazhang": [
  2284. {}
  2285. ]
  2286. },
  2287. "kuzi": {
  2288. "kuzi": [
  2289. {
  2290. "vertices": [ 1.4054, 1.62047, 1.56526, -1.46664, 0, 0, 0, 0, 0, 0, 0, 0, 2.78256, 3.25002, 3.14066, -2.90543, 20.87307, 16.38817, 15.50084, 10.11353, -7.64631, 16.85472, -2.91558, 18.27744, 8.39516, 1.81445, -0.52073, 8.57319, 1.76583, 8.40552, 7.87676, 4.21304, -2.97012, 8.42435, -0.63575, 8.91006, 5.99654, 1.29602, -0.37198, 6.1237, 1.26132, 6.00393, 5.7051, 4.5806, -3.66279, 6.3335, -1.85668, 7.07691, 0, 0, 0, 0, 0, 0, 0.48616, -0.31338, 0.38347, 0.43304, 0.48434, 0.31616, -2.7442, 1.08063, -1.44717, -2.56987, -0.29465, -2.93456, 0, 0, 0, 0, 0, 0, 3.27427, 6.14737, -5.63972, 4.0872, -6.80568, 1.4814, 3.01506, 7.34666, 0.87567, 5.62898, 5.5912, -1.09136, -4.67859, -3.52184, -3.33938, 4.81049, -0.76727, -2.25806, -2.22689, 0.85349, 1.89053, -2.93909, -3.00943, -1.77617, 13.8836, -0.34701, -0.88024, -13.86, 12.28452, -0.69261, -1.16412, -12.24882, 14.08864, -3.2318, -3.77079, -13.95402, 15.85225, 3.86506, 3.25302, -15.9891 ],
  2291. "curve": 0.25,
  2292. "c3": 0.625,
  2293. "c4": 0.5
  2294. },
  2295. {
  2296. "time": 0.3,
  2297. "offset": 12,
  2298. "vertices": [ 7.57024, 1.43941, 1.14767, -7.61997, 24.92898, 19.04675, 23.94432, 7.26337, -3.78365, 24.72318, -5.22884, 22.40182, 8.39516, 1.81445, -0.52073, 8.57319, 1.76583, 8.40552, 7.87676, 4.21304, -2.97012, 8.42435, -0.63575, 8.91006, 5.99654, 1.29602, -0.37198, 6.1237, 1.26132, 6.00393, 5.7051, 4.5806, -3.66279, 6.3335, -1.85668, 7.07691, 0, 0, 0, 0, 0, 0, 0.48616, -0.31338, 0.38347, 0.43304, 0.48434, 0.31616, -5.95626, 4.84189, -5.61388, -5.23515, -3.0421, -7.04752, -7.19781, -1.55568, 0.55276, -7.34323, 2.35305, -6.73214, -17.28972, 2.38835, -4.73952, -16.79814, -5.57153, -18.93772, -19.78984, 10.11235, -15.54675, 1.73685, 2.3332, 15.46852, -4.67859, -3.52184, -3.33938, 4.81049, -0.76727, -2.25806, -2.22689, 0.85349, 1.89053, -2.93909, -3.00943, -1.77617, 13.8836, -0.34701, -0.88024, -13.86, 12.28452, -0.69261, -1.16412, -12.24882, 14.08864, -3.2318, -3.77079, -13.95402, 21.24661, 3.27521, 2.45631, -21.35678 ],
  2299. "curve": 0.375,
  2300. "c2": 0.5,
  2301. "c3": 0.75
  2302. },
  2303. {
  2304. "time": 0.6,
  2305. "vertices": [ 1.4054, 1.62047, 1.56526, -1.46664, 0, 0, 0, 0, 0, 0, 0, 0, 2.78256, 3.25002, 3.14066, -2.90543, 20.87307, 16.38817, 15.50084, 10.11353, -7.64631, 16.85472, -2.91558, 18.27744, 8.39516, 1.81445, -0.52073, 8.57319, 1.76583, 8.40552, 7.87676, 4.21304, -2.97012, 8.42435, -0.63575, 8.91006, 5.99654, 1.29602, -0.37198, 6.1237, 1.26132, 6.00393, 5.7051, 4.5806, -3.66279, 6.3335, -1.85668, 7.07691, 0, 0, 0, 0, 0, 0, 0.48616, -0.31338, 0.38347, 0.43304, 0.48434, 0.31616, -2.7442, 1.08063, -1.44717, -2.56987, -0.29465, -2.93456, 0, 0, 0, 0, 0, 0, 3.27427, 6.14737, -5.63972, 4.0872, -6.80568, 1.4814, 3.01506, 7.34666, 0.87567, 5.62898, 5.5912, -1.09136, -4.67859, -3.52184, -3.33938, 4.81049, -0.76727, -2.25806, -2.22689, 0.85349, 1.89053, -2.93909, -3.00943, -1.77617, 13.8836, -0.34701, -0.88024, -13.86, 12.28452, -0.69261, -1.16412, -12.24882, 14.08864, -3.2318, -3.77079, -13.95402, 15.85225, 3.86506, 3.25302, -15.9891 ],
  2306. "curve": 0.25,
  2307. "c3": 0.625,
  2308. "c4": 0.5
  2309. },
  2310. {
  2311. "time": 0.9,
  2312. "offset": 12,
  2313. "vertices": [ 7.57024, 1.43941, 1.14767, -7.61997, 24.92898, 19.04675, 23.94432, 7.26337, -3.78365, 24.72318, -5.22884, 22.40182, 8.39516, 1.81445, -0.52073, 8.57319, 1.76583, 8.40552, 7.87676, 4.21304, -2.97012, 8.42435, -0.63575, 8.91006, 5.99654, 1.29602, -0.37198, 6.1237, 1.26132, 6.00393, 5.7051, 4.5806, -3.66279, 6.3335, -1.85668, 7.07691, 0, 0, 0, 0, 0, 0, 0.48616, -0.31338, 0.38347, 0.43304, 0.48434, 0.31616, -5.95626, 4.84189, -5.61388, -5.23515, -3.0421, -7.04752, -7.19781, -1.55568, 0.55276, -7.34323, 2.35305, -6.73214, -17.28972, 2.38835, -4.73952, -16.79814, -5.57153, -18.93772, -19.78984, 10.11235, -15.54675, 1.73685, 2.3332, 15.46852, -4.67859, -3.52184, -3.33938, 4.81049, -0.76727, -2.25806, -2.22689, 0.85349, 1.89053, -2.93909, -3.00943, -1.77617, 13.8836, -0.34701, -0.88024, -13.86, 12.28452, -0.69261, -1.16412, -12.24882, 14.08864, -3.2318, -3.77079, -13.95402, 21.24661, 3.27521, 2.45631, -21.35678 ],
  2314. "curve": 0.375,
  2315. "c2": 0.5,
  2316. "c3": 0.75
  2317. },
  2318. {
  2319. "time": 1.2,
  2320. "vertices": [ 1.4054, 1.62047, 1.56526, -1.46664, 0, 0, 0, 0, 0, 0, 0, 0, 2.78256, 3.25002, 3.14066, -2.90543, 20.87307, 16.38817, 15.50084, 10.11353, -7.64631, 16.85472, -2.91558, 18.27744, 8.39516, 1.81445, -0.52073, 8.57319, 1.76583, 8.40552, 7.87676, 4.21304, -2.97012, 8.42435, -0.63575, 8.91006, 5.99654, 1.29602, -0.37198, 6.1237, 1.26132, 6.00393, 5.7051, 4.5806, -3.66279, 6.3335, -1.85668, 7.07691, 0, 0, 0, 0, 0, 0, 0.48616, -0.31338, 0.38347, 0.43304, 0.48434, 0.31616, -2.7442, 1.08063, -1.44717, -2.56987, -0.29465, -2.93456, 0, 0, 0, 0, 0, 0, 3.27427, 6.14737, -5.63972, 4.0872, -6.80568, 1.4814, 3.01506, 7.34666, 0.87567, 5.62898, 5.5912, -1.09136, -4.67859, -3.52184, -3.33938, 4.81049, -0.76727, -2.25806, -2.22689, 0.85349, 1.89053, -2.93909, -3.00943, -1.77617, 13.8836, -0.34701, -0.88024, -13.86, 12.28452, -0.69261, -1.16412, -12.24882, 14.08864, -3.2318, -3.77079, -13.95402, 15.85225, 3.86506, 3.25302, -15.9891 ]
  2321. }
  2322. ]
  2323. },
  2324. "zuotui": {
  2325. "zuotui": [
  2326. {},
  2327. {
  2328. "time": 0.6,
  2329. "offset": 12,
  2330. "vertices": [ -1.50178, -0.8615, -0.52015, -1.57701, -4.16952, 1.65051, -4.06916, -1.30437, -6.76819, 2.2351, -6.31693, -2.4549, -9.63735, 9.57162, -13.14369, 1.36301, -11.40272, 7.72932, -13.21642, -1.1217, -4.46942, -1.45544, -2.26779, -3.8503, 3.79148, -5.52759, 6.31513, -1.87588, 6.32156, -3.38384, 6.74186, 1.30747, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4.16952, 1.65051, -4.06916, -1.30437, -3.39723, 4.07495, -5.08836, 1.01355, -4.34464, 7.55939, -8.03218, 3.08178, -2.12795, 2.71714, -3.29417, 0.76012, 4.19971, -0.60732, 3.41349, 2.11639 ]
  2331. },
  2332. { "time": 1.2 }
  2333. ]
  2334. }
  2335. }
  2336. }
  2337. },
  2338. "skill": {
  2339. "slots": {
  2340. "skill_effects2": {
  2341. "color": [
  2342. { "color": "ffffff00", "curve": "stepped" },
  2343. { "time": 0.5, "color": "ffffff00" },
  2344. { "time": 0.5667, "color": "ffffffff", "curve": "stepped" },
  2345. { "time": 1.0667, "color": "ffffffff" },
  2346. { "time": 1.1667, "color": "ffffff00" }
  2347. ],
  2348. "attachment": [
  2349. { "time": 0.5667, "name": "s2_002" },
  2350. { "time": 0.6, "name": "s2_003" },
  2351. { "time": 0.6333, "name": "s2_004" },
  2352. { "time": 0.6667, "name": "s2_005" },
  2353. { "time": 0.7, "name": "s2_006" },
  2354. { "time": 0.7333, "name": "s2_007" },
  2355. { "time": 0.7667, "name": "s2_008" },
  2356. { "time": 0.8, "name": "s2_009" },
  2357. { "time": 0.8333, "name": "s2_010" },
  2358. { "time": 0.8667, "name": "s2_011" },
  2359. { "time": 0.9, "name": "s2_012" },
  2360. { "time": 0.9333, "name": "s2_013" },
  2361. { "time": 0.9667, "name": "s2_014" },
  2362. { "time": 1, "name": "s2_015" },
  2363. { "time": 1.0333, "name": "s2_016" },
  2364. { "time": 1.0667, "name": "s2_017" }
  2365. ]
  2366. }
  2367. },
  2368. "bones": {
  2369. "root": {
  2370. "rotate": [
  2371. { "curve": "stepped" },
  2372. { "time": 0.1333, "curve": "stepped" },
  2373. { "time": 2 }
  2374. ],
  2375. "translate": [
  2376. { "curve": "stepped" },
  2377. { "time": 0.1333, "curve": "stepped" },
  2378. { "time": 2 }
  2379. ],
  2380. "scale": [
  2381. { "curve": "stepped" },
  2382. { "time": 0.1333, "curve": "stepped" },
  2383. { "time": 2 }
  2384. ]
  2385. },
  2386. "bone20": {
  2387. "rotate": [
  2388. { "curve": "stepped" },
  2389. { "time": 0.1333, "curve": "stepped" },
  2390. { "time": 2 }
  2391. ],
  2392. "translate": [
  2393. { "curve": "stepped" },
  2394. { "time": 0.1333, "curve": "stepped" },
  2395. { "time": 2 }
  2396. ],
  2397. "scale": [
  2398. { "curve": "stepped" },
  2399. { "time": 0.1333, "curve": "stepped" },
  2400. { "time": 2 }
  2401. ]
  2402. },
  2403. "bone19": {
  2404. "rotate": [
  2405. { "curve": 0.28, "c3": 0.623, "c4": 0.39 },
  2406. { "time": 0.1333, "angle": 22.45, "curve": 0.326, "c2": 0.31, "c3": 0.757 },
  2407. { "time": 2 }
  2408. ],
  2409. "translate": [
  2410. { "curve": "stepped" },
  2411. { "time": 0.1333, "curve": "stepped" },
  2412. { "time": 2 }
  2413. ],
  2414. "scale": [
  2415. { "curve": "stepped" },
  2416. { "time": 0.1333, "curve": "stepped" },
  2417. { "time": 2 }
  2418. ]
  2419. },
  2420. "bone18": {
  2421. "rotate": [
  2422. { "curve": "stepped" },
  2423. { "time": 0.5, "curve": "stepped" },
  2424. { "time": 0.5667, "curve": "stepped" },
  2425. { "time": 2 }
  2426. ],
  2427. "translate": [
  2428. { "curve": "stepped" },
  2429. { "time": 0.5, "curve": "stepped" },
  2430. { "time": 0.5667, "curve": "stepped" },
  2431. { "time": 2 }
  2432. ],
  2433. "scale": [
  2434. { "curve": "stepped" },
  2435. { "time": 0.5, "curve": "stepped" },
  2436. { "time": 0.5667, "curve": "stepped" },
  2437. { "time": 2 }
  2438. ]
  2439. },
  2440. "bone17": {
  2441. "rotate": [
  2442. { "curve": 0.253, "c3": 0.621, "c4": 0.48 },
  2443. { "time": 0.5, "angle": -0.27, "curve": 0.366, "c2": 0.46, "c3": 0.754 },
  2444. { "time": 0.5667, "curve": "stepped" },
  2445. { "time": 2 }
  2446. ],
  2447. "translate": [
  2448. { "curve": 0.253, "c3": 0.621, "c4": 0.48 },
  2449. { "time": 0.5, "x": 11.09, "y": -1.88, "curve": 0.366, "c2": 0.46, "c3": 0.754 },
  2450. { "time": 0.5667, "curve": "stepped" },
  2451. { "time": 2 }
  2452. ],
  2453. "scale": [
  2454. { "curve": "stepped" },
  2455. { "time": 0.5, "curve": "stepped" },
  2456. { "time": 0.5667, "curve": "stepped" },
  2457. { "time": 2 }
  2458. ]
  2459. },
  2460. "bone16": {
  2461. "rotate": [
  2462. { "angle": 6.16, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2463. { "time": 0.1333, "angle": 11.14, "curve": 0.296, "c2": 0.21, "c3": 0.654, "c4": 0.63 },
  2464. { "time": 0.5, "angle": 5.08, "curve": 0.336, "c2": 0.34, "c3": 0.67, "c4": 0.68 },
  2465. { "time": 0.5667, "angle": 41.07, "curve": 0.382, "c2": 0.56, "c3": 0.739 },
  2466. { "time": 1.6667, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2467. { "time": 2, "angle": 6.16 }
  2468. ],
  2469. "translate": [
  2470. { "curve": "stepped" },
  2471. { "time": 0.1333, "curve": "stepped" },
  2472. { "time": 2 }
  2473. ],
  2474. "scale": [
  2475. { "curve": "stepped" },
  2476. { "time": 0.1333, "curve": "stepped" },
  2477. { "time": 2 }
  2478. ]
  2479. },
  2480. "bone15": {
  2481. "rotate": [
  2482. { "angle": -5.64, "curve": 0.25, "c3": 0.75 },
  2483. { "time": 0.0667, "angle": 10.3, "curve": 0.243, "c3": 0.649, "c4": 0.6 },
  2484. { "time": 0.2333, "angle": -6.08, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  2485. { "time": 0.4333, "angle": 12.91, "curve": 0.25, "c3": 0.75 },
  2486. { "time": 0.6667, "angle": -12.09, "curve": 0.25, "c3": 0.75 },
  2487. { "time": 1.0667, "angle": 16.39, "curve": 0.25, "c3": 0.75 },
  2488. { "time": 2, "angle": -5.64 }
  2489. ],
  2490. "translate": [
  2491. { "curve": "stepped" },
  2492. { "time": 0.0667, "curve": "stepped" },
  2493. { "time": 2 }
  2494. ],
  2495. "scale": [
  2496. { "curve": "stepped" },
  2497. { "time": 0.0667, "curve": "stepped" },
  2498. { "time": 2 }
  2499. ]
  2500. },
  2501. "bone14": {
  2502. "rotate": [
  2503. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  2504. { "time": 0.1, "angle": -6.73, "curve": 0.321, "c2": 0.3, "c3": 0.683, "c4": 0.72 },
  2505. { "time": 0.3333, "angle": 7.52, "curve": 0.381, "c2": 0.59, "c3": 0.727 },
  2506. { "time": 0.5, "angle": -2.9, "curve": 0.273, "c3": 0.619, "c4": 0.41 },
  2507. { "time": 0.5333, "angle": 58.91, "curve": 0.339, "c2": 0.35, "c3": 0.758 },
  2508. { "time": 1.1, "angle": -49.61, "curve": 0.25, "c3": 0.75 },
  2509. { "time": 2, "angle": 12.56 }
  2510. ],
  2511. "translate": [
  2512. { "curve": "stepped" },
  2513. { "time": 0.1, "curve": "stepped" },
  2514. { "time": 2 }
  2515. ],
  2516. "scale": [
  2517. { "curve": "stepped" },
  2518. { "time": 0.1, "curve": "stepped" },
  2519. { "time": 2 }
  2520. ]
  2521. },
  2522. "bone13": {
  2523. "rotate": [
  2524. { "angle": -9.43, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2525. { "time": 0.1, "angle": -12.31, "curve": 0.321, "c2": 0.3, "c3": 0.683, "c4": 0.72 },
  2526. { "time": 0.3333, "angle": 12.18, "curve": 0.381, "c2": 0.59, "c3": 0.727 },
  2527. { "time": 0.5, "angle": 5.65, "curve": 0.25, "c3": 0.75 },
  2528. { "time": 0.5333, "angle": -45.26, "curve": 0.25, "c3": 0.75 },
  2529. { "time": 1.6667, "angle": 4.32, "curve": 0.25, "c3": 0.75 },
  2530. { "time": 2, "angle": -9.43 }
  2531. ],
  2532. "translate": [
  2533. { "curve": "stepped" },
  2534. { "time": 0.1, "curve": "stepped" },
  2535. { "time": 2 }
  2536. ],
  2537. "scale": [
  2538. { "curve": "stepped" },
  2539. { "time": 0.1, "curve": "stepped" },
  2540. { "time": 2 }
  2541. ]
  2542. },
  2543. "bone12": {
  2544. "rotate": [
  2545. { "curve": 0.25, "c3": 0.75 },
  2546. { "time": 0.1333, "angle": 17.23, "curve": 0.25, "c3": 0.75 },
  2547. { "time": 0.5, "angle": 3.63, "curve": 0.326, "c3": 0.66, "c4": 0.34 },
  2548. { "time": 0.5667, "angle": 33.05 },
  2549. { "time": 0.6, "angle": 45.32 },
  2550. { "time": 0.6667, "angle": 37.09 },
  2551. { "time": 0.8, "angle": 38.67 },
  2552. { "time": 0.8667, "angle": 37.06 },
  2553. { "time": 0.9333, "angle": 24.79 },
  2554. { "time": 1.0667, "angle": 26.92 },
  2555. { "time": 1.2, "angle": 28.01 },
  2556. { "time": 1.3333, "angle": 52.16 },
  2557. { "time": 1.5, "angle": 46.42 },
  2558. { "time": 1.5333, "angle": 46.03 },
  2559. { "time": 1.5667, "angle": 41.54 },
  2560. { "time": 1.6667, "angle": 26.88, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66 },
  2561. { "time": 2 }
  2562. ],
  2563. "translate": [
  2564. { "curve": 0.25, "c3": 0.75 },
  2565. { "time": 0.1333, "x": 4.7, "y": 1.37, "curve": 0.25, "c3": 0.75 },
  2566. { "time": 0.5, "x": -0.57, "y": -11.63, "curve": 0.25, "c3": 0.75 },
  2567. { "time": 2 }
  2568. ],
  2569. "scale": [
  2570. { "curve": "stepped" },
  2571. { "time": 0.1333, "curve": "stepped" },
  2572. { "time": 0.5, "curve": "stepped" },
  2573. { "time": 2 }
  2574. ]
  2575. },
  2576. "bone11": {
  2577. "rotate": [
  2578. { "curve": 0.25, "c3": 0.75 },
  2579. { "time": 0.1333, "angle": 8.48, "curve": 0.25, "c3": 0.75 },
  2580. { "time": 0.5, "angle": -5.63, "curve": 0.25, "c3": 0.75 },
  2581. { "time": 0.6333, "angle": 16.36 },
  2582. { "time": 1, "angle": 11.31 },
  2583. { "time": 1.3333, "angle": 14.74 },
  2584. { "time": 1.5, "angle": 15.7 },
  2585. { "time": 2 }
  2586. ],
  2587. "translate": [
  2588. { "curve": 0.25, "c3": 0.75 },
  2589. { "time": 0.1333, "x": 0.59, "y": 6.14, "curve": "stepped" },
  2590. { "time": 0.5, "x": 0.59, "y": 6.14, "curve": 0.25, "c3": 0.75 },
  2591. { "time": 2 }
  2592. ],
  2593. "scale": [
  2594. { "curve": "stepped" },
  2595. { "time": 0.1333, "curve": "stepped" },
  2596. { "time": 0.5, "curve": "stepped" },
  2597. { "time": 2 }
  2598. ]
  2599. },
  2600. "bone10": {
  2601. "rotate": [
  2602. { "curve": 0.25, "c3": 0.75 },
  2603. { "time": 0.1333, "angle": -24.03, "curve": 0.25, "c3": 0.75 },
  2604. { "time": 0.5, "angle": 0.93, "curve": 0.25, "c3": 0.75 },
  2605. { "time": 0.6, "angle": -76.52 },
  2606. { "time": 0.7333, "angle": -97.57 },
  2607. { "time": 0.8667, "angle": -107.5 },
  2608. { "time": 1.0333, "angle": -88.78 },
  2609. { "time": 1.2, "angle": -77.24 },
  2610. { "time": 1.3667, "angle": -91.26 },
  2611. { "time": 1.5333, "angle": -102.21 },
  2612. { "time": 1.6667, "angle": -91.9 },
  2613. { "time": 2 }
  2614. ],
  2615. "translate": [
  2616. { "curve": "stepped" },
  2617. { "time": 0.1333, "curve": "stepped" },
  2618. { "time": 0.5, "curve": "stepped" },
  2619. { "time": 2 }
  2620. ],
  2621. "scale": [
  2622. { "curve": "stepped" },
  2623. { "time": 0.1333, "curve": "stepped" },
  2624. { "time": 0.5, "curve": "stepped" },
  2625. { "time": 2 }
  2626. ]
  2627. },
  2628. "bone9": {
  2629. "rotate": [
  2630. { "curve": 0.25, "c3": 0.75 },
  2631. { "time": 0.1333, "angle": 3.69, "curve": "stepped" },
  2632. { "time": 0.5, "angle": 3.69, "curve": 0.25, "c3": 0.75 },
  2633. { "time": 0.6333, "angle": 7.46, "curve": 0.305, "c3": 0.641, "c4": 0.36 },
  2634. { "time": 0.7667, "angle": 17.61, "curve": 0.31, "c2": 0.22, "c3": 0.646, "c4": 0.57 },
  2635. { "time": 0.9333, "angle": 14.62, "curve": 0.309, "c2": 0.25, "c3": 0.655, "c4": 0.63 },
  2636. { "time": 1.3333, "angle": 23.33, "curve": 0.344, "c2": 0.37, "c3": 0.686, "c4": 0.73 },
  2637. { "time": 1.6667, "angle": 14.33, "curve": 0.379, "c2": 0.6, "c3": 0.723 },
  2638. { "time": 2 }
  2639. ],
  2640. "translate": [
  2641. { "curve": 0.25, "c3": 0.75 },
  2642. { "time": 0.1333, "x": -0.05, "y": 0.49, "curve": 0.25, "c3": 0.75 },
  2643. { "time": 0.5, "curve": "stepped" },
  2644. { "time": 2 }
  2645. ],
  2646. "scale": [
  2647. { "curve": "stepped" },
  2648. { "time": 0.1333, "curve": "stepped" },
  2649. { "time": 0.5, "curve": "stepped" },
  2650. { "time": 2 }
  2651. ]
  2652. },
  2653. "bone8": {
  2654. "rotate": [
  2655. { "curve": 0.25, "c3": 0.75 },
  2656. { "time": 0.1333, "angle": 6.12, "curve": 0.25, "c3": 0.75 },
  2657. { "time": 0.5, "angle": -2.9, "curve": 0.25, "c3": 0.75 },
  2658. { "time": 0.5667, "angle": 55.25 },
  2659. { "time": 0.6333, "angle": 73.94 },
  2660. { "time": 0.7, "angle": 93.18 },
  2661. { "time": 0.8, "angle": 98.8 },
  2662. { "time": 0.9333, "angle": 102.26 },
  2663. { "time": 1.1, "angle": 92.46 },
  2664. { "time": 1.3333, "angle": 66.76 },
  2665. { "time": 1.6667, "angle": 14.31 },
  2666. { "time": 2 }
  2667. ],
  2668. "translate": [
  2669. { "curve": "stepped" },
  2670. { "time": 0.1333, "curve": "stepped" },
  2671. { "time": 0.5, "curve": "stepped" },
  2672. { "time": 2 }
  2673. ],
  2674. "scale": [
  2675. { "curve": "stepped" },
  2676. { "time": 0.1333, "curve": "stepped" },
  2677. { "time": 0.5, "curve": "stepped" },
  2678. { "time": 2 }
  2679. ]
  2680. },
  2681. "bone7": {
  2682. "rotate": [
  2683. { "angle": -3.57, "curve": 0.253, "c3": 0.621, "c4": 0.48 },
  2684. { "time": 0.1333, "angle": 3.21, "curve": 0.37, "c2": 0.48, "c3": 0.753 },
  2685. { "time": 0.5, "angle": 11.84, "curve": 0.25, "c3": 0.75 },
  2686. { "time": 0.5333, "angle": -21.9, "curve": 0.25, "c3": 0.75 },
  2687. { "time": 0.7, "angle": 29.3, "curve": 0.25, "c3": 0.75 },
  2688. { "time": 1.7333, "angle": -18.87, "curve": 0.25, "c3": 0.75 },
  2689. { "time": 2, "angle": -3.57 }
  2690. ],
  2691. "translate": [
  2692. { "curve": "stepped" },
  2693. { "time": 0.1333, "curve": "stepped" },
  2694. { "time": 2 }
  2695. ],
  2696. "scale": [
  2697. { "curve": "stepped" },
  2698. { "time": 0.1333, "curve": "stepped" },
  2699. { "time": 2 }
  2700. ]
  2701. },
  2702. "bone6": {
  2703. "rotate": [
  2704. { "curve": 0.255, "c3": 0.62, "c4": 0.47 },
  2705. { "time": 0.1333, "angle": 28.99, "curve": 0.25, "c3": 0.75 },
  2706. { "time": 0.2333, "angle": -25.16, "curve": 0.25, "c3": 0.75 },
  2707. { "time": 0.3667, "angle": 28.99, "curve": 0.25, "c3": 0.75 },
  2708. { "time": 0.5, "angle": -25.16, "curve": 0.25, "c3": 0.75 },
  2709. { "time": 0.6333, "angle": 28.99, "curve": 0.25, "c3": 0.75 },
  2710. { "time": 1.1, "angle": -8.92, "curve": 0.25, "c3": 0.75 },
  2711. { "time": 1.2333, "angle": 28.99, "curve": 0.25, "c3": 0.75 },
  2712. { "time": 1.7667, "angle": -13.31, "curve": 0.25, "c3": 0.75 },
  2713. { "time": 2 }
  2714. ],
  2715. "translate": [
  2716. { "curve": "stepped" },
  2717. { "time": 0.1333, "curve": "stepped" },
  2718. { "time": 2 }
  2719. ],
  2720. "scale": [
  2721. { "curve": "stepped" },
  2722. { "time": 0.1333, "curve": "stepped" },
  2723. { "time": 2 }
  2724. ]
  2725. },
  2726. "bone5": {
  2727. "rotate": [
  2728. { "angle": 4.52, "curve": 0.25, "c3": 0.75 },
  2729. { "time": 0.1333, "angle": -6, "curve": 0.379, "c2": 0.6, "c3": 0.724 },
  2730. { "time": 0.2667, "angle": 7.86, "curve": 0.25, "c3": 0.75 },
  2731. { "time": 0.4, "angle": -12.57, "curve": 0.25, "c3": 0.75 },
  2732. { "time": 0.5333, "angle": 23.01, "curve": 0.25, "c3": 0.75 },
  2733. { "time": 0.6667, "angle": -12.57, "curve": 0.25, "c3": 0.75 },
  2734. { "time": 1.1333, "angle": 11.52, "curve": 0.25, "c3": 0.75 },
  2735. { "time": 1.6667, "angle": -2.06, "curve": 0.25, "c3": 0.75 },
  2736. { "time": 1.8, "angle": 12.82, "curve": 0.25, "c3": 0.75 },
  2737. { "time": 2, "angle": 4.52 }
  2738. ],
  2739. "translate": [
  2740. { "curve": "stepped" },
  2741. { "time": 0.1333, "curve": "stepped" },
  2742. { "time": 2 }
  2743. ],
  2744. "scale": [
  2745. { "curve": "stepped" },
  2746. { "time": 0.1333, "curve": "stepped" },
  2747. { "time": 2 }
  2748. ]
  2749. },
  2750. "bone4": {
  2751. "rotate": [
  2752. { "angle": -0.51, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  2753. { "time": 0.1333, "angle": 1.78, "curve": "stepped" },
  2754. { "time": 0.5, "angle": 1.78, "curve": 0.284, "c3": 0.625, "c4": 0.38 },
  2755. { "time": 0.7333, "angle": 2.37, "curve": 0.308, "c2": 0.25, "c3": 0.651, "c4": 0.62 },
  2756. { "time": 1.0333, "angle": -1.31, "curve": 0.338, "c2": 0.35, "c3": 0.682, "c4": 0.71 },
  2757. { "time": 1.3333, "angle": -7.11, "curve": 0.381, "c2": 0.59, "c3": 0.729 },
  2758. { "time": 1.6667, "angle": -6.32, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  2759. { "time": 2, "angle": -0.51 }
  2760. ],
  2761. "translate": [
  2762. { "curve": "stepped" },
  2763. { "time": 0.1333, "curve": "stepped" },
  2764. { "time": 0.5, "curve": "stepped" },
  2765. { "time": 2 }
  2766. ],
  2767. "scale": [
  2768. { "curve": "stepped" },
  2769. { "time": 0.1333, "curve": "stepped" },
  2770. { "time": 0.5, "curve": "stepped" },
  2771. { "time": 2 }
  2772. ]
  2773. },
  2774. "bone3": {
  2775. "rotate": [
  2776. { "curve": 0.25, "c3": 0.75 },
  2777. { "time": 0.1333, "angle": 0.8, "curve": "stepped" },
  2778. { "time": 0.5, "angle": 0.8, "curve": 0.25, "c3": 0.75 },
  2779. { "time": 0.5667, "angle": 14.26, "curve": 0.307, "c3": 0.642, "c4": 0.35 },
  2780. { "time": 0.7, "angle": 12.22, "curve": 0.303, "c2": 0.2, "c3": 0.641, "c4": 0.55 },
  2781. { "time": 1.0333, "angle": 6.96, "curve": 0.319, "c2": 0.29, "c3": 0.656, "c4": 0.63 },
  2782. { "time": 1.3333, "angle": 7.95, "curve": 0.335, "c2": 0.34, "c3": 0.681, "c4": 0.71 },
  2783. { "time": 1.6667, "angle": 1.31, "curve": 0.381, "c2": 0.59, "c3": 0.73 },
  2784. { "time": 2 }
  2785. ],
  2786. "translate": [
  2787. { "curve": 0.25, "c3": 0.75 },
  2788. { "time": 0.1333, "x": -7.41, "y": 0.14, "curve": 0.343, "c2": 0.37, "c3": 0.757 },
  2789. { "time": 0.5, "x": -19.9, "y": 0.16, "curve": 0.25, "c3": 0.75 },
  2790. { "time": 0.5667, "x": 5.87, "y": 0.16, "curve": 0.25, "c3": 0.75 },
  2791. { "time": 1.3333, "x": -3.24, "y": 0.17, "curve": 0.25, "c3": 0.75 },
  2792. { "time": 2 }
  2793. ],
  2794. "scale": [
  2795. { "curve": "stepped" },
  2796. { "time": 0.1333, "curve": "stepped" },
  2797. { "time": 0.5, "curve": "stepped" },
  2798. { "time": 2 }
  2799. ]
  2800. },
  2801. "bone2": {
  2802. "rotate": [
  2803. { "curve": 0.25, "c3": 0.75 },
  2804. { "time": 0.1333, "angle": 0.8, "curve": "stepped" },
  2805. { "time": 0.5, "angle": 0.8, "curve": 0.25, "c3": 0.75 },
  2806. { "time": 0.5667, "angle": -7.66, "curve": 0.312, "c3": 0.646, "c4": 0.35 },
  2807. { "time": 0.7, "angle": -10.28, "curve": 0.317, "c2": 0.23, "c3": 0.651, "c4": 0.57 },
  2808. { "time": 0.8333, "angle": -12.93, "curve": 0.299, "c2": 0.21, "c3": 0.644, "c4": 0.59 },
  2809. { "time": 1.3333, "angle": -13.82, "curve": 0.335, "c2": 0.34, "c3": 0.681, "c4": 0.71 },
  2810. { "time": 1.6667, "angle": -3.4, "curve": 0.381, "c2": 0.59, "c3": 0.73 },
  2811. { "time": 2 }
  2812. ],
  2813. "translate": [
  2814. { "curve": 0.25, "c3": 0.75 },
  2815. { "time": 0.1333, "x": 0.04, "y": -2.81, "curve": 0.343, "c2": 0.37, "c3": 0.757 },
  2816. { "time": 0.5, "x": 0.18, "y": -5.48, "curve": 0.25, "c3": 0.75 },
  2817. { "time": 0.5667, "x": -0.34, "y": 5.06, "curve": 0.28, "c3": 0.623, "c4": 0.39 },
  2818. {
  2819. "time": 0.7,
  2820. "x": -0.51,
  2821. "y": 8.63,
  2822. "curve": 0.312,
  2823. "c2": 0.26,
  2824. "c3": 0.653,
  2825. "c4": 0.62
  2826. },
  2827. { "time": 1.3333, "x": -0.27, "y": 3.17, "curve": 0.369, "c2": 0.47, "c3": 0.753 },
  2828. { "time": 1.6667, "x": 0.24, "y": -8.57, "curve": 0.25, "c3": 0.75 },
  2829. { "time": 2 }
  2830. ],
  2831. "scale": [
  2832. { "curve": "stepped" },
  2833. { "time": 0.1333, "curve": "stepped" },
  2834. { "time": 0.5, "curve": "stepped" },
  2835. { "time": 2 }
  2836. ]
  2837. },
  2838. "bone": {
  2839. "rotate": [
  2840. { "curve": 0.25, "c3": 0.75 },
  2841. { "time": 0.1333, "angle": -3.31, "curve": 0.343, "c2": 0.37, "c3": 0.757 },
  2842. { "time": 0.5, "angle": -2.91, "curve": 0.25, "c3": 0.75 },
  2843. { "time": 2 }
  2844. ],
  2845. "translate": [
  2846. { "curve": 0.25, "c3": 0.75 },
  2847. { "time": 0.1333, "x": -1.46, "y": -10.9, "curve": 0.343, "c2": 0.37, "c3": 0.757 },
  2848. { "time": 0.5, "x": -2.87, "y": -20.11, "curve": 0.25, "c3": 0.75 },
  2849. { "time": 0.5667, "x": 2.88, "y": 7.36, "curve": 0.302, "c3": 0.638, "c4": 0.36 },
  2850. {
  2851. "time": 0.6333,
  2852. "x": 2.85,
  2853. "y": 11.56,
  2854. "curve": 0.313,
  2855. "c2": 0.24,
  2856. "c3": 0.648,
  2857. "c4": 0.58
  2858. },
  2859. {
  2860. "time": 0.7,
  2861. "x": 2.78,
  2862. "y": 10.68,
  2863. "curve": 0.307,
  2864. "c2": 0.25,
  2865. "c3": 0.663,
  2866. "c4": 0.66
  2867. },
  2868. { "time": 1.3333, "x": 2.46, "y": 5.11, "curve": 0.382, "c2": 0.55, "c3": 0.741 },
  2869. { "time": 1.6667, "x": 2.24, "y": -8.09, "curve": 0.25, "c3": 0.75 },
  2870. { "time": 2 }
  2871. ],
  2872. "scale": [
  2873. { "curve": "stepped" },
  2874. { "time": 0.1333, "curve": "stepped" },
  2875. { "time": 0.5, "curve": "stepped" },
  2876. { "time": 2 }
  2877. ]
  2878. },
  2879. "bone22": {
  2880. "rotate": [
  2881. { "angle": 10.15, "curve": 0.25, "c3": 0.75 },
  2882. { "time": 0.1333, "angle": 3.69, "curve": "stepped" },
  2883. { "time": 0.5, "angle": 3.69, "curve": 0.25, "c3": 0.75 },
  2884. { "time": 0.6333, "angle": 11.35, "curve": 0.25, "c3": 0.75 },
  2885. { "time": 2, "angle": 10.15 }
  2886. ],
  2887. "translate": [
  2888. { "curve": 0.25, "c3": 0.75 },
  2889. { "time": 0.1333, "x": -0.05, "y": 0.49, "curve": 0.25, "c3": 0.75 },
  2890. { "time": 0.5, "curve": "stepped" },
  2891. { "time": 2 }
  2892. ],
  2893. "scale": [
  2894. { "curve": "stepped" },
  2895. { "time": 0.1333, "curve": "stepped" },
  2896. { "time": 0.5, "curve": "stepped" },
  2897. { "time": 2 }
  2898. ]
  2899. },
  2900. "bone23": {
  2901. "rotate": [
  2902. { "angle": -5.64, "curve": 0.25, "c3": 0.75 },
  2903. { "time": 0.0667, "angle": 10.3, "curve": 0.265, "c3": 0.618, "c4": 0.43 },
  2904. { "time": 0.2, "angle": 32.39, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69 },
  2905. { "time": 0.3333, "angle": -25.92, "curve": 0.382, "c2": 0.57, "c3": 0.735 },
  2906. { "time": 0.5667, "angle": 12.91, "curve": 0.25, "c3": 0.75 },
  2907. { "time": 0.9333, "angle": -28.4, "curve": 0.25, "c3": 0.75 },
  2908. { "time": 1.2, "angle": 16.39, "curve": 0.25, "c3": 0.75 },
  2909. { "time": 2, "angle": -5.64 }
  2910. ],
  2911. "translate": [
  2912. { "curve": "stepped" },
  2913. { "time": 0.0667, "curve": "stepped" },
  2914. { "time": 2 }
  2915. ],
  2916. "scale": [
  2917. { "curve": "stepped" },
  2918. { "time": 0.0667, "curve": "stepped" },
  2919. { "time": 2 }
  2920. ]
  2921. },
  2922. "bone25": {
  2923. "rotate": [
  2924. { "curve": 0.25, "c3": 0.75 },
  2925. { "time": 0.1333, "angle": -7.31, "curve": 0.381, "c2": 0.54, "c3": 0.743 },
  2926. { "time": 0.5, "angle": 10.53, "curve": 0.25, "c3": 0.75 },
  2927. { "time": 0.5667, "angle": -43.74, "curve": 0.25, "c3": 0.75 },
  2928. { "time": 1.1667, "angle": 38.24, "curve": 0.25, "c3": 0.75 },
  2929. { "time": 1.8, "angle": -2.41, "curve": 0.25, "c3": 0.75 },
  2930. { "time": 2 }
  2931. ],
  2932. "translate": [
  2933. { "curve": "stepped" },
  2934. { "time": 0.1333, "curve": "stepped" },
  2935. { "time": 2 }
  2936. ],
  2937. "scale": [
  2938. { "curve": "stepped" },
  2939. { "time": 0.1333, "curve": "stepped" },
  2940. { "time": 2 }
  2941. ]
  2942. },
  2943. "bone26": {
  2944. "rotate": [
  2945. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  2946. { "time": 0.1, "angle": -6.73, "curve": 0.321, "c2": 0.3, "c3": 0.683, "c4": 0.72 },
  2947. { "time": 0.3333, "angle": 7.52, "curve": 0.381, "c2": 0.59, "c3": 0.727 },
  2948. { "time": 0.5, "angle": -2.9, "curve": 0.273, "c3": 0.619, "c4": 0.41 },
  2949. { "time": 0.5333, "angle": 58.91, "curve": 0.339, "c2": 0.35, "c3": 0.758 },
  2950. { "time": 1.1, "angle": -49.61, "curve": 0.25, "c3": 0.75 },
  2951. { "time": 2, "angle": 12.56 }
  2952. ],
  2953. "translate": [
  2954. { "curve": "stepped" },
  2955. { "time": 0.1, "curve": "stepped" },
  2956. { "time": 2 }
  2957. ],
  2958. "scale": [
  2959. { "curve": "stepped" },
  2960. { "time": 0.1, "curve": "stepped" },
  2961. { "time": 2 }
  2962. ]
  2963. },
  2964. "bone27": {
  2965. "rotate": [
  2966. { "curve": 0.25, "c3": 0.75 },
  2967. { "time": 0.1333, "angle": 28.99, "curve": 0.25, "c3": 0.75 },
  2968. { "time": 0.2333, "angle": -25.16, "curve": 0.25, "c3": 0.75 },
  2969. { "time": 0.3667, "angle": 28.99, "curve": 0.25, "c3": 0.75 },
  2970. { "time": 0.5, "angle": -25.16, "curve": 0.25, "c3": 0.75 },
  2971. { "time": 0.6333, "angle": 28.99, "curve": 0.25, "c3": 0.75 },
  2972. { "time": 0.8667, "angle": -11.98, "curve": 0.25, "c3": 0.75 },
  2973. { "time": 1.2, "angle": 27.34, "curve": 0.248, "c3": 0.629, "c4": 0.52 },
  2974. { "time": 1.6333, "angle": -2.67, "curve": 0.378, "c2": 0.52, "c3": 0.747 },
  2975. { "time": 2 }
  2976. ],
  2977. "translate": [
  2978. { "curve": "stepped" },
  2979. { "time": 0.1333, "curve": "stepped" },
  2980. { "time": 2 }
  2981. ],
  2982. "scale": [
  2983. { "curve": "stepped" },
  2984. { "time": 0.1333, "curve": "stepped" },
  2985. { "time": 2 }
  2986. ]
  2987. },
  2988. "bone21": {
  2989. "rotate": [
  2990. { "angle": 4.52, "curve": 0.25, "c3": 0.75 },
  2991. { "time": 0.1333, "angle": -6, "curve": 0.25, "c3": 0.75 },
  2992. { "time": 0.2667, "angle": 7.86, "curve": 0.25, "c3": 0.75 },
  2993. { "time": 0.4, "angle": -12.57, "curve": 0.25, "c3": 0.75 },
  2994. { "time": 0.5333, "angle": 23.01, "curve": 0.25, "c3": 0.75 },
  2995. { "time": 0.6667, "angle": -12.57, "curve": 0.25, "c3": 0.75 },
  2996. { "time": 1, "angle": 7.7, "curve": 0.248, "c3": 0.628, "c4": 0.52 },
  2997. { "time": 1.5333, "angle": 1.78, "curve": 0.378, "c2": 0.52, "c3": 0.748 },
  2998. { "time": 2, "angle": 4.52 }
  2999. ],
  3000. "translate": [
  3001. { "curve": "stepped" },
  3002. { "time": 0.1333, "curve": "stepped" },
  3003. { "time": 2 }
  3004. ],
  3005. "scale": [
  3006. { "curve": "stepped" },
  3007. { "time": 0.1333, "curve": "stepped" },
  3008. { "time": 2 }
  3009. ]
  3010. },
  3011. "bone28": {
  3012. "rotate": [
  3013. { "angle": -5.07, "curve": "stepped" },
  3014. { "time": 0.1333, "angle": -5.07, "curve": "stepped" },
  3015. { "time": 0.5, "angle": -5.07, "curve": 0.336, "c2": 0.34, "c3": 0.669, "c4": 0.68 },
  3016. { "time": 0.5667, "angle": -35.88, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74 },
  3017. { "time": 1, "angle": -26.53, "curve": 0.364, "c2": 0.64, "c3": 0.7 },
  3018. { "time": 2, "angle": -5.07 }
  3019. ],
  3020. "translate": [
  3021. { "curve": "stepped" },
  3022. { "time": 0.1333, "curve": "stepped" },
  3023. { "time": 2 }
  3024. ],
  3025. "scale": [
  3026. { "curve": "stepped" },
  3027. { "time": 0.1333, "curve": "stepped" },
  3028. { "time": 2 }
  3029. ]
  3030. },
  3031. "bone29": {
  3032. "rotate": [
  3033. { "angle": 7.66, "curve": "stepped" },
  3034. { "time": 0.1333, "angle": 7.66, "curve": "stepped" },
  3035. { "time": 0.5, "angle": 7.66, "curve": 0.336, "c2": 0.34, "c3": 0.669, "c4": 0.68 },
  3036. { "time": 0.5667, "angle": 46.87, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74 },
  3037. { "time": 1, "angle": 40.15, "curve": 0.364, "c2": 0.64, "c3": 0.7 },
  3038. { "time": 2, "angle": 7.66 }
  3039. ],
  3040. "translate": [
  3041. { "curve": "stepped" },
  3042. { "time": 0.1333, "curve": "stepped" },
  3043. { "time": 2 }
  3044. ],
  3045. "scale": [
  3046. { "curve": "stepped" },
  3047. { "time": 0.1333, "curve": "stepped" },
  3048. { "time": 2 }
  3049. ]
  3050. },
  3051. "bone24": {
  3052. "rotate": [
  3053. { "curve": "stepped" },
  3054. { "time": 0.1333, "curve": "stepped" },
  3055. { "time": 2 }
  3056. ],
  3057. "translate": [
  3058. { "curve": "stepped" },
  3059. { "time": 0.1333, "curve": "stepped" },
  3060. { "time": 2 }
  3061. ],
  3062. "scale": [
  3063. { "curve": "stepped" },
  3064. { "time": 0.1333, "curve": "stepped" },
  3065. { "time": 2 }
  3066. ]
  3067. },
  3068. "shadow": {
  3069. "translate": [
  3070. { "curve": "stepped" },
  3071. { "time": 2 }
  3072. ],
  3073. "scale": [
  3074. {},
  3075. { "time": 0.5, "x": 1.067 },
  3076. { "time": 0.6, "x": 0.933, "curve": "stepped" },
  3077. { "time": 0.9333, "x": 0.933 },
  3078. { "time": 1.2, "x": 1.033 },
  3079. { "time": 2 }
  3080. ]
  3081. },
  3082. "skill_effects2": {
  3083. "translate": [
  3084. { "time": 0.5333, "y": 50.86 }
  3085. ],
  3086. "scale": [
  3087. { "time": 0.5 },
  3088. { "time": 0.5333, "x": 8, "y": 8 }
  3089. ]
  3090. }
  3091. }
  3092. },
  3093. "stand": {
  3094. "bones": {
  3095. "root": {
  3096. "rotate": [
  3097. { "curve": "stepped" },
  3098. { "time": 1.3333 }
  3099. ],
  3100. "translate": [
  3101. { "curve": "stepped" },
  3102. { "time": 1.3333 }
  3103. ],
  3104. "scale": [
  3105. { "curve": "stepped" },
  3106. { "time": 1.3333 }
  3107. ]
  3108. },
  3109. "bone20": {
  3110. "rotate": [
  3111. { "curve": "stepped" },
  3112. { "time": 1.3333 }
  3113. ],
  3114. "translate": [
  3115. { "curve": "stepped" },
  3116. { "time": 1.3333 }
  3117. ],
  3118. "scale": [
  3119. { "curve": "stepped" },
  3120. { "time": 1.3333 }
  3121. ]
  3122. },
  3123. "bone19": {
  3124. "rotate": [
  3125. { "curve": "stepped" },
  3126. { "time": 1.3333 }
  3127. ],
  3128. "translate": [
  3129. { "curve": "stepped" },
  3130. { "time": 1.3333 }
  3131. ],
  3132. "scale": [
  3133. { "curve": "stepped" },
  3134. { "time": 1.3333 }
  3135. ]
  3136. },
  3137. "bone18": {
  3138. "rotate": [
  3139. { "curve": "stepped" },
  3140. { "time": 1.3333 }
  3141. ],
  3142. "translate": [
  3143. { "curve": "stepped" },
  3144. { "time": 1.3333 }
  3145. ],
  3146. "scale": [
  3147. { "curve": "stepped" },
  3148. { "time": 1.3333 }
  3149. ]
  3150. },
  3151. "bone17": {
  3152. "rotate": [
  3153. { "curve": "stepped" },
  3154. { "time": 1.3333 }
  3155. ],
  3156. "translate": [
  3157. { "curve": "stepped" },
  3158. { "time": 1.3333 }
  3159. ],
  3160. "scale": [
  3161. { "curve": "stepped" },
  3162. { "time": 1.3333 }
  3163. ]
  3164. },
  3165. "bone16": {
  3166. "rotate": [
  3167. { "angle": 6.16, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3168. { "time": 0.3333, "angle": 12.33, "curve": 0.25, "c3": 0.75 },
  3169. { "time": 1, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3170. { "time": 1.3333, "angle": 6.16 }
  3171. ],
  3172. "translate": [
  3173. { "curve": "stepped" },
  3174. { "time": 1.3333 }
  3175. ],
  3176. "scale": [
  3177. { "curve": "stepped" },
  3178. { "time": 1.3333 }
  3179. ]
  3180. },
  3181. "bone15": {
  3182. "rotate": [
  3183. { "angle": -5.64, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3184. { "time": 0.3333, "angle": -11.28, "curve": 0.25, "c3": 0.75 },
  3185. { "time": 1, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3186. { "time": 1.3333, "angle": -5.64 }
  3187. ],
  3188. "translate": [
  3189. { "curve": "stepped" },
  3190. { "time": 1.3333 }
  3191. ],
  3192. "scale": [
  3193. { "curve": "stepped" },
  3194. { "time": 1.3333 }
  3195. ]
  3196. },
  3197. "bone14": {
  3198. "rotate": [
  3199. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  3200. { "time": 0.6667, "angle": -13.91, "curve": 0.25, "c3": 0.75 },
  3201. { "time": 1.3333, "angle": 12.56 }
  3202. ],
  3203. "translate": [
  3204. { "curve": "stepped" },
  3205. { "time": 1.3333 }
  3206. ],
  3207. "scale": [
  3208. { "curve": "stepped" },
  3209. { "time": 1.3333 }
  3210. ]
  3211. },
  3212. "bone13": {
  3213. "rotate": [
  3214. { "angle": -9.43, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3215. { "time": 0.3333, "angle": -23.18, "curve": 0.25, "c3": 0.75 },
  3216. { "time": 1, "angle": 4.32, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3217. { "time": 1.3333, "angle": -9.43 }
  3218. ],
  3219. "translate": [
  3220. { "curve": "stepped" },
  3221. { "time": 1.3333 }
  3222. ],
  3223. "scale": [
  3224. { "curve": "stepped" },
  3225. { "time": 1.3333 }
  3226. ]
  3227. },
  3228. "bone12": {
  3229. "rotate": [
  3230. { "curve": 0.25, "c3": 0.75 },
  3231. { "time": 0.6667, "angle": 11.27, "curve": 0.25, "c3": 0.75 },
  3232. { "time": 1.3333 }
  3233. ],
  3234. "translate": [
  3235. { "curve": 0.25, "c3": 0.75 },
  3236. { "time": 0.6667, "x": -11.94, "y": -4.46, "curve": 0.25, "c3": 0.75 },
  3237. { "time": 1.3333 }
  3238. ],
  3239. "scale": [
  3240. { "curve": "stepped" },
  3241. { "time": 1.3333 }
  3242. ]
  3243. },
  3244. "bone11": {
  3245. "rotate": [
  3246. { "curve": 0.25, "c3": 0.75 },
  3247. { "time": 0.6667, "angle": 0.95, "curve": 0.25, "c3": 0.75 },
  3248. { "time": 1.3333 }
  3249. ],
  3250. "translate": [
  3251. { "curve": "stepped" },
  3252. { "time": 1.3333 }
  3253. ],
  3254. "scale": [
  3255. { "curve": "stepped" },
  3256. { "time": 1.3333 }
  3257. ]
  3258. },
  3259. "bone10": {
  3260. "rotate": [
  3261. { "curve": 0.25, "c3": 0.75 },
  3262. { "time": 0.6667, "angle": -14.7, "curve": 0.25, "c3": 0.75 },
  3263. { "time": 1.3333 }
  3264. ],
  3265. "translate": [
  3266. { "curve": "stepped" },
  3267. { "time": 1.3333 }
  3268. ],
  3269. "scale": [
  3270. { "curve": "stepped" },
  3271. { "time": 1.3333 }
  3272. ]
  3273. },
  3274. "bone9": {
  3275. "rotate": [
  3276. { "curve": 0.25, "c3": 0.75 },
  3277. { "time": 0.6667, "angle": 19.27, "curve": 0.25, "c3": 0.75 },
  3278. { "time": 1.3333 }
  3279. ],
  3280. "translate": [
  3281. { "curve": "stepped" },
  3282. { "time": 1.3333 }
  3283. ],
  3284. "scale": [
  3285. { "curve": "stepped" },
  3286. { "time": 1.3333 }
  3287. ]
  3288. },
  3289. "bone8": {
  3290. "rotate": [
  3291. { "curve": 0.25, "c3": 0.75 },
  3292. { "time": 0.6667, "angle": -13.17, "curve": 0.25, "c3": 0.75 },
  3293. { "time": 1.3333 }
  3294. ],
  3295. "translate": [
  3296. { "curve": "stepped" },
  3297. { "time": 1.3333 }
  3298. ],
  3299. "scale": [
  3300. { "curve": "stepped" },
  3301. { "time": 1.3333 }
  3302. ]
  3303. },
  3304. "bone7": {
  3305. "rotate": [
  3306. { "angle": -3.57, "curve": 0.25, "c3": 0.75 },
  3307. { "time": 0.6667, "angle": 11.84, "curve": 0.25, "c3": 0.75 },
  3308. { "time": 1.3333, "angle": -3.57 }
  3309. ],
  3310. "translate": [
  3311. { "curve": "stepped" },
  3312. { "time": 1.3333 }
  3313. ],
  3314. "scale": [
  3315. { "curve": "stepped" },
  3316. { "time": 1.3333 }
  3317. ]
  3318. },
  3319. "bone6": {
  3320. "rotate": [
  3321. { "curve": 0.25, "c3": 0.75 },
  3322. { "time": 0.6667, "angle": 31.25, "curve": 0.25, "c3": 0.75 },
  3323. { "time": 1.3333 }
  3324. ],
  3325. "translate": [
  3326. { "curve": "stepped" },
  3327. { "time": 1.3333 }
  3328. ],
  3329. "scale": [
  3330. { "curve": "stepped" },
  3331. { "time": 1.3333 }
  3332. ]
  3333. },
  3334. "bone5": {
  3335. "rotate": [
  3336. { "angle": 4.52, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3337. { "time": 0.3333, "angle": 9.03, "curve": 0.25, "c3": 0.75 },
  3338. { "time": 1, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3339. { "time": 1.3333, "angle": 4.52 }
  3340. ],
  3341. "translate": [
  3342. { "curve": "stepped" },
  3343. { "time": 1.3333 }
  3344. ],
  3345. "scale": [
  3346. { "curve": "stepped" },
  3347. { "time": 1.3333 }
  3348. ]
  3349. },
  3350. "bone4": {
  3351. "rotate": [
  3352. { "angle": -0.51, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3353. { "time": 0.3333, "angle": 1.78, "curve": 0.25, "c3": 0.75 },
  3354. { "time": 1, "angle": -2.81, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3355. { "time": 1.3333, "angle": -0.51 }
  3356. ],
  3357. "translate": [
  3358. { "curve": "stepped" },
  3359. { "time": 1.3333 }
  3360. ],
  3361. "scale": [
  3362. { "curve": "stepped" },
  3363. { "time": 1.3333 }
  3364. ]
  3365. },
  3366. "bone3": {
  3367. "rotate": [
  3368. { "curve": "stepped" },
  3369. { "time": 1.3333 }
  3370. ],
  3371. "translate": [
  3372. { "curve": 0.25, "c3": 0.75 },
  3373. { "time": 0.6667, "x": -7.15, "y": 0.27, "curve": 0.25, "c3": 0.75 },
  3374. { "time": 1.3333 }
  3375. ],
  3376. "scale": [
  3377. { "curve": "stepped" },
  3378. { "time": 1.3333 }
  3379. ]
  3380. },
  3381. "bone2": {
  3382. "rotate": [
  3383. { "curve": "stepped" },
  3384. { "time": 1.3333 }
  3385. ],
  3386. "translate": [
  3387. { "curve": 0.25, "c3": 0.75 },
  3388. { "time": 0.6667, "y": -3.98, "curve": 0.25, "c3": 0.75 },
  3389. { "time": 1.3333 }
  3390. ],
  3391. "scale": [
  3392. { "curve": "stepped" },
  3393. { "time": 1.3333 }
  3394. ]
  3395. },
  3396. "bone": {
  3397. "rotate": [
  3398. { "curve": "stepped" },
  3399. { "time": 1.3333 }
  3400. ],
  3401. "translate": [
  3402. { "curve": 0.25, "c3": 0.75 },
  3403. { "time": 0.6667, "x": 5.14, "y": -11.64, "curve": 0.25, "c3": 0.75 },
  3404. { "time": 1.3333 }
  3405. ],
  3406. "scale": [
  3407. { "curve": "stepped" },
  3408. { "time": 1.3333 }
  3409. ]
  3410. },
  3411. "bone22": {
  3412. "rotate": [
  3413. { "angle": 10.15, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3414. { "time": 0.3333, "angle": 20.31, "curve": 0.25, "c3": 0.75 },
  3415. { "time": 1, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3416. { "time": 1.3333, "angle": 10.15 }
  3417. ],
  3418. "translate": [
  3419. { "curve": "stepped" },
  3420. { "time": 1.3333 }
  3421. ],
  3422. "scale": [
  3423. { "curve": "stepped" },
  3424. { "time": 1.3333 }
  3425. ]
  3426. },
  3427. "bone23": {
  3428. "rotate": [
  3429. { "angle": -5.64, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3430. { "time": 0.3333, "angle": -14.23, "curve": 0.25, "c3": 0.75 },
  3431. { "time": 1, "angle": 7.72, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3432. { "time": 1.3333, "angle": -5.64 }
  3433. ],
  3434. "translate": [
  3435. { "curve": "stepped" },
  3436. { "time": 1.3333 }
  3437. ],
  3438. "scale": [
  3439. { "curve": "stepped" },
  3440. { "time": 1.3333 }
  3441. ]
  3442. },
  3443. "bone25": {
  3444. "rotate": [
  3445. { "curve": 0.25, "c3": 0.75 },
  3446. { "time": 0.6667, "angle": 31.25, "curve": 0.25, "c3": 0.75 },
  3447. { "time": 1.3333 }
  3448. ],
  3449. "translate": [
  3450. { "curve": "stepped" },
  3451. { "time": 1.3333 }
  3452. ],
  3453. "scale": [
  3454. { "curve": "stepped" },
  3455. { "time": 1.3333 }
  3456. ]
  3457. },
  3458. "bone26": {
  3459. "rotate": [
  3460. { "angle": 12.56, "curve": 0.25, "c3": 0.75 },
  3461. { "time": 0.6667, "angle": -2.85, "curve": 0.25, "c3": 0.75 },
  3462. { "time": 1.3333, "angle": 12.56 }
  3463. ],
  3464. "translate": [
  3465. { "curve": "stepped" },
  3466. { "time": 1.3333 }
  3467. ],
  3468. "scale": [
  3469. { "curve": "stepped" },
  3470. { "time": 1.3333 }
  3471. ]
  3472. },
  3473. "bone27": {
  3474. "rotate": [
  3475. { "curve": 0.25, "c3": 0.75 },
  3476. { "time": 0.6667, "angle": 31.25, "curve": 0.25, "c3": 0.75 },
  3477. { "time": 1.3333 }
  3478. ],
  3479. "translate": [
  3480. { "curve": "stepped" },
  3481. { "time": 1.3333 }
  3482. ],
  3483. "scale": [
  3484. { "curve": "stepped" },
  3485. { "time": 1.3333 }
  3486. ]
  3487. },
  3488. "bone21": {
  3489. "rotate": [
  3490. { "angle": 4.52, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3491. { "time": 0.3333, "angle": 9.03, "curve": 0.25, "c3": 0.75 },
  3492. { "time": 1, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3493. { "time": 1.3333, "angle": 4.52 }
  3494. ],
  3495. "translate": [
  3496. { "curve": "stepped" },
  3497. { "time": 1.3333 }
  3498. ],
  3499. "scale": [
  3500. { "curve": "stepped" },
  3501. { "time": 1.3333 }
  3502. ]
  3503. },
  3504. "bone29": {
  3505. "rotate": [
  3506. { "angle": 7.66, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3507. { "time": 0.3333, "angle": 15.32, "curve": 0.25, "c3": 0.75 },
  3508. { "time": 1, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3509. { "time": 1.3333, "angle": 7.66 }
  3510. ],
  3511. "translate": [
  3512. { "curve": "stepped" },
  3513. { "time": 1.3333 }
  3514. ],
  3515. "scale": [
  3516. { "curve": "stepped" },
  3517. { "time": 1.3333 }
  3518. ]
  3519. },
  3520. "bone28": {
  3521. "rotate": [
  3522. { "angle": -5.07, "curve": 0.375, "c2": 0.5, "c3": 0.75 },
  3523. { "time": 0.3333, "angle": -10.15, "curve": 0.25, "c3": 0.75 },
  3524. { "time": 1, "curve": 0.25, "c3": 0.625, "c4": 0.5 },
  3525. { "time": 1.3333, "angle": -5.07 }
  3526. ],
  3527. "translate": [
  3528. { "curve": "stepped" },
  3529. { "time": 1.3333 }
  3530. ],
  3531. "scale": [
  3532. { "curve": "stepped" },
  3533. { "time": 1.3333 }
  3534. ]
  3535. },
  3536. "bone24": {
  3537. "rotate": [
  3538. { "curve": "stepped" },
  3539. { "time": 1.3333 }
  3540. ],
  3541. "translate": [
  3542. { "curve": "stepped" },
  3543. { "time": 1.3333 }
  3544. ],
  3545. "scale": [
  3546. { "curve": "stepped" },
  3547. { "time": 1.3333 }
  3548. ]
  3549. },
  3550. "shadow": {
  3551. "translate": [
  3552. { "curve": "stepped" },
  3553. { "time": 1.3333 }
  3554. ],
  3555. "scale": [
  3556. {},
  3557. { "time": 0.6667, "x": 1.067 },
  3558. { "time": 1.3333 }
  3559. ]
  3560. }
  3561. }
  3562. }
  3563. }
  3564. }