123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361 |
- {
- "skeleton": { "hash": "/amS5eNWvE9Q+aL8dV3geX3/BRM", "spine": "3.6.53", "width": 211.72, "height": 200, "images": "./images/" },
- "bones": [
- { "name": "root" },
- { "name": "juese", "parent": "root", "x": -0.23, "y": 55.78 },
- { "name": "bone2", "parent": "juese", "length": 13.16, "rotation": 90 },
- { "name": "bone3", "parent": "bone2", "length": 36.91, "rotation": -1.6, "x": 13.16 },
- { "name": "bone4", "parent": "bone3", "length": 7.49, "rotation": -0.37, "x": 36.91 },
- { "name": "bone5", "parent": "bone4", "length": 57.54, "rotation": 0.95, "x": 7.49 },
- { "name": "biaoqing", "parent": "bone5", "x": 24.85, "y": -3.76, "color": "4586eaff" },
- { "name": "bone6", "parent": "bone3", "length": 24.67, "rotation": 147.53, "x": 35.7, "y": 7.02, "color": "292f9aff" },
- { "name": "bone7", "parent": "bone6", "length": 17.06, "rotation": -4.28, "x": 24.67, "color": "292f9aff" },
- { "name": "bone8", "parent": "bone7", "length": 11.82, "rotation": -0.09, "x": 17.26, "y": -0.02, "color": "292f9aff" },
- { "name": "bone9", "parent": "bone3", "length": 27.73, "rotation": -143.11, "x": 35.27, "y": -14.61, "color": "811111ff" },
- { "name": "bone10", "parent": "bone9", "length": 17.06, "rotation": 3.06, "x": 27.73, "color": "811111ff" },
- { "name": "bone11", "parent": "bone10", "length": 13.26, "rotation": -2.37, "x": 17.06, "color": "811111ff" },
- { "name": "bone12", "parent": "juese", "length": 15.75, "rotation": -87.32, "x": 0.3, "y": 0.09 },
- { "name": "bone13", "parent": "juese", "length": 23.05, "rotation": -95.86, "x": -9.25, "y": -4.32, "color": "e19423ff" },
- { "name": "bone14", "parent": "bone13", "length": 22.86, "rotation": 1.06, "x": 22.47, "y": -0.06, "color": "e19423ff" },
- { "name": "bone15", "parent": "bone14", "length": 10.76, "rotation": -63.55, "x": 22.86, "color": "e19423ff" },
- { "name": "bone16", "parent": "juese", "length": 23.73, "rotation": -85.74, "x": 15.59, "y": -3.15, "color": "27ba28ff" },
- { "name": "bone17", "parent": "bone16", "length": 23.52, "rotation": -3.19, "x": 24.01, "y": -0.17, "color": "27ba28ff" },
- { "name": "bone18", "parent": "bone17", "length": 9.96, "rotation": -69.43, "x": 23.52, "color": "27ba28ff" },
- { "name": "bone19", "parent": "bone5", "length": 11.73, "rotation": 1.03, "x": 21.76, "y": -15.35 },
- { "name": "bone20", "parent": "bone5", "length": 11.58, "rotation": 0.32, "x": 21.91, "y": 15.83 },
- { "name": "bone21", "parent": "bone5", "x": 25.71, "y": 3.46 },
- { "name": "bone22", "parent": "bone5", "length": 8, "rotation": -179.92, "x": 5.74, "y": 3.23 },
- { "name": "bone23", "parent": "bone5", "length": 6.58, "rotation": -16.85, "x": 58.95, "y": -31.57 },
- { "name": "bone24", "parent": "bone23", "length": 8.17, "rotation": 9.35, "x": 6.58 },
- { "name": "bone25", "parent": "bone24", "length": 9.93, "rotation": 3.86, "x": 8.17 },
- { "name": "bone26", "parent": "bone5", "length": 8.97, "rotation": 15.38, "x": 56.96, "y": 22.88 },
- { "name": "bone27", "parent": "bone26", "length": 7.88, "rotation": -14.35, "x": 8.97 },
- { "name": "bone28", "parent": "bone27", "length": 7.88, "x": 7.88 },
- { "name": "bone29", "parent": "bone3", "length": 27.64, "rotation": -145.49, "x": 37.48, "y": -75.16 },
- { "name": "bone30", "parent": "bone29", "length": 15.17, "rotation": 129.13, "x": 27.64 },
- { "name": "bone31", "parent": "bone30", "length": 11.17, "rotation": 1.75, "x": 15.17 },
- { "name": "bone32", "parent": "bone3", "length": 25.1, "rotation": 148.65, "x": 32.65, "y": 80.4 },
- { "name": "bone33", "parent": "bone32", "length": 15.07, "rotation": -136.61, "x": 24.44, "y": -0.42 },
- { "name": "bone34", "parent": "bone33", "length": 9.14, "rotation": 0.63, "x": 15.07 },
- { "name": "maozhua", "parent": "root", "x": 25.36, "y": 114.48 },
- { "name": "bone36", "parent": "maozhua", "x": 38.53, "y": 25.8 },
- { "name": "bone37", "parent": "maozhua", "x": 40.59, "y": -42.66 },
- { "name": "bone38", "parent": "maozhua", "x": -81.18, "y": 3.78 }
- ],
- "slots": [
- { "name": "zuojiao", "bone": "bone13", "attachment": "zuojiao" },
- { "name": "dang", "bone": "bone12", "attachment": "dang" },
- { "name": "youjiao", "bone": "bone16", "attachment": "youjiao" },
- { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
- { "name": "zuoshou 1", "bone": "bone32", "attachment": "zuoshou 1" },
- { "name": "zuoshou2", "bone": "bone33", "attachment": "zuoshou2" },
- { "name": "yifu", "bone": "bone2", "attachment": "yifu" },
- { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
- { "name": "youshou1", "bone": "bone29", "attachment": "youshou1" },
- { "name": "youshou2", "bone": "bone30", "attachment": "youshou2" },
- { "name": "tou", "bone": "bone5", "attachment": "tou" },
- { "name": "zuiba", "bone": "bone22", "attachment": "zuiba" },
- { "name": "zuiba 2", "bone": "bone22" },
- { "name": "zuoyan", "bone": "bone20", "attachment": "zuoyan" },
- { "name": "youyan", "bone": "bone19", "attachment": "youyan" },
- { "name": "biyan", "bone": "bone21" },
- { "name": "mianju", "bone": "bone5", "attachment": "mianju" },
- { "name": "maozhua2", "bone": "bone38", "attachment": "maozhua2" },
- { "name": "maozhua3", "bone": "bone36", "attachment": "maozhua3" },
- { "name": "maozhua1", "bone": "bone37", "attachment": "maozhua1" },
- { "name": "zuiba3", "bone": "bone22" },
- { "name": "biaoqing2", "bone": "biaoqing", "attachment": "biaoqing2" }
- ],
- "skins": {
- "default": {
- "biaoqing2": {
- "biaoqing2": { "x": 2.77, "y": 2.49, "rotation": -88.97, "width": 52, "height": 17 }
- },
- "biyan": {
- "biyan": { "x": 0.11, "y": -3.45, "rotation": -88.97, "width": 51, "height": 8 }
- },
- "dang": {
- "dang": {
- "type": "mesh",
- "uvs": [ 1, 0.73823, 0.58627, 1, 0.37827, 1, 0, 0.58999, 0, 0, 0.37561, 0, 0.57827, 0, 1, 0 ],
- "triangles": [ 3, 4, 5, 6, 7, 0, 5, 2, 3, 1, 2, 6, 6, 2, 5, 0, 1, 6 ],
- "vertices": [ 16.47, 25.2, 20.05, 6.4, 19.61, -2.95, 11.86, -19.63, 1.84, -19.16, 2.63, -2.28, 3.05, 6.83, 3.94, 25.79 ],
- "hull": 8,
- "edges": [ 6, 8, 6, 4, 2, 4, 0, 14, 2, 0, 8, 10, 4, 10, 10, 12, 12, 14, 2, 12 ],
- "width": 45,
- "height": 17
- }
- },
- "maozhua1": {
- "maozhua1": { "x": -0.93, "y": 5.31, "width": 26, "height": 26 }
- },
- "maozhua2": {
- "maozhua2": { "x": -3.66, "y": 2.37, "width": 29, "height": 29 }
- },
- "maozhua3": {
- "maozhua3": { "x": 5.63, "y": 5.85, "width": 39, "height": 40 }
- },
- "mianju": {
- "mianju": {
- "type": "mesh",
- "uvs": [ 1, 0.09528, 1, 0.16863, 1, 0.22797, 1, 0.30149, 1, 0.41475, 1, 0.55958, 1, 1, 0, 1, 0, 0.51457, 0, 0.44349, 0, 0.35347, 0, 0.28832, 0, 0.22854, 0, 0.1396, 0, 0, 0.10226, 0, 0.13715, 0, 0.16355, 0.05473, 0.18234, 0.0937, 0.19746, 0.12281, 0.21397, 0.1546, 0.23327, 0.18764, 0.27886, 0.17725, 0.49461, 0.14619, 0.74637, 0.17501, 0.76444, 0.15094, 0.7936, 0.11037, 0.80665, 0.08521, 0.81778, 0.06376, 0.83698, 0.03386, 0.85871, 0, 0.90758, 0, 1, 0, 0.13871, 0.36827, 0.1091, 0.26471, 0.10287, 0.17265, 0.10379, 0.09273, 0.1235, 0.31507, 0.10577, 0.21543, 0.84932, 0.36224, 0.87112, 0.27568, 0.88226, 0.19357, 0.89412, 0.10293, 0.90078, 0.05198, 0.88915, 0.14089 ],
- "triangles": [ 39, 5, 6, 23, 24, 39, 23, 33, 22, 6, 7, 39, 7, 8, 33, 43, 30, 31, 29, 30, 43, 43, 31, 32, 0, 43, 32, 43, 28, 29, 42, 43, 0, 42, 28, 43, 42, 27, 28, 44, 27, 42, 26, 27, 44, 1, 44, 42, 0, 1, 42, 41, 26, 44, 2, 44, 1, 2, 41, 44, 25, 26, 41, 25, 40, 24, 3, 40, 41, 41, 40, 25, 3, 41, 2, 3, 4, 40, 39, 24, 40, 4, 39, 40, 39, 4, 5, 23, 39, 33, 39, 7, 33, 17, 36, 15, 17, 15, 16, 36, 17, 18, 36, 13, 14, 36, 14, 15, 35, 13, 36, 18, 19, 35, 18, 35, 36, 38, 35, 19, 20, 38, 19, 12, 13, 35, 12, 35, 38, 20, 21, 34, 20, 34, 38, 11, 12, 38, 34, 11, 38, 37, 34, 21, 34, 37, 10, 34, 10, 11, 33, 37, 21, 9, 10, 37, 33, 21, 22, 33, 9, 37, 8, 9, 33 ],
- "vertices": [ 2, 25, 15.6, -8.09, 0.0895, 26, 6.87, -8.57, 0.9105, 3, 24, 18.19, -7.09, 0.0116, 25, 10.31, -8.88, 0.43129, 26, 1.53, -9.01, 0.55711, 3, 24, 14.07, -8.42, 0.12479, 25, 6.02, -9.53, 0.6679, 26, -2.78, -9.36, 0.20731, 3, 24, 8.96, -10.07, 0.47478, 25, 0.72, -10.32, 0.50646, 26, -8.13, -9.8, 0.01876, 3, 27, -18.32, -64.27, 6.9E-4, 24, 1.09, -12.61, 0.92427, 25, -7.46, -11.55, 0.07504, 1, 5, 45.77, -44.14, 1, 1, 5, 13.63, -44.72, 1, 1, 5, 12.24, 32.27, 1, 1, 5, 47.68, 32.91, 1, 2, 27, -1.27, 10.85, 0.99762, 24, -24.54, 60.03, 0.00238, 2, 27, 5.1, 9.22, 0.92453, 28, -6.03, 7.97, 0.07547, 3, 27, 9.71, 8.04, 0.588, 28, -1.27, 7.97, 0.41038, 29, -9.15, 7.97, 0.00162, 3, 27, 13.93, 6.96, 0.14935, 28, 3.09, 7.97, 0.75692, 29, -4.79, 7.97, 0.09373, 3, 27, 20.22, 5.35, 3.0E-5, 28, 9.58, 7.97, 0.32726, 29, 1.7, 7.97, 0.67271, 1, 29, 11.89, 7.97, 1, 1, 29, 11.89, 0.1, 1, 1, 29, 11.89, -2.59, 1, 5, 27, 23.11, -8.39, 1.9E-4, 28, 15.78, -4.62, 0.01693, 29, 7.9, -4.62, 0.98182, 24, 6.33, 56.76, 7.1E-4, 25, 8.98, 56.04, 3.6E-4, 5, 27, 19.99, -9.08, 0.00877, 28, 12.93, -6.07, 0.12635, 29, 5.05, -6.07, 0.85876, 24, 4.07, 54.51, 0.00427, 25, 6.38, 54.19, 0.00186, 5, 27, 17.64, -9.68, 0.0407, 28, 10.81, -7.23, 0.30799, 29, 2.93, -7.23, 0.63464, 24, 2.41, 52.75, 0.01184, 25, 4.45, 52.73, 0.00483, 5, 27, 15.08, -10.34, 0.12592, 28, 8.49, -8.5, 0.48363, 29, 0.61, -8.5, 0.34989, 24, 0.59, 50.83, 0.02922, 25, 2.34, 51.12, 0.01134, 5, 27, 12.38, -11.18, 0.30214, 28, 6.07, -9.99, 0.48422, 29, -1.8, -9.99, 0.11551, 24, -1.25, 48.67, 0.07146, 25, 0.18, 49.3, 0.02667, 1, 5, 72.68, 11.88, 1, 1, 5, 75.25, -4.69, 1, 1, 5, 73.49, -24.11, 1, 5, 27, 4.83, -51.47, 0.02592, 28, 8.75, -50.89, 0.01097, 24, 13.85, 10.57, 0.15509, 25, 8.89, 9.25, 0.42813, 26, 1.35, 9.18, 0.37988, 5, 27, 7.15, -54.38, 0.00679, 28, 11.72, -53.13, 0.00318, 24, 17.36, 9.34, 0.03949, 25, 12.16, 7.46, 0.1631, 26, 4.48, 7.18, 0.78743, 5, 27, 8.68, -55.81, 0.00249, 28, 13.55, -54.14, 0.00128, 24, 19.42, 8.95, 0.01286, 25, 14.12, 6.74, 0.05092, 26, 6.39, 6.33, 0.93245, 5, 27, 9.98, -57.03, 8.3E-4, 28, 15.12, -55, 4.9E-4, 24, 21.17, 8.61, 0.00345, 25, 15.8, 6.13, 0.01093, 26, 8.02, 5.6, 0.98429, 3, 27, 11.73, -59, 5.0E-5, 28, 17.3, -56.47, 6.0E-5, 26, 10.32, 4.3, 0.99989, 1, 26, 12.92, 2.84, 1, 1, 26, 13.22, -0.91, 1, 1, 26, 13.8, -8.01, 1, 4, 27, 1.41, -0.86, 0.99074, 28, -7.11, -2.71, 0.00482, 24, -16.04, 51.55, 0.00361, 25, -13.94, 54.54, 8.3E-4, 5, 27, 9.29, -0.53, 0.3052, 28, 0.45, -0.43, 0.6937, 29, -7.43, -0.43, 1.1E-4, 24, -9.54, 56.04, 7.3E-4, 25, -6.8, 57.92, 2.6E-4, 2, 28, 7.17, 0.05, 0.83325, 29, -0.71, 0.05, 0.16675, 4, 28, 13, -0.02, 1.1E-4, 29, 5.13, -0.02, 0.99988, 24, 2.28, 60.29, 1.0E-5, 25, 5.55, 60.18, 0, 4, 27, 5.46, -0.69, 0.98071, 28, -3.23, -1.54, 0.01666, 24, -12.7, 53.86, 0.00199, 25, -10.28, 56.28, 6.4E-4, 5, 27, 12.84, -1.17, 4.9E-4, 28, 4.05, -0.17, 0.99817, 29, -3.83, -0.17, 9.2E-4, 24, -6.2, 57.39, 3.0E-4, 25, -3.28, 58.7, 1.2E-4, 1, 24, 1.18, -0.39, 1, 2, 24, 7.71, -0.04, 0.06966, 25, 1.11, -0.23, 0.93034, 2, 25, 7.16, -0.19, 0.89635, 26, -1.02, -0.12, 0.10365, 2, 25, 13.84, -0.11, 0.00374, 26, 5.65, -0.49, 0.99626, 2, 25, 17.6, -0.06, 4.0E-4, 26, 9.4, -0.7, 0.9996, 1, 26, 2.86, -0.33, 1 ],
- "hull": 33,
- "edges": [ 12, 14, 44, 46, 46, 48, 14, 16, 16, 66, 66, 44, 20, 68, 68, 40, 24, 70, 70, 36, 24, 26, 26, 28, 26, 72, 32, 34, 34, 36, 72, 34, 28, 30, 30, 32, 30, 72, 72, 70, 16, 18, 18, 20, 66, 74, 74, 68, 18, 74, 40, 42, 42, 44, 74, 42, 20, 22, 22, 24, 68, 76, 76, 70, 22, 76, 36, 38, 38, 40, 76, 38, 48, 78, 12, 10, 78, 10, 48, 50, 50, 80, 10, 8, 80, 8, 78, 80, 80, 82, 60, 62, 62, 64, 50, 52, 52, 82, 8, 6, 82, 6, 56, 84, 84, 2, 56, 58, 58, 60, 62, 86, 86, 84, 58, 86, 2, 0, 0, 64, 86, 0, 52, 54, 54, 56, 82, 88, 88, 84, 54, 88, 2, 4, 4, 6, 88, 4 ],
- "width": 77,
- "height": 73
- }
- },
- "tou": {
- "tou": { "x": 33.4, "y": -4.36, "rotation": -88.97, "width": 68, "height": 81 }
- },
- "yifu": {
- "yifu": {
- "type": "mesh",
- "uvs": [ 0.6653, 0.09819, 0.66691, 0.12448, 0.71275, 0.14312, 0.89478, 0.18316, 0.95554, 0.37878, 0.92478, 0.44354, 0.82388, 0.6559, 0.85602, 0.70319, 0.89221, 0.75647, 0.99999, 0.91509, 0.99999, 0.97718, 0.44912, 0.97529, 0.05064, 0.97392, 0.12002, 0.76675, 0.12144, 0.70632, 0.12255, 0.65916, 0.09761, 0.44813, 0.08077, 0.30562, 0.28469, 0.15673, 0.29472, 0.131, 0.2952, 0.10589, 0.29725, 0, 0.46942, 0, 0.65931, 0, 0.45353, 0.76364, 0.45571, 0.65893, 0.45458, 0.71302, 0.46676, 0.12778, 0.4673, 0.10185, 0.46617, 0.15589, 0.22164, 0.44686, 0.64645, 0.45503, 0.34197, 0.15647, 0.22167, 0.65909, 0.60598, 0.14865, 0.65605, 0.65728, 0.46009, 0.44826 ],
- "triangles": [ 28, 21, 22, 28, 22, 23, 28, 23, 0, 20, 21, 28, 27, 20, 28, 27, 28, 0, 27, 0, 1, 19, 20, 27, 34, 27, 1, 34, 1, 2, 27, 32, 19, 29, 27, 34, 29, 32, 27, 18, 19, 32, 36, 32, 29, 36, 29, 34, 4, 31, 3, 30, 17, 18, 30, 18, 32, 16, 17, 30, 30, 32, 36, 31, 34, 2, 31, 2, 3, 5, 31, 4, 31, 36, 34, 6, 31, 5, 35, 31, 6, 25, 30, 36, 25, 36, 31, 25, 31, 35, 33, 30, 25, 15, 16, 30, 33, 15, 30, 26, 33, 25, 14, 15, 33, 26, 25, 35, 7, 35, 6, 26, 14, 33, 7, 26, 35, 24, 14, 26, 24, 26, 7, 24, 7, 8, 13, 14, 24, 11, 13, 24, 12, 13, 11, 10, 8, 9, 11, 24, 8, 10, 11, 8 ],
- "vertices": [ 2, 3, 43.73, -9.29, 0.13637, 4, 6.88, -9.25, 0.86363, 2, 3, 41.82, -9.42, 0.28514, 4, 4.97, -9.39, 0.71486, 2, 3, 40.52, -11.62, 0.51304, 4, 3.68, -11.59, 0.48696, 2, 3, 37.83, -20.25, 0.81987, 4, 1.06, -20.24, 0.18013, 2, 3, 23.64, -23.5, 0.97967, 4, -13.12, -23.59, 0.02033, 3, 2, 31.4, -22.71, 0.07558, 3, 18.87, -22.19, 0.90884, 4, -17.89, -22.31, 0.01558, 2, 2, 15.9, -17.97, 0.3234, 3, 3.24, -17.88, 0.6766, 2, 2, 12.45, -19.48, 0.54627, 3, -0.17, -19.49, 0.45373, 2, 2, 8.56, -21.18, 0.72888, 3, -4.01, -21.3, 0.27112, 2, 2, -3.02, -26.24, 0.96766, 3, -15.44, -26.69, 0.03234, 2, 2, -7.55, -26.24, 0.97909, 3, -19.97, -26.81, 0.02091, 1, 2, -7.41, -0.35, 1, 1, 2, -7.32, 18.38, 1, 2, 2, 7.81, 15.11, 0.80261, 3, -5.77, 14.96, 0.19739, 2, 2, 12.22, 15.05, 0.5677, 3, -1.36, 15.02, 0.4323, 2, 2, 15.66, 15, 0.36544, 3, 2.08, 15.06, 0.63456, 3, 2, 31.07, 16.17, 0.14731, 3, 17.45, 16.66, 0.8498, 4, -19.57, 16.54, 0.00289, 2, 3, 27.83, 17.74, 0.99516, 4, -9.2, 17.68, 0.00484, 2, 3, 38.96, 8.47, 0.41828, 4, 2, 8.48, 0.58172, 2, 3, 40.85, 8.05, 0.20064, 4, 3.89, 8.07, 0.79936, 2, 3, 42.68, 8.08, 0.08375, 4, 5.72, 8.12, 0.91625, 1, 4, 13.45, 8.29, 1, 1, 4, 13.73, 0.2, 1, 1, 4, 14.04, -8.72, 1, 2, 2, 8.04, -0.56, 0.99823, 3, -5.1, -0.7, 0.00177, 1, 3, 2.54, -0.59, 1, 1, 2, 11.73, -0.61, 1, 1, 4, 4.4, 0, 1, 1, 4, 6.3, 0.04, 1, 1, 4, 2.35, -0.04, 1, 3, 2, 31.16, 10.34, 0.00988, 3, 17.71, 10.84, 0.98721, 4, -19.27, 10.71, 0.00291, 3, 2, 30.56, -9.63, 0.07862, 3, 17.67, -9.14, 0.72958, 4, -19.18, -9.26, 0.1918, 2, 3, 39.05, 5.78, 0.28627, 4, 2.11, 5.79, 0.71373, 2, 2, 15.67, 10.34, 0.25671, 3, 2.22, 10.4, 0.74329, 2, 3, 39.97, -6.61, 0.29089, 4, 3.11, -6.59, 0.70911, 2, 2, 15.8, -10.08, 0.17597, 3, 2.92, -10, 0.82403, 2, 3, 17.92, -0.37, 0.58121, 4, -18.99, -0.49, 0.41879 ],
- "hull": 24,
- "edges": [ 26, 24, 6, 8, 20, 18, 42, 44, 44, 46, 20, 22, 22, 24, 22, 48, 26, 48, 16, 18, 48, 16, 26, 28, 28, 30, 48, 52, 52, 50, 28, 52, 12, 14, 14, 16, 52, 14, 38, 54, 54, 2, 38, 40, 40, 42, 44, 56, 56, 54, 40, 56, 2, 0, 0, 46, 56, 0, 34, 36, 36, 38, 58, 54, 2, 4, 4, 6, 36, 64, 64, 58, 64, 60, 30, 66, 66, 50, 60, 66, 4, 68, 68, 58, 68, 62, 12, 70, 70, 50, 62, 70, 30, 32, 32, 34, 32, 60, 50, 72, 72, 58, 60, 72, 72, 62, 8, 10, 10, 12, 62, 10 ],
- "width": 47,
- "height": 73
- }
- },
- "youjiao": {
- "youjiao": {
- "type": "mesh",
- "uvs": [ 1, 0.40248, 1, 0.43474, 1, 0.47955, 0.99999, 0.83957, 1, 0.86089, 0.99999, 0.87832, 1, 1, 0, 1, 0, 0.96889, 0, 0.89898, 0.28142, 0.85672, 0.27641, 0.83754, 0.27128, 0.82323, 0.10041, 0.48884, 0.08756, 0.46379, 0.0677, 0.42508, 0, 0.29314, 0, 0, 0.5375, 0, 1, 0, 0.62424, 0.86313, 0.58207, 0.44348, 0.58555, 0.4781, 0.57917, 0.41463, 0.6225, 0.84736, 0.62521, 0.82992 ],
- "triangles": [ 8, 9, 10, 8, 10, 20, 7, 8, 20, 14, 15, 23, 14, 23, 21, 22, 21, 1, 13, 14, 21, 13, 21, 22, 12, 13, 22, 25, 22, 2, 12, 22, 25, 11, 12, 25, 3, 25, 2, 24, 11, 25, 10, 11, 24, 25, 3, 4, 24, 25, 4, 20, 24, 4, 10, 24, 20, 5, 20, 4, 20, 5, 6, 7, 20, 6, 16, 17, 18, 23, 18, 19, 0, 23, 19, 15, 16, 18, 23, 15, 18, 21, 23, 0, 1, 21, 0, 22, 1, 2 ],
- "vertices": [ 2, 17, 22.56, 9, 0.94428, 18, -1.96, 9.08, 0.05572, 2, 17, 24.26, 8.87, 0.85396, 18, -0.25, 9.04, 0.14604, 2, 17, 26.63, 8.7, 0.66168, 18, 2.12, 9, 0.33832, 3, 17, 45.66, 7.28, 2.8E-4, 18, 21.2, 8.64, 0.98753, 19, -8.91, 0.86, 0.01218, 2, 18, 22.33, 8.62, 0.95964, 19, -8.49, 1.91, 0.04036, 2, 18, 23.25, 8.6, 0.90975, 19, -8.15, 2.77, 0.09025, 2, 18, 29.7, 8.48, 0.59307, 19, -5.77, 8.76, 0.40693, 1, 19, 15.61, 0.28, 1, 1, 19, 15, -1.25, 1, 2, 18, 23.92, -14.41, 6.0E-4, 19, 13.63, -4.7, 0.9994, 2, 18, 21.8, -7.9, 0.31286, 19, 6.79, -4.39, 0.68714, 2, 18, 20.78, -8, 0.49219, 19, 6.52, -5.38, 0.50781, 2, 18, 20.02, -8.1, 0.63153, 19, 6.35, -6.13, 0.36847, 2, 17, 25.59, -11.97, 0.08273, 18, 2.22, -11.7, 0.91727, 2, 17, 24.24, -12.17, 0.13907, 18, 0.89, -11.97, 0.86093, 2, 17, 22.16, -12.47, 0.25258, 18, -1.17, -12.39, 0.74742, 2, 17, 15.07, -13.5, 0.67186, 18, -8.19, -13.81, 0.32814, 2, 17, -0.42, -12.35, 0.99346, 18, -23.72, -13.52, 0.00654, 1, 17, 0.5, -0.02, 1, 1, 17, 1.29, 10.59, 1, 2, 18, 22.29, -0.02, 0.9961, 19, -0.41, -1.17, 0.0039, 1, 18, 0.03, -0.58, 1, 1, 18, 1.87, -0.53, 1, 2, 17, 22.48, -0.7, 0.69861, 18, -1.5, -0.61, 0.30139, 2, 18, 21.45, -0.05, 0.99674, 19, -0.68, -1.96, 0.00326, 2, 18, 20.53, 0.03, 0.99843, 19, -1.08, -2.8, 0.00157 ],
- "hull": 20,
- "edges": [ 12, 14, 32, 34, 20, 18, 34, 36, 36, 38, 14, 16, 16, 18, 40, 16, 28, 42, 42, 2, 26, 28, 44, 42, 26, 44, 2, 4, 44, 4, 28, 30, 30, 32, 36, 46, 46, 42, 30, 46, 2, 0, 0, 38, 46, 0, 20, 40, 10, 12, 40, 10, 20, 22, 40, 48, 22, 48, 8, 10, 48, 8, 22, 24, 24, 26, 44, 50, 50, 48, 24, 50, 4, 6, 6, 8, 50, 6 ],
- "width": 23,
- "height": 53
- }
- },
- "youshou": {
- "youshou": {
- "type": "mesh",
- "uvs": [ 0.57513, 0.3533, 0.59892, 0.37539, 0.61729, 0.39246, 0.85663, 0.61481, 0.87579, 0.6326, 0.89214, 0.64779, 1, 0.74799, 1, 1, 0.68751, 1, 0.57596, 0.87678, 0.55098, 0.84919, 0.52532, 0.82085, 0.31616, 0.58982, 0.29576, 0.56728, 0.27347, 0.54266, 0, 0.24059, 0, 0, 0.19483, 0, 0.71921, 0.73688, 0.74331, 0.75946, 0.69487, 0.71194, 0.45814, 0.46939, 0.47642, 0.48813, 0.4339, 0.44455 ],
- "triangles": [ 8, 19, 7, 19, 6, 7, 19, 5, 6, 8, 9, 19, 9, 18, 19, 9, 10, 18, 10, 20, 18, 19, 4, 5, 19, 18, 4, 18, 3, 4, 10, 11, 20, 12, 22, 11, 11, 22, 20, 18, 20, 3, 22, 2, 20, 20, 2, 3, 12, 21, 22, 22, 1, 2, 22, 21, 1, 12, 13, 21, 13, 23, 21, 13, 14, 23, 14, 15, 23, 21, 0, 1, 21, 23, 0, 0, 23, 17, 17, 23, 16, 23, 15, 16 ],
- "vertices": [ 2, 10, 25.11, 8.24, 0.7663, 11, -2.18, 8.37, 0.2337, 2, 10, 26.65, 8.35, 0.62719, 11, -0.64, 8.4, 0.37281, 2, 10, 27.83, 8.43, 0.50735, 11, 0.55, 8.42, 0.49265, 2, 11, 16.05, 8.66, 0.58475, 12, -1.36, 8.61, 0.41525, 2, 11, 17.29, 8.68, 0.46158, 12, -0.12, 8.68, 0.53842, 2, 11, 18.35, 8.7, 0.35901, 12, 0.94, 8.74, 0.64099, 2, 11, 25.34, 8.81, 0.01786, 12, 7.91, 9.14, 0.98214, 1, 12, 18.92, 1.15, 1, 2, 11, 28.06, -9.68, 0.0117, 12, 11.4, -9.22, 0.9883, 2, 11, 20.01, -9.14, 0.30342, 12, 3.33, -9.01, 0.69658, 2, 11, 18.2, -9.02, 0.46308, 12, 1.52, -8.97, 0.53692, 2, 11, 16.35, -8.9, 0.63961, 12, -0.34, -8.92, 0.36039, 2, 10, 29.4, -7.8, 0.35953, 11, 1.25, -7.88, 0.64047, 2, 10, 27.92, -7.78, 0.51985, 11, -0.23, -7.78, 0.48015, 2, 10, 26.31, -7.76, 0.69197, 11, -1.84, -7.67, 0.30803, 1, 10, 6.52, -7.49, 1, 1, 10, -4.09, 0.02, 1, 1, 10, 0.53, 6.54, 1, 2, 11, 17.73, 0.15, 0.01707, 12, 0.66, 0.18, 0.98293, 1, 12, 2.23, 0.26, 1, 1, 11, 16.05, 0.21, 1, 2, 10, 27.45, 0.71, 0.77138, 11, -0.24, 0.72, 0.22862, 2, 10, 28.71, 0.73, 0.08884, 11, 1.02, 0.68, 0.91116, 2, 10, 25.79, 0.67, 0.97821, 11, -1.91, 0.77, 0.02179 ],
- "hull": 18,
- "edges": [ 32, 34, 14, 12, 30, 32, 14, 16, 20, 36, 36, 8, 8, 10, 10, 12, 14, 38, 38, 36, 10, 38, 16, 18, 18, 20, 38, 18, 20, 22, 40, 36, 22, 40, 8, 6, 40, 6, 26, 42, 42, 2, 22, 24, 24, 26, 40, 44, 44, 42, 24, 44, 2, 4, 4, 6, 44, 4, 26, 28, 28, 30, 32, 46, 46, 42, 28, 46, 2, 0, 0, 34, 46, 0 ],
- "width": 41,
- "height": 54
- }
- },
- "youshou1": {
- "youshou1": {
- "type": "mesh",
- "uvs": [ 1, 0.65152, 1, 1, 0.60032, 1, 0, 0.38206, 0, 0, 0.32672, 0 ],
- "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
- "vertices": [ 27.27, 7.79, 36.92, 1.54, 31.5, -6.85, 6.22, -8.37, -4.36, -1.52, 0.08, 5.34 ],
- "hull": 6,
- "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
- "width": 25,
- "height": 33
- }
- },
- "youshou2": {
- "youshou2": {
- "type": "mesh",
- "uvs": [ 1, 0.36122, 0.88149, 0.53851, 0.86048, 0.56993, 0.83712, 0.60487, 0.57298, 1, 0.14548, 1, 0, 1, 0, 0.83025, 0.08353, 0.45615, 0.09147, 0.42058, 0.10215, 0.37276, 0.18538, 0, 0.69268, 0, 1, 0, 0.45193, 0.43997, 0.415, 0.50747, 0.43199, 0.47642 ],
- "triangles": [ 12, 13, 0, 14, 11, 12, 14, 12, 0, 10, 11, 14, 16, 10, 14, 9, 10, 16, 15, 9, 16, 8, 9, 15, 1, 14, 0, 2, 14, 1, 16, 14, 2, 3, 16, 2, 15, 16, 3, 7, 5, 6, 15, 7, 8, 15, 5, 7, 4, 15, 3, 5, 15, 4 ],
- "vertices": [ 2, 31, 20.33, -9.53, 0.29439, 32, 4.87, -9.68, 0.70561, 2, 31, 13.7, -9.19, 0.80083, 32, -1.75, -9.14, 0.19917, 2, 31, 12.52, -9.13, 0.87235, 32, -2.93, -9.05, 0.12765, 2, 31, 11.21, -9.06, 0.93186, 32, -4.23, -8.94, 0.06814, 1, 31, -3.57, -8.3, 1, 1, 31, -6.21, -0.17, 1, 1, 31, -7.11, 2.6, 1, 1, 31, -1.46, 4.43, 1, 2, 31, 11.52, 6.88, 0.80307, 32, -3.44, 6.99, 0.19693, 2, 31, 12.75, 7.11, 0.69282, 32, -2.2, 7.18, 0.30718, 2, 31, 14.41, 7.43, 0.51111, 32, -0.54, 7.45, 0.48889, 1, 32, 12.46, 9.49, 1, 1, 32, 15.29, -0.25, 1, 1, 32, 17.01, -6.15, 1, 1, 31, 14.33, 0.05, 1, 2, 31, 11.85, 0.02, 0.99964, 32, -3.32, 0.12, 3.6E-4, 2, 31, 12.99, 0.03, 0.99965, 32, -2.18, 0.1, 3.5E-4 ],
- "hull": 14,
- "edges": [ 0, 26, 12, 14, 8, 10, 10, 12, 22, 24, 24, 26, 20, 22, 28, 24, 20, 28, 0, 2, 28, 2, 6, 8, 10, 30, 6, 30, 14, 16, 30, 16, 16, 18, 18, 20, 28, 32, 32, 30, 18, 32, 2, 4, 4, 6, 32, 4 ],
- "width": 20,
- "height": 35
- }
- },
- "youyan": {
- "youyan": { "x": 6.34, "y": -1.22, "rotation": -90, "width": 22, "height": 16 }
- },
- "zuiba": {
- "zuiba": { "x": 0.18, "y": 2.1, "rotation": 90.95, "width": 16, "height": 8 }
- },
- "zuiba 2": {
- "zuiba 2": { "x": -0.32, "y": 2.09, "rotation": 90.95, "width": 16, "height": 5 }
- },
- "zuiba3": {
- "zuiba3": { "x": 2.02, "y": 2.23, "rotation": 90.95, "width": 17, "height": 12 }
- },
- "zuojiao": {
- "zuojiao": {
- "type": "mesh",
- "uvs": [ 1, 0.29653, 0.94597, 0.45799, 0.93906, 0.47861, 0.93126, 0.50194, 0.8041, 0.8819, 0.79929, 0.90121, 0.79266, 0.91753, 0.76503, 1, 0, 1, 0, 0.95386, 0, 0.89512, 0.1961, 0.84417, 0.20125, 0.83312, 0.20741, 0.81535, 0.2419, 0.46513, 0.24369, 0.44695, 0.24598, 0.4237, 0.28771, 0, 0.65896, 0, 1, 0, 0.47539, 0.87955, 0.47811, 0.86163, 0.47995, 0.84524, 0.5613, 0.46113, 0.55721, 0.48042, 0.56577, 0.44001 ],
- "triangles": [ 8, 20, 7, 8, 9, 20, 9, 11, 20, 9, 10, 11, 11, 12, 20, 7, 20, 6, 20, 21, 6, 6, 21, 5, 4, 5, 22, 5, 21, 22, 22, 24, 4, 4, 24, 3, 20, 12, 21, 12, 13, 21, 21, 13, 22, 13, 14, 22, 22, 14, 24, 14, 15, 24, 24, 15, 23, 15, 16, 23, 24, 23, 3, 3, 23, 2, 23, 25, 2, 2, 25, 1, 23, 16, 25, 1, 25, 0, 16, 17, 25, 25, 18, 0, 25, 17, 18, 18, 19, 0 ],
- "vertices": [ 2, 14, 12.89, 11.87, 0.99874, 15, -9.35, 12.11, 0.00126, 2, 14, 21.56, 11.24, 0.77312, 15, -0.7, 11.32, 0.22688, 2, 14, 22.67, 11.16, 0.69513, 15, 0.41, 11.22, 0.30487, 2, 14, 23.92, 11.07, 0.59573, 15, 1.66, 11.1, 0.40427, 2, 15, 22.02, 9.24, 0.77565, 16, -8.64, 3.36, 0.22435, 2, 15, 23.05, 9.19, 0.69971, 16, -8.14, 4.26, 0.30029, 2, 15, 23.93, 9.07, 0.63123, 16, -7.65, 5, 0.36877, 2, 15, 28.35, 8.67, 0.39838, 16, -5.32, 8.77, 0.60162, 1, 16, 14.59, 0.87, 1, 1, 16, 13.69, -1.4, 1, 2, 15, 24.6, -13.14, 0.00473, 16, 12.54, -4.3, 0.99527, 2, 15, 21.45, -7.9, 0.29291, 16, 6.44, -4.78, 0.70709, 2, 15, 20.86, -7.8, 0.39799, 16, 6.09, -5.27, 0.60201, 2, 15, 19.9, -7.71, 0.54352, 16, 5.58, -6.08, 0.45648, 2, 14, 23.95, -8.33, 0.00998, 15, 1.33, -8.3, 0.99002, 2, 14, 22.98, -8.38, 0.03037, 15, 0.36, -8.33, 0.96963, 2, 14, 21.75, -8.44, 0.07919, 15, -0.87, -8.37, 0.92081, 1, 14, -0.71, -9.57, 1, 1, 14, -1.77, 0.77, 1, 1, 14, -2.74, 10.27, 1, 2, 15, 22.67, 0.05, 0.67205, 16, -0.14, -0.15, 0.32795, 1, 15, 21.71, 0.05, 1, 1, 15, 20.84, 0.03, 1, 1, 14, 22.82, 0.54, 1, 1, 15, 1.4, 0.57, 1, 1, 14, 21.7, 0.55, 1 ],
- "hull": 20,
- "edges": [ 22, 20, 0, 38, 14, 16, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 46, 46, 4, 26, 28, 28, 30, 44, 48, 48, 46, 28, 48, 4, 6, 6, 8, 48, 6, 30, 32, 32, 34, 36, 50, 50, 46, 32, 50, 0, 2, 2, 4, 50, 2 ],
- "width": 28,
- "height": 53
- }
- },
- "zuoshou": {
- "zuoshou": {
- "type": "mesh",
- "uvs": [ 1, 0.23189, 0.74224, 0.53028, 0.71194, 0.56536, 0.68345, 0.59835, 0.4992, 0.81164, 0.48153, 0.8321, 0.4524, 0.86581, 0.33649, 1, 0, 1, 0, 0.74631, 0.13435, 0.62512, 0.15563, 0.60593, 0.18356, 0.58074, 0.41924, 0.36815, 0.44611, 0.34392, 0.47656, 0.31645, 0.8274, 0, 1, 0, 0.59394, 0.46193, 0.32776, 0.72034, 0.30027, 0.7448, 0.35217, 0.69595, 0.56282, 0.49206, 0.61526, 0.43767 ],
- "triangles": [ 8, 20, 7, 7, 20, 6, 20, 9, 10, 20, 8, 9, 20, 19, 6, 6, 19, 5, 19, 21, 5, 10, 11, 20, 20, 11, 19, 11, 12, 19, 5, 21, 4, 4, 22, 3, 4, 21, 22, 19, 12, 21, 21, 13, 22, 21, 12, 13, 22, 18, 3, 3, 18, 2, 18, 23, 2, 13, 14, 22, 22, 14, 18, 14, 15, 18, 2, 23, 1, 1, 23, 0, 18, 15, 23, 17, 0, 23, 23, 15, 16, 23, 16, 17 ],
- "vertices": [ 1, 7, 5.05, 8.56, 1, 2, 7, 24.5, 8.02, 0.49609, 8, -0.77, 7.99, 0.50391, 2, 7, 26.79, 7.96, 0.26032, 8, 1.52, 8.1, 0.73968, 2, 7, 28.94, 7.9, 0.10495, 8, 3.67, 8.2, 0.89505, 2, 8, 17.56, 8.85, 0.56975, 9, 0.29, 8.88, 0.43025, 2, 8, 18.9, 8.92, 0.43447, 9, 1.62, 8.94, 0.56553, 2, 8, 21.09, 9.02, 0.24113, 9, 3.81, 9.05, 0.75887, 2, 8, 29.83, 9.43, 0.0014, 9, 12.56, 9.48, 0.9986, 1, 9, 21.76, -2.12, 1, 2, 8, 28.48, -10.52, 0.09733, 9, 11.23, -10.48, 0.90267, 2, 8, 19.77, -9.87, 0.54901, 9, 2.52, -9.84, 0.45099, 2, 8, 18.39, -9.77, 0.66442, 9, 1.14, -9.74, 0.33558, 2, 8, 16.58, -9.63, 0.80481, 9, -0.67, -9.61, 0.19519, 2, 7, 25.34, -8.56, 0.39135, 8, 1.31, -8.49, 0.60865, 2, 7, 23.62, -8.3, 0.57188, 8, -0.43, -8.36, 0.42812, 2, 7, 21.66, -8.01, 0.76361, 8, -2.4, -8.21, 0.23639, 1, 7, -0.88, -4.62, 1, 1, 7, -5.14, 1.67, 1, 2, 7, 25.15, 0.59, 0.14998, 8, 0.44, 0.62, 0.85002, 2, 8, 18.45, -0.06, 0.00272, 9, 1.19, -0.04, 0.99728, 2, 8, 20.22, -0.21, 0.00846, 9, 2.95, -0.18, 0.99154, 1, 8, 16.77, -0.02, 1, 1, 8, 2.54, 0.54, 1, 1, 7, 23.56, 0.64, 1 ],
- "hull": 18,
- "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 22, 38, 38, 10, 18, 20, 20, 22, 16, 40, 40, 38, 20, 40, 10, 12, 12, 14, 40, 12, 8, 10, 42, 38, 8, 42, 22, 24, 42, 24, 28, 36, 36, 4, 24, 26, 26, 28, 36, 44, 44, 42, 26, 44, 4, 6, 6, 8, 44, 6, 0, 2, 2, 4, 34, 46, 46, 36, 2, 46, 28, 30, 30, 32, 46, 30 ],
- "width": 44,
- "height": 53
- }
- },
- "zuoshou 1": {
- "zuoshou 1": {
- "type": "mesh",
- "uvs": [ 1, 0.35746, 0.46663, 1, 0, 1, 0, 0.66825, 0.65484, 0, 1, 0 ],
- "triangles": [ 4, 5, 0, 1, 3, 4, 1, 2, 3, 4, 0, 1 ],
- "vertices": [ 3.06, 7.07, 25.91, 7.26, 31.74, -1.75, 23.39, -7.16, -1.62, -5.42, -5.94, 1.24 ],
- "hull": 6,
- "edges": [ 4, 6, 8, 10, 6, 8, 2, 4, 0, 10, 2, 0 ],
- "width": 23,
- "height": 30
- }
- },
- "zuoshou2": {
- "zuoshou2": {
- "type": "mesh",
- "uvs": [ 1, 0.41254, 1, 0.45191, 1, 0.49209, 1, 1, 0.73908, 1, 0.44925, 1, 0.14842, 0.58635, 0.12225, 0.55036, 0.09572, 0.51388, 0, 0.38226, 0, 0, 0.42458, 0, 1, 0, 0.57073, 0.4647, 0.58158, 0.4992, 0.59228, 0.53321 ],
- "triangles": [ 9, 10, 11, 13, 11, 12, 0, 13, 12, 8, 9, 11, 13, 8, 11, 0, 14, 13, 1, 14, 0, 1, 15, 14, 2, 15, 1, 7, 8, 13, 7, 13, 14, 6, 7, 14, 6, 14, 15, 5, 6, 15, 4, 15, 2, 5, 15, 4, 4, 2, 3 ],
- "vertices": [ 2, 34, 13.66, -8.54, 0.51369, 35, -1.51, -8.52, 0.48631, 2, 34, 12.38, -8.3, 0.63732, 35, -2.78, -8.27, 0.36268, 2, 34, 11.08, -8.06, 0.75103, 35, -4.08, -8.02, 0.24897, 1, 34, -5.41, -5.02, 1, 1, 34, -4.56, -0.4, 1, 1, 34, -3.61, 4.73, 1, 2, 34, 10.79, 7.58, 0.79984, 35, -4.19, 7.63, 0.20016, 2, 34, 12.05, 7.83, 0.6864, 35, -2.94, 7.86, 0.3136, 2, 34, 13.32, 8.08, 0.5508, 35, -1.66, 8.1, 0.4492, 2, 34, 17.9, 8.99, 0.1421, 35, 2.93, 8.95, 0.8579, 1, 35, 15.31, 6.53, 1, 1, 35, 13.84, -0.97, 1, 1, 35, 11.85, -11.13, 1, 2, 34, 13.36, -0.62, 0.93638, 35, -1.71, -0.61, 0.06362, 2, 34, 12.21, -0.61, 0.98255, 35, -2.87, -0.58, 0.01745, 2, 34, 11.07, -0.6, 0.99301, 35, -4, -0.55, 0.00699 ],
- "hull": 13,
- "edges": [ 18, 20, 6, 8, 8, 10, 20, 22, 22, 24, 16, 18, 26, 22, 16, 26, 0, 24, 26, 0, 14, 16, 28, 26, 14, 28, 0, 2, 28, 2, 10, 12, 12, 14, 8, 30, 30, 28, 12, 30, 2, 4, 4, 6, 30, 4 ],
- "width": 18,
- "height": 33
- }
- },
- "zuoyan": {
- "zuoyan": { "x": 6.62, "y": 0.69, "rotation": -89.29, "width": 20, "height": 16 }
- }
- }
- },
- "animations": {
- "stand1": {
- "slots": {
- "biaoqing2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2, "name": "biaoqing2" }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 0.1667, "name": "biyan" },
- { "time": 0.2, "name": null }
- ]
- },
- "maozhua1": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 1, "color": "ffffff00" },
- { "time": 1.1, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.1667, "color": "ffffffff" },
- { "time": 2.3333, "color": "ffffff00" }
- ]
- },
- "maozhua2": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.5, "color": "ffffff00" },
- { "time": 0.6, "color": "ffffffff", "curve": "stepped" },
- { "time": 2.3333, "color": "ffffffff" },
- { "time": 2.5, "color": "ffffff00" }
- ]
- },
- "maozhua3": {
- "color": [
- { "time": 0, "color": "ffffff00", "curve": "stepped" },
- { "time": 0.6667, "color": "ffffff00" },
- { "time": 0.7667, "color": "ffffffff", "curve": "stepped" },
- { "time": 1.9667, "color": "ffffffff" },
- { "time": 2.1333, "color": "ffffff00" }
- ]
- },
- "youshou": {
- "attachment": [
- { "time": 0.2333, "name": null }
- ]
- },
- "youshou1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2333, "name": "youshou1" }
- ]
- },
- "youshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2333, "name": "youshou2" }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 0.1667, "name": null }
- ]
- },
- "zuiba": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2333, "name": null }
- ]
- },
- "zuiba3": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2333, "name": "zuiba3" }
- ]
- },
- "zuiba 2": {
- "attachment": [
- { "time": 0, "name": "zuiba 2" },
- { "time": 0.2333, "name": null }
- ]
- },
- "zuoshou": {
- "attachment": [
- { "time": 0.2333, "name": null }
- ]
- },
- "zuoshou2": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2333, "name": "zuoshou2" }
- ]
- },
- "zuoshou 1": {
- "attachment": [
- { "time": 0, "name": null },
- { "time": 0.2333, "name": "zuoshou 1" }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 0.1667, "name": null }
- ]
- }
- },
- "bones": {
- "maozhua": {
- "translate": [
- { "time": 0, "x": -14.39, "y": -29.39 }
- ]
- },
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "juese": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0, "y": -1.28 },
- { "time": 0.3333, "x": -7.45, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": 6.41 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 },
- { "time": 0.3333, "x": -0.85, "y": -0.1 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 1.95 },
- { "time": 0.3333, "angle": -6.31 },
- { "time": 0.8667, "angle": -9.08, "curve": "stepped" },
- { "time": 1.9333, "angle": -9.08 },
- { "time": 2.6667, "angle": -6.31 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -1.54, "y": 0 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.8667, "x": 1.55, "y": 0.63, "curve": "stepped" },
- { "time": 1.9333, "x": 1.55, "y": 0.63 },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 0.9, "y": 1 },
- {
- "time": 0.3333,
- "x": 1.02,
- "y": 1,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.8667, "x": 1, "y": 1 }
- ]
- },
- "bone4": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": -0.76 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 1.32 },
- { "time": 0.3333, "angle": -1.12 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 19.24 },
- { "time": 0.2333, "angle": 11.55, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 27.6, "y": 87 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -16.75 },
- { "time": 0.2333, "angle": -46.71, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -15.24 },
- { "time": 0.2333, "angle": -9.14, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 22.06, "y": -89.75 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 8.51 },
- { "time": 0.2333, "angle": 65.32, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone12": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -10.34 },
- { "time": 0.3333, "angle": 6.75 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": 0.53, "y": -0.38 },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 15.44 },
- { "time": 0.3333, "angle": 4.58 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": -6.32 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": -5.94,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.3,
- "angle": -9.58,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.7333, "angle": 5.55 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- {
- "time": 0.1667,
- "x": 0.03,
- "y": 0.98,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.7333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- {
- "time": 0.1667,
- "angle": 9.63,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.3,
- "angle": 49.07,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 0.7333, "angle": 19.18 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7333, "x": 1, "y": 1 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 },
- { "time": 0.3333, "angle": -6.37 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 0.345, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 },
- { "time": 0.1667, "x": 0.29, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -2.93, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1 },
- {
- "time": 0.2333,
- "x": 0.631,
- "y": 1,
- "curve": [ 0.36, 0.43, 0.755, 1 ]
- },
- { "time": 0.8667, "x": 1, "y": 1 },
- {
- "time": 1.8333,
- "x": 0.2,
- "y": 1,
- "curve": [ 0.36, 0.43, 0.755, 1 ]
- },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 },
- { "time": 2.6667, "angle": -7.49 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -27.63 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.8, "angle": -13.97 },
- { "time": 0.8667, "angle": 0 },
- { "time": 0.9333, "angle": -13.97 },
- { "time": 1, "angle": 0 },
- { "time": 1.7333, "angle": -13.97 },
- { "time": 1.8, "angle": 0 },
- { "time": 1.8667, "angle": -13.97 },
- { "time": 1.9333, "angle": 0 },
- { "time": 2.6667, "angle": -13.97 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -2.4, "y": -1.45 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.8, "x": -0.58, "y": -0.56 },
- { "time": 0.8667, "x": 0, "y": 0 },
- { "time": 0.9333, "x": -0.58, "y": -0.56 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.7333, "x": -0.58, "y": -0.56 },
- { "time": 1.8, "x": 0, "y": 0 },
- { "time": 1.8667, "x": -0.58, "y": -0.56 },
- { "time": 1.9333, "x": 0, "y": 0 },
- { "time": 2.6667, "x": -0.58, "y": -0.56 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": -4.76 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.8, "angle": -4.76 },
- { "time": 0.8667, "angle": 0 },
- { "time": 0.9333, "angle": -4.76 },
- { "time": 1, "angle": 0 },
- { "time": 1.7333, "angle": -4.76 },
- { "time": 1.8, "angle": 0 },
- { "time": 1.8667, "angle": -4.76 },
- { "time": 1.9333, "angle": 0 },
- { "time": 2.6667, "angle": -4.76 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -0.91, "y": -0.38 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.8, "x": -0.91, "y": -0.38 },
- { "time": 0.8667, "x": 0, "y": 0 },
- { "time": 0.9333, "x": -0.91, "y": -0.38 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.7333, "x": -0.91, "y": -0.38 },
- { "time": 1.8, "x": 0, "y": 0 },
- { "time": 1.8667, "x": -0.91, "y": -0.38 },
- { "time": 1.9333, "x": 0, "y": 0 },
- { "time": 2.6667, "x": -0.91, "y": -0.38 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 },
- { "time": 1.7333, "angle": 10.32, "curve": "stepped" },
- { "time": 2.6667, "angle": 10.32 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1667, "angle": 17.98 },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.8, "angle": 17.98 },
- { "time": 0.8667, "angle": 0 },
- { "time": 0.9333, "angle": 17.98 },
- { "time": 1, "angle": 0 },
- { "time": 1.7333, "angle": 17.98 },
- { "time": 1.8, "angle": 0 },
- { "time": 1.8667, "angle": 17.98 },
- { "time": 1.9333, "angle": 0 },
- { "time": 2.6667, "angle": 17.98 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -2.7, "y": 1.12 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.8, "x": -0.18, "y": 0.1 },
- { "time": 0.8667, "x": 0, "y": 0 },
- { "time": 0.9333, "x": -0.18, "y": 0.1 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.7333, "x": -0.18, "y": 0.1 },
- { "time": 1.8, "x": 0, "y": 0 },
- { "time": 1.8667, "x": -0.18, "y": 0.1 },
- { "time": 1.9333, "x": 0, "y": 0 },
- { "time": 2.6667, "x": -0.18, "y": 0.1 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.1667, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0, "curve": "stepped" },
- { "time": 0.8, "angle": 0, "curve": "stepped" },
- { "time": 0.8667, "angle": 0, "curve": "stepped" },
- { "time": 0.9333, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.7333, "angle": 0, "curve": "stepped" },
- { "time": 1.8, "angle": 0, "curve": "stepped" },
- { "time": 1.8667, "angle": 0, "curve": "stepped" },
- { "time": 1.9333, "angle": 0, "curve": "stepped" },
- { "time": 2.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.1667, "x": -2.64, "y": 0 },
- { "time": 0.3333, "x": 0, "y": 0 },
- { "time": 0.8, "x": -2.64, "y": 0 },
- { "time": 0.8667, "x": 0, "y": 0 },
- { "time": 0.9333, "x": -2.64, "y": 0 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.7333, "x": -2.64, "y": 0 },
- { "time": 1.8, "x": 0, "y": 0 },
- { "time": 1.8667, "x": -2.64, "y": 0 },
- { "time": 1.9333, "x": 0, "y": 0 },
- { "time": 2.6667, "x": -2.64, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.2333, "angle": -7.04 },
- { "time": 0.3333, "angle": 12.24 },
- { "time": 0.8667, "angle": 4.41 },
- { "time": 1.9333, "angle": 14.16 },
- { "time": 2.6667, "angle": -7.24 }
- ],
- "translate": [
- { "time": 0, "x": -2.31, "y": 59.8, "curve": "stepped" },
- { "time": 0.2333, "x": -2.31, "y": 59.8, "curve": "stepped" },
- { "time": 0.3333, "x": -2.31, "y": 59.8, "curve": "stepped" },
- { "time": 0.8667, "x": -2.31, "y": 59.8, "curve": "stepped" },
- { "time": 1.9333, "x": -2.31, "y": 59.8, "curve": "stepped" },
- { "time": 2.6667, "x": -2.31, "y": 59.8 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.2333, "angle": 4.35 },
- { "time": 0.3333, "angle": -14.3 },
- { "time": 0.8667, "angle": 2.92 },
- { "time": 1.9333, "angle": -23.28 },
- { "time": 2.6667, "angle": -0.64 }
- ],
- "translate": [
- { "time": 0, "x": 2.69, "y": -73.23, "curve": "stepped" },
- { "time": 0.2333, "x": 2.69, "y": -73.23, "curve": "stepped" },
- { "time": 0.3333, "x": 2.69, "y": -73.23, "curve": "stepped" },
- { "time": 0.8667, "x": 2.69, "y": -73.23, "curve": "stepped" },
- { "time": 2.6667, "x": 2.69, "y": -73.23 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.2333, "angle": -39.19 },
- { "time": 0.3333, "angle": -8.68 },
- { "time": 0.8667, "angle": 2.07 },
- { "time": 1.9333, "angle": -2.02 },
- { "time": 2.6667, "angle": -4.23 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.9333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1 },
- { "time": 0.8667, "x": 0.8, "y": 1, "curve": "stepped" },
- { "time": 1.9333, "x": 0.8, "y": 1 },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.8667, "angle": -17.85, "curve": "stepped" },
- { "time": 1.9333, "angle": -17.85 },
- { "time": 2.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.2333, "angle": 71.27 },
- { "time": 0.3333, "angle": 9.57 },
- { "time": 0.8667, "angle": 18.51 },
- { "time": 2.6667, "angle": 9.57 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2333, "angle": 0, "curve": "stepped" },
- { "time": 0.3333, "angle": 0 },
- { "time": 0.8667, "angle": 16.51, "curve": "stepped" },
- { "time": 1.9333, "angle": 16.51 },
- { "time": 2.6667, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2.6667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2.6667, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 0.8333, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0 }
- ],
- "translate": [
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.6667, "x": 1.5, "y": 1.5 },
- { "time": 0.8333, "x": 0.8, "y": 0.8 },
- { "time": 1.1667, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0 }
- ],
- "translate": [
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 1, "x": 1.5, "y": 1.5 },
- { "time": 1.1667, "x": 0.8, "y": 0.8 },
- { "time": 1.5, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.6667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 }
- ],
- "translate": [
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0.5, "x": 1.5, "y": 1.5 },
- { "time": 0.6667, "x": 0.8, "y": 0.8 },
- { "time": 1, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "yifu": {
- "yifu": [
- { "time": 0.1667 },
- {
- "time": 0.3333,
- "offset": 42,
- "vertices": [ -3.39761, 0.38192, -3.41393, -0.18577, -0.02945, -0.26136, 2.93363, 0.19957 ]
- }
- ]
- },
- "zuoshou2": {
- "zuoshou2": [
- { "time": 0.3333 },
- {
- "time": 0.8667,
- "offset": 34,
- "vertices": [ -5.89404, -2.62431, -3.99553, -0.21316, -3.48127, 2.07703 ]
- },
- { "time": 2.6667 }
- ]
- }
- }
- }
- },
- "walk1": {
- "slots": {
- "biaoqing2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "biyan": {
- "attachment": [
- { "time": 1.1, "name": "biyan" },
- { "time": 1.2, "name": null }
- ]
- },
- "maozhua1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "maozhua2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "maozhua3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youshou1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youshou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "youyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "youyan" }
- ]
- },
- "zuiba": {
- "attachment": [
- { "time": 0, "name": "zuiba" }
- ]
- },
- "zuiba3": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuiba 2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoshou2": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoshou 1": {
- "attachment": [
- { "time": 0, "name": null }
- ]
- },
- "zuoyan": {
- "attachment": [
- { "time": 1.1, "name": null },
- { "time": 1.2, "name": "zuoyan" }
- ]
- }
- },
- "bones": {
- "root": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 0.65, "y": 0.65 }
- ]
- },
- "juese": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.2667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.2667, "x": 0, "y": 1.22 },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.7667, "x": 0, "y": 1.22 },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.2667, "x": 0, "y": 1.22 },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.7667, "x": 0, "y": 1.22 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone2": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.2667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone3": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.2667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone5": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.2667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone6": {
- "rotate": [
- {
- "time": 0,
- "angle": -318.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 17.77,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -318.14,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 17.77,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -318.14 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone7": {
- "rotate": [
- {
- "time": 0,
- "angle": -6.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -19.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -6.55,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -19.71,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -6.55 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone8": {
- "rotate": [
- {
- "time": 0,
- "angle": -15.25,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -13.87,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -15.25,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -13.87,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -15.25 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone9": {
- "rotate": [
- {
- "time": 0,
- "angle": 320.15,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -16.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 320.15,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -16.93,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 320.15 }
- ],
- "translate": [
- { "time": 0, "x": 0.07, "y": -2.47, "curve": "stepped" },
- { "time": 0.5, "x": 0.07, "y": -2.47, "curve": "stepped" },
- { "time": 1, "x": 0.07, "y": -2.47, "curve": "stepped" },
- { "time": 1.5, "x": 0.07, "y": -2.47, "curve": "stepped" },
- { "time": 2, "x": 0.07, "y": -2.47 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone10": {
- "rotate": [
- {
- "time": 0,
- "angle": -33.41,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -8.35,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": -33.41,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -8.35,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": -33.41 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone11": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone13": {
- "rotate": [
- { "time": 0, "angle": -6.69 },
- { "time": 0.2667, "angle": 15.44 },
- { "time": 0.5, "angle": 40.36 },
- { "time": 0.7667, "angle": -7 },
- { "time": 1, "angle": -6.69 },
- { "time": 1.2667, "angle": 15.44 },
- { "time": 1.5, "angle": 40.36 },
- { "time": 1.7667, "angle": -7 },
- { "time": 2, "angle": -6.69 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.7667, "x": 1.7, "y": 4.67 },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.7667, "x": 1.7, "y": 4.67 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone14": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.2667, "angle": 9.65 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.6333, "angle": 33.42 },
- { "time": 0.7667, "angle": 58.71 },
- { "time": 1, "angle": 0 },
- { "time": 1.2667, "angle": 9.65 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.6333, "angle": 33.42 },
- { "time": 1.7667, "angle": 58.71 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0 },
- { "time": 0.7667, "x": -1.38, "y": 0.05 },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0 },
- { "time": 1.7667, "x": -1.38, "y": 0.05 },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone15": {
- "rotate": [
- { "time": 0, "angle": -9.8 },
- { "time": 0.2667, "angle": -24.39 },
- { "time": 0.3667, "angle": -31.86 },
- { "time": 0.5, "angle": -8.33 },
- { "time": 0.7667, "angle": 4.68 },
- { "time": 1, "angle": -9.8 },
- { "time": 1.2667, "angle": -24.39 },
- { "time": 1.3667, "angle": -31.86 },
- { "time": 1.5, "angle": -8.33 },
- { "time": 1.7667, "angle": 4.68 },
- { "time": 2, "angle": -9.8 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone16": {
- "rotate": [
- { "time": 0, "angle": 17.6 },
- { "time": 0.2667, "angle": -18.67 },
- { "time": 0.5, "angle": -32.52 },
- { "time": 0.7667, "angle": -9.34 },
- { "time": 1, "angle": 17.6 },
- { "time": 1.2667, "angle": -18.67 },
- { "time": 1.5, "angle": -32.52 },
- { "time": 1.7667, "angle": -9.34 },
- { "time": 2, "angle": 17.6 }
- ],
- "translate": [
- { "time": 0, "x": -2.23, "y": -0.85 },
- { "time": 0.2667, "x": -1.48, "y": 4.04 },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0 },
- { "time": 1, "x": -2.23, "y": -0.85 },
- { "time": 1.2667, "x": -1.48, "y": 4.04 },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0 },
- { "time": 2, "x": -2.23, "y": -0.85 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone17": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.1333, "angle": 25.32 },
- { "time": 0.2667, "angle": 41.23 },
- { "time": 0.5, "angle": 0 },
- { "time": 0.7667, "angle": 17.83 },
- { "time": 1, "angle": 0 },
- { "time": 1.1333, "angle": 25.32 },
- { "time": 1.2667, "angle": 41.23 },
- { "time": 1.5, "angle": 0 },
- { "time": 1.7667, "angle": 17.83 },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 },
- { "time": 0.2667, "x": -1.59, "y": -0.88 },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.2667, "x": -1.59, "y": -0.88 },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ]
- },
- "bone18": {
- "rotate": [
- { "time": 0, "angle": 0 },
- { "time": 0.2667, "angle": 7.68 },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0 },
- { "time": 1.2667, "angle": 7.68 },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ]
- },
- "bone19": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.374, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.374, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone20": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1 },
- { "time": 1.1, "x": 0.444, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 0.444, "y": 1 },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone21": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.1, "angle": 0, "curve": "stepped" },
- { "time": 1.2, "angle": 0, "curve": "stepped" },
- { "time": 1.3333, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0 },
- { "time": 1.1, "x": -2.75, "y": 0, "curve": "stepped" },
- { "time": 1.2, "x": -2.75, "y": 0 },
- { "time": 1.3333, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.3333, "x": 1, "y": 1 }
- ]
- },
- "bone22": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone23": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.2667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone24": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -12.77,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -12.77,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone25": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": -12.77,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": -12.77,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone26": {
- "rotate": [
- { "time": 0, "angle": 0, "curve": "stepped" },
- { "time": 0.2667, "angle": 0, "curve": "stepped" },
- { "time": 0.5, "angle": 0, "curve": "stepped" },
- { "time": 0.7667, "angle": 0, "curve": "stepped" },
- { "time": 1, "angle": 0, "curve": "stepped" },
- { "time": 1.2667, "angle": 0, "curve": "stepped" },
- { "time": 1.5, "angle": 0, "curve": "stepped" },
- { "time": 1.7667, "angle": 0, "curve": "stepped" },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone27": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 16.46,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 16.46,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone28": {
- "rotate": [
- {
- "time": 0,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 0.5,
- "angle": 16.46,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1,
- "angle": 0,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- {
- "time": 1.5,
- "angle": 16.46,
- "curve": [ 0.25, 0, 0.75, 1 ]
- },
- { "time": 2, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
- { "time": 2, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
- { "time": 2, "x": 1, "y": 1 }
- ]
- },
- "bone29": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -1.99, "y": -108.52 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone30": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone31": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone32": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": -0.53, "y": -237.77 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone33": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone34": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "maozhua": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 174.47, "y": 5.74 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone36": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone37": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- },
- "bone38": {
- "rotate": [
- { "time": 0, "angle": 0 }
- ],
- "translate": [
- { "time": 0, "x": 0, "y": 0 }
- ],
- "scale": [
- { "time": 0, "x": 1, "y": 1 }
- ]
- }
- },
- "deform": {
- "default": {
- "dang": {
- "dang": [
- {
- "time": 0,
- "offset": 2,
- "vertices": [ 1.12567, 1.85246, -0.2455, -1.54722 ]
- },
- {
- "time": 0.2667,
- "vertices": [ 1.84763, -4.9356, 0, 0, 0, 0, 0.7397, 1.00457 ]
- },
- {
- "time": 0.5,
- "vertices": [ 3.24947, -8.29169, 0, 0, 0, 0, 2.17541, 5.78675, 0.42152, -2.09797, 0, 0, 0, 0, 0.50225, -0.36985 ]
- },
- {
- "time": 0.7667,
- "vertices": [ 1.84763, -4.9356, 0, 0, 0, 0, 0.7397, 1.00457 ]
- },
- {
- "time": 1,
- "offset": 2,
- "vertices": [ 1.12567, 1.85246, -0.2455, -1.54722 ]
- },
- {
- "time": 1.2667,
- "vertices": [ 1.84763, -4.9356, 0, 0, 0, 0, 0.7397, 1.00457 ]
- },
- {
- "time": 1.5,
- "vertices": [ 3.24947, -8.29169, 0, 0, 0, 0, 2.17541, 5.78675, 0.42152, -2.09797, 0, 0, 0, 0, 0.50225, -0.36985 ]
- },
- {
- "time": 1.7667,
- "vertices": [ 1.84763, -4.9356, 0, 0, 0, 0, 0.7397, 1.00457 ]
- },
- {
- "time": 2,
- "offset": 2,
- "vertices": [ 1.12567, 1.85246, -0.2455, -1.54722 ]
- }
- ]
- },
- "yifu": {
- "yifu": [
- {
- "time": 0,
- "offset": 47,
- "vertices": [ 2.266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.59957, 0.79366, -3.60469, 0.77023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.266, -0.06335, 2.26511, -0.03164, 1.13255, 0, 1.133, 0, 0, 0, 0, 0, 0, 1.788, 2.83099, 1.70815, 2.87988, 1.68934, 2.89093, 0.149, 3.12897, 0.06145, 3.13192, 0.04103, 3.13225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.298, 1.78799, 0.24789, 1.79562, 0.76286, 2.52131, 0.74646, 2.52622 ]
- },
- {
- "time": 0.5,
- "offset": 42,
- "vertices": [ 0.252, 0.92398, 0.22612, 0.93067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.59957, 0.79366, -3.60469, 0.77023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02921, -1.04258, 0, -1.04299, 0, 0, 0, 0, 0, 0, 0.29802, -0.44701, 0.31042, -0.4385, 0.31325, -0.43647, -0.53699, -0.33002, -0.52753, -0.3449, -0.5252, -0.34833, 0, 0, 0, 0, 0.149, -0.74499, 0.16978, -0.74053, 0, 0, 0, 0, 0.298, 1.78799, 0.24789, 1.79562, -0.72029, 0.21794, -0.72173, 0.21325 ]
- },
- {
- "time": 1,
- "offset": 47,
- "vertices": [ 2.266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.59957, 0.79366, -3.60469, 0.77023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.266, -0.06335, 2.26511, -0.03164, 1.13255, 0, 1.133, 0, 0, 0, 0, 0, 0, 1.788, 2.83099, 1.70815, 2.87988, 1.68934, 2.89093, 0.149, 3.12897, 0.06145, 3.13192, 0.04103, 3.13225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.298, 1.78799, 0.24789, 1.79562, 0.76286, 2.52131, 0.74646, 2.52622 ]
- },
- {
- "time": 1.5,
- "offset": 42,
- "vertices": [ 0.252, 0.92398, 0.22612, 0.93067, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.59957, 0.79366, -3.60469, 0.77023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02921, -1.04258, 0, -1.04299, 0, 0, 0, 0, 0, 0, 0.29802, -0.44701, 0.31042, -0.4385, 0.31325, -0.43647, -0.53699, -0.33002, -0.52753, -0.3449, -0.5252, -0.34833, 0, 0, 0, 0, 0.149, -0.74499, 0.16978, -0.74053, 0, 0, 0, 0, 0.298, 1.78799, 0.24789, 1.79562, -0.72029, 0.21794, -0.72173, 0.21325 ]
- },
- {
- "time": 2,
- "offset": 47,
- "vertices": [ 2.266, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -3.59957, 0.79366, -3.60469, 0.77023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.266, -0.06335, 2.26511, -0.03164, 1.13255, 0, 1.133, 0, 0, 0, 0, 0, 0, 1.788, 2.83099, 1.70815, 2.87988, 1.68934, 2.89093, 0.149, 3.12897, 0.06145, 3.13192, 0.04103, 3.13225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.298, 1.78799, 0.24789, 1.79562, 0.76286, 2.52131, 0.74646, 2.52622 ]
- }
- ]
- },
- "zuojiao": {
- "zuojiao": [
- { "time": 0.5 },
- {
- "time": 0.7667,
- "vertices": [ -0.79978, 1.21248, 0.645, 1.3014, -1.56455, 1.12518, 0.18459, 1.91822, 0.00555, 2.26807, 1.96254, 1.13696, -0.77372, 1.47999, 0.88934, 1.41346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.29418, 2.23307, 1.9763, -0.24667, -0.50169, 0.6702 ]
- },
- { "time": 1, "curve": "stepped" },
- { "time": 1.5 },
- {
- "time": 1.7667,
- "vertices": [ -0.79978, 1.21248, 0.645, 1.3014, -1.56455, 1.12518, 0.18459, 1.91822, 0.00555, 2.26807, 1.96254, 1.13696, -0.77372, 1.47999, 0.88934, 1.41346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.29418, 2.23307, 1.9763, -0.24667, -0.50169, 0.6702 ]
- },
- { "time": 2 }
- ]
- }
- }
- }
- }
- }
- }
|