69002.json 284 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488
  1. {
  2. "skeleton": { "hash": "fefo9x58J4B5fjAZYB8MSahQXz8", "spine": "3.6.53", "width": 108, "height": 192, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -0.71, "y": -0.51 },
  6. { "name": "bone2", "parent": "bone", "x": -1.24, "y": 68.73 },
  7. { "name": "bone3", "parent": "bone2", "length": 17.86, "rotation": 85.79, "x": -0.07, "y": 2.5 },
  8. { "name": "bone4", "parent": "bone3", "length": 17.73, "rotation": -14.77, "x": 17.86 },
  9. { "name": "bone5", "parent": "bone3", "length": 15.89, "rotation": 164.22, "x": -2.3, "y": 8.49 },
  10. { "name": "bone6", "parent": "bone5", "length": 13.03, "rotation": 5.33, "x": 15.54, "y": 0.08 },
  11. { "name": "bone7", "parent": "bone6", "length": 14.11, "rotation": -3.78, "x": 13.03 },
  12. { "name": "bone8", "parent": "bone7", "length": 12.61, "rotation": -4.18, "x": 14.11 },
  13. { "name": "bone9", "parent": "bone8", "length": 11.53, "rotation": -21.02, "x": 12.61 },
  14. { "name": "bone10", "parent": "bone3", "length": 15.97, "rotation": -135.72, "x": -2.23, "y": -1.43 },
  15. { "name": "bone11", "parent": "bone10", "length": 13.57, "rotation": -9.11, "x": 15.97 },
  16. { "name": "bone12", "parent": "bone11", "length": 12.81, "rotation": 1.04, "x": 13.57 },
  17. { "name": "bone13", "parent": "bone12", "length": 13.85, "rotation": 5.03, "x": 13.08, "y": 0.06 },
  18. { "name": "bone14", "parent": "bone13", "length": 14.97, "rotation": 5.34, "x": 14.4, "y": 0.08 },
  19. { "name": "bone15", "parent": "bone14", "length": 14.55, "rotation": 31.37, "x": 14.97 },
  20. { "name": "bone16", "parent": "bone2", "length": 11.86, "rotation": -96.58, "x": -4.32, "y": -6.17 },
  21. { "name": "bone17", "parent": "bone2", "length": 16.64, "rotation": -89.12, "x": -7.43, "y": -15.29, "color": "4086faff" },
  22. { "name": "bone18", "parent": "bone17", "length": 20.23, "rotation": 0.93, "x": 16.64, "color": "4086faff" },
  23. { "name": "bone19", "parent": "bone18", "length": 16.15, "rotation": -42.96, "x": 20.23, "color": "4086faff" },
  24. { "name": "bone20", "parent": "bone3", "length": 17.7, "rotation": -167.9, "x": -18.11, "y": -10.25 },
  25. { "name": "bone21", "parent": "bone20", "length": 21.4, "rotation": -5.15, "x": 17.7 },
  26. { "name": "bone22", "parent": "bone21", "length": 13.59, "rotation": -62.8, "x": 22.92, "y": -0.33 },
  27. { "name": "bone23", "parent": "bone4", "length": 20.96, "rotation": 169.51, "x": 12.36, "y": 5.77, "color": "4086faff" },
  28. { "name": "bone24", "parent": "bone23", "length": 18.57, "rotation": -5.53, "x": 20.96, "color": "4086faff" },
  29. { "name": "bone25", "parent": "bone24", "length": 15.07, "rotation": 4.69, "x": 18.57, "color": "4086faff" },
  30. { "name": "bone26", "parent": "bone4", "length": 23.81, "rotation": -133.56, "x": 19.26, "y": -12.23 },
  31. { "name": "bone27", "parent": "bone26", "length": 15.58, "rotation": 1.04, "x": 23.81 },
  32. { "name": "bone28", "parent": "bone27", "length": 10.28, "rotation": -3.21, "x": 15.58 },
  33. { "name": "bone29", "parent": "bone28", "length": 10.67, "rotation": 90.4, "x": 13.36, "y": -7.38 },
  34. { "name": "bone30", "parent": "bone4", "length": 46.58, "rotation": 28.55, "x": 20.18, "y": 1.06 },
  35. { "name": "bone31", "parent": "bone30", "length": 15.96, "rotation": -5.38, "x": 19.23, "y": 18.27 },
  36. { "name": "bone32", "parent": "bone30", "length": 15.21, "rotation": -6.28, "x": 16.76, "y": -6.04 },
  37. { "name": "bone33", "parent": "bone30", "length": 7.17, "rotation": -6.07, "x": 19.76, "y": 7.37 },
  38. { "name": "bone34", "parent": "bone30", "length": 7.76, "rotation": -5.26, "x": 35.79, "y": 5.85 },
  39. { "name": "bone35", "parent": "bone30", "length": 12.43, "rotation": -173.91, "x": 5.81, "y": -27.88 },
  40. { "name": "bone73", "parent": "bone4", "length": 7.13, "rotation": -26.77, "x": 9.31, "y": -5.03 },
  41. { "name": "bone36", "parent": "bone73", "length": 10.12, "rotation": -17.69, "x": -0.05, "y": -2.69 },
  42. { "name": "bone37", "parent": "bone36", "length": 7.13, "rotation": 3.12, "x": 10.28, "y": 0.08 },
  43. { "name": "bone38", "parent": "bone37", "length": 8.55, "rotation": 8.34, "x": 6.27, "y": -0.06 },
  44. { "name": "bone39", "parent": "bone30", "length": 14.04, "rotation": 76.85, "x": 72.12, "y": -8.57 },
  45. { "name": "bone40", "parent": "bone39", "length": 8.6, "rotation": 24.47, "x": 14.04 },
  46. { "name": "bone41", "parent": "bone40", "length": 10.51, "rotation": 16.77, "x": 8.6 },
  47. { "name": "bone42", "parent": "bone41", "length": 10.39, "rotation": 32.63, "x": 10.92, "y": 0.05 },
  48. { "name": "bone43", "parent": "bone42", "length": 9.78, "rotation": 19.71, "x": 10.39 },
  49. { "name": "bone44", "parent": "bone43", "length": 8.69, "rotation": 7.72, "x": 9.93 },
  50. { "name": "bone45", "parent": "bone44", "length": 9.17, "rotation": -21.54, "x": 8.98, "y": -0.04 },
  51. { "name": "bone46", "parent": "bone45", "length": 8.47, "rotation": 13.82, "x": 10.69, "y": -0.08 },
  52. { "name": "bone47", "parent": "bone46", "length": 5.99, "rotation": 45, "x": 8.47, "y": 0.15 },
  53. { "name": "bone48", "parent": "bone47", "length": 5.35, "rotation": -10.01, "x": 6.19 },
  54. { "name": "bone49", "parent": "bone30", "length": 8.96, "rotation": -69.25, "x": 56.65, "y": -2.85 },
  55. { "name": "bone50", "parent": "bone49", "length": 8.19, "rotation": -61.46, "x": 9.22, "y": -0.15 },
  56. { "name": "bone51", "parent": "bone50", "length": 8.71, "rotation": -19.3, "x": 8.79, "y": -0.15 },
  57. { "name": "bone52", "parent": "bone51", "length": 9.11, "rotation": 1.54, "x": 8.8, "y": 0.11 },
  58. { "name": "bone53", "parent": "bone52", "length": 7.39, "rotation": -11.49, "x": 9.11 },
  59. { "name": "bone54", "parent": "bone53", "length": 7.54, "rotation": 1.93, "x": 8.62, "y": -0.2 },
  60. { "name": "bone55", "parent": "bone30", "length": 8.98, "rotation": 162.95, "x": 31.11, "y": -26.08 },
  61. { "name": "bone56", "parent": "bone55", "length": 8.53, "rotation": 0.59, "x": 8.98 },
  62. { "name": "bone57", "parent": "bone56", "length": 6.74, "rotation": 24.53, "x": 9.54, "y": 0.12 },
  63. { "name": "bone58", "parent": "bone57", "length": 5.88, "rotation": 8.91, "x": 6.74 },
  64. { "name": "bone59", "parent": "bone58", "length": 7.07, "rotation": -64.86, "x": 6.27, "y": -0.2 },
  65. { "name": "bone60", "parent": "bone59", "length": 6.05, "rotation": 18.54, "x": 7.07 },
  66. { "name": "bone61", "parent": "bone30", "length": 13.39, "rotation": -85.69, "x": 41.7, "y": -46.67 },
  67. { "name": "bone62", "parent": "bone30", "length": 7.56, "rotation": 0.43, "x": 5.56, "y": 6.21 },
  68. { "name": "bone63", "parent": "bone3", "length": 8.88, "rotation": -2.84, "x": 0.25, "y": 7.29 },
  69. { "name": "bone64", "parent": "bone3", "length": 8.05, "rotation": -129.3, "x": -0.55, "y": 4.55 },
  70. { "name": "bone65", "parent": "bone64", "length": 6.74, "rotation": 3.27, "x": 8.05 },
  71. { "name": "bone66", "parent": "bone65", "length": 9.19, "rotation": 9.8, "x": 6.74 },
  72. { "name": "bone67", "parent": "bone66", "length": 8.42, "rotation": 6.88, "x": 9.19 },
  73. { "name": "bone68", "parent": "bone67", "length": 5.71, "rotation": 14.58, "x": 8.51, "y": 0.04 },
  74. { "name": "bone69", "parent": "bone2", "length": 19.32, "rotation": -92.35, "x": -0.42, "y": -8.16 },
  75. { "name": "bone70", "parent": "bone69", "length": 15.35, "rotation": 0.5, "x": 19.42 },
  76. { "name": "bone71", "parent": "bone70", "length": 10.71, "rotation": -1.86, "x": 15.55, "y": 0.01 },
  77. { "name": "bone72", "parent": "bone38", "length": 7.05, "rotation": 11.37, "x": 8.19, "y": 0.18 }
  78. ],
  79. "slots": [
  80. { "name": "toufa001", "bone": "bone30", "attachment": "toufa001" },
  81. { "name": "zuoshou", "bone": "bone23", "attachment": "zuoshou" },
  82. { "name": "qundi", "bone": "bone69", "attachment": "qundi" },
  83. { "name": "youtui", "bone": "bone20", "attachment": "youtui" },
  84. { "name": "zuotui", "bone": "bone17", "attachment": "zuotui" },
  85. { "name": "qunzi2", "bone": "bone16", "attachment": "qunzi2" },
  86. { "name": "shenti", "bone": "bone3", "attachment": "shenti" },
  87. { "name": "yaodai", "bone": "bone64", "attachment": "yaodai" },
  88. { "name": "yaohua2", "bone": "bone63", "attachment": "yaohua2" },
  89. { "name": "yaohua", "bone": "bone63", "attachment": "yaohua" },
  90. { "name": "toufa6", "bone": "bone61", "attachment": "toufa6" },
  91. { "name": "toufa5", "bone": "bone30", "attachment": "toufa5" },
  92. { "name": "lian", "bone": "bone30", "attachment": "lian" },
  93. { "name": "xiao", "bone": "bone62" },
  94. { "name": "zuiba", "bone": "bone62", "attachment": "zuiba" },
  95. { "name": "zuoyan", "bone": "bone31", "attachment": "zuoyan" },
  96. { "name": "youyan", "bone": "bone32", "attachment": "youyan" },
  97. { "name": "meimao", "bone": "bone34", "attachment": "meimao" },
  98. { "name": "biyan", "bone": "bone33" },
  99. { "name": "toufa3", "bone": "bone30", "attachment": "toufa3" },
  100. { "name": "toufa2", "bone": "bone39", "attachment": "toufa2" },
  101. { "name": "touhua3", "bone": "bone61", "attachment": "touhua3" },
  102. { "name": "touhua2", "bone": "bone61", "attachment": "touhua2" },
  103. { "name": "taiben", "bone": "bone29", "attachment": "taiben" },
  104. { "name": "touhua1", "bone": "bone61", "attachment": "touhua1" },
  105. { "name": "youshou", "bone": "bone26", "attachment": "youshou" },
  106. { "name": "fushishoubu", "bone": "bone36", "attachment": "fushishoubu" },
  107. { "name": "erhuan", "bone": "bone35", "attachment": "erhuan" },
  108. { "name": "toufa4", "bone": "bone55", "attachment": "toufa4" },
  109. { "name": "toufa1", "bone": "bone49", "attachment": "toufa1" }
  110. ],
  111. "skins": {
  112. "default": {
  113. "biyan": {
  114. "biyan": { "x": 4.17, "y": -2.01, "rotation": -93.5, "width": 44, "height": 9 }
  115. },
  116. "erhuan": {
  117. "erhuan": {
  118. "type": "mesh",
  119. "uvs": [ 1, 0.69468, 1, 1, 0.21487, 1, 0, 0.37943, 0, 0, 0.67637, 0 ],
  120. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  121. "vertices": [ 9.45, 3.24, 15.33, 1.59, 13.21, -5.97, 0.68, -4.69, -6.63, -2.64, -4.8, 3.87 ],
  122. "hull": 6,
  123. "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
  124. "width": 10,
  125. "height": 20
  126. }
  127. },
  128. "fushishoubu": {
  129. "fushishoubu": {
  130. "type": "mesh",
  131. "uvs": [ 0.91651, 0.1259, 1, 0.29194, 1, 0.49175, 1, 0.67953, 1, 0.84056, 0.88391, 0.91268, 0.74335, 1, 0.6518, 0.97804, 0.58183, 0.96126, 0.50755, 0.94344, 0.44998, 0.92963, 0.3393, 1, 0.19092, 1, 0, 1, 0, 0.57861, 0.09158, 0.50429, 0.1812, 0.40769, 0.27557, 0.39391, 0.35, 0.38304, 0.39266, 0.34428, 0.43944, 0.30176, 0.48537, 0.13391, 0.522, 0, 0.65294, 0, 0.7601, 0, 0.85145, 0, 0.23038, 0.80972, 0.43592, 0.66046, 0.58525, 0.52806, 0.76795, 0.34991, 0.143, 0.87676, 0.34509, 0.72459, 0.67643, 0.43914, 0.86421, 0.20475, 0.81239, 0.28289, 0.50388, 0.60021, 0.40121, 0.68497 ],
  132. "triangles": [ 33, 1, 2, 2, 34, 33, 29, 21, 22, 22, 23, 29, 29, 23, 34, 33, 0, 1, 34, 23, 33, 33, 23, 24, 33, 24, 0, 0, 24, 25, 5, 6, 28, 7, 28, 6, 35, 7, 8, 4, 5, 32, 29, 3, 4, 32, 5, 28, 34, 2, 3, 29, 4, 32, 29, 34, 3, 29, 32, 21, 21, 32, 20, 7, 35, 28, 27, 18, 35, 28, 35, 19, 19, 35, 18, 19, 20, 28, 28, 20, 32, 10, 11, 26, 13, 30, 12, 11, 12, 26, 12, 30, 26, 13, 14, 30, 27, 35, 8, 26, 31, 10, 31, 36, 10, 10, 36, 9, 27, 8, 9, 27, 9, 36, 30, 14, 26, 14, 15, 26, 26, 15, 31, 31, 15, 16, 16, 17, 31, 31, 17, 36, 36, 17, 27, 27, 17, 18 ],
  133. "vertices": [ 3, 38, 22.56, 3.47, 1.1E-4, 39, 16.63, 1.14, 0.0083, 73, 8.46, -0.73, 0.99159, 4, 37, 33.37, -0.62, 0.0018, 38, 23.02, -1.95, 0.01087, 39, 16.3, -4.3, 0.30113, 73, 7.07, -5.99, 0.6862, 4, 37, 30.96, -5.44, 0.02666, 38, 20.35, -6.64, 0.04721, 39, 12.98, -8.55, 0.69094, 73, 2.97, -9.5, 0.23519, 4, 37, 28.69, -9.98, 0.08101, 38, 17.84, -11.04, 0.07514, 39, 9.85, -12.54, 0.8114, 73, -0.88, -12.8, 0.03245, 4, 37, 26.75, -13.87, 0.11834, 38, 15.69, -14.82, 0.07566, 39, 7.17, -15.97, 0.80451, 73, -4.18, -15.63, 0.0015, 3, 37, 22.04, -13.69, 0.17337, 38, 10.99, -14.39, 0.06226, 39, 2.59, -14.85, 0.76438, 3, 37, 16.33, -13.47, 0.29721, 38, 5.31, -13.86, 0.02225, 39, -2.96, -13.51, 0.68054, 3, 37, 13.57, -11.43, 0.39325, 38, 2.66, -11.66, 0.00542, 39, -5.26, -10.95, 0.60134, 2, 37, 11.45, -9.86, 0.51044, 39, -7.02, -9, 0.48956, 2, 37, 9.21, -8.2, 0.66955, 39, -8.89, -6.93, 0.33045, 2, 37, 7.47, -6.92, 0.8159, 39, -10.34, -5.32, 0.1841, 2, 37, 2.96, -6.78, 0.97213, 39, -14.73, -4.3, 0.02787, 2, 37, -1.95, -4.33, 0.99996, 39, -19.06, -0.91, 4.0E-5, 1, 37, -8.27, -1.17, 1, 2, 37, -3.18, 9.01, 0.99996, 38, -12.95, 9.65, 4.0E-5, 2, 37, 0.75, 9.29, 0.98644, 38, -9.01, 9.71, 0.01356, 4, 37, 4.88, 10.14, 0.91394, 38, -4.84, 10.34, 0.08542, 39, -9.49, 11.9, 1.1E-4, 73, -15.02, 14.98, 5.3E-4, 4, 37, 8.17, 8.91, 0.74164, 38, -1.62, 8.93, 0.23647, 39, -6.51, 10.05, 0.01068, 73, -12.47, 12.57, 0.01121, 4, 37, 10.76, 7.94, 0.42669, 38, 0.91, 7.82, 0.45805, 39, -4.16, 8.58, 0.06168, 73, -10.45, 10.67, 0.05357, 4, 37, 12.64, 8.17, 0.2037, 38, 2.8, 7.95, 0.52226, 39, -2.27, 8.43, 0.14627, 73, -8.63, 10.15, 0.12776, 4, 37, 14.7, 8.42, 0.06226, 38, 4.88, 8.09, 0.40169, 39, -0.2, 8.27, 0.25817, 73, -6.63, 9.58, 0.27787, 4, 37, 18.25, 11.71, 3.1E-4, 38, 8.6, 11.19, 0.08602, 39, 3.93, 10.79, 0.20324, 73, -2.09, 11.24, 0.71043, 3, 38, 11.56, 13.65, 0.02365, 39, 7.22, 12.81, 0.11101, 73, 1.54, 12.57, 0.86533, 3, 38, 15.77, 11.26, 0.00255, 39, 11.04, 9.82, 0.03377, 73, 4.69, 8.89, 0.96369, 2, 39, 14.16, 7.38, 1.0E-4, 73, 7.27, 5.88, 0.9999, 1, 73, 9.47, 3.31, 1, 2, 37, 1.65, -0.39, 0.99993, 39, -14.74, 2.23, 7.0E-5, 2, 37, 10.26, -0.18, 0.99661, 39, -6.27, 0.72, 0.00339, 3, 38, 6.54, 0.11, 0.9729, 39, 0.28, 0.13, 0.02628, 73, -7.76, 1.51, 8.2E-4, 3, 37, 25, 1.82, 1.1E-4, 38, 14.79, 0.94, 5.2E-4, 39, 8.57, -0.24, 0.99937, 1, 37, -2.05, -0.56, 1, 2, 37, 6.48, -0.23, 0.99887, 39, -9.98, 1.43, 0.00113, 3, 37, 20.89, 1.18, 9.0E-5, 38, 10.66, 0.52, 9.3E-4, 39, 4.42, -0.05, 0.99897, 3, 38, 19.83, 2.58, 2.8E-4, 39, 13.79, 0.65, 0.01519, 73, 5.58, -0.64, 0.98452, 4, 37, 27.28, 2.71, 7.0E-5, 38, 17.12, 1.7, 6.2E-4, 39, 10.98, 0.17, 0.05825, 73, 2.73, -0.56, 0.94105, 3, 37, 13.23, 0.15, 0.00573, 38, 2.96, -0.09, 0.98616, 39, -3.29, 0.45, 0.00811, 2, 37, 8.81, -0.2, 0.99758, 39, -7.69, 0.99, 0.00242 ],
  134. "hull": 26,
  135. "edges": [ 26, 28, 20, 22, 26, 60, 60, 52, 28, 60, 22, 24, 24, 26, 60, 24, 22, 52, 28, 30, 30, 32, 52, 30, 52, 62, 32, 62, 62, 20, 36, 54, 54, 16, 40, 56, 56, 12, 40, 42, 42, 44, 56, 64, 64, 58, 42, 64, 8, 10, 10, 12, 64, 10, 44, 58, 58, 8, 48, 66, 66, 4, 48, 50, 0, 66, 50, 0, 4, 2, 0, 2, 44, 46, 46, 48, 58, 68, 68, 66, 46, 68, 4, 6, 6, 8, 68, 6, 36, 38, 38, 40, 54, 70, 70, 56, 38, 70, 12, 14, 14, 16, 70, 14, 32, 34, 34, 36, 54, 72, 72, 62, 34, 72, 16, 18, 18, 20, 72, 18 ],
  136. "width": 37,
  137. "height": 27
  138. }
  139. },
  140. "lian": {
  141. "lian": {
  142. "type": "mesh",
  143. "uvs": [ 0.86884, 0.25444, 0.92342, 0.5103, 1, 0.52216, 1, 0.70516, 0.93144, 0.84241, 0.76771, 0.87291, 0.62484, 1, 0.17216, 1, 0, 0.73566, 0, 0.28833, 0.15771, 0, 0.53334, 0 ],
  144. "triangles": [ 1, 2, 3, 11, 8, 9, 3, 5, 1, 11, 1, 8, 1, 11, 0, 4, 5, 3, 10, 11, 9, 1, 5, 8, 8, 6, 7, 5, 6, 8 ],
  145. "vertices": [ 45.97, -38.41, 27.11, -39.44, 25.3, -45.03, 12.31, -42.84, 3.43, -36.06, 3.34, -23.42, -3.88, -11.19, 1.85, 22.73, 22.79, 32.46, 54.55, 27.11, 73.03, 11.83, 68.28, -16.32 ],
  146. "hull": 12,
  147. "edges": [ 4, 2, 2, 0, 12, 10, 10, 8, 4, 6, 8, 6, 22, 0, 20, 22, 18, 20, 12, 14, 16, 18, 14, 16 ],
  148. "width": 76,
  149. "height": 72
  150. }
  151. },
  152. "meimao": {
  153. "meimao": { "x": 3.22, "y": -0.16, "rotation": -94.32, "width": 42, "height": 9 }
  154. },
  155. "qundi": {
  156. "qundi": {
  157. "type": "mesh",
  158. "uvs": [ 0.78125, 0.25572, 0.83288, 0.37191, 0.88277, 0.48416, 0.92623, 0.58195, 1, 0.74795, 1, 0.85701, 1, 1, 0.66936, 0.86669, 0.45897, 0.87135, 0.2521, 0.95166, 0.12761, 1, 0, 1, 0, 0.862, 0.05802, 0.78654, 0.1539, 0.66183, 0.17432, 0.5824, 0.20151, 0.47657, 0.22343, 0.39128, 0.25344, 0.27448, 0.32397, 0, 0.42215, 0, 0.49662, 0, 0.6676, 0, 0.37698, 0.39998, 0.34158, 0.62525, 0.31716, 0.76301, 0.47953, 0.39187, 0.47587, 0.62687, 0.57841, 0.02884, 0.63212, 0.39998, 0.6602, 0.61715, 0.38895, 0.29404, 0.48382, 0.29351, 0.61676, 0.29382, 0.36265, 0.50549, 0.47606, 0.51474, 0.64679, 0.51343, 0.46567, 0.77443, 0.66577, 0.76891, 0.27486, 0.88567 ],
  159. "triangles": [ 36, 1, 2, 30, 36, 2, 30, 2, 3, 34, 15, 16, 24, 15, 34, 24, 14, 15, 25, 14, 24, 38, 30, 3, 38, 3, 4, 27, 30, 38, 37, 24, 27, 37, 27, 38, 25, 24, 37, 38, 4, 5, 7, 38, 5, 8, 25, 37, 7, 8, 37, 7, 37, 38, 39, 14, 25, 39, 25, 8, 13, 14, 39, 39, 10, 13, 10, 12, 13, 9, 39, 8, 10, 11, 12, 10, 39, 9, 7, 5, 6, 34, 17, 23, 16, 17, 34, 36, 29, 1, 35, 23, 26, 35, 26, 29, 35, 29, 36, 34, 23, 35, 27, 34, 35, 24, 34, 27, 27, 35, 36, 27, 36, 30, 28, 21, 22, 32, 20, 21, 32, 21, 28, 33, 28, 22, 33, 22, 0, 32, 28, 33, 31, 19, 20, 31, 20, 32, 18, 19, 31, 26, 31, 32, 29, 33, 0, 29, 0, 1, 26, 32, 33, 29, 26, 33, 23, 18, 31, 23, 31, 26, 17, 18, 23 ],
  160. "vertices": [ 3, 70, 10.95, 23.04, 0.63324, 71, -8.26, 23.1, 0.18889, 72, -24.55, 22.31, 0.17786, 3, 70, 17.52, 27.28, 0.37326, 71, -1.66, 27.3, 0.24268, 72, -18.09, 26.72, 0.38406, 3, 70, 23.87, 31.39, 0.18724, 71, 4.73, 31.35, 0.19899, 72, -11.84, 30.97, 0.61376, 3, 70, 29.4, 34.97, 0.08791, 71, 10.29, 34.87, 0.1264, 72, -6.39, 34.68, 0.78569, 3, 70, 38.79, 41.04, 0.01632, 71, 19.73, 40.86, 0.03605, 72, 2.85, 40.97, 0.94762, 3, 70, 45.11, 41.3, 0.0042, 71, 26.05, 41.06, 0.01247, 72, 9.16, 41.38, 0.98333, 1, 72, 17.44, 41.91, 1, 3, 70, 46.71, 15.88, 5.9E-4, 71, 27.43, 15.64, 0.01852, 72, 11.37, 16.01, 0.98089, 1, 72, 12.68, -0.14, 1, 1, 72, 18.36, -15.74, 1, 1, 72, 21.78, -25.12, 1, 1, 72, 22.42, -34.92, 1, 2, 71, 28.82, -35.89, 1.2E-4, 72, 14.43, -35.44, 0.99988, 2, 71, 24.3, -31.56, 0.00524, 72, 9.77, -31.27, 0.99476, 3, 70, 36.47, -24.26, 0.0132, 71, 16.84, -24.42, 0.08314, 72, 2.08, -24.37, 0.90365, 3, 70, 31.8, -22.88, 0.05202, 71, 12.18, -22.99, 0.18509, 72, -2.62, -23.1, 0.76289, 3, 70, 25.58, -21.04, 0.17214, 71, 5.98, -21.1, 0.31369, 72, -8.88, -21.4, 0.51418, 3, 70, 20.57, -19.56, 0.35302, 71, 0.98, -19.57, 0.33584, 72, -13.93, -20.04, 0.31114, 3, 70, 13.71, -17.53, 0.68083, 71, -5.87, -17.48, 0.2048, 72, -20.84, -18.17, 0.11437, 3, 70, -2.42, -12.75, 0.9996, 71, -21.95, -12.57, 2.2E-4, 72, -37.08, -13.78, 1.8E-4, 1, 70, -2.73, -5.2, 1, 1, 70, -2.97, 0.53, 1, 3, 70, -3.51, 13.68, 0.98558, 71, -22.81, 13.88, 0.00869, 72, -38.79, 12.62, 0.00573, 3, 70, 20.59, -7.72, 0.38583, 71, 1.1, -7.74, 0.50053, 72, -14.19, -8.21, 0.11364, 3, 70, 33.76, -9.91, 0.01448, 71, 14.25, -10.04, 0.22121, 72, -0.98, -10.08, 0.76431, 3, 70, 41.82, -11.46, 3.3E-4, 71, 22.3, -11.66, 0.01629, 72, 7.12, -11.44, 0.98338, 2, 70, 19.8, 0.15, 0.3147, 71, 0.38, 0.14, 0.6853, 1, 71, 14.01, 0.3, 1, 3, 70, -1.55, 6.89, 0.99872, 71, -20.91, 7.07, 7.1E-4, 72, -36.67, 5.88, 5.7E-4, 3, 70, 19.78, 11.91, 0.44243, 71, 0.47, 11.9, 0.40162, 72, -15.46, 11.4, 0.15595, 3, 70, 32.28, 14.58, 0.06423, 71, 12.99, 14.47, 0.28763, 72, -3.03, 14.37, 0.64814, 3, 70, 14.41, -7.05, 0.84014, 71, -5.07, -7.01, 0.12435, 72, -20.38, -7.69, 0.03552, 2, 70, 14.08, 0.24, 0.99914, 71, -5.34, 0.29, 8.6E-4, 3, 70, 13.68, 10.47, 0.7693, 71, -5.65, 10.52, 0.1705, 72, -21.53, 9.82, 0.0602, 3, 70, 26.75, -8.58, 0.08917, 71, 7.25, -8.64, 0.58782, 72, -8.01, -8.91, 0.32301, 1, 71, 7.51, 0.1, 1, 3, 70, 26.31, 13.3, 0.173, 71, 7.01, 13.24, 0.46136, 72, -8.97, 12.95, 0.36564, 1, 72, 7.04, 0.01, 1, 3, 70, 41.06, 15.37, 0.00783, 71, 21.77, 15.18, 0.05704, 72, 5.73, 15.37, 0.93513, 2, 71, 29.51, -14.69, 5.9E-4, 72, 14.43, -14.23, 0.99941 ],
  161. "hull": 23,
  162. "edges": [ 22, 24, 20, 22, 16, 14, 14, 12, 38, 40, 48, 50, 16, 18, 18, 20, 40, 42, 42, 44, 34, 46, 46, 52, 52, 58, 58, 2, 34, 36, 36, 38, 40, 62, 62, 46, 36, 62, 42, 64, 64, 52, 62, 64, 56, 66, 66, 58, 64, 66, 2, 0, 0, 44, 66, 0, 28, 30, 30, 48, 48, 54, 54, 60, 6, 8, 60, 6, 30, 32, 32, 34, 46, 68, 68, 48, 32, 68, 52, 70, 70, 54, 68, 70, 58, 72, 72, 60, 70, 72, 2, 4, 4, 6, 72, 4, 28, 50, 16, 74, 74, 54, 50, 74, 14, 76, 76, 60, 74, 76, 76, 8, 24, 26, 26, 28, 18, 78, 78, 50, 26, 78, 78, 16, 8, 10, 10, 12, 14, 10 ],
  163. "width": 77,
  164. "height": 58
  165. }
  166. },
  167. "qunzi2": {
  168. "qunzi2": {
  169. "type": "mesh",
  170. "uvs": [ 1, 0.59355, 1, 0.96021, 0.34848, 0.74225, 0.20132, 1, 0, 1, 0, 0.80744, 0.28902, 0, 0.47632, 0 ],
  171. "triangles": [ 2, 6, 7, 2, 7, 0, 2, 5, 6, 2, 0, 1, 3, 4, 5, 2, 3, 5 ],
  172. "vertices": [ 7.57, 22.33, 17.4, 23.47, 14.32, -1.15, 21.85, -5.77, 22.71, -13.17, 17.54, -13.76, -5.34, -5.64, -6.13, 1.25 ],
  173. "hull": 8,
  174. "edges": [ 8, 10, 10, 12, 12, 14, 14, 0, 0, 2, 2, 4, 6, 8, 4, 6 ],
  175. "width": 37,
  176. "height": 27
  177. }
  178. },
  179. "shenti": {
  180. "shenti": {
  181. "type": "mesh",
  182. "uvs": [ 0.64394, 0.06936, 0.64714, 0.10543, 0.59637, 0.23579, 0.55216, 0.31554, 0.54814, 0.34009, 0.54944, 0.36323, 0.56465, 0.38281, 0.58182, 0.41289, 0.59825, 0.44194, 0.62631, 0.49154, 0.64465, 0.52728, 0.66199, 0.56106, 0.69475, 0.62492, 0.71964, 0.65936, 0.73522, 0.68093, 0.75222, 0.70447, 0.76552, 0.72287, 0.78316, 0.74729, 0.80816, 0.77403, 0.82861, 0.7959, 0.84527, 0.81372, 0.86159, 0.83117, 0.89139, 0.85272, 0.93003, 0.88067, 0.95021, 0.89058, 0.96803, 0.89933, 1, 0.91504, 0.99397, 0.96468, 0.92714, 0.97733, 0.8871, 0.98157, 0.84943, 0.98557, 0.78203, 0.99272, 0.7134, 1, 0.67762, 0.9658, 0.65724, 0.93623, 0.65642, 0.89837, 0.64781, 0.86166, 0.6134, 0.84205, 0.58507, 0.82591, 0.5495, 0.80252, 0.52233, 0.78466, 0.51376, 0.73094, 0.51267, 0.66408, 0.48526, 0.63066, 0.45809, 0.60392, 0.41681, 0.56329, 0.37319, 0.50766, 0.31918, 0.53708, 0.30432, 0.57876, 0.29134, 0.61514, 0.27992, 0.64716, 0.27225, 0.6823, 0.26281, 0.72554, 0.26194, 0.7624, 0.25961, 0.80285, 0.25059, 0.83521, 0.2424, 0.86458, 0.23287, 0.89879, 0.20239, 0.93137, 0.16727, 0.96891, 0.12506, 0.98265, 0.07174, 1, 0, 1, 0, 0.89304, 0.02037, 0.8739, 0.04516, 0.8506, 0.07533, 0.82225, 0.09657, 0.80229, 0.10956, 0.78449, 0.12167, 0.7679, 0.13606, 0.74819, 0.1547, 0.716, 0.16638, 0.68917, 0.17985, 0.65564, 0.19496, 0.61804, 0.19774, 0.58273, 0.20048, 0.54796, 0.20352, 0.50942, 0.23067, 0.43009, 0.25705, 0.37511, 0.27374, 0.33349, 0.27175, 0.30779, 0.25542, 0.27962, 0.2634, 0.16292, 0.31902, 0.13405, 0.35456, 0.07036, 0.40457, 0.04055, 0.42881, 0, 0.48211, 0.00465, 0.5756, 0.02471, 0.39609, 0.29572, 0.38765, 0.35547, 0.3229, 0.38322, 0.26638, 0.52692, 0.23847, 0.64033, 0.20036, 0.73714, 0.1583, 0.84845, 0.50283, 0.49762, 0.57066, 0.61753, 0.63953, 0.71268, 0.71866, 0.81674, 0.80602, 0.90792, 0.46579, 0.05082, 0.45491, 0.08158, 0.41003, 0.29724, 0.39232, 0.32243, 0.2558, 0.5699, 0.2486, 0.59916, 0.21368, 0.70531, 0.22742, 0.66928, 0.17777, 0.7984, 0.10397, 0.90047, 0.04857, 0.95351, 0.07418, 0.92899, 0.1306, 0.87498, 0.17027, 0.81767, 0.18908, 0.76932, 0.53451, 0.55362, 0.55326, 0.58676, 0.60905, 0.67056, 0.67575, 0.76031, 0.65547, 0.73365, 0.69322, 0.78328, 0.76246, 0.86245, 0.88482, 0.93322, 0.84399, 0.92011, 0.7851, 0.88608, 0.93886, 0.95058, 0.91579, 0.94316, 0.74157, 0.84064, 0.30004, 0.44133, 0.37989, 0.44826, 0.45929, 0.44388, 0.38457, 0.39231, 0.42323, 0.39938, 0.31721, 0.23596, 0.46351, 0.24442, 0.41981, 0.20935, 0.43428, 0.15669 ],
  183. "triangles": [ 62, 112, 61, 60, 61, 113, 62, 63, 112, 61, 112, 113, 59, 60, 111, 60, 113, 111, 111, 114, 59, 59, 114, 58, 112, 63, 113, 113, 63, 64, 114, 96, 58, 64, 65, 113, 113, 65, 111, 65, 66, 111, 111, 66, 114, 66, 67, 114, 31, 125, 30, 31, 101, 125, 30, 124, 29, 30, 125, 124, 29, 128, 28, 29, 124, 128, 28, 127, 27, 28, 128, 127, 27, 127, 26, 26, 127, 25, 127, 24, 25, 127, 128, 24, 128, 23, 24, 128, 124, 23, 23, 124, 22, 124, 125, 22, 125, 21, 22, 125, 101, 21, 101, 31, 32, 101, 32, 126, 126, 32, 33, 33, 123, 126, 33, 34, 123, 123, 35, 129, 123, 34, 35, 101, 126, 21, 129, 36, 100, 129, 35, 36, 126, 20, 21, 126, 123, 20, 123, 19, 20, 123, 129, 19, 129, 18, 19, 129, 100, 18, 100, 17, 18, 100, 122, 17, 58, 96, 57, 57, 96, 56, 114, 67, 96, 96, 115, 56, 56, 115, 55, 96, 67, 115, 115, 67, 68, 115, 110, 55, 55, 110, 54, 68, 69, 115, 115, 69, 110, 110, 116, 54, 54, 116, 53, 69, 70, 110, 110, 70, 116, 70, 71, 116, 36, 122, 100, 36, 37, 122, 37, 120, 122, 37, 38, 120, 38, 121, 120, 38, 39, 121, 39, 99, 121, 39, 40, 99, 122, 16, 17, 122, 120, 16, 120, 15, 16, 120, 14, 15, 120, 121, 14, 121, 13, 14, 121, 99, 13, 116, 95, 53, 116, 71, 95, 53, 95, 52, 52, 95, 108, 71, 72, 95, 95, 72, 108, 52, 108, 51, 51, 108, 109, 72, 73, 108, 108, 73, 109, 109, 94, 51, 51, 94, 50, 109, 73, 94, 73, 74, 94, 99, 41, 119, 99, 40, 41, 41, 42, 119, 99, 12, 13, 99, 119, 12, 42, 98, 119, 12, 119, 11, 42, 43, 98, 119, 98, 11, 43, 118, 98, 118, 43, 117, 98, 118, 11, 43, 44, 117, 117, 44, 97, 118, 10, 11, 118, 117, 10, 44, 45, 97, 117, 9, 10, 117, 97, 9, 97, 8, 9, 49, 50, 107, 50, 94, 107, 94, 74, 107, 74, 75, 107, 107, 106, 49, 49, 106, 48, 107, 75, 106, 75, 76, 106, 106, 93, 48, 48, 93, 47, 106, 76, 93, 76, 77, 93, 46, 47, 130, 77, 78, 93, 47, 93, 130, 93, 78, 130, 46, 130, 131, 130, 92, 131, 131, 92, 133, 78, 79, 130, 130, 79, 92, 79, 80, 92, 92, 80, 91, 45, 46, 132, 45, 132, 97, 132, 46, 131, 97, 7, 8, 97, 132, 7, 131, 134, 132, 131, 133, 134, 132, 6, 7, 132, 134, 6, 134, 5, 6, 134, 91, 5, 133, 91, 134, 133, 92, 91, 5, 91, 4, 91, 105, 4, 91, 80, 105, 4, 105, 104, 105, 90, 104, 4, 104, 3, 80, 81, 105, 105, 81, 90, 104, 136, 3, 3, 136, 2, 81, 82, 90, 136, 104, 137, 82, 135, 90, 104, 90, 137, 90, 135, 137, 82, 83, 135, 136, 137, 138, 2, 136, 138, 135, 84, 137, 135, 83, 84, 138, 103, 2, 2, 103, 1, 137, 84, 138, 84, 85, 138, 138, 85, 103, 103, 102, 1, 102, 0, 1, 85, 86, 103, 103, 86, 102, 0, 102, 89, 102, 88, 89, 86, 87, 102, 102, 87, 88 ],
  184. "vertices": [ 3, 4, 24.02, -18.5, 0.98531, 3, 36.38, -24.01, 0.01439, 10, -11.88, 43.12, 3.0E-4, 3, 4, 20.31, -20.14, 0.97001, 3, 32.37, -24.65, 0.02789, 10, -8.56, 40.79, 0.0021, 3, 4, 4.72, -19.7, 0.62115, 3, 17.41, -20.25, 0.30369, 10, -0.92, 27.19, 0.07516, 4, 4, -5.28, -18.09, 0.18103, 3, 8.15, -16.14, 0.49661, 10, 2.84, 17.79, 0.31914, 11, -15.78, 15.48, 0.00321, 4, 4, -8.02, -18.57, 0.08911, 3, 5.38, -15.91, 0.42301, 10, 4.67, 15.68, 0.47105, 11, -13.65, 13.7, 0.01684, 4, 4, -10.42, -19.55, 0.03728, 3, 2.8, -16.24, 0.30113, 10, 6.74, 14.12, 0.61367, 11, -11.35, 12.48, 0.04792, 4, 4, -11.96, -21.81, 0.01314, 3, 0.74, -18.04, 0.18396, 10, 9.47, 13.97, 0.68727, 11, -8.63, 12.76, 0.11563, 5, 4, -14.55, -24.66, 0.00233, 3, -2.49, -20.14, 0.0861, 10, 13.25, 13.22, 0.64533, 11, -4.78, 12.62, 0.26575, 12, -18.13, 12.95, 4.8E-4, 5, 4, -17.05, -27.4, 5.0E-5, 3, -5.6, -22.15, 0.03338, 10, 16.88, 12.48, 0.47765, 11, -1.08, 12.47, 0.47965, 12, -14.43, 12.73, 0.00927, 4, 3, -10.92, -25.58, 0.00244, 10, 23.08, 11.22, 0.14283, 11, 5.24, 12.21, 0.75216, 12, -8.11, 12.36, 0.10256, 3, 10, 27.42, 10.16, 0.03, 11, 9.69, 11.85, 0.67263, 12, -3.67, 11.92, 0.29737, 5, 10, 31.52, 9.16, 0.0013, 11, 13.9, 11.51, 0.41006, 12, 0.54, 11.5, 0.5855, 13, -11.49, 12.49, 0.00298, 14, -24.62, 14.77, 1.6E-4, 4, 11, 21.85, 10.86, 0.03342, 12, 8.48, 10.71, 0.77934, 13, -3.65, 11.01, 0.16245, 14, -16.95, 12.57, 0.02479, 3, 12, 13.17, 10.94, 0.48935, 13, 1.05, 10.83, 0.40899, 14, -12.29, 11.95, 0.10166, 3, 12, 16.11, 11.09, 0.2763, 13, 3.99, 10.72, 0.52892, 14, -9.37, 11.57, 0.19478, 3, 12, 19.32, 11.25, 0.12021, 13, 7.2, 10.6, 0.51973, 14, -6.19, 11.15, 0.36006, 3, 12, 21.83, 11.38, 0.05209, 13, 9.71, 10.5, 0.40764, 14, -3.69, 10.82, 0.54027, 4, 12, 25.16, 11.54, 0.00981, 13, 13.04, 10.38, 0.19897, 14, -0.39, 10.38, 0.78553, 15, -7.71, 16.86, 0.00569, 4, 12, 29.13, 12.24, 5.0E-5, 13, 17.06, 10.73, 0.02958, 14, 3.64, 10.36, 0.92825, 15, -4.28, 14.74, 0.04213, 2, 14, 6.94, 10.34, 0.87427, 15, -1.47, 13.01, 0.12573, 2, 14, 9.63, 10.32, 0.74894, 15, 0.81, 11.6, 0.25106, 2, 14, 12.26, 10.31, 0.5547, 15, 3.05, 10.21, 0.4453, 2, 14, 16.21, 11.06, 0.24264, 15, 6.82, 8.8, 0.75736, 2, 14, 21.34, 12.03, 0.03385, 15, 11.7, 6.96, 0.96615, 2, 14, 23.62, 12.9, 0.00832, 15, 14.1, 6.51, 0.99168, 2, 14, 25.65, 13.66, 8.4E-4, 15, 16.23, 6.1, 0.99916, 1, 15, 20.03, 5.38, 1, 1, 15, 20.96, -0.14, 1, 1, 15, 14.43, -3.52, 1, 1, 15, 10.41, -5.19, 1, 2, 14, 24.15, -2.32, 0.02081, 15, 6.63, -6.76, 0.97919, 3, 13, 34.91, -6.27, 0.01062, 14, 19.83, -8.23, 0.49485, 15, -0.13, -9.56, 0.49454, 3, 13, 31.1, -12.68, 0.05385, 14, 15.44, -14.26, 0.81332, 15, -7.02, -12.42, 0.13283, 3, 13, 25.71, -13.46, 0.11281, 14, 10.01, -14.53, 0.84698, 15, -11.8, -9.83, 0.04021, 3, 13, 21.74, -13.22, 0.18425, 14, 6.08, -13.93, 0.80779, 15, -14.84, -7.26, 0.00796, 3, 12, 32.25, -9.03, 1.6E-4, 13, 18.3, -10.74, 0.32888, 14, 2.89, -11.13, 0.67096, 3, 12, 28.27, -7.64, 0.00972, 13, 14.46, -9.01, 0.6672, 14, -0.78, -9.05, 0.32308, 3, 12, 24.44, -9.63, 0.07538, 13, 10.47, -10.65, 0.86682, 14, -4.91, -10.31, 0.0578, 3, 12, 21.29, -11.27, 0.18547, 13, 7.18, -12, 0.80939, 14, -8.3, -11.36, 0.00514, 2, 12, 17.03, -13.14, 0.38806, 13, 2.78, -13.49, 0.61194, 2, 12, 13.78, -14.56, 0.51648, 13, -0.58, -14.63, 0.48352, 3, 11, 21.98, -12.01, 0.01179, 12, 8.19, -12.16, 0.75115, 13, -5.94, -11.75, 0.23705, 4, 6, 8.62, 29.45, 9.0E-5, 11, 15.5, -8.26, 0.30095, 12, 1.77, -8.29, 0.68665, 13, -11.99, -7.33, 0.01232, 4, 10, 25.2, -10.46, 0.01942, 6, 5.75, 25.63, 0.0019, 11, 10.76, -8.87, 0.76819, 12, -2.97, -8.82, 0.21049, 5, 10, 21.02, -10.78, 0.12156, 5, 17.07, 22.35, 2.9E-4, 6, 3.59, 22.04, 0.00789, 11, 6.69, -9.85, 0.83775, 12, -7.06, -9.72, 0.03251, 4, 10, 14.66, -11.26, 0.47116, 5, 14.32, 16.61, 0.02044, 6, 0.32, 16.57, 0.03457, 11, 0.49, -11.33, 0.47384, 4, 10, 6.86, -10.86, 0.53238, 5, 10.08, 10.05, 0.2418, 6, -4.52, 10.44, 0.17626, 11, -7.27, -12.16, 0.04955, 4, 10, 5.63, -17.44, 0.07465, 5, 15.17, 5.7, 0.24819, 6, 0.15, 5.63, 0.67634, 11, -7.45, -18.86, 8.1E-4, 3, 10, 8.17, -21.67, 0.00581, 5, 20.1, 5.78, 0.06283, 6, 5.07, 5.26, 0.93136, 3, 5, 24.41, 5.86, 0.0011, 6, 9.37, 4.93, 0.95712, 7, -3.98, 4.68, 0.04178, 2, 6, 13.15, 4.65, 0.53238, 7, -0.19, 4.65, 0.46762, 2, 6, 17.17, 4.84, 0.03262, 7, 3.8, 5.1, 0.96738, 2, 7, 8.72, 5.67, 0.9264, 8, -5.79, 5.26, 0.0736, 2, 7, 12.67, 6.88, 0.55768, 8, -1.94, 6.76, 0.44232, 3, 7, 17.04, 8.08, 0.15175, 8, 2.34, 8.27, 0.84448, 9, -12.56, 4.04, 0.00378, 3, 7, 20.79, 8.3, 0.02251, 8, 6.06, 8.77, 0.92125, 9, -9.26, 5.83, 0.05624, 2, 8, 9.43, 9.21, 0.78991, 9, -6.27, 7.46, 0.21009, 2, 8, 13.37, 9.74, 0.52335, 9, -2.79, 9.36, 0.47665, 2, 8, 18, 8.1, 0.17697, 9, 2.13, 9.5, 0.82303, 2, 8, 23.34, 6.22, 0.0082, 9, 7.79, 9.65, 0.9918, 1, 9, 12.05, 7.42, 1, 1, 9, 17.43, 4.59, 1, 1, 9, 22.77, -1.02, 1, 2, 8, 22.45, -13.73, 0.00219, 9, 14.1, -9.28, 0.99781, 2, 8, 19.62, -12.52, 0.01937, 9, 11.03, -9.17, 0.98063, 2, 8, 16.18, -11.05, 0.10275, 9, 7.3, -9.03, 0.89725, 2, 8, 12, -9.26, 0.37671, 9, 2.75, -8.87, 0.62329, 3, 7, 22.55, -8.65, 0.00266, 8, 9.05, -8.01, 0.67308, 9, -0.45, -8.75, 0.32426, 3, 7, 20.22, -7.95, 0.02579, 8, 6.67, -7.48, 0.84177, 9, -2.86, -9.11, 0.13244, 3, 7, 18.04, -7.29, 0.09734, 8, 4.45, -6.99, 0.85834, 9, -5.11, -9.45, 0.04432, 3, 7, 15.46, -6.52, 0.27342, 8, 1.82, -6.4, 0.7194, 9, -7.78, -9.85, 0.00718, 2, 7, 11.4, -5.75, 0.75852, 8, -2.28, -5.93, 0.24148, 2, 7, 8.15, -5.5, 0.96944, 8, -5.54, -5.92, 0.03056, 2, 6, 16.8, -5.57, 0.04411, 7, 4.13, -5.31, 0.95589, 2, 6, 12.32, -5.05, 0.63035, 7, -0.38, -5.09, 0.36965, 3, 5, 24.45, -4.88, 0.02213, 6, 8.41, -5.76, 0.95827, 7, -4.23, -6.06, 0.0196, 2, 5, 20.69, -5.93, 0.22186, 6, 4.57, -6.46, 0.77814, 2, 5, 16.52, -7.1, 0.69384, 6, 0.31, -7.24, 0.30616, 1, 5, 7.17, -7.38, 1, 3, 4, -21.95, 9.89, 5.0E-5, 3, -0.84, 15.15, 0.04939, 5, 0.41, -6.81, 0.95056, 3, 4, -16.95, 9.7, 0.00652, 3, 3.94, 13.7, 0.34585, 5, -4.59, -6.71, 0.64763, 3, 4, -14.3, 10.84, 0.03014, 3, 6.8, 14.12, 0.5258, 5, -7.22, -7.89, 0.44406, 3, 4, -11.89, 13.53, 0.07977, 3, 9.81, 16.11, 0.60952, 5, -9.58, -10.63, 0.31071, 3, 4, 0.75, 16.96, 0.48317, 3, 22.91, 16.21, 0.43444, 5, -22.16, -14.29, 0.08239, 3, 4, 5.76, 12.33, 0.76329, 3, 26.58, 10.46, 0.20539, 5, -27.25, -9.75, 0.03132, 3, 4, 13.75, 11.02, 0.99004, 3, 33.97, 7.15, 0.00836, 5, -35.27, -8.58, 0.00159, 1, 4, 18.67, 7, 1, 1, 4, 23.81, 6, 1, 1, 4, 25.19, 0.39, 1, 2, 4, 26.35, -9.89, 0.99926, 3, 40.82, -16.28, 7.4E-4, 2, 3, 9.13, 0.83, 0.9885, 5, -13.08, 4.26, 0.0115, 2, 3, 2.39, 1.25, 0.94043, 5, -6.48, 5.7, 0.05957, 3, 3, -1.22, 7.99, 0.09687, 10, -7.3, -6.04, 0.00102, 5, -1.17, 0.19, 0.90211, 1, 5, 16.05, -0.05, 1, 2, 6, 13.54, 0.12, 0.36861, 7, 0.5, 0.16, 0.63139, 2, 7, 12.09, -0.32, 0.99074, 8, -2, -0.47, 0.00926, 2, 8, 11.26, 0.14, 0.86594, 9, -1.31, -0.36, 0.13406, 3, 3, -12.58, -12.33, 6.8E-4, 10, 15.02, 0.58, 0.78167, 11, -1.04, 0.42, 0.21765, 3, 6, 1.99, 34.19, 0, 11, 14.25, -0.21, 0.30378, 12, 0.67, -0.22, 0.69622, 3, 12, 13.65, 0.44, 0.33348, 13, 0.6, 0.33, 0.66555, 14, -13.71, 1.54, 9.7E-4, 1, 14, 0.66, -0.01, 1, 2, 14, 14.56, 0.08, 0.59916, 15, -0.3, 0.28, 0.40084, 1, 4, 19.73, 0.37, 1, 1, 4, 16.09, 0.36, 1, 3, 4, -8.33, -2.9, 0.0012, 3, 9.07, -0.69, 0.99224, 10, -8.61, 7.36, 0.00656, 2, 3, 6.12, 1.02, 0.97046, 5, -10.13, 4.9, 0.02954, 1, 6, 5.44, -0.06, 1, 2, 5, 24.3, 0.91, 1.0E-5, 6, 8.8, 0.01, 0.99999, 2, 7, 8.25, -0.08, 0.99981, 8, -5.84, -0.51, 1.9E-4, 1, 7, 3.95, 0.05, 1, 2, 8, 5.28, -0.08, 0.99978, 9, -6.82, -2.7, 2.2E-4, 2, 8, 18.89, -3.04, 0.0039, 9, 6.96, -0.58, 0.9961, 1, 9, 15.38, -0.82, 1, 2, 8, 23.08, -4.78, 2.4E-4, 9, 11.49, -0.71, 0.99976, 1, 9, 2.91, -0.47, 1, 1, 8, 7.58, 0, 1, 2, 7, 15.89, -0.34, 0.0541, 8, 1.8, -0.21, 0.9459, 2, 11, 6.1, 0.13, 0.99968, 12, -7.47, 0.27, 3.2E-4, 2, 6, -0.87, 31.5, 1.0E-5, 11, 10.33, -0.04, 0.99999, 2, 12, 7.91, 0.15, 0.99993, 14, -19.41, 2.28, 7.0E-5, 2, 13, 7.22, 0.24, 0.99506, 14, -7.13, 0.83, 0.00494, 2, 13, 3.51, 0.29, 0.99758, 14, -10.81, 1.23, 0.00242, 2, 13, 10.41, 0.2, 0.98324, 14, -3.96, 0.49, 0.01676, 2, 14, 7.63, 0.04, 0.9997, 15, -6.24, 3.85, 3.0E-4, 1, 15, 8.66, -0.06, 1, 2, 14, 18.34, 2.19, 0.00247, 15, 4.02, 0.12, 0.99753, 2, 14, 11.23, 0.06, 0.99866, 15, -3.16, 2, 0.00134, 1, 15, 14.81, -0.29, 1, 1, 15, 12.18, -0.19, 1, 1, 14, 4.31, 0.02, 1, 3, 10, -3.91, -12.12, 0.00212, 5, 5.79, 0.09, 0.99757, 6, -9.7, 0.92, 3.0E-4, 5, 3, -8.04, 1.32, 5.1E-4, 10, 2.24, -6.02, 0.64146, 5, 3.58, 8.46, 0.30257, 6, -11.13, 9.46, 0.05252, 11, -12.61, -8.12, 0.00295, 2, 3, -6.92, -7.2, 0.0058, 10, 7.38, 0.86, 0.9942, 4, 3, -1.75, 1.28, 0.53684, 10, -2.23, -1.6, 0.30455, 5, -2.49, 6.79, 0.15624, 6, -17.33, 8.36, 0.00237, 2, 3, -2.24, -2.95, 0.02973, 10, 1.06, 1.09, 0.97027, 3, 4, -5.1, 8.81, 0.28357, 3, 15.18, 9.82, 0.58499, 5, -16.46, -6.03, 0.13144, 3, 4, -0.86, -6.44, 0.32793, 3, 15.39, -6.01, 0.64987, 10, -9.42, 15.59, 0.0222, 3, 4, 1.32, -0.7, 0.40334, 3, 18.96, -1.02, 0.58979, 5, -23.05, 3.37, 0.00686, 3, 4, 7.41, -0.26, 0.64924, 3, 24.96, -2.14, 0.34673, 5, -29.12, 2.82, 0.00403 ],
  185. "hull": 90,
  186. "edges": [ 124, 126, 158, 160, 164, 166, 166, 168, 168, 170, 170, 172, 172, 174, 2, 4, 4, 6, 54, 52, 122, 124, 106, 104, 94, 92, 92, 90, 86, 84, 84, 82, 82, 80, 174, 176, 176, 178, 182, 184, 176, 204, 172, 204, 2, 0, 0, 178, 204, 0, 206, 204, 170, 206, 206, 2, 164, 180, 208, 6, 160, 182, 182, 10, 160, 162, 162, 164, 180, 210, 210, 182, 162, 210, 6, 8, 8, 10, 210, 8, 154, 186, 186, 94, 152, 154, 186, 212, 152, 212, 94, 96, 212, 96, 148, 188, 188, 100, 148, 150, 150, 152, 188, 214, 214, 212, 150, 214, 96, 98, 98, 100, 214, 98, 142, 144, 216, 190, 144, 216, 216, 104, 144, 146, 146, 148, 188, 218, 218, 216, 146, 218, 100, 102, 102, 104, 218, 102, 142, 190, 190, 106, 134, 192, 192, 114, 138, 220, 220, 110, 130, 222, 222, 118, 124, 224, 126, 224, 224, 122, 126, 128, 128, 130, 222, 226, 226, 224, 128, 226, 118, 120, 120, 122, 226, 120, 130, 132, 132, 134, 192, 228, 228, 222, 132, 228, 114, 116, 116, 118, 228, 116, 134, 136, 136, 138, 192, 230, 230, 220, 136, 230, 110, 112, 112, 114, 230, 112, 138, 140, 140, 142, 190, 232, 232, 220, 140, 232, 106, 108, 108, 110, 232, 108, 90, 194, 16, 18, 194, 16, 86, 88, 88, 90, 194, 234, 88, 234, 234, 18, 196, 236, 236, 234, 86, 236, 18, 20, 236, 20, 84, 196, 20, 22, 22, 24, 196, 22, 196, 238, 238, 198, 82, 238, 238, 24, 80, 198, 24, 26, 198, 26, 76, 240, 240, 30, 76, 78, 78, 80, 198, 242, 242, 240, 78, 242, 26, 28, 28, 30, 242, 28, 72, 200, 200, 34, 72, 74, 74, 76, 200, 244, 244, 240, 74, 244, 30, 32, 32, 34, 244, 32, 68, 246, 246, 38, 64, 202, 202, 42, 60, 248, 248, 46, 60, 62, 62, 64, 202, 250, 250, 248, 62, 250, 42, 44, 44, 46, 250, 44, 64, 66, 66, 68, 202, 252, 252, 246, 66, 252, 38, 40, 40, 42, 252, 40, 50, 52, 54, 254, 50, 254, 54, 56, 254, 56, 46, 48, 48, 50, 248, 256, 256, 254, 48, 256, 56, 58, 58, 60, 256, 58, 68, 70, 70, 72, 200, 258, 258, 246, 70, 258, 34, 36, 36, 38, 258, 36, 154, 156, 156, 158, 184, 260, 260, 186, 156, 260, 260, 262, 264, 194, 262, 264, 14, 16, 264, 14, 262, 92, 158, 184, 182, 266, 266, 262, 184, 266, 182, 268, 268, 264, 266, 268, 10, 12, 12, 14, 268, 12, 180, 274, 206, 276, 276, 274 ],
  187. "width": 108,
  188. "height": 112
  189. }
  190. },
  191. "taiben": {
  192. "taiben": {
  193. "type": "mesh",
  194. "uvs": [ 0.99999, 0.38677, 1, 0.68391, 0.80983, 0.984, 0.58893, 0.99086, 0.02064, 0.53991, 0, 0.33192, 0.26068, 0.00229, 0.41758, 0 ],
  195. "triangles": [ 7, 4, 5, 3, 0, 1, 7, 0, 4, 2, 3, 1, 7, 5, 6, 0, 3, 4 ],
  196. "vertices": [ 13.41, 14.27, 18.81, 7.95, 19.79, -2.27, 14.7, -6.86, -6.89, -8.71, -11.16, -4.69, -11.01, 7.57, -7.35, 10.78 ],
  197. "hull": 8,
  198. "edges": [ 14, 0, 8, 6, 4, 6, 0, 2, 4, 2, 12, 14, 8, 10, 12, 10 ],
  199. "width": 31,
  200. "height": 28
  201. }
  202. },
  203. "toufa001": {
  204. "toufa001": { "x": 33.93, "y": 22.3, "rotation": -99.58, "width": 19, "height": 41 }
  205. },
  206. "toufa1": {
  207. "toufa1": {
  208. "type": "mesh",
  209. "uvs": [ 0.85906, 0.27479, 0.95996, 0.45445, 1, 0.64847, 1, 0.83023, 1, 1, 0.95576, 1, 0.83174, 1, 0.71823, 0.90716, 0.64087, 0.85237, 0.56268, 0.79698, 0.50203, 0.73759, 0.42815, 0.66524, 0.3827, 0.62303, 0.33913, 0.58256, 0.29032, 0.53721, 0.22715, 0.47854, 0.11861, 0.49793, 0, 0.51912, 0, 0.34426, 0, 0.19096, 0.13418, 0.11316, 0.32935, 0, 0.43078, 0, 0.64045, 0, 0.3267, 0.19514, 0.49751, 0.28677, 0.61102, 0.44486, 0.72664, 0.59577, 0.83594, 0.7874, 0.74555, 0.13347, 0.41012, 0.23989, 0.14251, 0.27921, 0.79769, 0.19838, 0.66878, 0.52026, 0.69982, 0.07539, 0.55796, 0.37096, 0.78459, 0.69737, 0.91246, 0.92317 ],
  210. "triangles": [ 4, 37, 3, 6, 37, 5, 4, 5, 37, 6, 7, 37, 7, 28, 37, 37, 28, 3, 7, 8, 28, 28, 2, 3, 8, 36, 28, 8, 9, 36, 36, 9, 27, 28, 36, 2, 2, 36, 1, 9, 10, 27, 10, 33, 27, 36, 27, 1, 1, 27, 0, 0, 27, 33, 0, 33, 32, 33, 26, 32, 32, 23, 0, 10, 11, 33, 33, 11, 26, 11, 12, 26, 26, 12, 35, 12, 13, 35, 35, 13, 25, 13, 14, 25, 32, 26, 29, 26, 35, 29, 29, 35, 34, 35, 25, 34, 32, 29, 34, 14, 30, 25, 30, 22, 25, 25, 23, 34, 25, 22, 23, 30, 24, 22, 22, 24, 21, 23, 32, 34, 14, 15, 30, 17, 18, 16, 15, 16, 31, 16, 18, 31, 15, 24, 30, 15, 31, 24, 18, 19, 31, 19, 20, 31, 31, 20, 24, 24, 20, 21 ],
  211. "vertices": [ 4, 51, 23.17, 9.75, 0.02395, 52, 10.3, 14.1, 0.19233, 53, 1.87, 13.94, 0.69978, 54, -9.87, 12.22, 0.08394, 4, 52, 19.4, 12.99, 0.00805, 53, 10.94, 12.59, 0.52717, 54, -0.71, 12.7, 0.46464, 55, -8.89, 13.2, 1.4E-4, 3, 53, 18.52, 8.58, 0.10577, 54, 7.51, 10.28, 0.74191, 55, -0.75, 10.51, 0.15232, 3, 53, 24.41, 3.44, 2.1E-4, 54, 14.31, 6.42, 0.19419, 55, 5.91, 6.42, 0.80561, 1, 55, 12.13, 2.61, 1, 1, 55, 11, 0.76, 1, 2, 52, 33.49, -6.8, 6.0E-5, 55, 7.82, -4.42, 0.99994, 4, 52, 26.87, -8.54, 0.03638, 53, 17.83, -9.14, 0.00193, 54, 10.37, -7.22, 0.20848, 55, 1.51, -7.07, 0.75321, 5, 50, 7.08, -31.88, 5.3E-4, 52, 22.64, -9.96, 0.15819, 53, 13.56, -10.44, 0.04182, 54, 6.44, -9.35, 0.46345, 55, -2.48, -9.07, 0.33602, 5, 50, 4.98, -27.89, 0.00789, 52, 18.36, -11.4, 0.38741, 53, 9.24, -11.77, 0.1014, 54, 2.48, -11.5, 0.39404, 55, -6.52, -11.09, 0.10926, 5, 50, 3.7, -24.19, 0.02962, 52, 14.5, -12.07, 0.62256, 53, 5.37, -12.33, 0.08715, 54, -1.21, -12.82, 0.22833, 55, -10.25, -12.29, 0.03233, 6, 50, 2.15, -19.68, 0.09784, 51, 13.78, -15.54, 8.5E-4, 52, 9.8, -12.88, 0.7982, 53, 0.64, -13.01, 0.01999, 54, -5.7, -14.44, 0.08003, 55, -14.79, -13.75, 0.00308, 6, 50, 1.14, -16.98, 0.17441, 51, 10.93, -15.14, 0.00771, 52, 6.98, -13.44, 0.77952, 53, -2.19, -13.49, 0.00231, 54, -8.38, -15.47, 0.0359, 55, -17.5, -14.7, 1.5E-4, 4, 50, 0.18, -14.4, 0.28318, 51, 8.21, -14.75, 0.02124, 52, 4.28, -13.97, 0.68135, 54, -10.95, -16.47, 0.01423, 4, 50, -0.9, -11.51, 0.45517, 51, 5.15, -14.32, 0.03538, 52, 1.25, -14.58, 0.50577, 54, -13.82, -17.59, 0.00368, 4, 50, -2.3, -7.77, 0.76162, 51, 1.2, -13.76, 0.02341, 52, -2.67, -15.36, 0.21486, 54, -17.55, -19.03, 1.0E-4, 4, 50, -7.31, -5.81, 0.97144, 51, -2.92, -17.22, 2.0E-4, 52, -5.41, -19.99, 0.02836, 54, -19.45, -24.07, 0, 2, 50, -12.79, -3.66, 1, 54, -21.53, -29.57, 0, 2, 50, -8.99, 2.83, 1, 54, -28.07, -25.86, 0, 2, 50, -5.66, 8.52, 1, 54, -33.8, -22.6, 0, 2, 50, 1.7, 8.09, 0.99869, 51, -10.83, -2.67, 0.00131, 3, 50, 12.41, 7.46, 0.32481, 51, -5.16, 6.44, 0.67509, 52, -15.34, 1.61, 1.0E-4, 4, 50, 16.7, 4.95, 0.03184, 51, -0.9, 9.01, 0.9377, 52, -12.18, 5.44, 0.02657, 53, -20.83, 5.89, 0.00389, 4, 51, 7.89, 14.33, 0.62272, 52, -5.63, 13.36, 0.28486, 53, -14.07, 13.63, 0.09242, 54, -25.43, 8.74, 0, 1, 50, 8.06, 0.28, 1, 3, 51, 8.27, 0.15, 0.91643, 52, -0.59, 0.11, 0.08298, 53, -9.39, 0.25, 5.9E-4, 1, 52, 8.2, 0.07, 1, 1, 53, 8.01, -0.02, 1, 2, 54, 8.74, 0.34, 0.09322, 55, 0.14, 0.53, 0.90678, 4, 51, 15.27, 12.08, 0.25896, 52, 2.07, 13.68, 0.41956, 53, -6.36, 13.74, 0.31941, 54, -17.9, 10.38, 0.00207, 4, 50, 10.62, -3.44, 0.024, 51, 3.57, -0.34, 0.97219, 52, -4.87, -1.91, 0.00381, 54, -22.04, -6.17, 0, 1, 50, -1.55, 1.72, 1, 4, 51, 18.9, 11.01, 0.108, 52, 5.85, 13.87, 0.35336, 53, -2.58, 13.83, 0.51958, 54, -14.21, 11.23, 0.01905, 1, 53, 3.7, -0.03, 1, 4, 51, 12.06, 13.05, 0.438, 52, -1.28, 13.54, 0.37959, 53, -9.72, 13.69, 0.1824, 54, -21.18, 9.67, 1.0E-5, 2, 52, 4.09, 0.09, 0.99901, 53, -4.71, 0.1, 9.9E-4, 1, 54, 4.13, 0.07, 1, 2, 54, 15.67, 0.72, 0.00377, 55, 7.07, 0.68, 0.99623 ],
  212. "hull": 24,
  213. "edges": [ 8, 10, 0, 2, 2, 4, 34, 36, 10, 12, 14, 12, 36, 38, 46, 0, 42, 48, 48, 30, 46, 50, 50, 26, 42, 44, 44, 46, 48, 60, 60, 50, 44, 60, 26, 28, 28, 30, 60, 28, 38, 40, 40, 42, 36, 62, 62, 48, 40, 62, 30, 32, 32, 34, 62, 32, 58, 52, 52, 22, 0, 54, 54, 18, 0, 64, 64, 58, 52, 66, 66, 54, 64, 66, 18, 20, 20, 22, 66, 20, 46, 68, 68, 58, 50, 70, 70, 52, 68, 70, 22, 24, 24, 26, 70, 24, 54, 72, 72, 56, 2, 72, 14, 16, 16, 18, 72, 16, 4, 56, 56, 14, 10, 74, 74, 56, 12, 74, 4, 6, 6, 8, 74, 6 ],
  214. "width": 49,
  215. "height": 43
  216. }
  217. },
  218. "toufa2": {
  219. "toufa2": {
  220. "type": "mesh",
  221. "uvs": [ 0.81999, 0.06143, 0.90455, 0.14028, 1, 0.26643, 1, 0.3847, 0.83728, 0.44935, 0.72798, 0.36772, 0.66624, 0.32162, 0.6072, 0.31873, 0.53747, 0.31531, 0.47989, 0.34439, 0.43754, 0.36577, 0.38501, 0.40099, 0.36963, 0.4522, 0.35298, 0.50769, 0.33312, 0.5755, 0.30281, 0.63432, 0.26649, 0.70481, 0.24135, 0.75241, 0.21652, 0.79942, 0.23565, 0.82653, 0.2588, 0.85935, 0.30685, 0.91296, 0.29916, 1, 0.25688, 1, 0.21272, 1, 0.09957, 0.93126, 0, 0.87765, 0, 0.81656, 0, 0.74613, 0, 0.68153, 1.0E-5, 0.58586, 1.0E-5, 0.46812, 0, 0.35947, 0.05041, 0.26365, 0.10121, 0.16708, 0.20115, 0.06301, 0.34529, 0, 0.47394, 0, 0.62844, 1.0E-5, 0.52274, 0.12345, 0.32799, 0.16077, 0.21076, 0.24277, 0.15182, 0.40467, 0.1531, 0.50139, 0.16655, 0.59495, 0.13581, 0.7395, 0.13388, 0.85935, 0.20499, 0.91769, 0.93694, 0.33418, 0.8209, 0.24123, 0.73543, 0.17276, 0.63127, 0.14157, 0.41988, 0.14317, 0.18149, 0.3131, 0.14824, 0.68103, 0.13482, 0.8008, 0.24017, 0.9735 ],
  222. "triangles": [ 47, 46, 19, 47, 19, 20, 47, 20, 21, 56, 47, 21, 24, 47, 56, 25, 47, 24, 22, 23, 56, 24, 56, 23, 21, 22, 56, 25, 26, 46, 25, 46, 47, 28, 29, 45, 18, 45, 17, 55, 28, 45, 55, 45, 18, 27, 28, 55, 46, 27, 55, 46, 55, 18, 46, 18, 19, 26, 27, 46, 16, 54, 44, 29, 30, 54, 15, 16, 44, 45, 29, 54, 17, 54, 16, 45, 54, 17, 13, 43, 42, 31, 42, 43, 12, 13, 42, 14, 43, 13, 30, 31, 43, 44, 43, 14, 30, 43, 44, 15, 44, 14, 54, 30, 44, 33, 34, 41, 53, 33, 41, 11, 53, 41, 42, 33, 53, 12, 42, 53, 32, 33, 42, 11, 12, 53, 31, 32, 42, 40, 35, 36, 41, 35, 40, 34, 35, 41, 40, 52, 10, 11, 41, 40, 40, 10, 11, 52, 36, 37, 40, 36, 52, 9, 52, 8, 10, 52, 9, 39, 37, 38, 50, 51, 38, 39, 38, 51, 52, 37, 39, 0, 50, 38, 50, 0, 1, 49, 50, 1, 49, 1, 2, 8, 39, 51, 52, 39, 8, 7, 8, 51, 6, 7, 51, 50, 6, 51, 6, 50, 49, 48, 49, 2, 5, 6, 49, 4, 5, 49, 48, 2, 3, 48, 4, 49, 4, 48, 3 ],
  223. "vertices": [ 1, 40, -7.85, -6.21, 1, 1, 40, -13.64, -0.41, 1, 1, 40, -20.35, 9.03, 1, 1, 40, -20.92, 18.24, 1, 1, 40, -10.84, 23.92, 1, 3, 40, -3.46, 18, 0.99261, 41, -8.48, 23.64, 0.00381, 42, -9.53, 27.56, 0.00358, 5, 40, 0.7, 14.66, 0.94431, 41, -6.07, 18.87, 0.03074, 42, -8.6, 22.3, 0.0246, 43, -4.45, 29.26, 2.1E-4, 45, -9.53, 34.14, 1.4E-4, 5, 40, 4.49, 14.67, 0.83373, 41, -2.62, 17.31, 0.08864, 42, -5.74, 19.81, 0.07178, 43, -3.38, 25.62, 0.00385, 45, -10.26, 30.42, 0.00199, 5, 40, 8.96, 14.68, 0.58337, 41, 1.46, 15.47, 0.18741, 42, -2.37, 16.87, 0.18908, 43, -2.13, 21.33, 0.02733, 45, -11.12, 26.04, 0.01281, 5, 40, 12.5, 17.17, 0.30515, 41, 5.71, 16.27, 0.20561, 42, 1.93, 16.41, 0.34375, 43, 1.25, 18.63, 0.09891, 45, -9.37, 22.08, 0.04659, 5, 40, 15.1, 19.01, 0.1702, 41, 8.83, 16.86, 0.15427, 42, 5.09, 16.08, 0.39154, 43, 3.73, 16.64, 0.18691, 45, -8.08, 19.17, 0.09709, 5, 40, 18.28, 21.96, 0.056, 41, 12.96, 18.23, 0.06486, 42, 9.43, 16.2, 0.29586, 43, 7.45, 14.4, 0.32488, 45, -5.81, 15.47, 0.25839, 5, 40, 19.01, 26.01, 0.0149, 41, 15.3, 21.61, 0.02073, 42, 12.65, 18.76, 0.1499, 43, 11.54, 14.82, 0.30207, 45, -1.99, 13.96, 0.5124, 6, 40, 19.81, 30.39, 0.00265, 41, 17.84, 25.28, 0.00512, 42, 16.14, 21.53, 0.06278, 43, 15.98, 15.28, 0.16951, 45, 2.16, 12.32, 0.7464, 46, -10.88, 8.99, 0.01354, 6, 40, 20.75, 35.75, 2.0E-5, 41, 20.91, 29.76, 3.3E-4, 42, 20.38, 24.94, 0.01602, 43, 21.39, 15.86, 0.04086, 45, 7.23, 10.35, 0.78949, 46, -5.44, 9.02, 0.15328, 4, 42, 24.72, 27.39, 0.00223, 43, 26.36, 15.59, 0.00268, 45, 11.51, 7.81, 0.4417, 46, -0.53, 8.23, 0.55339, 4, 45, 16.65, 4.77, 0.02521, 46, 5.37, 7.29, 0.93156, 47, -3.41, 8.42, 0.04322, 48, -2.55, 14.25, 1.0E-5, 3, 46, 9.36, 6.61, 0.64817, 47, 0.3, 6.81, 0.33538, 48, -1.06, 10.49, 0.01646, 4, 46, 13.3, 5.94, 0.13397, 47, 3.97, 5.22, 0.67115, 48, 0.41, 6.77, 0.19026, 49, -6.88, 5.67, 0.00462, 4, 46, 15.06, 7.64, 0.02032, 47, 6.08, 6.45, 0.44407, 48, 2.77, 6.14, 0.45004, 49, -4.44, 5.46, 0.08557, 4, 46, 17.19, 9.69, 2.5E-4, 47, 8.64, 7.93, 0.14723, 48, 5.63, 5.38, 0.4002, 49, -1.49, 5.2, 0.45232, 2, 47, 12.82, 11.01, 0.00323, 49, 3.7, 5.32, 0.99677, 1, 49, 8.97, 1.03, 1, 1, 49, 7.42, -1.19, 1, 2, 48, 11.3, -4.46, 0.00319, 49, 5.8, -3.51, 0.99681, 3, 47, 14.25, -2.26, 0.0974, 48, 2.39, -5.79, 0.83726, 49, -2.74, -6.36, 0.06534, 2, 47, 10.07, -8.63, 0.77327, 48, -5.08, -7.34, 0.22673, 4, 45, 23, -13.3, 0.00107, 46, 17.9, -7.19, 0.00523, 47, 5.3, -8.63, 0.94871, 48, -8.45, -3.97, 0.045, 3, 45, 17.55, -12.56, 0.04443, 46, 12.57, -8.5, 0.17045, 47, -0.19, -8.63, 0.78512, 3, 45, 12.56, -11.89, 0.22997, 46, 7.68, -9.71, 0.42209, 47, -5.23, -8.63, 0.34795, 4, 43, 29.34, -3.93, 0.00889, 45, 5.17, -10.88, 0.77415, 46, 0.43, -11.49, 0.1823, 47, -12.69, -8.63, 0.03465, 3, 43, 20.69, -7.03, 0.32231, 45, -3.94, -9.65, 0.67716, 46, -8.49, -13.68, 5.3E-4, 2, 43, 12.71, -9.89, 0.85377, 45, -12.33, -8.51, 0.14623, 3, 42, 19.84, -5.37, 0.03284, 43, 4.59, -9.37, 0.96629, 45, -19.31, -4.31, 8.7E-4, 3, 41, 23.42, -5.29, 0.00242, 42, 12.66, -9.34, 0.4846, 43, -3.6, -8.85, 0.51298, 3, 41, 14.54, -10.6, 0.26032, 42, 2.64, -11.86, 0.6976, 43, -13.4, -5.57, 0.04208, 3, 40, 22.77, -9.1, 0.06766, 41, 4.17, -11.9, 0.78645, 42, -7.67, -10.11, 0.14589, 3, 40, 14.55, -9.61, 0.56269, 41, -3.52, -8.96, 0.43555, 42, -14.18, -5.08, 0.00175, 2, 40, 4.68, -10.23, 0.99438, 41, -12.76, -5.43, 0.00562, 1, 40, 10.83, -0.2, 1, 3, 41, 9.68, -0.58, 0.10905, 42, 0.87, -0.86, 0.89083, 43, -8.96, 4.65, 1.2E-4, 2, 42, 10.72, -0.39, 0.48359, 43, -0.41, -0.26, 0.51641, 3, 42, 21.42, 7.31, 0.00197, 43, 12.75, 0.45, 0.7846, 45, -7.53, 0.64, 0.21343, 2, 43, 19.83, 3.07, 0.00259, 45, -0.05, -0.29, 0.99741, 2, 45, 7.3, -0.42, 0.99993, 47, -11.98, 2.03, 7.0E-5, 3, 45, 18.21, -3.88, 2.9E-4, 46, 9.99, -0.19, 0.43171, 47, -0.71, 0.06, 0.568, 2, 47, 8.64, -0.06, 0.46716, 48, -0.03, -0.27, 0.53284, 1, 49, 0.26, -0.23, 1, 1, 40, -16.65, 14.56, 1, 3, 40, -8.78, 7.78, 0.99978, 41, -17.55, 16.54, 3.0E-5, 42, -20.26, 23.38, 1.9E-4, 3, 40, -2.99, 2.79, 0.99919, 41, -14.35, 9.6, 2.3E-4, 42, -19.2, 15.81, 5.8E-4, 3, 40, 3.81, 0.78, 0.99858, 41, -8.99, 4.95, 7.4E-4, 42, -15.41, 9.81, 6.7E-4, 4, 40, 17.31, 1.75, 0.00283, 41, 3.7, 0.24, 0.99598, 42, -4.62, 1.64, 0.00118, 45, -25.44, 20.38, 2.0E-5, 1, 43, 5.39, -0.17, 1, 3, 45, 13.8, -2.48, 0.00835, 46, 5.37, -0.5, 0.98825, 47, -5.27, 0.85, 0.0034, 2, 45, 22.94, -4.59, 0, 47, 4.07, 0, 1, 1, 49, 5.12, -0.88, 1 ],
  224. "hull": 39,
  225. "edges": [ 80, 82, 84, 86, 86, 88, 92, 94, 6, 8, 20, 22, 26, 28, 40, 42, 44, 46, 42, 44, 6, 4, 4, 2, 2, 0, 0, 76, 72, 70, 70, 68, 52, 50, 46, 48, 50, 48, 6, 96, 8, 96, 96, 4, 98, 96, 2, 98, 8, 10, 10, 12, 98, 10, 100, 98, 0, 100, 100, 12, 102, 78, 100, 102, 76, 102, 12, 14, 14, 16, 102, 14, 16, 78, 72, 74, 74, 76, 78, 74, 78, 104, 104, 80, 72, 104, 16, 18, 18, 20, 104, 18, 20, 80, 80, 70, 22, 82, 82, 68, 26, 84, 84, 64, 22, 24, 24, 26, 82, 106, 106, 84, 24, 106, 64, 66, 66, 68, 106, 66, 28, 86, 62, 64, 86, 62, 28, 30, 30, 32, 30, 88, 60, 62, 88, 60, 88, 108, 108, 90, 32, 108, 58, 60, 108, 58, 56, 58, 56, 90, 32, 34, 34, 36, 90, 34, 90, 110, 110, 92, 36, 110, 52, 54, 54, 56, 110, 54, 52, 92, 36, 38, 38, 40, 92, 38, 40, 94, 94, 50, 46, 112, 112, 94, 48, 112, 112, 42 ],
  226. "width": 64,
  227. "height": 78
  228. }
  229. },
  230. "toufa3": {
  231. "toufa3": {
  232. "type": "mesh",
  233. "uvs": [ 1, 0.46869, 0.77718, 1, 0, 0.8236, 0, 0.55187, 0.37306, 0, 1, 0 ],
  234. "triangles": [ 4, 5, 0, 3, 4, 0, 1, 2, 3, 0, 1, 3 ],
  235. "vertices": [ 56.24, -7.66, 45.9, 1.32, 53.86, 25.19, 59.76, 24.2, 69.74, 10.41, 66.41, -9.37 ],
  236. "hull": 6,
  237. "edges": [ 8, 10, 6, 8, 0, 10, 0, 2, 4, 6, 2, 4 ],
  238. "width": 32,
  239. "height": 22
  240. }
  241. },
  242. "toufa4": {
  243. "toufa4": {
  244. "type": "mesh",
  245. "uvs": [ 1, 0.2154, 0.99999, 0.28612, 1, 0.361, 1, 0.40973, 1, 0.46396, 1, 0.51687, 1, 0.59904, 1, 0.64687, 1, 0.73423, 1, 0.78415, 1, 0.84135, 1, 0.90687, 1, 1, 0.32812, 1, 0, 1, 0, 0.90791, 0, 0.84655, 0, 0.78311, 0, 0.72383, 0, 0.65935, 0, 0.6084, 0, 0.52727, 0, 0.45876, 0, 0.41285, 0, 0.36204, 1.0E-5, 0.28508, 0, 0.20812, 0, 0, 0.62712, 0, 1, 0, 0.51737, 0.28827, 0.45462, 0.4601, 0.55812, 0.5981, 0.72487, 0.7269, 0.50062, 0.84282, 0.56622, 0.20471, 0.50227, 0.36196, 0.43069, 0.90655, 0.60955, 0.78652, 0.62835, 0.65235, 0.50471, 0.52688, 0.47779, 0.41239 ],
  246. "triangles": [ 13, 37, 12, 37, 11, 12, 37, 13, 15, 13, 14, 15, 15, 16, 37, 37, 34, 11, 37, 16, 34, 16, 17, 34, 34, 10, 11, 34, 38, 10, 34, 17, 38, 38, 9, 10, 38, 33, 9, 33, 38, 18, 33, 8, 9, 38, 17, 18, 33, 7, 8, 18, 39, 33, 33, 39, 7, 18, 19, 39, 7, 39, 6, 39, 32, 6, 19, 32, 39, 19, 20, 32, 20, 40, 32, 20, 21, 40, 32, 5, 6, 32, 40, 5, 21, 31, 40, 5, 40, 4, 21, 22, 31, 40, 31, 4, 31, 41, 4, 41, 3, 4, 41, 31, 23, 31, 22, 23, 23, 24, 41, 41, 36, 3, 41, 24, 36, 36, 2, 3, 24, 25, 36, 36, 30, 2, 36, 25, 30, 30, 1, 2, 30, 35, 1, 35, 30, 26, 1, 35, 0, 30, 25, 26, 35, 28, 0, 28, 29, 0, 26, 27, 35, 35, 27, 28 ],
  247. "vertices": [ 3, 56, 3.84, 7.21, 0.91974, 57, -5.07, 7.27, 0.07995, 58, -10.33, 12.57, 3.1E-4, 4, 56, 7.35, 7.67, 0.64839, 57, -1.56, 7.69, 0.33675, 58, -6.96, 11.49, 0.01484, 59, -11.75, 13.48, 2.0E-5, 4, 56, 11.06, 8.16, 0.25618, 57, 2.16, 8.14, 0.64308, 58, -3.39, 10.36, 0.09337, 59, -8.4, 11.8, 0.00737, 4, 56, 13.48, 8.48, 0.09938, 57, 4.58, 8.43, 0.65887, 58, -1.07, 9.62, 0.20912, 59, -6.22, 10.71, 0.03263, 4, 56, 16.16, 8.83, 0.02077, 57, 7.27, 8.76, 0.50546, 58, 1.52, 8.8, 0.37144, 59, -3.8, 9.5, 0.10233, 4, 56, 18.79, 9.17, 0.00152, 57, 9.9, 9.07, 0.28468, 58, 4.04, 8, 0.46842, 59, -1.43, 8.32, 0.24538, 3, 57, 13.98, 9.57, 0.06257, 58, 7.95, 6.75, 0.29087, 59, 2.24, 6.48, 0.64656, 4, 57, 16.35, 9.85, 0.01621, 58, 10.23, 6.02, 0.11878, 59, 4.38, 5.41, 0.85553, 60, -5.88, 0.68, 0.00949, 4, 58, 14.4, 4.7, 0.00146, 59, 8.29, 3.46, 0.39944, 60, -2.45, 3.38, 0.59648, 61, -7.95, 6.23, 0.00261, 3, 59, 10.52, 2.34, 0.04267, 60, -0.49, 4.93, 0.91849, 61, -5.6, 7.08, 0.03884, 2, 60, 1.76, 6.7, 0.83471, 61, -2.91, 8.04, 0.16529, 3, 59, 16.01, -0.4, 2.0E-5, 60, 4.33, 8.73, 0.60581, 61, 0.18, 9.15, 0.39417, 3, 59, 20.18, -2.49, 3.0E-5, 60, 7.98, 11.62, 0.42705, 61, 4.56, 10.72, 0.57292, 2, 60, 14.64, 3.18, 0.00245, 61, 8.19, 0.61, 0.99755, 1, 61, 9.97, -4.34, 1, 4, 58, 17.82, -13.18, 0.00717, 59, 8.9, -14.74, 0.0077, 60, 14.28, -3.79, 0.02139, 61, 5.63, -5.89, 0.96374, 4, 58, 14.9, -12.25, 0.03903, 59, 6.16, -13.37, 0.04195, 60, 11.87, -5.7, 0.14983, 61, 2.75, -6.93, 0.7692, 4, 58, 11.87, -11.29, 0.12691, 59, 3.32, -11.95, 0.11694, 60, 9.39, -7.66, 0.33044, 61, -0.24, -8, 0.4257, 4, 58, 9.05, -10.39, 0.28689, 59, 0.67, -10.62, 0.18343, 60, 7.06, -9.5, 0.34895, 61, -3.03, -9, 0.18073, 5, 57, 18.89, -5.96, 2.0E-4, 58, 5.98, -9.41, 0.54368, 59, -2.21, -9.18, 0.1717, 60, 4.53, -11.5, 0.23255, 61, -6.06, -10.09, 0.05187, 5, 57, 16.36, -6.26, 0.01375, 58, 3.55, -8.64, 0.74387, 59, -4.49, -8.04, 0.09842, 60, 2.53, -13.07, 0.13015, 61, -8.46, -10.95, 0.0138, 5, 57, 12.33, -6.75, 0.18967, 58, -0.32, -7.41, 0.76673, 59, -8.12, -6.23, 0.01107, 60, -0.66, -15.59, 0.03237, 61, -12.28, -12.32, 1.6E-4, 4, 56, 17.99, -7.07, 0.00721, 57, 8.93, -7.16, 0.54842, 58, -3.58, -6.37, 0.43966, 60, -3.34, -17.71, 0.00471, 4, 56, 15.71, -7.37, 0.0437, 57, 6.65, -7.43, 0.74743, 58, -5.77, -5.67, 0.20845, 60, -5.15, -19.13, 4.2E-4, 3, 56, 13.19, -7.7, 0.15715, 57, 4.13, -7.74, 0.78152, 58, -8.19, -4.9, 0.06132, 3, 56, 9.38, -8.2, 0.49941, 57, 0.31, -8.2, 0.49858, 58, -11.86, -3.74, 0.00201, 2, 56, 5.56, -8.7, 0.82864, 57, -3.51, -8.66, 0.17136, 1, 56, -4.76, -10.05, 1, 1, 56, -6.06, -0.1, 1, 1, 56, -6.84, 5.81, 1, 3, 56, 8.46, 0.03, 0.96088, 57, -0.52, 0.04, 0.03911, 58, -9.19, 4.1, 1.0E-5, 3, 57, 8.13, 0.07, 0.99596, 58, -1.31, 0.54, 0.00391, 59, -7.87, 1.78, 1.2E-4, 1, 58, 5.77, 0.03, 1, 2, 59, 5.99, -0.32, 0.55713, 60, -0.01, -0.3, 0.44287, 2, 60, 6.77, 0.48, 0.77321, 61, -0.14, 0.55, 0.22679, 1, 56, 4.21, 0.26, 1, 3, 56, 12.14, 0.27, 1.2E-4, 57, 3.16, 0.24, 0.99917, 58, -5.76, 2.75, 7.2E-4, 2, 60, 9.96, 1.57, 0.01304, 61, 3.24, 0.57, 0.98696, 2, 60, 3.48, 0.1, 0.99898, 61, -3.37, 1.24, 0.00102, 2, 59, 1.97, -0.03, 0.99905, 60, -1.98, -3.82, 9.5E-4, 3, 57, 11.35, 1.27, 0.01071, 58, 2.11, 0.29, 0.98734, 59, -4.53, 1.01, 0.00196, 3, 57, 5.71, 0.15, 0.99774, 58, -3.47, 1.62, 0.00219, 59, -9.84, 3.18, 7.0E-5 ],
  248. "hull": 30,
  249. "edges": [ 54, 56, 56, 58, 24, 26, 26, 28, 50, 60, 60, 2, 50, 52, 52, 54, 56, 70, 70, 60, 52, 70, 2, 0, 0, 58, 70, 0, 48, 50, 60, 72, 48, 72, 2, 4, 72, 4, 44, 62, 62, 8, 40, 64, 64, 12, 36, 66, 66, 16, 32, 68, 68, 20, 20, 22, 22, 24, 26, 74, 74, 68, 22, 74, 28, 30, 30, 32, 74, 30, 16, 18, 18, 20, 66, 76, 76, 68, 18, 76, 32, 34, 34, 36, 76, 34, 12, 14, 14, 16, 64, 78, 78, 66, 14, 78, 36, 38, 38, 40, 78, 38, 8, 10, 10, 12, 62, 80, 80, 64, 10, 80, 40, 42, 42, 44, 80, 42, 4, 6, 6, 8, 62, 82, 82, 72, 6, 82, 44, 46, 46, 48, 82, 46 ],
  250. "width": 16,
  251. "height": 50
  252. }
  253. },
  254. "toufa5": {
  255. "toufa5": {
  256. "type": "mesh",
  257. "uvs": [ 0.81612, 0.101, 1, 0.29229, 1, 0.73209, 0.81611, 0.94446, 0.68694, 1, 0.46985, 1, 0.60441, 0.82095, 0.61338, 0.59653, 0.47344, 0.40977, 0.22406, 0.26969, 0.12359, 0.30584, 0, 0.31337, 0, 0.0995, 0.20432, 0, 0.57929, 0 ],
  258. "triangles": [ 9, 13, 14, 12, 13, 9, 10, 12, 9, 11, 12, 10, 8, 9, 14, 8, 14, 0, 7, 8, 0, 7, 0, 1, 7, 1, 2, 6, 7, 2, 3, 6, 2, 4, 6, 3, 5, 6, 4 ],
  259. "vertices": [ 70.51, -44.04, 53.16, -53.79, 18.03, -47.86, 3.15, -32.67, 0.17, -23.26, 2.63, -8.7, 15.41, -20.14, 33.23, -23.77, 49.73, -16.9, 63.74, -2.07, 61.99, 5.16, 62.79, 13.55, 79.87, 10.66, 85.5, -4.38, 81.26, -29.52 ],
  260. "hull": 15,
  261. "edges": [ 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 0, 0, 2, 8, 10, 8, 6, 2, 4, 6, 4 ],
  262. "width": 68,
  263. "height": 81
  264. }
  265. },
  266. "toufa6": {
  267. "toufa6": {
  268. "type": "mesh",
  269. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  270. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  271. "vertices": [ 10.63, -19.98, -16.55, -13.26, -7.2, 24.6, 19.99, 17.88 ],
  272. "hull": 4,
  273. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  274. "width": 28,
  275. "height": 39
  276. }
  277. },
  278. "touhua1": {
  279. "touhua1": { "x": -0.35, "y": 4.36, "rotation": -13.88, "width": 19, "height": 22 }
  280. },
  281. "touhua2": {
  282. "touhua2": { "x": 0.46, "y": 18.07, "rotation": -13.88, "width": 14, "height": 15 }
  283. },
  284. "touhua3": {
  285. "touhua3": { "x": -5.53, "y": -8.26, "rotation": -13.88, "width": 11, "height": 13 }
  286. },
  287. "xiao": {
  288. "xiao": { "x": 2.02, "y": -0.61, "rotation": -100.01, "width": 16, "height": 11 }
  289. },
  290. "yaodai": {
  291. "yaodai": {
  292. "type": "mesh",
  293. "uvs": [ 0.31235, 0.12624, 0.38994, 0.19121, 0.49248, 0.27708, 0.56654, 0.33909, 0.6494, 0.40848, 0.7808, 0.43867, 0.89361, 0.51159, 1, 0.58035, 1, 0.72435, 1, 1, 0.7718, 1, 0.67959, 0.92807, 0.5018, 0.78938, 0.3631, 0.63445, 0.2606, 0.51996, 0.20191, 0.44255, 0.14136, 0.36268, 0, 0.17622, 0, 0, 0.1616, 0, 0.2354, 0.25751, 0.3794, 0.40848, 0.5648, 0.56409, 0.7502, 0.65003, 0.48394, 0.49623, 0.29312, 0.31803, 0.87186, 0.68622 ],
  294. "triangles": [ 23, 5, 6, 23, 22, 5, 26, 23, 6, 26, 6, 7, 26, 7, 8, 11, 23, 26, 10, 11, 26, 9, 10, 26, 9, 26, 8, 5, 22, 4, 12, 22, 23, 12, 13, 22, 11, 12, 23, 21, 25, 2, 3, 24, 21, 3, 21, 2, 24, 3, 4, 14, 15, 21, 22, 24, 4, 24, 13, 14, 24, 14, 21, 22, 13, 24, 20, 0, 1, 25, 20, 1, 25, 1, 2, 16, 20, 25, 15, 16, 25, 15, 25, 21, 20, 17, 18, 20, 19, 0, 20, 18, 19, 16, 17, 20 ],
  295. "vertices": [ 3, 65, 7.6, 5.26, 0.45989, 66, -0.15, 5.28, 0.52734, 67, -5.9, 6.37, 0.01277, 3, 65, 11.24, 5.94, 0.05562, 66, 3.52, 5.74, 0.75708, 67, -2.2, 6.21, 0.1873, 4, 66, 8.37, 6.36, 0.22952, 67, 2.69, 5.99, 0.7681, 68, -5.74, 6.73, 0.00226, 69, -12.11, 10.06, 1.3E-4, 4, 66, 11.87, 6.81, 0.02954, 67, 6.21, 5.84, 0.86262, 68, -2.25, 6.15, 0.09348, 69, -8.88, 8.62, 0.01436, 3, 67, 10.16, 5.66, 0.342, 68, 1.65, 5.5, 0.49174, 69, -5.27, 7.02, 0.16626, 3, 67, 15.17, 7.52, 0.00581, 68, 6.84, 6.74, 0.20002, 69, 0.07, 6.91, 0.79417, 1, 69, 4.88, 5.38, 1, 1, 69, 9.41, 3.94, 1, 1, 69, 10.11, -0.47, 1, 2, 68, 21.83, -5.7, 0.01616, 69, 11.44, -8.91, 0.98384, 2, 68, 13.46, -9.35, 0.30833, 69, 2.42, -10.33, 0.69167, 3, 67, 19.36, -7.62, 0.00277, 68, 9.19, -8.78, 0.60909, 69, -1.57, -8.71, 0.38814, 3, 67, 11.05, -7.51, 0.33129, 68, 0.95, -7.68, 0.6665, 69, -9.26, -5.57, 0.00221, 3, 66, 11.58, -5.44, 0.02756, 67, 3.84, -6.18, 0.94056, 68, -6.05, -5.5, 0.03187, 3, 65, 14.5, -5.02, 1.1E-4, 66, 6.15, -5.38, 0.58784, 67, -1.5, -5.2, 0.41205, 3, 65, 11.15, -4.89, 0.07869, 66, 2.81, -5.06, 0.86527, 67, -4.74, -4.32, 0.05605, 2, 65, 7.69, -4.76, 0.5691, 66, -0.64, -4.74, 0.4309, 1, 65, -0.39, -4.46, 1, 1, 65, -4.15, -0.5, 1, 2, 65, 0.53, 3.95, 0.9997, 66, -7.28, 4.37, 3.0E-4, 2, 65, 8.17, 0.19, 0.36183, 66, 0.13, 0.18, 0.63817, 1, 67, 0.85, 0.19, 1, 2, 67, 9.69, -0.21, 0.07708, 68, 0.47, -0.27, 0.92292, 2, 68, 8.33, 0.25, 0.16423, 69, -0.12, 0.25, 0.83577, 1, 67, 5.83, -0.04, 1, 2, 66, 3.1, 0.24, 0.99868, 67, -3.55, 0.86, 0.00132, 2, 68, 13.24, 1.16, 4.5E-4, 69, 4.86, -0.1, 0.99955 ],
  296. "hull": 20,
  297. "edges": [ 36, 40, 44, 46, 18, 16, 36, 38, 8, 10, 16, 14, 34, 36, 18, 20, 32, 34, 32, 40, 0, 38, 40, 0, 28, 42, 42, 4, 24, 44, 44, 8, 4, 6, 6, 8, 42, 48, 48, 44, 6, 48, 24, 26, 26, 28, 48, 26, 0, 2, 2, 4, 40, 50, 50, 42, 2, 50, 28, 30, 30, 32, 50, 30, 10, 46, 20, 22, 22, 24, 46, 22, 16, 52, 52, 46, 20, 52, 10, 12, 12, 14, 12, 52 ],
  298. "width": 40,
  299. "height": 31
  300. }
  301. },
  302. "yaohua": {
  303. "yaohua": { "x": 2.03, "y": -0.07, "rotation": -82.95, "width": 14, "height": 17 }
  304. },
  305. "yaohua2": {
  306. "yaohua2": { "x": -3.75, "y": -6.32, "rotation": -82.95, "width": 9, "height": 10 }
  307. },
  308. "youshou": {
  309. "youshou": {
  310. "type": "mesh",
  311. "uvs": [ 0.66517, 0.34066, 0.6911, 0.36677, 0.72401, 0.3999, 0.89161, 0.56862, 0.92193, 0.59916, 0.96087, 0.63835, 1, 0.67775, 1, 1, 0.58984, 1, 0.42212, 0.76482, 0.39574, 0.72781, 0.37419, 0.6976, 0.24257, 0.51304, 0.21377, 0.47266, 0.18663, 0.4346, 0, 0.17289, 0, 0, 0.32679, 0, 0.49419, 0.46186, 0.70144, 0.69435, 0.45569, 0.42588, 0.67629, 0.66614, 0.63971, 0.6251, 0.42302, 0.39535 ],
  312. "triangles": [ 8, 9, 19, 19, 5, 6, 7, 19, 6, 8, 19, 7, 18, 1, 2, 22, 18, 2, 22, 2, 3, 21, 22, 3, 21, 3, 4, 19, 21, 4, 19, 4, 5, 11, 12, 18, 11, 18, 22, 10, 11, 22, 10, 22, 21, 9, 10, 21, 9, 21, 19, 23, 15, 16, 23, 17, 0, 23, 16, 17, 20, 23, 0, 20, 0, 1, 14, 15, 23, 18, 20, 1, 13, 14, 23, 13, 23, 20, 12, 13, 20, 12, 20, 18 ],
  313. "vertices": [ 2, 26, 21.11, 8.42, 0.74101, 27, -2.55, 8.47, 0.25899, 2, 26, 22.83, 8.55, 0.58567, 27, -0.83, 8.57, 0.41433, 2, 26, 25.01, 8.72, 0.37775, 27, 1.35, 8.7, 0.62225, 3, 26, 36.09, 9.57, 7.0E-4, 27, 12.46, 9.34, 0.81872, 28, -3.64, 9.15, 0.18059, 2, 27, 14.46, 9.46, 0.67546, 28, -1.64, 9.38, 0.32454, 2, 27, 17.04, 9.61, 0.46286, 28, 0.93, 9.68, 0.53714, 2, 27, 19.64, 9.76, 0.30043, 28, 3.51, 9.97, 0.69957, 1, 28, 19.82, 2.26, 1, 2, 27, 28.64, -11.47, 9.0E-5, 28, 13.68, -10.72, 0.99991, 2, 27, 14.27, -10.34, 0.57445, 28, -0.73, -10.4, 0.42555, 2, 27, 12, -10.16, 0.75015, 28, -3, -10.35, 0.24985, 3, 26, 34.15, -9.83, 0.0014, 27, 10.16, -10.02, 0.85607, 28, -4.85, -10.31, 0.14254, 2, 26, 22.85, -9.15, 0.53403, 27, -1.12, -9.13, 0.46597, 2, 26, 20.38, -9, 0.75271, 27, -3.59, -8.94, 0.24729, 2, 26, 18.05, -8.86, 0.89435, 27, -5.92, -8.76, 0.10565, 1, 26, 2.04, -7.9, 1, 1, 26, -6.55, -3.43, 1, 1, 26, -1.28, 6.72, 1, 2, 26, 24.37, -0.02, 0.06034, 27, 0.56, -0.03, 0.93966, 2, 27, 15.47, 0.13, 0.599, 28, -0.12, 0.13, 0.401, 1, 26, 21.96, -0.28, 1, 1, 27, 13.66, 0.11, 1, 1, 27, 11.03, 0.09, 1, 2, 26, 19.92, -0.51, 0.99995, 27, -3.9, -0.44, 5.0E-5 ],
  314. "hull": 18,
  315. "edges": [ 38, 14, 32, 34, 14, 12, 30, 32, 14, 16, 24, 36, 36, 4, 24, 26, 40, 36, 26, 40, 4, 2, 40, 2, 16, 18, 18, 38, 10, 12, 38, 10, 18, 20, 38, 42, 20, 42, 8, 10, 42, 8, 20, 22, 44, 42, 22, 44, 6, 8, 44, 6, 22, 24, 4, 6, 26, 28, 28, 30, 32, 46, 46, 40, 28, 46, 2, 0, 0, 34, 46, 0 ],
  316. "width": 35,
  317. "height": 56
  318. }
  319. },
  320. "youtui": {
  321. "youtui": {
  322. "type": "mesh",
  323. "uvs": [ 1, 0.39044, 1, 0.4228, 1, 0.47563, 1, 0.67931, 1, 0.72899, 1, 0.77494, 1, 1, 0, 1, 0, 0.90812, 0.29137, 0.82057, 0.35651, 0.77707, 0.42248, 0.73302, 0.41194, 0.68768, 0.36219, 0.47375, 0.35268, 0.43286, 0.34344, 0.39311, 0.25203, 0, 0.51863, 0, 1, 0, 0.65848, 0.44373, 0.67159, 0.83389, 0.6433, 0.39557, 0.65955, 0.47557, 0.66818, 0.73251, 0.66656, 0.68421, 0.66965, 0.77609 ],
  324. "triangles": [ 7, 8, 9, 20, 9, 10, 20, 10, 25, 7, 9, 20, 20, 5, 6, 7, 20, 6, 2, 22, 19, 24, 22, 2, 3, 24, 2, 12, 13, 22, 12, 22, 24, 23, 24, 3, 4, 23, 3, 11, 12, 24, 11, 24, 23, 25, 23, 4, 5, 25, 4, 25, 10, 11, 25, 11, 23, 20, 25, 5, 21, 17, 18, 15, 16, 17, 21, 15, 17, 18, 0, 21, 19, 21, 0, 14, 15, 21, 1, 19, 0, 14, 21, 19, 13, 14, 19, 13, 19, 22, 2, 19, 1 ],
  325. "vertices": [ 2, 20, 14.66, 10.25, 0.79141, 21, -3.95, 9.94, 0.20859, 2, 20, 16.65, 9.98, 0.64527, 21, -1.95, 9.84, 0.35473, 2, 20, 19.89, 9.53, 0.35937, 21, 1.32, 9.68, 0.64063, 1, 21, 13.94, 9.08, 1, 2, 21, 17.01, 8.93, 0.99357, 22, -10.94, -1.02, 0.00643, 2, 21, 19.86, 8.8, 0.93116, 22, -9.52, 1.45, 0.06884, 2, 21, 33.8, 8.13, 0.13119, 22, -2.55, 13.54, 0.86881, 1, 22, 20.84, 0.06, 1, 1, 22, 18, -4.88, 1, 2, 21, 21.77, -10.45, 0.10556, 22, 8.47, -5.65, 0.89444, 2, 21, 19.16, -8.56, 0.3714, 22, 5.6, -7.11, 0.6286, 2, 21, 16.52, -6.66, 0.74533, 22, 2.7, -8.59, 0.25467, 2, 21, 13.7, -6.8, 0.93385, 22, 1.54, -11.17, 0.06615, 2, 20, 17.41, -7.52, 0.53899, 21, 0.38, -7.51, 0.46101, 2, 20, 14.86, -7.42, 0.78626, 21, -2.16, -7.65, 0.21374, 2, 20, 12.39, -7.33, 0.93078, 21, -4.64, -7.78, 0.06922, 1, 20, -12.09, -6.43, 1, 1, 20, -11.1, 0.7, 1, 1, 20, -9.32, 13.58, 1, 1, 20, 16.67, 0.66, 1, 1, 22, -0.01, 0.19, 1, 1, 20, 13.65, 0.67, 1, 2, 20, 18.62, 0.42, 0.00166, 21, 0.88, 0.5, 0.99834, 2, 21, 16.8, -0.03, 0.99963, 22, -3.07, -5.31, 3.7E-4, 1, 21, 13.81, 0.07, 1, 2, 21, 19.5, -0.12, 0.99353, 22, -1.75, -2.94, 0.00647 ],
  326. "hull": 19,
  327. "edges": [ 12, 14, 14, 16, 18, 16, 32, 34, 34, 36, 40, 14, 28, 38, 38, 2, 28, 30, 30, 32, 34, 42, 42, 38, 30, 42, 2, 0, 0, 36, 42, 0, 26, 28, 38, 44, 26, 44, 2, 4, 44, 4, 22, 46, 46, 8, 22, 24, 24, 26, 44, 48, 48, 46, 24, 48, 4, 6, 6, 8, 48, 6, 18, 20, 20, 22, 40, 50, 50, 46, 20, 50, 8, 10, 10, 12, 50, 10 ],
  328. "width": 27,
  329. "height": 62
  330. }
  331. },
  332. "youyan": {
  333. "youyan": { "x": 6.41, "y": -1.9, "rotation": -93.3, "width": 21, "height": 22 }
  334. },
  335. "zuiba": {
  336. "zuiba": { "x": 1.61, "y": -0.03, "rotation": -100.01, "width": 13, "height": 6 }
  337. },
  338. "zuoshou": {
  339. "zuoshou": {
  340. "type": "mesh",
  341. "uvs": [ 1, 0.16833, 0.392, 1, 0.12485, 1, 0, 1, 0, 0.67335, 0.16924, 0.57115, 0.21214, 0.54524, 0.24111, 0.52774, 0.42874, 0.32246, 0.4702, 0.2771, 0.49441, 0.25061, 0.72348, 0, 1, 0, 0.62206, 0.39504, 0.3549, 0.7139, 0.59237, 0.72127, 0.77854, 0.46874, 0.65392, 0.36173, 0.81118, 0.42446, 0.68625, 0.32794, 0.83177, 0.39653, 0.41727, 0.63945, 0.5455, 0.78647, 0.39239, 0.66915, 0.56741, 0.756 ],
  342. "triangles": [ 4, 2, 3, 14, 2, 4, 1, 14, 22, 2, 14, 1, 16, 1, 22, 21, 7, 8, 21, 8, 13, 23, 7, 21, 6, 7, 23, 14, 6, 23, 5, 6, 14, 15, 21, 13, 24, 21, 15, 23, 21, 24, 22, 23, 24, 14, 23, 22, 14, 4, 5, 24, 15, 16, 16, 22, 24, 19, 11, 12, 19, 10, 11, 0, 19, 12, 17, 10, 19, 9, 10, 17, 13, 9, 17, 8, 9, 13, 20, 19, 0, 18, 19, 20, 17, 19, 18, 16, 17, 18, 13, 17, 16, 15, 13, 16, 18, 1, 16, 20, 1, 18, 0, 1, 20 ],
  343. "vertices": [ 1, 23, 2.88, 6.45, 1, 2, 24, 29.38, 10.07, 0.00484, 25, 11.6, 9.15, 0.99516, 1, 25, 16.72, 0.39, 1, 1, 25, 19.11, -3.71, 1, 2, 24, 24.27, -11.69, 0.15138, 25, 4.73, -12.11, 0.84862, 2, 24, 16.31, -9.41, 0.66858, 25, -3.02, -9.19, 0.33142, 2, 24, 14.29, -8.83, 0.82643, 25, -4.98, -8.45, 0.17357, 2, 24, 12.93, -8.44, 0.91003, 25, -6.31, -7.95, 0.08997, 2, 23, 20.4, -8.59, 0.36624, 24, 0.27, -8.6, 0.63376, 2, 23, 17.61, -8.35, 0.64576, 24, -2.53, -8.64, 0.35424, 2, 23, 15.98, -8.22, 0.77958, 24, -4.17, -8.66, 0.22042, 1, 23, 0.57, -6.92, 1, 1, 23, -4.6, 2.23, 1, 1, 23, 20.01, -0.37, 1, 2, 24, 18.23, 0.55, 0.80156, 25, -0.29, 0.57, 0.19844, 2, 24, 13.36, 8.16, 0.91264, 25, -4.52, 8.55, 0.08736, 2, 23, 20.36, 6.66, 0.70971, 24, -1.24, 6.57, 0.29029, 2, 23, 17.93, -0.15, 0.99761, 24, -3, -0.44, 0.00239, 2, 23, 17.78, 6.62, 0.93098, 24, -3.81, 6.29, 0.06902, 1, 23, 15.83, 0.07, 1, 2, 23, 16.16, 6.61, 0.98666, 24, -5.42, 6.11, 0.01334, 2, 24, 13.76, 0.31, 0.99988, 25, -4.76, 0.7, 1.2E-4, 2, 24, 17.11, 8.6, 0.65073, 25, -0.75, 8.69, 0.34927, 2, 24, 15.54, 0.41, 0.99707, 25, -2.98, 0.65, 0.00293, 2, 24, 15.36, 8.39, 0.79793, 25, -2.51, 8.63, 0.20207 ],
  344. "hull": 13,
  345. "edges": [ 4, 6, 28, 4, 22, 24, 6, 8, 0, 24, 2, 4, 0, 2, 14, 16, 16, 26, 32, 30, 32, 26, 16, 18, 34, 26, 18, 34, 36, 32, 34, 36, 18, 20, 20, 22, 24, 38, 38, 34, 20, 38, 0, 40, 40, 36, 38, 40, 26, 42, 14, 42, 42, 30, 8, 10, 10, 28, 2, 44, 28, 44, 10, 12, 12, 14, 28, 46, 46, 42, 12, 46, 30, 48, 48, 44, 46, 48 ],
  346. "width": 38,
  347. "height": 51
  348. }
  349. },
  350. "zuotui": {
  351. "zuotui": {
  352. "type": "mesh",
  353. "uvs": [ 1, 0.38039, 1, 0.4023, 1, 0.42152, 1, 0.66538, 1, 0.71498, 1, 1, 0, 1, 0, 0.91513, 0.39184, 0.74871, 0.47098, 0.7151, 0.46388, 0.67323, 0.42121, 0.42179, 0.41755, 0.40022, 0.4142, 0.38048, 0.34965, 0, 0.64605, 0, 1, 0, 0.68472, 0.75777, 0.68259, 0.71601, 0.68039, 0.67291, 0.66786, 0.4274, 0.66545, 0.38014, 0.66652, 0.40108 ],
  354. "triangles": [ 8, 9, 17, 6, 7, 8, 6, 8, 17, 17, 4, 5, 6, 17, 5, 19, 20, 2, 3, 19, 2, 10, 11, 20, 10, 20, 19, 18, 19, 3, 9, 10, 19, 4, 18, 3, 9, 19, 18, 17, 18, 4, 9, 18, 17, 21, 15, 16, 21, 16, 0, 13, 14, 15, 13, 15, 21, 12, 13, 21, 22, 21, 0, 12, 21, 22, 22, 0, 1, 20, 22, 1, 11, 12, 22, 2, 20, 1, 11, 22, 20 ],
  355. "vertices": [ 2, 17, 13.66, 9.21, 0.73955, 18, -2.84, 9.26, 0.26045, 2, 17, 15.01, 9.19, 0.62582, 18, -1.48, 9.22, 0.37418, 2, 17, 16.21, 9.18, 0.51491, 18, -0.29, 9.18, 0.48509, 2, 18, 14.83, 8.7, 0.97838, 19, -9.89, 2.68, 0.02162, 2, 18, 17.9, 8.61, 0.8656, 19, -7.57, 4.71, 0.1344, 1, 19, 5.73, 16.33, 1, 1, 19, 23.5, -4, 1, 1, 19, 19.54, -7.46, 1, 2, 18, 19.47, -7.87, 0.12992, 19, 4.8, -6.28, 0.87008, 2, 18, 17.45, -5.67, 0.50137, 19, 1.83, -6.04, 0.49863, 2, 18, 14.85, -5.78, 0.83545, 19, 0, -7.9, 0.16455, 2, 17, 15.98, -6.45, 0.54198, 18, -0.76, -6.44, 0.45802, 2, 17, 14.64, -6.53, 0.7075, 18, -2.1, -6.49, 0.2925, 2, 17, 13.42, -6.6, 0.82519, 18, -3.33, -6.55, 0.17481, 1, 17, -10.2, -7.98, 1, 1, 17, -10.07, 0.02, 1, 1, 17, -9.93, 9.58, 1, 2, 18, 20.28, 0.01, 0.47625, 19, 0.03, 0.04, 0.52375, 1, 18, 17.69, 0.04, 1, 1, 18, 15.02, 0.06, 1, 2, 17, 16.43, 0.2, 0.6484, 18, -0.21, 0.21, 0.3516, 1, 17, 13.5, 0.18, 1, 2, 17, 14.8, 0.19, 0.99968, 18, -1.84, 0.22, 3.2E-4 ],
  356. "hull": 17,
  357. "edges": [ 10, 12, 12, 14, 28, 30, 30, 32, 34, 12, 36, 34, 18, 36, 10, 8, 36, 8, 14, 16, 16, 18, 16, 34, 18, 20, 38, 36, 20, 38, 8, 6, 38, 6, 20, 22, 40, 38, 22, 40, 6, 4, 40, 4, 26, 28, 30, 42, 26, 42, 0, 32, 42, 0, 22, 24, 24, 26, 40, 44, 44, 42, 24, 44, 0, 2, 2, 4, 44, 2 ],
  358. "width": 27,
  359. "height": 62
  360. }
  361. },
  362. "zuoyan": {
  363. "zuoyan": { "x": 6.72, "y": 1.1, "rotation": -94.2, "width": 18, "height": 21 }
  364. }
  365. }
  366. },
  367. "animations": {
  368. "stand1": {
  369. "slots": {
  370. "biyan": {
  371. "attachment": [
  372. { "time": 1.4333, "name": "biyan" },
  373. { "time": 1.5333, "name": null },
  374. { "time": 2.7667, "name": "biyan" },
  375. { "time": 2.8667, "name": null }
  376. ]
  377. },
  378. "xiao": {
  379. "attachment": [
  380. { "time": 0, "name": null },
  381. { "time": 0.6667, "name": null },
  382. { "time": 0.8, "name": "xiao" },
  383. { "time": 0.9667, "name": null },
  384. { "time": 1.1, "name": "xiao" },
  385. { "time": 1.2667, "name": null },
  386. { "time": 1.4, "name": "xiao" },
  387. { "time": 1.5667, "name": null },
  388. { "time": 1.7, "name": "xiao" },
  389. { "time": 1.8667, "name": null },
  390. { "time": 2, "name": "xiao" },
  391. { "time": 2.1667, "name": null },
  392. { "time": 2.3, "name": "xiao" },
  393. { "time": 2.4667, "name": null },
  394. { "time": 2.6, "name": "xiao" },
  395. { "time": 2.7667, "name": null },
  396. { "time": 2.9, "name": "xiao" },
  397. { "time": 3.0667, "name": null },
  398. { "time": 3.2, "name": "xiao" },
  399. { "time": 3.3667, "name": null }
  400. ]
  401. },
  402. "youyan": {
  403. "attachment": [
  404. { "time": 1.4333, "name": null },
  405. { "time": 1.5333, "name": "youyan" },
  406. { "time": 2.7667, "name": null },
  407. { "time": 2.8667, "name": "youyan" }
  408. ]
  409. },
  410. "zuiba": {
  411. "attachment": [
  412. { "time": 0, "name": "zuiba" },
  413. { "time": 0.6667, "name": "zuiba" },
  414. { "time": 0.8, "name": null },
  415. { "time": 0.9667, "name": "zuiba" },
  416. { "time": 1.1, "name": null },
  417. { "time": 1.2667, "name": "zuiba" },
  418. { "time": 1.4, "name": null },
  419. { "time": 1.5667, "name": "zuiba" },
  420. { "time": 1.7, "name": null },
  421. { "time": 1.8667, "name": "zuiba" },
  422. { "time": 2, "name": null },
  423. { "time": 2.1667, "name": "zuiba" },
  424. { "time": 2.3, "name": null },
  425. { "time": 2.4667, "name": "zuiba" },
  426. { "time": 2.6, "name": null },
  427. { "time": 2.7667, "name": "zuiba" },
  428. { "time": 2.9, "name": null },
  429. { "time": 3.0667, "name": "zuiba" },
  430. { "time": 3.2, "name": null },
  431. { "time": 3.3667, "name": "zuiba" }
  432. ]
  433. },
  434. "zuoyan": {
  435. "attachment": [
  436. { "time": 1.4333, "name": null },
  437. { "time": 1.5333, "name": "zuoyan" },
  438. { "time": 2.7667, "name": null },
  439. { "time": 2.8667, "name": "zuoyan" }
  440. ]
  441. }
  442. },
  443. "bones": {
  444. "root": {
  445. "rotate": [
  446. { "time": 0, "angle": 0 }
  447. ],
  448. "translate": [
  449. { "time": 0, "x": 0, "y": 0 }
  450. ],
  451. "scale": [
  452. { "time": 0, "x": 0.65, "y": 0.65 }
  453. ]
  454. },
  455. "bone": {
  456. "rotate": [
  457. { "time": 0, "angle": 0 }
  458. ],
  459. "translate": [
  460. { "time": 0, "x": 0.71, "y": 0.51 }
  461. ]
  462. },
  463. "bone2": {
  464. "rotate": [
  465. { "time": 0, "angle": 0, "curve": "stepped" },
  466. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  467. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  468. { "time": 2, "angle": 0, "curve": "stepped" },
  469. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  470. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  471. { "time": 4, "angle": 0 }
  472. ],
  473. "translate": [
  474. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  475. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  476. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  477. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  478. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  479. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  480. { "time": 4, "x": 0, "y": 0 }
  481. ]
  482. },
  483. "bone3": {
  484. "rotate": [
  485. { "time": 0, "angle": 0, "curve": "stepped" },
  486. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  487. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  488. { "time": 2, "angle": 0, "curve": "stepped" },
  489. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  490. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  491. { "time": 4, "angle": 0 }
  492. ],
  493. "translate": [
  494. { "time": 0, "x": 0, "y": 0 },
  495. { "time": 0.6667, "x": 0.2, "y": 2.71 },
  496. { "time": 1.3333, "x": 0, "y": 0 },
  497. { "time": 2, "x": 0.2, "y": 2.71 },
  498. { "time": 2.6667, "x": 0, "y": 0 },
  499. { "time": 3.3333, "x": 0.2, "y": 2.71 },
  500. { "time": 4, "x": 0, "y": 0 }
  501. ],
  502. "scale": [
  503. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  504. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  505. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  506. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  507. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  508. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  509. { "time": 4, "x": 1, "y": 1 }
  510. ]
  511. },
  512. "bone4": {
  513. "rotate": [
  514. { "time": 0, "angle": 0, "curve": "stepped" },
  515. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  516. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  517. { "time": 2, "angle": 0, "curve": "stepped" },
  518. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  519. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  520. { "time": 4, "angle": 0 }
  521. ],
  522. "translate": [
  523. { "time": 0, "x": 0, "y": 0 },
  524. { "time": 0.6667, "x": 0.77, "y": -0.2 },
  525. { "time": 1.3333, "x": 0, "y": 0 },
  526. { "time": 2, "x": 0.77, "y": -0.2 },
  527. { "time": 2.6667, "x": 0, "y": 0 },
  528. { "time": 3.3333, "x": 0.77, "y": -0.2 },
  529. { "time": 4, "x": 0, "y": 0 }
  530. ],
  531. "scale": [
  532. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  533. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  534. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  535. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  536. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  537. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  538. { "time": 4, "x": 1, "y": 1 }
  539. ]
  540. },
  541. "bone5": {
  542. "rotate": [
  543. { "time": 0, "angle": 0 },
  544. { "time": 0.6667, "angle": 8.73, "curve": "stepped" },
  545. { "time": 1.3333, "angle": 8.73, "curve": "stepped" },
  546. { "time": 2, "angle": 8.73 },
  547. { "time": 2.6667, "angle": 0 },
  548. { "time": 3.3333, "angle": 8.73 },
  549. { "time": 4, "angle": 0 }
  550. ],
  551. "translate": [
  552. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  553. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  554. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  555. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  556. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  557. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  558. { "time": 4, "x": 0, "y": 0 }
  559. ],
  560. "scale": [
  561. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  562. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  563. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  564. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  565. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  566. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  567. { "time": 4, "x": 1, "y": 1 }
  568. ]
  569. },
  570. "bone6": {
  571. "rotate": [
  572. { "time": 0, "angle": 0, "curve": "stepped" },
  573. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  574. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  575. { "time": 2, "angle": 0, "curve": "stepped" },
  576. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  577. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  578. { "time": 4, "angle": 0 }
  579. ],
  580. "translate": [
  581. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  582. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  583. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  584. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  585. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  586. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  587. { "time": 4, "x": 0, "y": 0 }
  588. ],
  589. "scale": [
  590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  591. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  592. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  593. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  594. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  595. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  596. { "time": 4, "x": 1, "y": 1 }
  597. ]
  598. },
  599. "bone7": {
  600. "rotate": [
  601. { "time": 0, "angle": 0, "curve": "stepped" },
  602. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  603. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  604. { "time": 2, "angle": 0, "curve": "stepped" },
  605. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  606. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  607. { "time": 4, "angle": 0 }
  608. ],
  609. "translate": [
  610. { "time": 0, "x": 0, "y": 0 },
  611. { "time": 0.6667, "x": -0.02, "y": -0.35 },
  612. { "time": 1.3333, "x": 0, "y": 0 },
  613. { "time": 2, "x": -0.02, "y": -0.35 },
  614. { "time": 2.6667, "x": 0, "y": 0 },
  615. { "time": 3.3333, "x": -0.02, "y": -0.35 },
  616. { "time": 4, "x": 0, "y": 0 }
  617. ],
  618. "scale": [
  619. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  620. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  621. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  622. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  623. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  624. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  625. { "time": 4, "x": 1, "y": 1 }
  626. ]
  627. },
  628. "bone8": {
  629. "rotate": [
  630. { "time": 0, "angle": 0 },
  631. { "time": 0.2667, "angle": -6.48 },
  632. { "time": 0.6667, "angle": -2.47 },
  633. { "time": 1.3333, "angle": 0 },
  634. { "time": 1.6, "angle": -6.48 },
  635. { "time": 2, "angle": -2.47 },
  636. { "time": 2.6667, "angle": 0 },
  637. { "time": 2.9333, "angle": -6.48 },
  638. { "time": 3.3333, "angle": -2.47 },
  639. { "time": 4, "angle": 0 }
  640. ],
  641. "translate": [
  642. { "time": 0, "x": 0, "y": 0 },
  643. { "time": 0.6667, "x": -0.06, "y": -0.78 },
  644. { "time": 1.3333, "x": 0, "y": 0 },
  645. { "time": 2, "x": -0.06, "y": -0.78 },
  646. { "time": 2.6667, "x": 0, "y": 0 },
  647. { "time": 3.3333, "x": -0.06, "y": -0.78 },
  648. { "time": 4, "x": 0, "y": 0 }
  649. ],
  650. "scale": [
  651. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  652. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  653. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  654. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  655. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  656. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  657. { "time": 4, "x": 1, "y": 1 }
  658. ]
  659. },
  660. "bone9": {
  661. "rotate": [
  662. { "time": 0, "angle": 0 },
  663. { "time": 0.2667, "angle": 6.4 },
  664. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  665. { "time": 1.3333, "angle": 0 },
  666. { "time": 1.6, "angle": 6.4 },
  667. { "time": 2, "angle": 0, "curve": "stepped" },
  668. { "time": 2.6667, "angle": 0 },
  669. { "time": 2.9333, "angle": 6.4 },
  670. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  671. { "time": 4, "angle": 0 }
  672. ],
  673. "translate": [
  674. { "time": 0, "x": 0, "y": 0 },
  675. { "time": 0.2667, "x": 0.11, "y": 0.62 },
  676. { "time": 0.6667, "x": -0.23, "y": -0.59 },
  677. { "time": 1.3333, "x": 0, "y": 0 },
  678. { "time": 1.6, "x": 0.11, "y": 0.62 },
  679. { "time": 2, "x": -0.23, "y": -0.59 },
  680. { "time": 2.6667, "x": 0, "y": 0 },
  681. { "time": 2.9333, "x": 0.11, "y": 0.62 },
  682. { "time": 3.3333, "x": -0.23, "y": -0.59 },
  683. { "time": 4, "x": 0, "y": 0 }
  684. ],
  685. "scale": [
  686. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  689. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  690. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  691. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  692. { "time": 4, "x": 1, "y": 1 }
  693. ]
  694. },
  695. "bone10": {
  696. "rotate": [
  697. { "time": 0, "angle": 0, "curve": "stepped" },
  698. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  699. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  700. { "time": 2, "angle": 0, "curve": "stepped" },
  701. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  702. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  703. { "time": 4, "angle": 0 }
  704. ],
  705. "translate": [
  706. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  707. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  708. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  709. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  710. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  711. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  712. { "time": 4, "x": 0, "y": 0 }
  713. ],
  714. "scale": [
  715. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  716. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  717. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  718. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  719. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  720. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  721. { "time": 4, "x": 1, "y": 1 }
  722. ]
  723. },
  724. "bone11": {
  725. "rotate": [
  726. { "time": 0, "angle": 0 },
  727. { "time": 0.6667, "angle": -6.17 },
  728. { "time": 1.3333, "angle": 0 },
  729. { "time": 2, "angle": -6.17 },
  730. { "time": 2.6667, "angle": 0 },
  731. { "time": 3.3333, "angle": -6.17 },
  732. { "time": 4, "angle": 0 }
  733. ],
  734. "translate": [
  735. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  736. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  737. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  738. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  739. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  741. { "time": 4, "x": 0, "y": 0 }
  742. ],
  743. "scale": [
  744. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  745. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  746. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  747. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  748. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  749. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  750. { "time": 4, "x": 1, "y": 1 }
  751. ]
  752. },
  753. "bone12": {
  754. "rotate": [
  755. { "time": 0, "angle": 0, "curve": "stepped" },
  756. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  757. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  758. { "time": 2, "angle": 0, "curve": "stepped" },
  759. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  760. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  761. { "time": 4, "angle": 0 }
  762. ],
  763. "translate": [
  764. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  765. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  766. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  767. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  768. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  769. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  770. { "time": 4, "x": 0, "y": 0 }
  771. ],
  772. "scale": [
  773. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  774. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  775. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  776. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  777. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  778. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  779. { "time": 4, "x": 1, "y": 1 }
  780. ]
  781. },
  782. "bone13": {
  783. "rotate": [
  784. { "time": 0, "angle": 0, "curve": "stepped" },
  785. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  786. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  787. { "time": 2, "angle": 0, "curve": "stepped" },
  788. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  789. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  790. { "time": 4, "angle": 0 }
  791. ],
  792. "translate": [
  793. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  794. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  795. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  796. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  797. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  798. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  799. { "time": 4, "x": 0, "y": 0 }
  800. ],
  801. "scale": [
  802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  803. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  804. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  805. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  806. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  807. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  808. { "time": 4, "x": 1, "y": 1 }
  809. ]
  810. },
  811. "bone14": {
  812. "rotate": [
  813. { "time": 0, "angle": 0, "curve": "stepped" },
  814. { "time": 0.6667, "angle": 0 },
  815. { "time": 0.9, "angle": -6.31 },
  816. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  817. { "time": 2, "angle": 0 },
  818. { "time": 2.2333, "angle": -6.31 },
  819. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  820. { "time": 3.3333, "angle": 0 },
  821. { "time": 3.5667, "angle": -6.31 },
  822. { "time": 4, "angle": 0 }
  823. ],
  824. "translate": [
  825. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  829. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  830. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 4, "x": 0, "y": 0 }
  832. ],
  833. "scale": [
  834. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  835. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  836. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  837. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  838. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  839. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  840. { "time": 4, "x": 1, "y": 1 }
  841. ]
  842. },
  843. "bone15": {
  844. "rotate": [
  845. { "time": 0, "angle": 0, "curve": "stepped" },
  846. { "time": 0.6667, "angle": 0 },
  847. { "time": 0.9, "angle": 6.92 },
  848. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  849. { "time": 2, "angle": 0 },
  850. { "time": 2.2333, "angle": 6.92 },
  851. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  852. { "time": 3.3333, "angle": 0 },
  853. { "time": 3.5667, "angle": 6.92 },
  854. { "time": 4, "angle": 0 }
  855. ],
  856. "translate": [
  857. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  858. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  859. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  860. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  861. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  862. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  863. { "time": 4, "x": 0, "y": 0 }
  864. ],
  865. "scale": [
  866. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  867. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  868. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  869. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  870. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  871. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  872. { "time": 4, "x": 1, "y": 1 }
  873. ]
  874. },
  875. "bone16": {
  876. "rotate": [
  877. { "time": 0, "angle": 0, "curve": "stepped" },
  878. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  879. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  880. { "time": 2, "angle": 0, "curve": "stepped" },
  881. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  882. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  883. { "time": 4, "angle": 0 }
  884. ],
  885. "translate": [
  886. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  887. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  888. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  889. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  890. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  891. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  892. { "time": 4, "x": 0, "y": 0 }
  893. ],
  894. "scale": [
  895. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  896. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  897. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  898. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  899. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  900. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  901. { "time": 4, "x": 1, "y": 1 }
  902. ]
  903. },
  904. "bone17": {
  905. "rotate": [
  906. { "time": 0, "angle": 0, "curve": "stepped" },
  907. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  908. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  909. { "time": 2, "angle": 0, "curve": "stepped" },
  910. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  911. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  912. { "time": 4, "angle": 0 }
  913. ],
  914. "translate": [
  915. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  916. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  917. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  918. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  919. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  920. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  921. { "time": 4, "x": 0, "y": 0 }
  922. ],
  923. "scale": [
  924. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  925. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  926. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  927. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  928. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  929. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  930. { "time": 4, "x": 1, "y": 1 }
  931. ]
  932. },
  933. "bone18": {
  934. "rotate": [
  935. { "time": 0, "angle": 0, "curve": "stepped" },
  936. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  937. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  938. { "time": 2, "angle": 0, "curve": "stepped" },
  939. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  940. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  941. { "time": 4, "angle": 0 }
  942. ],
  943. "translate": [
  944. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  945. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  946. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  947. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  948. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  949. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  950. { "time": 4, "x": 0, "y": 0 }
  951. ],
  952. "scale": [
  953. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  954. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  955. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  956. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  957. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  958. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  959. { "time": 4, "x": 1, "y": 1 }
  960. ]
  961. },
  962. "bone19": {
  963. "rotate": [
  964. { "time": 0, "angle": 0, "curve": "stepped" },
  965. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  966. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  967. { "time": 2, "angle": 0, "curve": "stepped" },
  968. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  969. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  970. { "time": 4, "angle": 0 }
  971. ],
  972. "translate": [
  973. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  974. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  975. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  976. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  977. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  978. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  979. { "time": 4, "x": 0, "y": 0 }
  980. ],
  981. "scale": [
  982. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  983. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  984. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  985. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  986. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  987. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  988. { "time": 4, "x": 1, "y": 1 }
  989. ]
  990. },
  991. "bone20": {
  992. "rotate": [
  993. { "time": 0, "angle": 0, "curve": "stepped" },
  994. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  995. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  996. { "time": 2, "angle": 0, "curve": "stepped" },
  997. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  998. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  999. { "time": 4, "angle": 0 }
  1000. ],
  1001. "translate": [
  1002. { "time": 0, "x": 0, "y": 0 },
  1003. { "time": 0.6667, "x": -2.68, "y": -0.35 },
  1004. { "time": 1.3333, "x": 0, "y": 0 },
  1005. { "time": 2, "x": -2.68, "y": -0.35 },
  1006. { "time": 2.6667, "x": 0, "y": 0 },
  1007. { "time": 3.3333, "x": -2.68, "y": -0.35 },
  1008. { "time": 4, "x": 0, "y": 0 }
  1009. ],
  1010. "scale": [
  1011. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1012. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1013. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1014. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1015. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1016. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1017. { "time": 4, "x": 1, "y": 1 }
  1018. ]
  1019. },
  1020. "bone21": {
  1021. "rotate": [
  1022. { "time": 0, "angle": 0, "curve": "stepped" },
  1023. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1024. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1025. { "time": 2, "angle": 0, "curve": "stepped" },
  1026. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1027. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1028. { "time": 4, "angle": 0 }
  1029. ],
  1030. "translate": [
  1031. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1034. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1035. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1036. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1037. { "time": 4, "x": 0, "y": 0 }
  1038. ],
  1039. "scale": [
  1040. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1044. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 4, "x": 1, "y": 1 }
  1047. ]
  1048. },
  1049. "bone22": {
  1050. "rotate": [
  1051. { "time": 0, "angle": 0, "curve": "stepped" },
  1052. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1053. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1054. { "time": 2, "angle": 0, "curve": "stepped" },
  1055. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1056. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1057. { "time": 4, "angle": 0 }
  1058. ],
  1059. "translate": [
  1060. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1061. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1062. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1063. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1064. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1065. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1066. { "time": 4, "x": 0, "y": 0 }
  1067. ],
  1068. "scale": [
  1069. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1070. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1071. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1072. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1073. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1074. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1075. { "time": 4, "x": 1, "y": 1 }
  1076. ]
  1077. },
  1078. "bone23": {
  1079. "rotate": [
  1080. { "time": 0, "angle": -346.76 },
  1081. { "time": 0.5667, "angle": -319.07 },
  1082. { "time": 1.3333, "angle": 13.72 },
  1083. { "time": 1.5667, "angle": 6.32 },
  1084. { "time": 1.7333, "angle": 1.44, "curve": "stepped" },
  1085. { "time": 2, "angle": 1.44, "curve": "stepped" },
  1086. { "time": 3.3333, "angle": 1.44 },
  1087. { "time": 3.7333, "angle": 13.24 }
  1088. ],
  1089. "translate": [
  1090. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1091. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1092. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1093. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1094. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1095. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1096. { "time": 3.7333, "x": 0, "y": 0 }
  1097. ],
  1098. "scale": [
  1099. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1100. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1101. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1102. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1103. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1104. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1105. { "time": 3.7333, "x": 1, "y": 1 }
  1106. ]
  1107. },
  1108. "bone24": {
  1109. "rotate": [
  1110. { "time": 0, "angle": 0.93 },
  1111. { "time": 0.5667, "angle": -16.57 },
  1112. { "time": 1.3333, "angle": 11.69 },
  1113. { "time": 1.5667, "angle": -45.23 },
  1114. { "time": 1.7333, "angle": -69.43, "curve": "stepped" },
  1115. { "time": 2, "angle": -69.43, "curve": "stepped" },
  1116. { "time": 3.3333, "angle": -69.43 },
  1117. { "time": 3.6, "angle": -19.81 },
  1118. { "time": 3.7333, "angle": 0.93 }
  1119. ],
  1120. "translate": [
  1121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1122. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1123. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1124. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1126. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1127. { "time": 3.7333, "x": 0, "y": 0 }
  1128. ],
  1129. "scale": [
  1130. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1131. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1132. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1135. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1136. { "time": 3.7333, "x": 1, "y": 1 }
  1137. ]
  1138. },
  1139. "bone25": {
  1140. "rotate": [
  1141. { "time": 0, "angle": 0, "curve": "stepped" },
  1142. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  1143. { "time": 1.3333, "angle": 0 },
  1144. { "time": 1.7333, "angle": 22.14 },
  1145. { "time": 2, "angle": 14.03, "curve": "stepped" },
  1146. { "time": 3.3333, "angle": 14.03 },
  1147. { "time": 3.5, "angle": -9.26 },
  1148. { "time": 3.7333, "angle": 0 }
  1149. ],
  1150. "translate": [
  1151. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1152. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  1153. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1154. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1156. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1157. { "time": 3.7333, "x": 0, "y": 0 }
  1158. ],
  1159. "scale": [
  1160. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1161. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  1162. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1163. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  1164. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1165. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1166. { "time": 3.7333, "x": 1, "y": 1 }
  1167. ]
  1168. },
  1169. "bone26": {
  1170. "rotate": [
  1171. { "time": 0, "angle": -16.33 },
  1172. { "time": 0.5, "angle": 296.69, "curve": "stepped" },
  1173. { "time": 3.3333, "angle": 296.69 },
  1174. { "time": 4, "angle": -16.33 }
  1175. ],
  1176. "translate": [
  1177. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1178. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1179. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1180. { "time": 4, "x": 0, "y": 0 }
  1181. ],
  1182. "scale": [
  1183. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1184. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1185. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1186. { "time": 4, "x": 1, "y": 1 }
  1187. ]
  1188. },
  1189. "bone27": {
  1190. "rotate": [
  1191. { "time": 0, "angle": -16.2 },
  1192. { "time": 0.5, "angle": -79.88, "curve": "stepped" },
  1193. { "time": 3.3333, "angle": -79.88 },
  1194. { "time": 4, "angle": -16.2 }
  1195. ],
  1196. "translate": [
  1197. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1198. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1199. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1200. { "time": 4, "x": 0, "y": 0 }
  1201. ],
  1202. "scale": [
  1203. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1204. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1205. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 4, "x": 1, "y": 1 }
  1207. ]
  1208. },
  1209. "bone28": {
  1210. "rotate": [
  1211. { "time": 0, "angle": 0 },
  1212. { "time": 0.5, "angle": -53.64, "curve": "stepped" },
  1213. { "time": 3.3333, "angle": -53.64 },
  1214. { "time": 4, "angle": 0 }
  1215. ],
  1216. "translate": [
  1217. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1218. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1219. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1220. { "time": 4, "x": 0, "y": 0 }
  1221. ],
  1222. "scale": [
  1223. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1224. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1225. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1226. { "time": 4, "x": 1, "y": 1 }
  1227. ]
  1228. },
  1229. "bone29": {
  1230. "rotate": [
  1231. { "time": 0, "angle": 0, "curve": "stepped" },
  1232. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1233. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1234. { "time": 2, "angle": 0, "curve": "stepped" },
  1235. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1236. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1237. { "time": 4, "angle": 0 }
  1238. ],
  1239. "translate": [
  1240. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1241. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1242. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1243. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1244. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1245. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 4, "x": 0, "y": 0 }
  1247. ],
  1248. "scale": [
  1249. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1250. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1251. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1252. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1254. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1255. { "time": 4, "x": 1, "y": 1 }
  1256. ]
  1257. },
  1258. "bone30": {
  1259. "rotate": [
  1260. { "time": 0, "angle": 0, "curve": "stepped" },
  1261. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1262. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1263. { "time": 2, "angle": 0, "curve": "stepped" },
  1264. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1265. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1266. { "time": 4, "angle": 0 }
  1267. ],
  1268. "translate": [
  1269. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1272. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1273. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1274. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1275. { "time": 4, "x": 0, "y": 0 }
  1276. ],
  1277. "scale": [
  1278. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1279. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1280. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1281. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1282. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1283. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1284. { "time": 4, "x": 1, "y": 1 }
  1285. ]
  1286. },
  1287. "bone31": {
  1288. "rotate": [
  1289. { "time": 0, "angle": 0, "curve": "stepped" },
  1290. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1291. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1292. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1293. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1294. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1295. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1296. { "time": 2.8667, "angle": 0, "curve": "stepped" },
  1297. { "time": 2.9667, "angle": 0 }
  1298. ],
  1299. "translate": [
  1300. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1301. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1302. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1303. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1304. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1305. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1306. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1307. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  1308. { "time": 2.9667, "x": 0, "y": 0 }
  1309. ],
  1310. "scale": [
  1311. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1312. { "time": 1.3333, "x": 1, "y": 1 },
  1313. { "time": 1.4333, "x": 0.481, "y": 1, "curve": "stepped" },
  1314. { "time": 1.5333, "x": 0.481, "y": 1 },
  1315. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1316. { "time": 2.6667, "x": 1, "y": 1 },
  1317. { "time": 2.7667, "x": 0.481, "y": 1, "curve": "stepped" },
  1318. { "time": 2.8667, "x": 0.481, "y": 1 },
  1319. { "time": 2.9667, "x": 1, "y": 1 }
  1320. ]
  1321. },
  1322. "bone32": {
  1323. "rotate": [
  1324. { "time": 0, "angle": 0, "curve": "stepped" },
  1325. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1326. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1327. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1328. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1329. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1330. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1331. { "time": 2.8667, "angle": 0, "curve": "stepped" },
  1332. { "time": 2.9667, "angle": 0 }
  1333. ],
  1334. "translate": [
  1335. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1336. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1337. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  1338. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  1339. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1340. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1341. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1342. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  1343. { "time": 2.9667, "x": 0, "y": 0 }
  1344. ],
  1345. "scale": [
  1346. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1347. { "time": 1.3333, "x": 1, "y": 1 },
  1348. { "time": 1.4333, "x": 0.474, "y": 1, "curve": "stepped" },
  1349. { "time": 1.5333, "x": 0.474, "y": 1 },
  1350. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1351. { "time": 2.6667, "x": 1, "y": 1 },
  1352. { "time": 2.7667, "x": 0.474, "y": 1, "curve": "stepped" },
  1353. { "time": 2.8667, "x": 0.474, "y": 1 },
  1354. { "time": 2.9667, "x": 1, "y": 1 }
  1355. ]
  1356. },
  1357. "bone33": {
  1358. "rotate": [
  1359. { "time": 0, "angle": 0, "curve": "stepped" },
  1360. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1361. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1362. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1363. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1364. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1365. { "time": 2.8667, "angle": 0, "curve": "stepped" },
  1366. { "time": 4, "angle": 0 }
  1367. ],
  1368. "translate": [
  1369. { "time": 0, "x": -1.48, "y": 0.16 }
  1370. ],
  1371. "scale": [
  1372. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1373. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1374. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1375. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1376. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1377. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1378. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1379. { "time": 4, "x": 1, "y": 1 }
  1380. ]
  1381. },
  1382. "bone34": {
  1383. "rotate": [
  1384. { "time": 0, "angle": 0, "curve": "stepped" },
  1385. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1386. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  1387. { "time": 1.5333, "angle": 0, "curve": "stepped" },
  1388. { "time": 1.6333, "angle": 0, "curve": "stepped" },
  1389. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1390. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1391. { "time": 2.8667, "angle": 0, "curve": "stepped" },
  1392. { "time": 2.9667, "angle": 0 }
  1393. ],
  1394. "translate": [
  1395. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1396. { "time": 1.3333, "x": 0, "y": 0 },
  1397. { "time": 1.4333, "x": -1.59, "y": 0.15, "curve": "stepped" },
  1398. { "time": 1.5333, "x": -1.59, "y": 0.15 },
  1399. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  1400. { "time": 2.6667, "x": 0, "y": 0 },
  1401. { "time": 2.7667, "x": -1.59, "y": 0.15, "curve": "stepped" },
  1402. { "time": 2.8667, "x": -1.59, "y": 0.15 },
  1403. { "time": 2.9667, "x": 0, "y": 0 }
  1404. ],
  1405. "scale": [
  1406. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1407. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1408. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  1409. { "time": 1.5333, "x": 1, "y": 1, "curve": "stepped" },
  1410. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  1411. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1412. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1413. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  1414. { "time": 2.9667, "x": 1, "y": 1 }
  1415. ]
  1416. },
  1417. "bone35": {
  1418. "rotate": [
  1419. { "time": 0, "angle": 0 },
  1420. { "time": 0.6667, "angle": 22.53 },
  1421. { "time": 1.3333, "angle": 0 },
  1422. { "time": 2, "angle": 22.53 },
  1423. { "time": 2.6667, "angle": 0 },
  1424. { "time": 3.3333, "angle": 22.53 },
  1425. { "time": 4, "angle": 0 }
  1426. ],
  1427. "translate": [
  1428. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1429. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1430. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1431. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1432. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1433. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1434. { "time": 4, "x": 0, "y": 0 }
  1435. ],
  1436. "scale": [
  1437. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1438. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1439. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1440. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1441. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1442. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1443. { "time": 4, "x": 1, "y": 1 }
  1444. ]
  1445. },
  1446. "bone39": {
  1447. "rotate": [
  1448. { "time": 0, "angle": 0, "curve": "stepped" },
  1449. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1450. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1451. { "time": 2, "angle": 0, "curve": "stepped" },
  1452. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1453. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1454. { "time": 4, "angle": 0 }
  1455. ],
  1456. "translate": [
  1457. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1458. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1459. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1460. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1461. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1462. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1463. { "time": 4, "x": 0, "y": 0 }
  1464. ],
  1465. "scale": [
  1466. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1467. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1468. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1469. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1470. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1471. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1472. { "time": 4, "x": 1, "y": 1 }
  1473. ]
  1474. },
  1475. "bone40": {
  1476. "rotate": [
  1477. { "time": 0, "angle": 0, "curve": "stepped" },
  1478. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1479. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1480. { "time": 2, "angle": 0, "curve": "stepped" },
  1481. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1482. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1483. { "time": 4, "angle": 0 }
  1484. ],
  1485. "translate": [
  1486. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1487. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1488. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1489. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1490. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1491. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1492. { "time": 4, "x": 0, "y": 0 }
  1493. ],
  1494. "scale": [
  1495. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1496. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1497. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1498. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1500. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1501. { "time": 4, "x": 1, "y": 1 }
  1502. ]
  1503. },
  1504. "bone41": {
  1505. "rotate": [
  1506. { "time": 0, "angle": 0 },
  1507. { "time": 0.6667, "angle": -1.21 },
  1508. { "time": 1.3333, "angle": 0 },
  1509. { "time": 2, "angle": -1.21 },
  1510. { "time": 2.6667, "angle": 0 },
  1511. { "time": 3.3333, "angle": -1.21 },
  1512. { "time": 4, "angle": 0 }
  1513. ],
  1514. "translate": [
  1515. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1516. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1517. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1518. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1519. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 4, "x": 0, "y": 0 }
  1522. ],
  1523. "scale": [
  1524. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1525. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1526. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1528. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1529. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1530. { "time": 4, "x": 1, "y": 1 }
  1531. ]
  1532. },
  1533. "bone42": {
  1534. "rotate": [
  1535. { "time": 0, "angle": 0 },
  1536. { "time": 0.6667, "angle": -1.21 },
  1537. { "time": 1.3333, "angle": 0 },
  1538. { "time": 2, "angle": -1.21 },
  1539. { "time": 2.6667, "angle": 0 },
  1540. { "time": 3.3333, "angle": -1.21 },
  1541. { "time": 4, "angle": 0 }
  1542. ],
  1543. "translate": [
  1544. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1545. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1546. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1547. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1548. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1549. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1550. { "time": 4, "x": 0, "y": 0 }
  1551. ],
  1552. "scale": [
  1553. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1554. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1555. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1556. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1557. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1558. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1559. { "time": 4, "x": 1, "y": 1 }
  1560. ]
  1561. },
  1562. "bone43": {
  1563. "rotate": [
  1564. { "time": 0, "angle": 0 },
  1565. { "time": 0.6667, "angle": -1.21 },
  1566. { "time": 1.3333, "angle": 0 },
  1567. { "time": 2, "angle": -1.21 },
  1568. { "time": 2.6667, "angle": 0 },
  1569. { "time": 3.3333, "angle": -1.21 },
  1570. { "time": 4, "angle": 0 }
  1571. ],
  1572. "translate": [
  1573. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1574. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1575. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1576. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1577. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1578. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1579. { "time": 4, "x": 0, "y": 0 }
  1580. ],
  1581. "scale": [
  1582. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1583. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1584. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1585. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1586. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1587. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1588. { "time": 4, "x": 1, "y": 1 }
  1589. ]
  1590. },
  1591. "bone44": {
  1592. "rotate": [
  1593. { "time": 0, "angle": 0 },
  1594. { "time": 0.6667, "angle": -1.21 },
  1595. { "time": 1.3333, "angle": 0 },
  1596. { "time": 2, "angle": -1.21 },
  1597. { "time": 2.6667, "angle": 0 },
  1598. { "time": 3.3333, "angle": -1.21 },
  1599. { "time": 4, "angle": 0 }
  1600. ],
  1601. "translate": [
  1602. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1603. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1604. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1605. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1606. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1607. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1608. { "time": 4, "x": 0, "y": 0 }
  1609. ],
  1610. "scale": [
  1611. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1612. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1613. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1614. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1615. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1616. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1617. { "time": 4, "x": 1, "y": 1 }
  1618. ]
  1619. },
  1620. "bone45": {
  1621. "rotate": [
  1622. { "time": 0, "angle": 0 },
  1623. { "time": 0.6667, "angle": -3.78 },
  1624. { "time": 1.3333, "angle": 0 },
  1625. { "time": 2, "angle": -3.78 },
  1626. { "time": 2.6667, "angle": 0 },
  1627. { "time": 3.3333, "angle": -3.78 },
  1628. { "time": 4, "angle": 0 }
  1629. ],
  1630. "translate": [
  1631. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1632. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1633. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1634. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1635. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1636. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1637. { "time": 4, "x": 0, "y": 0 }
  1638. ],
  1639. "scale": [
  1640. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1641. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1642. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1644. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1645. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1646. { "time": 4, "x": 1, "y": 1 }
  1647. ]
  1648. },
  1649. "bone46": {
  1650. "rotate": [
  1651. { "time": 0, "angle": 0 },
  1652. { "time": 0.6667, "angle": -3.78 },
  1653. { "time": 1.3333, "angle": 0 },
  1654. { "time": 2, "angle": -3.78 },
  1655. { "time": 2.6667, "angle": 0 },
  1656. { "time": 3.3333, "angle": -3.78 },
  1657. { "time": 4, "angle": 0 }
  1658. ],
  1659. "translate": [
  1660. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1661. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1662. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1663. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1664. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1665. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1666. { "time": 4, "x": 0, "y": 0 }
  1667. ],
  1668. "scale": [
  1669. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1670. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1671. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1672. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1673. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1674. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1675. { "time": 4, "x": 1, "y": 1 }
  1676. ]
  1677. },
  1678. "bone47": {
  1679. "rotate": [
  1680. { "time": 0, "angle": 0 },
  1681. { "time": 0.6667, "angle": -3.78 },
  1682. { "time": 1.3333, "angle": 0 },
  1683. { "time": 2, "angle": -3.78 },
  1684. { "time": 2.6667, "angle": 0 },
  1685. { "time": 3.3333, "angle": -3.78 },
  1686. { "time": 4, "angle": 0 }
  1687. ],
  1688. "translate": [
  1689. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1690. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1691. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1692. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1693. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1694. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1695. { "time": 4, "x": 0, "y": 0 }
  1696. ],
  1697. "scale": [
  1698. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1699. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1700. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1701. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1702. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1703. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1704. { "time": 4, "x": 1, "y": 1 }
  1705. ]
  1706. },
  1707. "bone48": {
  1708. "rotate": [
  1709. { "time": 0, "angle": 0 },
  1710. { "time": 0.6667, "angle": -3.78 },
  1711. { "time": 1.3333, "angle": 0 },
  1712. { "time": 2, "angle": -3.78 },
  1713. { "time": 2.6667, "angle": 0 },
  1714. { "time": 3.3333, "angle": -3.78 },
  1715. { "time": 4, "angle": 0 }
  1716. ],
  1717. "translate": [
  1718. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1720. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1721. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1722. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1723. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1724. { "time": 4, "x": 0, "y": 0 }
  1725. ],
  1726. "scale": [
  1727. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1729. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1730. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1731. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1732. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1733. { "time": 4, "x": 1, "y": 1 }
  1734. ]
  1735. },
  1736. "bone49": {
  1737. "rotate": [
  1738. { "time": 0, "angle": 0 },
  1739. { "time": 0.6667, "angle": 3.87 },
  1740. { "time": 1.3333, "angle": 0 },
  1741. { "time": 2, "angle": 3.87 },
  1742. { "time": 2.6667, "angle": 0 },
  1743. { "time": 3.3333, "angle": 3.87 },
  1744. { "time": 4, "angle": 0 }
  1745. ],
  1746. "translate": [
  1747. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1748. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1749. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1750. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1751. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1752. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1753. { "time": 4, "x": 0, "y": 0 }
  1754. ],
  1755. "scale": [
  1756. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1757. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1758. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1759. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1760. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1761. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1762. { "time": 4, "x": 1, "y": 1 }
  1763. ]
  1764. },
  1765. "bone50": {
  1766. "rotate": [
  1767. { "time": 0, "angle": 0, "curve": "stepped" },
  1768. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1769. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1770. { "time": 2, "angle": 0, "curve": "stepped" },
  1771. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1772. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1773. { "time": 4, "angle": 0 }
  1774. ],
  1775. "translate": [
  1776. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1777. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1778. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1779. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1780. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1781. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1782. { "time": 4, "x": 0, "y": 0 }
  1783. ],
  1784. "scale": [
  1785. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1786. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1787. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1788. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1789. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1790. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1791. { "time": 4, "x": 1, "y": 1 }
  1792. ]
  1793. },
  1794. "bone51": {
  1795. "rotate": [
  1796. { "time": 0, "angle": 0 },
  1797. { "time": 0.6667, "angle": -6.01 },
  1798. { "time": 1.3333, "angle": 0 },
  1799. { "time": 2, "angle": -6.01 },
  1800. { "time": 2.6667, "angle": 0 },
  1801. { "time": 3.3333, "angle": -6.01 },
  1802. { "time": 4, "angle": 0 }
  1803. ],
  1804. "translate": [
  1805. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1806. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1807. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1808. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1809. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1810. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1811. { "time": 4, "x": 0, "y": 0 }
  1812. ],
  1813. "scale": [
  1814. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1815. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1816. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1817. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1818. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1819. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1820. { "time": 4, "x": 1, "y": 1 }
  1821. ]
  1822. },
  1823. "bone52": {
  1824. "rotate": [
  1825. { "time": 0, "angle": 0 },
  1826. { "time": 0.6667, "angle": -6.01 },
  1827. { "time": 1.3333, "angle": 0 },
  1828. { "time": 2, "angle": -6.01 },
  1829. { "time": 2.6667, "angle": 0 },
  1830. { "time": 3.3333, "angle": -6.01 },
  1831. { "time": 4, "angle": 0 }
  1832. ],
  1833. "translate": [
  1834. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1835. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1836. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1837. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1838. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1839. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1840. { "time": 4, "x": 0, "y": 0 }
  1841. ],
  1842. "scale": [
  1843. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1844. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1845. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1846. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1847. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1848. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1849. { "time": 4, "x": 1, "y": 1 }
  1850. ]
  1851. },
  1852. "bone53": {
  1853. "rotate": [
  1854. { "time": 0, "angle": 0 },
  1855. { "time": 0.6667, "angle": -6.01 },
  1856. { "time": 1.3333, "angle": 0 },
  1857. { "time": 2, "angle": -6.01 },
  1858. { "time": 2.6667, "angle": 0 },
  1859. { "time": 3.3333, "angle": -6.01 },
  1860. { "time": 4, "angle": 0 }
  1861. ],
  1862. "translate": [
  1863. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1864. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1865. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1866. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1867. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1868. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1869. { "time": 4, "x": 0, "y": 0 }
  1870. ],
  1871. "scale": [
  1872. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1873. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1874. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1875. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1876. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1877. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1878. { "time": 4, "x": 1, "y": 1 }
  1879. ]
  1880. },
  1881. "bone54": {
  1882. "rotate": [
  1883. { "time": 0, "angle": 0 },
  1884. { "time": 0.6667, "angle": -6.01 },
  1885. { "time": 1.3333, "angle": 0 },
  1886. { "time": 2, "angle": -6.01 },
  1887. { "time": 2.6667, "angle": 0 },
  1888. { "time": 3.3333, "angle": -6.01 },
  1889. { "time": 4, "angle": 0 }
  1890. ],
  1891. "translate": [
  1892. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1893. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1894. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1895. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1896. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1897. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1898. { "time": 4, "x": 0, "y": 0 }
  1899. ],
  1900. "scale": [
  1901. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1902. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1903. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1904. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1905. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1906. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1907. { "time": 4, "x": 1, "y": 1 }
  1908. ]
  1909. },
  1910. "bone55": {
  1911. "rotate": [
  1912. { "time": 0, "angle": 0, "curve": "stepped" },
  1913. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1914. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1915. { "time": 2, "angle": 0, "curve": "stepped" },
  1916. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  1917. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  1918. { "time": 4, "angle": 0 }
  1919. ],
  1920. "translate": [
  1921. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1922. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1923. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1924. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1925. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1926. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1927. { "time": 4, "x": 0, "y": 0 }
  1928. ],
  1929. "scale": [
  1930. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1931. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1932. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1933. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1934. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1935. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1936. { "time": 4, "x": 1, "y": 1 }
  1937. ]
  1938. },
  1939. "bone56": {
  1940. "rotate": [
  1941. { "time": 0, "angle": 0 },
  1942. { "time": 0.6667, "angle": -10.74 },
  1943. { "time": 1.3333, "angle": 0 },
  1944. { "time": 2, "angle": -10.74 },
  1945. { "time": 2.6667, "angle": 0 },
  1946. { "time": 3.3333, "angle": -10.74 },
  1947. { "time": 4, "angle": 0 }
  1948. ],
  1949. "translate": [
  1950. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1951. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1952. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1953. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1954. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1955. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1956. { "time": 4, "x": 0, "y": 0 }
  1957. ],
  1958. "scale": [
  1959. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1960. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1961. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1962. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1963. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1964. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1965. { "time": 4, "x": 1, "y": 1 }
  1966. ]
  1967. },
  1968. "bone57": {
  1969. "rotate": [
  1970. { "time": 0, "angle": 0 },
  1971. { "time": 0.6667, "angle": -3.58 },
  1972. { "time": 1.3333, "angle": 0 },
  1973. { "time": 2, "angle": -3.58 },
  1974. { "time": 2.6667, "angle": 0 },
  1975. { "time": 3.3333, "angle": -3.58 },
  1976. { "time": 4, "angle": 0 }
  1977. ],
  1978. "translate": [
  1979. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1980. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1981. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1982. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1983. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  1984. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  1985. { "time": 4, "x": 0, "y": 0 }
  1986. ],
  1987. "scale": [
  1988. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1989. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1990. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1991. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1992. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  1993. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  1994. { "time": 4, "x": 1, "y": 1 }
  1995. ]
  1996. },
  1997. "bone58": {
  1998. "rotate": [
  1999. { "time": 0, "angle": 0 },
  2000. { "time": 0.6667, "angle": -3.58 },
  2001. { "time": 1.3333, "angle": 0 },
  2002. { "time": 2, "angle": -3.58 },
  2003. { "time": 2.6667, "angle": 0 },
  2004. { "time": 3.3333, "angle": -3.58 },
  2005. { "time": 4, "angle": 0 }
  2006. ],
  2007. "translate": [
  2008. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2011. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2012. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2013. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2014. { "time": 4, "x": 0, "y": 0 }
  2015. ],
  2016. "scale": [
  2017. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2018. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2019. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2021. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2022. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2023. { "time": 4, "x": 1, "y": 1 }
  2024. ]
  2025. },
  2026. "bone59": {
  2027. "rotate": [
  2028. { "time": 0, "angle": 0 },
  2029. { "time": 0.6667, "angle": -3.58 },
  2030. { "time": 1.3333, "angle": 0 },
  2031. { "time": 2, "angle": -3.58 },
  2032. { "time": 2.6667, "angle": 0 },
  2033. { "time": 3.3333, "angle": -3.58 },
  2034. { "time": 4, "angle": 0 }
  2035. ],
  2036. "translate": [
  2037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2038. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2039. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2040. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 4, "x": 0, "y": 0 }
  2044. ],
  2045. "scale": [
  2046. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2047. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2048. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2049. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2050. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2052. { "time": 4, "x": 1, "y": 1 }
  2053. ]
  2054. },
  2055. "bone60": {
  2056. "rotate": [
  2057. { "time": 0, "angle": 0 },
  2058. { "time": 0.6667, "angle": 7.15 },
  2059. { "time": 1.3333, "angle": 0 },
  2060. { "time": 2, "angle": 7.15 },
  2061. { "time": 2.6667, "angle": 0 },
  2062. { "time": 3.3333, "angle": 7.15 },
  2063. { "time": 4, "angle": 0 }
  2064. ],
  2065. "translate": [
  2066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2067. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2068. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2069. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2070. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2071. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2072. { "time": 4, "x": 0, "y": 0 }
  2073. ],
  2074. "scale": [
  2075. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2076. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2077. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2078. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2079. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2080. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2081. { "time": 4, "x": 1, "y": 1 }
  2082. ]
  2083. },
  2084. "bone61": {
  2085. "rotate": [
  2086. { "time": 0, "angle": 0, "curve": "stepped" },
  2087. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2088. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2089. { "time": 2, "angle": 0, "curve": "stepped" },
  2090. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2091. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2092. { "time": 4, "angle": 0 }
  2093. ],
  2094. "translate": [
  2095. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2096. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2097. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2098. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2099. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 4, "x": 0, "y": 0 }
  2102. ],
  2103. "scale": [
  2104. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2105. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2106. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2107. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2108. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2109. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2110. { "time": 4, "x": 1, "y": 1 }
  2111. ]
  2112. },
  2113. "bone62": {
  2114. "rotate": [
  2115. { "time": 0, "angle": 0, "curve": "stepped" },
  2116. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2117. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2118. { "time": 2, "angle": 0, "curve": "stepped" },
  2119. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2120. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2121. { "time": 4, "angle": 0 }
  2122. ],
  2123. "translate": [
  2124. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2125. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2126. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2127. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2128. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2129. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2130. { "time": 4, "x": 0, "y": 0 }
  2131. ],
  2132. "scale": [
  2133. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2134. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2135. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2136. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2137. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2138. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2139. { "time": 4, "x": 1, "y": 1 }
  2140. ]
  2141. },
  2142. "bone63": {
  2143. "rotate": [
  2144. { "time": 0, "angle": 0, "curve": "stepped" },
  2145. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2146. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2147. { "time": 2, "angle": 0, "curve": "stepped" },
  2148. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2149. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2150. { "time": 4, "angle": 0 }
  2151. ],
  2152. "translate": [
  2153. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2154. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2155. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2156. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2157. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2158. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2159. { "time": 4, "x": 0, "y": 0 }
  2160. ],
  2161. "scale": [
  2162. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2163. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2164. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2165. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2166. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2167. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2168. { "time": 4, "x": 1, "y": 1 }
  2169. ]
  2170. },
  2171. "bone64": {
  2172. "rotate": [
  2173. { "time": 0, "angle": 0, "curve": "stepped" },
  2174. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2175. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2176. { "time": 2, "angle": 0, "curve": "stepped" },
  2177. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2178. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2179. { "time": 4, "angle": 0 }
  2180. ],
  2181. "translate": [
  2182. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2183. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2184. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2185. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2186. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2187. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2188. { "time": 4, "x": 0, "y": 0 }
  2189. ],
  2190. "scale": [
  2191. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2192. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2193. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2194. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2195. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2196. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2197. { "time": 4, "x": 1, "y": 1 }
  2198. ]
  2199. },
  2200. "bone65": {
  2201. "rotate": [
  2202. { "time": 0, "angle": 0, "curve": "stepped" },
  2203. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2204. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2205. { "time": 2, "angle": 0, "curve": "stepped" },
  2206. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2207. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2208. { "time": 4, "angle": 0 }
  2209. ],
  2210. "translate": [
  2211. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2212. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2213. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2214. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2215. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2216. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2217. { "time": 4, "x": 0, "y": 0 }
  2218. ],
  2219. "scale": [
  2220. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2221. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2222. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2223. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2224. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2225. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2226. { "time": 4, "x": 1, "y": 1 }
  2227. ]
  2228. },
  2229. "bone66": {
  2230. "rotate": [
  2231. { "time": 0, "angle": 0, "curve": "stepped" },
  2232. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2233. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2234. { "time": 2, "angle": 0, "curve": "stepped" },
  2235. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2236. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2237. { "time": 4, "angle": 0 }
  2238. ],
  2239. "translate": [
  2240. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2241. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2242. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2243. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 4, "x": 0, "y": 0 }
  2247. ],
  2248. "scale": [
  2249. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2250. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 4, "x": 1, "y": 1 }
  2256. ]
  2257. },
  2258. "bone67": {
  2259. "rotate": [
  2260. { "time": 0, "angle": 0, "curve": "stepped" },
  2261. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2262. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2263. { "time": 2, "angle": 0, "curve": "stepped" },
  2264. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2265. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2266. { "time": 4, "angle": 0 }
  2267. ],
  2268. "translate": [
  2269. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2270. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2271. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2272. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2273. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2274. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2275. { "time": 4, "x": 0, "y": 0 }
  2276. ],
  2277. "scale": [
  2278. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2279. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2280. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2281. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2282. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2283. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2284. { "time": 4, "x": 1, "y": 1 }
  2285. ]
  2286. },
  2287. "bone68": {
  2288. "rotate": [
  2289. { "time": 0, "angle": 0, "curve": "stepped" },
  2290. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2291. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2292. { "time": 2, "angle": 0, "curve": "stepped" },
  2293. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2294. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2295. { "time": 4, "angle": 0 }
  2296. ],
  2297. "translate": [
  2298. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2299. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2300. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2301. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2302. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2304. { "time": 4, "x": 0, "y": 0 }
  2305. ],
  2306. "scale": [
  2307. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2308. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2309. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2310. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2311. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2312. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2313. { "time": 4, "x": 1, "y": 1 }
  2314. ]
  2315. },
  2316. "bone69": {
  2317. "rotate": [
  2318. { "time": 0, "angle": 0, "curve": "stepped" },
  2319. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2320. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2321. { "time": 2, "angle": 0, "curve": "stepped" },
  2322. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2323. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2324. { "time": 4, "angle": 0 }
  2325. ],
  2326. "translate": [
  2327. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2330. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2331. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2332. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2333. { "time": 4, "x": 0, "y": 0 }
  2334. ],
  2335. "scale": [
  2336. { "time": 0, "x": 1, "y": 1 },
  2337. { "time": 0.6667, "x": 1, "y": 0.756 },
  2338. { "time": 1.3333, "x": 1, "y": 1 },
  2339. { "time": 2, "x": 1, "y": 0.756 },
  2340. { "time": 2.6667, "x": 1, "y": 1 },
  2341. { "time": 3.3333, "x": 1, "y": 0.756 },
  2342. { "time": 4, "x": 1, "y": 1 }
  2343. ]
  2344. },
  2345. "bone70": {
  2346. "rotate": [
  2347. { "time": 0, "angle": 0, "curve": "stepped" },
  2348. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2349. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2350. { "time": 2, "angle": 0, "curve": "stepped" },
  2351. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2352. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2353. { "time": 4, "angle": 0 }
  2354. ],
  2355. "translate": [
  2356. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2357. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2358. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2359. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2360. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2361. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2362. { "time": 4, "x": 0, "y": 0 }
  2363. ],
  2364. "scale": [
  2365. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2366. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2367. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2368. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2369. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2370. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2371. { "time": 4, "x": 1, "y": 1 }
  2372. ]
  2373. },
  2374. "bone71": {
  2375. "rotate": [
  2376. { "time": 0, "angle": 0, "curve": "stepped" },
  2377. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2378. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  2379. { "time": 2, "angle": 0, "curve": "stepped" },
  2380. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  2381. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  2382. { "time": 4, "angle": 0 }
  2383. ],
  2384. "translate": [
  2385. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2386. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2387. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2388. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2389. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2390. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2391. { "time": 4, "x": 0, "y": 0 }
  2392. ],
  2393. "scale": [
  2394. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2397. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2398. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2399. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2400. { "time": 4, "x": 1, "y": 1 }
  2401. ]
  2402. },
  2403. "bone37": {
  2404. "rotate": [
  2405. { "time": 0, "angle": 0 },
  2406. { "time": 0.6667, "angle": 7.25 },
  2407. { "time": 1.3333, "angle": 0 },
  2408. { "time": 2, "angle": 7.25 },
  2409. { "time": 2.6667, "angle": 0 },
  2410. { "time": 3.3333, "angle": 7.25 },
  2411. { "time": 4, "angle": 0 }
  2412. ],
  2413. "translate": [
  2414. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2415. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2416. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2417. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2418. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2419. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2420. { "time": 4, "x": 0, "y": 0 }
  2421. ],
  2422. "scale": [
  2423. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2424. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2425. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2426. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2427. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2428. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2429. { "time": 4, "x": 1, "y": 1 }
  2430. ]
  2431. },
  2432. "bone38": {
  2433. "rotate": [
  2434. { "time": 0, "angle": -13.03 },
  2435. { "time": 0.6667, "angle": -5.12 },
  2436. { "time": 1.3333, "angle": -13.03 },
  2437. { "time": 2, "angle": -5.12 },
  2438. { "time": 2.6667, "angle": -13.03 },
  2439. { "time": 3.3333, "angle": -5.12 },
  2440. { "time": 4, "angle": -13.03 }
  2441. ],
  2442. "translate": [
  2443. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2444. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2445. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2446. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2447. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2448. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2449. { "time": 4, "x": 0, "y": 0 }
  2450. ],
  2451. "scale": [
  2452. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2454. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2455. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2456. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2457. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2458. { "time": 4, "x": 1, "y": 1 }
  2459. ]
  2460. },
  2461. "bone72": {
  2462. "rotate": [
  2463. { "time": 0, "angle": -13.03 },
  2464. { "time": 0.6667, "angle": -34.07 },
  2465. { "time": 1.3333, "angle": -13.03 },
  2466. { "time": 2, "angle": -34.07 },
  2467. { "time": 2.6667, "angle": -13.03 },
  2468. { "time": 3.3333, "angle": -34.07 },
  2469. { "time": 4, "angle": -13.03 }
  2470. ],
  2471. "translate": [
  2472. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2473. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2474. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2475. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2476. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  2477. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  2478. { "time": 4, "x": 0, "y": 0 }
  2479. ],
  2480. "scale": [
  2481. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2482. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2483. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2484. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2485. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2486. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2487. { "time": 4, "x": 1, "y": 1 }
  2488. ]
  2489. },
  2490. "bone36": {
  2491. "rotate": [
  2492. { "time": 0, "angle": 0 },
  2493. { "time": 0.6667, "angle": 4.34 },
  2494. { "time": 1.3333, "angle": 0 },
  2495. { "time": 2, "angle": 4.34 },
  2496. { "time": 2.6667, "angle": 0 },
  2497. { "time": 3.3333, "angle": 4.34 },
  2498. { "time": 4, "angle": 0 }
  2499. ],
  2500. "translate": [
  2501. { "time": 0, "x": 0, "y": 0 },
  2502. { "time": 0.6667, "x": -0.43, "y": 1.25 },
  2503. { "time": 1.3333, "x": 0, "y": 0 },
  2504. { "time": 2, "x": -0.43, "y": 1.25 },
  2505. { "time": 2.6667, "x": 0, "y": 0 },
  2506. { "time": 3.3333, "x": -0.43, "y": 1.25 },
  2507. { "time": 4, "x": 0, "y": 0 }
  2508. ],
  2509. "scale": [
  2510. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2511. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  2515. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 4, "x": 1, "y": 1 }
  2517. ]
  2518. },
  2519. "bone73": {
  2520. "translate": [
  2521. { "time": 0, "x": 0, "y": 0 },
  2522. { "time": 0.6667, "x": 1.93, "y": 1.46, "curve": "stepped" },
  2523. { "time": 3.3333, "x": 1.93, "y": 1.46 },
  2524. { "time": 4, "x": 0, "y": 0 }
  2525. ]
  2526. }
  2527. },
  2528. "deform": {
  2529. "default": {
  2530. "qunzi2": {
  2531. "qunzi2": [
  2532. { "time": 0 },
  2533. {
  2534. "time": 0.6667,
  2535. "offset": 2,
  2536. "vertices": [ -2.02199, -0.06418, -1.21517, 0.27059, -2.50342, -0.28885, -3.14717, 5.29013, -3.14717, 5.29013, -0.31639, 2.74183, 0.71888, 1.09766 ]
  2537. },
  2538. { "time": 1.3333 },
  2539. {
  2540. "time": 2,
  2541. "offset": 2,
  2542. "vertices": [ -2.02199, -0.06418, -1.21517, 0.27059, -2.50342, -0.28885, -3.14717, 5.29013, -3.14717, 5.29013, -0.31639, 2.74183, 0.71888, 1.09766 ]
  2543. },
  2544. { "time": 2.6667 },
  2545. {
  2546. "time": 3.3333,
  2547. "offset": 2,
  2548. "vertices": [ -2.02199, -0.06418, -1.21517, 0.27059, -2.50342, -0.28885, -3.14717, 5.29013, -3.14717, 5.29013, -0.31639, 2.74183, 0.71888, 1.09766 ]
  2549. },
  2550. { "time": 4 }
  2551. ]
  2552. },
  2553. "shenti": {
  2554. "shenti": [
  2555. { "time": 0 },
  2556. {
  2557. "time": 0.6667,
  2558. "offset": 446,
  2559. "vertices": [ 1.07239, 0.36865, 1.13096, 0.08316, -1.11217, -0.22139, 1.26481, 0.01184, 1.2261, -0.31091, -1.25494, 0.15802, 0.94232, 0.74693, 1.10163, 0.48208, -1.03403, -0.61369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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.07239, 0.36865, 1.13096, 0.08316, -0.86778, 0.73003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.17281, 0.5355, 2.23767, -0.036, -2.21609, -0.27654, 2.10773, 0.72464, 2.22305, 0.16346, -1.70576, 1.4349, 1.6397, 0.56371, 1.72939, 0.12716, -1.70057, -0.33852, 1.6397, 0.56371, 1.72939, 0.12716, -1.70057, -0.33852 ]
  2560. },
  2561. { "time": 1.3333 },
  2562. {
  2563. "time": 2,
  2564. "offset": 446,
  2565. "vertices": [ 1.07239, 0.36865, 1.13096, 0.08316, -1.11217, -0.22139, 1.26481, 0.01184, 1.2261, -0.31091, -1.25494, 0.15802, 0.94232, 0.74693, 1.10163, 0.48208, -1.03403, -0.61369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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.07239, 0.36865, 1.13096, 0.08316, -0.86778, 0.73003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.17281, 0.5355, 2.23767, -0.036, -2.21609, -0.27654, 2.10773, 0.72464, 2.22305, 0.16346, -1.70576, 1.4349, 1.6397, 0.56371, 1.72939, 0.12716, -1.70057, -0.33852, 1.6397, 0.56371, 1.72939, 0.12716, -1.70057, -0.33852 ]
  2566. },
  2567. { "time": 2.6667 },
  2568. {
  2569. "time": 3.3333,
  2570. "offset": 446,
  2571. "vertices": [ 1.07239, 0.36865, 1.13096, 0.08316, -1.11217, -0.22139, 1.26481, 0.01184, 1.2261, -0.31091, -1.25494, 0.15802, 0.94232, 0.74693, 1.10163, 0.48208, -1.03403, -0.61369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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.07239, 0.36865, 1.13096, 0.08316, -0.86778, 0.73003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.17281, 0.5355, 2.23767, -0.036, -2.21609, -0.27654, 2.10773, 0.72464, 2.22305, 0.16346, -1.70576, 1.4349, 1.6397, 0.56371, 1.72939, 0.12716, -1.70057, -0.33852, 1.6397, 0.56371, 1.72939, 0.12716, -1.70057, -0.33852 ]
  2572. },
  2573. { "time": 4 }
  2574. ]
  2575. },
  2576. "toufa6": {
  2577. "toufa6": [
  2578. { "time": 0 },
  2579. {
  2580. "time": 0.6667,
  2581. "vertices": [ -2.41652, -0.05791 ]
  2582. },
  2583. { "time": 1.3333 },
  2584. {
  2585. "time": 2,
  2586. "vertices": [ -2.41652, -0.05791 ]
  2587. },
  2588. { "time": 2.6667 },
  2589. {
  2590. "time": 3.3333,
  2591. "vertices": [ -2.41652, -0.05791 ]
  2592. },
  2593. { "time": 4 }
  2594. ]
  2595. }
  2596. }
  2597. }
  2598. },
  2599. "walk1": {
  2600. "slots": {
  2601. "biyan": {
  2602. "attachment": [
  2603. { "time": 1.1, "name": "biyan" },
  2604. { "time": 1.2, "name": null }
  2605. ]
  2606. },
  2607. "youyan": {
  2608. "attachment": [
  2609. { "time": 1.1, "name": null },
  2610. { "time": 1.2, "name": "youyan" }
  2611. ]
  2612. },
  2613. "zuoyan": {
  2614. "attachment": [
  2615. { "time": 1.1, "name": null },
  2616. { "time": 1.2, "name": "zuoyan" }
  2617. ]
  2618. }
  2619. },
  2620. "bones": {
  2621. "root": {
  2622. "rotate": [
  2623. { "time": 0, "angle": 0 }
  2624. ],
  2625. "translate": [
  2626. { "time": 0, "x": 0, "y": 0 }
  2627. ],
  2628. "scale": [
  2629. { "time": 0, "x": 0.65, "y": 0.65 }
  2630. ]
  2631. },
  2632. "bone": {
  2633. "rotate": [
  2634. { "time": 0, "angle": 0 }
  2635. ],
  2636. "translate": [
  2637. { "time": 0, "x": 0.71, "y": 0.51 }
  2638. ]
  2639. },
  2640. "bone2": {
  2641. "rotate": [
  2642. { "time": 0, "angle": 0, "curve": "stepped" },
  2643. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2644. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2645. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2646. { "time": 1, "angle": 0, "curve": "stepped" },
  2647. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2648. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2649. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  2650. { "time": 2, "angle": 0 }
  2651. ],
  2652. "translate": [
  2653. { "time": 0, "x": 0, "y": 0.82 },
  2654. { "time": 0.1667, "x": 0, "y": 0 },
  2655. { "time": 0.5, "x": 0, "y": 0.82 },
  2656. { "time": 0.6667, "x": 0, "y": 0 },
  2657. { "time": 1, "x": 0, "y": 0.82 },
  2658. { "time": 1.1667, "x": 0, "y": 0 },
  2659. { "time": 1.5, "x": 0, "y": 0.82 },
  2660. { "time": 1.6667, "x": 0, "y": 0 },
  2661. { "time": 2, "x": 0, "y": 0.82 }
  2662. ]
  2663. },
  2664. "bone3": {
  2665. "rotate": [
  2666. { "time": 0, "angle": 0, "curve": "stepped" },
  2667. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2668. { "time": 1, "angle": 0, "curve": "stepped" },
  2669. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2670. { "time": 2, "angle": 0 }
  2671. ],
  2672. "translate": [
  2673. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2674. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2675. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2676. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2677. { "time": 2, "x": 0, "y": 0 }
  2678. ],
  2679. "scale": [
  2680. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2681. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2682. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2683. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2684. { "time": 2, "x": 1, "y": 1 }
  2685. ]
  2686. },
  2687. "bone4": {
  2688. "rotate": [
  2689. { "time": 0, "angle": 0 },
  2690. { "time": 0.5, "angle": 4.34 },
  2691. { "time": 1, "angle": 0 },
  2692. { "time": 1.5, "angle": 4.34 },
  2693. { "time": 2, "angle": 0 }
  2694. ],
  2695. "translate": [
  2696. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2697. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2698. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2699. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2700. { "time": 2, "x": 0, "y": 0 }
  2701. ],
  2702. "scale": [
  2703. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2707. { "time": 2, "x": 1, "y": 1 }
  2708. ]
  2709. },
  2710. "bone5": {
  2711. "rotate": [
  2712. { "time": 0, "angle": 0 },
  2713. { "time": 0.1667, "angle": 6.79 },
  2714. { "time": 0.2667, "angle": 10.86 },
  2715. { "time": 0.3333, "angle": 9.95 },
  2716. { "time": 0.5, "angle": 7.65 },
  2717. { "time": 0.6667, "angle": 9.66 },
  2718. { "time": 0.7667, "angle": 10.86 },
  2719. { "time": 0.8333, "angle": 7.76 },
  2720. { "time": 1, "angle": 0 },
  2721. { "time": 1.1667, "angle": 6.79 },
  2722. { "time": 1.2667, "angle": 10.86 },
  2723. { "time": 1.3333, "angle": 9.95 },
  2724. { "time": 1.5, "angle": 7.65 },
  2725. { "time": 1.6667, "angle": 9.66 },
  2726. { "time": 1.7667, "angle": 10.86 },
  2727. { "time": 1.8333, "angle": 7.76 },
  2728. { "time": 2, "angle": 0 }
  2729. ],
  2730. "translate": [
  2731. { "time": 0, "x": 0, "y": 0 },
  2732. { "time": 0.1667, "x": -0.59, "y": -0.96 },
  2733. { "time": 0.3333, "x": -0.76, "y": -1.71 },
  2734. { "time": 0.5, "x": -0.06, "y": -0.42 },
  2735. { "time": 0.6667, "x": -0.68, "y": -1.55 },
  2736. { "time": 0.7667, "x": -1.05, "y": -2.22 },
  2737. { "time": 0.8333, "x": -0.75, "y": -1.59 },
  2738. { "time": 1, "x": 0, "y": 0 },
  2739. { "time": 1.1667, "x": -0.59, "y": -0.96 },
  2740. { "time": 1.3333, "x": -0.76, "y": -1.71 },
  2741. { "time": 1.5, "x": -0.06, "y": -0.42 },
  2742. { "time": 1.6667, "x": -0.68, "y": -1.55 },
  2743. { "time": 1.7667, "x": -1.05, "y": -2.22 },
  2744. { "time": 1.8333, "x": -0.75, "y": -1.59 },
  2745. { "time": 2, "x": 0, "y": 0 }
  2746. ],
  2747. "scale": [
  2748. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2749. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2750. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2751. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2752. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2753. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2754. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2755. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2756. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2757. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2758. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2759. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2760. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2761. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2762. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2763. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2764. { "time": 2, "x": 1, "y": 1 }
  2765. ]
  2766. },
  2767. "bone6": {
  2768. "rotate": [
  2769. { "time": 0, "angle": 0 },
  2770. { "time": 0.1667, "angle": 1.88 },
  2771. { "time": 0.2667, "angle": 3.01 },
  2772. { "time": 0.3333, "angle": 0.57 },
  2773. { "time": 0.5, "angle": -5.54 },
  2774. { "time": 0.6667, "angle": -0.19 },
  2775. { "time": 0.7667, "angle": 3.01 },
  2776. { "time": 0.8333, "angle": 2.15 },
  2777. { "time": 1, "angle": 0 },
  2778. { "time": 1.1667, "angle": 1.88 },
  2779. { "time": 1.2667, "angle": 3.01 },
  2780. { "time": 1.3333, "angle": 0.57 },
  2781. { "time": 1.5, "angle": -5.54 },
  2782. { "time": 1.6667, "angle": -0.19 },
  2783. { "time": 1.7667, "angle": 3.01 },
  2784. { "time": 1.8333, "angle": 2.15 },
  2785. { "time": 2, "angle": 0 }
  2786. ],
  2787. "translate": [
  2788. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2793. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2794. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2795. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2796. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2797. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2798. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2799. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2800. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2801. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2802. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2803. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2804. { "time": 2, "x": 0, "y": 0 }
  2805. ],
  2806. "scale": [
  2807. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2810. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2811. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2812. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2813. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2814. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2815. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2816. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2817. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2818. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2819. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2820. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2821. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2822. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2823. { "time": 2, "x": 1, "y": 1 }
  2824. ]
  2825. },
  2826. "bone7": {
  2827. "rotate": [
  2828. { "time": 0, "angle": 0 },
  2829. { "time": 0.1667, "angle": -7.45 },
  2830. { "time": 0.2667, "angle": -5.65 },
  2831. { "time": 0.3333, "angle": -5.29 },
  2832. { "time": 0.5, "angle": -4.38 },
  2833. { "time": 0.6667, "angle": -5.17 },
  2834. { "time": 0.7667, "angle": -5.65 },
  2835. { "time": 0.8333, "angle": -4.03 },
  2836. { "time": 1, "angle": 0 },
  2837. { "time": 1.1667, "angle": -7.45 },
  2838. { "time": 1.2667, "angle": -5.65 },
  2839. { "time": 1.3333, "angle": -5.29 },
  2840. { "time": 1.5, "angle": -4.38 },
  2841. { "time": 1.6667, "angle": -5.17 },
  2842. { "time": 1.7667, "angle": -5.65 },
  2843. { "time": 1.8333, "angle": -4.03 },
  2844. { "time": 2, "angle": 0 }
  2845. ],
  2846. "translate": [
  2847. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2848. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2849. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2858. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  2859. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2860. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2861. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2862. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  2863. { "time": 2, "x": 0, "y": 0 }
  2864. ],
  2865. "scale": [
  2866. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2875. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2876. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2877. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2878. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2879. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2880. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2881. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2882. { "time": 2, "x": 1, "y": 1 }
  2883. ]
  2884. },
  2885. "bone8": {
  2886. "rotate": [
  2887. { "time": 0, "angle": -9.08 },
  2888. { "time": 0.1667, "angle": -2.54 },
  2889. { "time": 0.2667, "angle": 1.44 },
  2890. { "time": 0.3333, "angle": -1.7 },
  2891. { "time": 0.5, "angle": -9.55 },
  2892. { "time": 0.6667, "angle": -2.69 },
  2893. { "time": 0.7667, "angle": 1.44 },
  2894. { "time": 0.8333, "angle": 1.03 },
  2895. { "time": 1, "angle": -9.08 },
  2896. { "time": 1.1667, "angle": -2.54 },
  2897. { "time": 1.2667, "angle": 1.44 },
  2898. { "time": 1.3333, "angle": -1.7 },
  2899. { "time": 1.5, "angle": -9.55 },
  2900. { "time": 1.6667, "angle": -2.69 },
  2901. { "time": 1.7667, "angle": 1.44 },
  2902. { "time": 1.8333, "angle": 1.03 },
  2903. { "time": 2, "angle": -9.08 }
  2904. ],
  2905. "translate": [
  2906. { "time": 0, "x": 1.7, "y": -2.45 },
  2907. { "time": 0.1667, "x": 1.25, "y": -0.13 },
  2908. { "time": 0.2667, "x": 0.68, "y": -0.05 },
  2909. { "time": 0.3333, "x": 0.85, "y": -0.06 },
  2910. { "time": 0.5, "x": 1.28, "y": -0.09 },
  2911. { "time": 0.6667, "x": 0.91, "y": -0.07 },
  2912. { "time": 0.7667, "x": 0.68, "y": -0.05 },
  2913. { "time": 0.8333, "x": 0.49, "y": -0.04 },
  2914. { "time": 1, "x": 1.7, "y": -2.45 },
  2915. { "time": 1.1667, "x": 1.25, "y": -0.13 },
  2916. { "time": 1.2667, "x": 0.68, "y": -0.05 },
  2917. { "time": 1.3333, "x": 0.85, "y": -0.06 },
  2918. { "time": 1.5, "x": 1.28, "y": -0.09 },
  2919. { "time": 1.6667, "x": 0.91, "y": -0.07 },
  2920. { "time": 1.7667, "x": 0.68, "y": -0.05 },
  2921. { "time": 1.8333, "x": 0.49, "y": -0.04 },
  2922. { "time": 2, "x": 1.7, "y": -2.45 }
  2923. ],
  2924. "scale": [
  2925. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2926. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2927. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  2928. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2929. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2930. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2931. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2932. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2933. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2934. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2935. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2936. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  2937. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2938. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2939. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  2941. { "time": 2, "x": 1, "y": 1 }
  2942. ]
  2943. },
  2944. "bone9": {
  2945. "rotate": [
  2946. { "time": 0, "angle": 0, "curve": "stepped" },
  2947. { "time": 0.1667, "angle": 0 },
  2948. { "time": 0.2667, "angle": -17.64 },
  2949. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2950. { "time": 0.6667, "angle": 0 },
  2951. { "time": 0.7667, "angle": -17.64 },
  2952. { "time": 1, "angle": 0, "curve": "stepped" },
  2953. { "time": 1.1667, "angle": 0 },
  2954. { "time": 1.2667, "angle": -17.64 },
  2955. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2956. { "time": 1.6667, "angle": 0 },
  2957. { "time": 1.7667, "angle": -17.64 },
  2958. { "time": 2, "angle": 0 }
  2959. ],
  2960. "translate": [
  2961. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2962. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2963. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2964. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2965. { "time": 0.7667, "x": 0, "y": 0, "curve": "stepped" },
  2966. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2967. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  2968. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2969. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  2970. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  2971. { "time": 2, "x": 0, "y": 0 }
  2972. ],
  2973. "scale": [
  2974. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2975. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2976. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2977. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2978. { "time": 0.7667, "x": 1, "y": 1, "curve": "stepped" },
  2979. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2980. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  2981. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2982. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  2983. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  2984. { "time": 2, "x": 1, "y": 1 }
  2985. ]
  2986. },
  2987. "bone10": {
  2988. "rotate": [
  2989. { "time": 0, "angle": 0, "curve": "stepped" },
  2990. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2991. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  2992. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2993. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2994. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2995. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  2996. { "time": 1, "angle": 0, "curve": "stepped" },
  2997. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  2998. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2999. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3000. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3001. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3002. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3003. { "time": 2, "angle": 0 }
  3004. ],
  3005. "translate": [
  3006. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3008. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3009. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3010. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3011. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3012. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3013. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3014. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3015. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3016. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3017. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3018. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3019. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3020. { "time": 2, "x": 0, "y": 0 }
  3021. ],
  3022. "scale": [
  3023. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3024. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3025. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3026. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3027. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3028. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3029. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3030. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3031. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3032. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3033. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3034. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3035. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3036. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 2, "x": 1, "y": 1 }
  3038. ]
  3039. },
  3040. "bone11": {
  3041. "rotate": [
  3042. { "time": 0, "angle": 0 },
  3043. { "time": 0.1667, "angle": -2.78 },
  3044. { "time": 0.2667, "angle": -4.44 },
  3045. { "time": 0.5, "angle": -8.33 },
  3046. { "time": 0.6667, "angle": -5.55 },
  3047. { "time": 0.8333, "angle": -2.78 },
  3048. { "time": 1, "angle": 0 },
  3049. { "time": 1.1667, "angle": -2.78 },
  3050. { "time": 1.2667, "angle": -4.44 },
  3051. { "time": 1.5, "angle": -8.33 },
  3052. { "time": 1.6667, "angle": -5.55 },
  3053. { "time": 1.8333, "angle": -2.78 },
  3054. { "time": 2, "angle": 0 }
  3055. ],
  3056. "translate": [
  3057. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3058. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3059. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3060. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3061. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3062. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3063. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3064. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3065. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3066. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3067. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3068. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3069. { "time": 2, "x": 0, "y": 0 }
  3070. ],
  3071. "scale": [
  3072. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3073. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3078. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3079. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3080. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3081. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3082. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3083. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3084. { "time": 2, "x": 1, "y": 1 }
  3085. ]
  3086. },
  3087. "bone12": {
  3088. "rotate": [
  3089. { "time": 0, "angle": 0 },
  3090. { "time": 0.1667, "angle": -1.35 },
  3091. { "time": 0.2667, "angle": -2.16 },
  3092. { "time": 0.5, "angle": -4.04 },
  3093. { "time": 0.6667, "angle": -2.7 },
  3094. { "time": 0.8333, "angle": -1.35 },
  3095. { "time": 1, "angle": 0 },
  3096. { "time": 1.1667, "angle": -1.35 },
  3097. { "time": 1.2667, "angle": -2.16 },
  3098. { "time": 1.5, "angle": -4.04 },
  3099. { "time": 1.6667, "angle": -2.7 },
  3100. { "time": 1.8333, "angle": -1.35 },
  3101. { "time": 2, "angle": 0 }
  3102. ],
  3103. "translate": [
  3104. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3105. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3106. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3107. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3108. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3109. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3110. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3111. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3112. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3113. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3114. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3115. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3116. { "time": 2, "x": 0, "y": 0 }
  3117. ],
  3118. "scale": [
  3119. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3120. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3121. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3122. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3123. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3124. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3125. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3126. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3127. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3128. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3129. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3130. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3131. { "time": 2, "x": 1, "y": 1 }
  3132. ]
  3133. },
  3134. "bone13": {
  3135. "rotate": [
  3136. { "time": 0, "angle": 0 },
  3137. { "time": 0.1667, "angle": 0.81 },
  3138. { "time": 0.2667, "angle": 1.29 },
  3139. { "time": 0.5, "angle": 2.42 },
  3140. { "time": 0.6667, "angle": 1.61 },
  3141. { "time": 0.8333, "angle": 0.81 },
  3142. { "time": 1, "angle": 0 },
  3143. { "time": 1.1667, "angle": 0.81 },
  3144. { "time": 1.2667, "angle": 1.29 },
  3145. { "time": 1.5, "angle": 2.42 },
  3146. { "time": 1.6667, "angle": 1.61 },
  3147. { "time": 1.8333, "angle": 0.81 },
  3148. { "time": 2, "angle": 0 }
  3149. ],
  3150. "translate": [
  3151. { "time": 0, "x": 0, "y": 0 },
  3152. { "time": 0.1667, "x": -1.18, "y": -0.15 },
  3153. { "time": 0.2667, "x": -1.89, "y": -0.25 },
  3154. { "time": 0.5, "x": -3.53, "y": -0.46 },
  3155. { "time": 0.6667, "x": -2.26, "y": -1.14 },
  3156. { "time": 0.8333, "x": -1.18, "y": -0.15 },
  3157. { "time": 1, "x": 0, "y": 0 },
  3158. { "time": 1.1667, "x": -1.18, "y": -0.15 },
  3159. { "time": 1.2667, "x": -1.89, "y": -0.25 },
  3160. { "time": 1.5, "x": -3.53, "y": -0.46 },
  3161. { "time": 1.6667, "x": -2.26, "y": -1.14 },
  3162. { "time": 1.8333, "x": -1.18, "y": -0.15 },
  3163. { "time": 2, "x": 0, "y": 0 }
  3164. ],
  3165. "scale": [
  3166. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3167. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3168. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3169. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3170. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3171. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3172. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3173. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3174. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3175. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3176. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3177. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3178. { "time": 2, "x": 1, "y": 1 }
  3179. ]
  3180. },
  3181. "bone14": {
  3182. "rotate": [
  3183. { "time": 0, "angle": 0 },
  3184. { "time": 0.1667, "angle": -2.61 },
  3185. { "time": 0.2667, "angle": -4.18 },
  3186. { "time": 0.5, "angle": -7.84 },
  3187. { "time": 0.6667, "angle": -5.23 },
  3188. { "time": 0.8333, "angle": -2.61 },
  3189. { "time": 1, "angle": 0 },
  3190. { "time": 1.1667, "angle": -2.61 },
  3191. { "time": 1.2667, "angle": -4.18 },
  3192. { "time": 1.5, "angle": -7.84 },
  3193. { "time": 1.6667, "angle": -5.23 },
  3194. { "time": 1.8333, "angle": -2.61 },
  3195. { "time": 2, "angle": 0 }
  3196. ],
  3197. "translate": [
  3198. { "time": 0, "x": 0, "y": 0 },
  3199. { "time": 0.1667, "x": -0.64, "y": 0.03 },
  3200. { "time": 0.2667, "x": -1.03, "y": 0.05 },
  3201. { "time": 0.5, "x": -1.93, "y": 0.08 },
  3202. { "time": 0.6667, "x": -2.08, "y": -0.12 },
  3203. { "time": 0.8333, "x": -0.64, "y": 0.03 },
  3204. { "time": 1, "x": 0, "y": 0 },
  3205. { "time": 1.1667, "x": -0.64, "y": 0.03 },
  3206. { "time": 1.2667, "x": -1.03, "y": 0.05 },
  3207. { "time": 1.5, "x": -1.93, "y": 0.08 },
  3208. { "time": 1.6667, "x": -2.08, "y": -0.12 },
  3209. { "time": 1.8333, "x": -0.64, "y": 0.03 },
  3210. { "time": 2, "x": 0, "y": 0 }
  3211. ],
  3212. "scale": [
  3213. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3214. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3215. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3216. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3217. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3218. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3219. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3220. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3221. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3224. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3225. { "time": 2, "x": 1, "y": 1 }
  3226. ]
  3227. },
  3228. "bone15": {
  3229. "rotate": [
  3230. { "time": 0, "angle": 0 },
  3231. { "time": 0.1667, "angle": 1.14 },
  3232. { "time": 0.2667, "angle": 1.82 },
  3233. { "time": 0.5, "angle": 3.42 },
  3234. { "time": 0.6667, "angle": 2.28 },
  3235. { "time": 0.8333, "angle": 1.14 },
  3236. { "time": 1, "angle": 0 },
  3237. { "time": 1.1667, "angle": 1.14 },
  3238. { "time": 1.2667, "angle": 1.82 },
  3239. { "time": 1.5, "angle": 3.42 },
  3240. { "time": 1.6667, "angle": 2.28 },
  3241. { "time": 1.8333, "angle": 1.14 },
  3242. { "time": 2, "angle": 0 }
  3243. ],
  3244. "translate": [
  3245. { "time": 0, "x": 0, "y": 0 },
  3246. { "time": 0.1667, "x": -0.79, "y": -0.3 },
  3247. { "time": 0.2667, "x": -1.72, "y": -0.77 },
  3248. { "time": 0.5, "x": -0.79, "y": 1.78 },
  3249. { "time": 0.6667, "x": 1, "y": 4.34 },
  3250. { "time": 1, "x": 0, "y": 0 },
  3251. { "time": 1.1667, "x": -0.79, "y": -0.3 },
  3252. { "time": 1.2667, "x": -1.72, "y": -0.77 },
  3253. { "time": 1.5, "x": -0.79, "y": 1.78 },
  3254. { "time": 1.6667, "x": 1, "y": 4.34 },
  3255. { "time": 2, "x": 0, "y": 0 }
  3256. ],
  3257. "scale": [
  3258. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3261. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3262. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3263. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3264. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3265. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3266. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3267. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3268. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3269. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3270. { "time": 2, "x": 1, "y": 1 }
  3271. ]
  3272. },
  3273. "bone16": {
  3274. "rotate": [
  3275. { "time": 0, "angle": 0, "curve": "stepped" },
  3276. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3277. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3278. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3279. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3280. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3281. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3282. { "time": 1, "angle": 0, "curve": "stepped" },
  3283. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3284. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  3285. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3286. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3287. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3288. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3289. { "time": 2, "angle": 0 }
  3290. ],
  3291. "translate": [
  3292. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3293. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3294. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3295. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3296. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3297. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3298. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3299. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3301. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3302. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3303. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3304. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3306. { "time": 2, "x": 0, "y": 0 }
  3307. ],
  3308. "scale": [
  3309. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3310. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3311. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3312. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3313. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3314. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3315. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3316. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3317. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3318. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3319. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3320. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3321. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3322. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3323. { "time": 2, "x": 1, "y": 1 }
  3324. ]
  3325. },
  3326. "bone17": {
  3327. "rotate": [
  3328. { "time": 0, "angle": -20.3 },
  3329. { "time": 0.1667, "angle": -12.55 },
  3330. { "time": 0.3333, "angle": 0.61 },
  3331. { "time": 0.5, "angle": 26.73 },
  3332. { "time": 0.6667, "angle": 11.05 },
  3333. { "time": 0.8333, "angle": -20.82 },
  3334. { "time": 1, "angle": -20.3 },
  3335. { "time": 1.1667, "angle": -12.55 },
  3336. { "time": 1.3333, "angle": 0.61 },
  3337. { "time": 1.5, "angle": 26.73 },
  3338. { "time": 1.6667, "angle": 11.05 },
  3339. { "time": 1.8333, "angle": -20.82 },
  3340. { "time": 2, "angle": -20.3 }
  3341. ],
  3342. "translate": [
  3343. { "time": 0, "x": 0, "y": 0 },
  3344. { "time": 0.1667, "x": 1.21, "y": 0.14 },
  3345. { "time": 0.3333, "x": 9.48, "y": 1.98 },
  3346. { "time": 0.5, "x": 11.43, "y": 1.06 },
  3347. { "time": 0.6667, "x": 7.62, "y": 0.71 },
  3348. { "time": 0.8333, "x": 3.81, "y": 0.35 },
  3349. { "time": 1, "x": 0, "y": 0 },
  3350. { "time": 1.1667, "x": 1.21, "y": 0.14 },
  3351. { "time": 1.3333, "x": 9.48, "y": 1.98 },
  3352. { "time": 1.5, "x": 11.43, "y": 1.06 },
  3353. { "time": 1.6667, "x": 7.62, "y": 0.71 },
  3354. { "time": 1.8333, "x": 3.81, "y": 0.35 },
  3355. { "time": 2, "x": 0, "y": 0 }
  3356. ],
  3357. "scale": [
  3358. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3359. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3360. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3361. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3364. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3366. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3367. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3368. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3369. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3370. { "time": 2, "x": 1, "y": 1 }
  3371. ]
  3372. },
  3373. "bone18": {
  3374. "rotate": [
  3375. { "time": 0, "angle": 0 },
  3376. { "time": 0.1667, "angle": 10.29 },
  3377. { "time": 0.3333, "angle": 0.67 },
  3378. { "time": 0.5, "angle": 0 },
  3379. { "time": 0.6667, "angle": 26.05 },
  3380. { "time": 0.8333, "angle": 42.08 },
  3381. { "time": 1, "angle": 0 },
  3382. { "time": 1.1667, "angle": 10.29 },
  3383. { "time": 1.3333, "angle": 0.67 },
  3384. { "time": 1.5, "angle": 0 },
  3385. { "time": 1.6667, "angle": 26.05 },
  3386. { "time": 1.8333, "angle": 42.08 },
  3387. { "time": 2, "angle": 0 }
  3388. ],
  3389. "translate": [
  3390. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3391. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3392. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3393. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3394. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3395. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3396. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3397. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3398. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3399. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3400. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3401. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3402. { "time": 2, "x": 0, "y": 0 }
  3403. ],
  3404. "scale": [
  3405. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3406. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3407. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3408. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3409. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3411. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3412. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3413. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3414. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3415. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3416. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3417. { "time": 2, "x": 1, "y": 1 }
  3418. ]
  3419. },
  3420. "bone19": {
  3421. "rotate": [
  3422. { "time": 0, "angle": 0 },
  3423. { "time": 0.1667, "angle": 4.27 },
  3424. { "time": 0.3333, "angle": 2.14 },
  3425. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3426. { "time": 0.6667, "angle": 0 },
  3427. { "time": 0.8333, "angle": -13.72 },
  3428. { "time": 1, "angle": 0 },
  3429. { "time": 1.1667, "angle": 4.27 },
  3430. { "time": 1.3333, "angle": 2.14 },
  3431. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3432. { "time": 1.6667, "angle": 0 },
  3433. { "time": 1.8333, "angle": -13.72 },
  3434. { "time": 2, "angle": 0 }
  3435. ],
  3436. "translate": [
  3437. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3438. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3439. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3440. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3441. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3442. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3443. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3444. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3445. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3446. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3447. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3448. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3449. { "time": 2, "x": 0, "y": 0 }
  3450. ],
  3451. "scale": [
  3452. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3453. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3454. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3455. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3456. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3457. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3458. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3459. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3460. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3461. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3462. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3463. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3464. { "time": 2, "x": 1, "y": 1 }
  3465. ]
  3466. },
  3467. "bone20": {
  3468. "rotate": [
  3469. { "time": 0, "angle": 14.99 },
  3470. { "time": 0.1667, "angle": 4.28 },
  3471. { "time": 0.3333, "angle": -20.41 },
  3472. { "time": 0.5, "angle": 335.82 },
  3473. { "time": 0.6667, "angle": -11.12 },
  3474. { "time": 0.8333, "angle": 4.51 },
  3475. { "time": 1, "angle": 14.99 },
  3476. { "time": 1.1667, "angle": 4.28 },
  3477. { "time": 1.3333, "angle": -20.41 },
  3478. { "time": 1.5, "angle": 335.82 },
  3479. { "time": 1.6667, "angle": -11.12 },
  3480. { "time": 1.8333, "angle": 4.51 },
  3481. { "time": 2, "angle": 14.99 }
  3482. ],
  3483. "translate": [
  3484. { "time": 0, "x": 0, "y": 0 },
  3485. { "time": 0.1667, "x": -0.07, "y": 6.63 },
  3486. { "time": 0.3333, "x": -0.27, "y": 11.06 },
  3487. { "time": 0.5, "x": -0.47, "y": 15.49 },
  3488. { "time": 0.6667, "x": -0.36, "y": 12.88 },
  3489. { "time": 0.8333, "x": -0.18, "y": 6.44 },
  3490. { "time": 1, "x": 0, "y": 0 },
  3491. { "time": 1.1667, "x": -0.07, "y": 6.63 },
  3492. { "time": 1.3333, "x": -0.27, "y": 11.06 },
  3493. { "time": 1.5, "x": -0.47, "y": 15.49 },
  3494. { "time": 1.6667, "x": -0.36, "y": 12.88 },
  3495. { "time": 1.8333, "x": -0.18, "y": 6.44 },
  3496. { "time": 2, "x": 0, "y": 0 }
  3497. ],
  3498. "scale": [
  3499. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3500. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3501. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3502. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3503. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3504. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3505. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3506. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3507. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3508. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3509. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3510. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3511. { "time": 2, "x": 1, "y": 1 }
  3512. ]
  3513. },
  3514. "bone21": {
  3515. "rotate": [
  3516. { "time": 0, "angle": 3.99 },
  3517. { "time": 0.1667, "angle": 28.14 },
  3518. { "time": 0.3333, "angle": 53.57 },
  3519. { "time": 0.5, "angle": 3.99, "curve": "stepped" },
  3520. { "time": 0.6667, "angle": 3.99 },
  3521. { "time": 0.8333, "angle": 6.57 },
  3522. { "time": 1, "angle": 3.99 },
  3523. { "time": 1.1667, "angle": 28.14 },
  3524. { "time": 1.3333, "angle": 53.57 },
  3525. { "time": 1.5, "angle": 3.99, "curve": "stepped" },
  3526. { "time": 1.6667, "angle": 3.99 },
  3527. { "time": 1.8333, "angle": 6.57 },
  3528. { "time": 2, "angle": 3.99 }
  3529. ],
  3530. "translate": [
  3531. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3532. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3533. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3534. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3535. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3536. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3537. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3538. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3539. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3540. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3541. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3542. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3543. { "time": 2, "x": 0, "y": 0 }
  3544. ],
  3545. "scale": [
  3546. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3547. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3548. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3549. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3550. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3551. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3552. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3553. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3554. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3555. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3556. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3557. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3558. { "time": 2, "x": 1, "y": 1 }
  3559. ]
  3560. },
  3561. "bone22": {
  3562. "rotate": [
  3563. { "time": 0, "angle": -3.49 },
  3564. { "time": 0.1667, "angle": -10.67 },
  3565. { "time": 0.3333, "angle": -29.3 },
  3566. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3567. { "time": 0.6667, "angle": 0 },
  3568. { "time": 0.8333, "angle": 2.58 },
  3569. { "time": 1, "angle": -3.49 },
  3570. { "time": 1.1667, "angle": -10.67 },
  3571. { "time": 1.3333, "angle": -29.3 },
  3572. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3573. { "time": 1.6667, "angle": 0 },
  3574. { "time": 1.8333, "angle": 2.58 },
  3575. { "time": 2, "angle": -3.49 }
  3576. ],
  3577. "translate": [
  3578. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3579. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3580. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3581. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3582. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3583. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3584. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3585. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3586. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3590. { "time": 2, "x": 0, "y": 0 }
  3591. ],
  3592. "scale": [
  3593. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3594. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3595. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3596. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3597. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3598. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3599. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 2, "x": 1, "y": 1 }
  3606. ]
  3607. },
  3608. "bone23": {
  3609. "rotate": [
  3610. {
  3611. "time": 0,
  3612. "angle": 7.88,
  3613. "curve": [ 0.25, 0, 0.75, 1 ]
  3614. },
  3615. {
  3616. "time": 0.5,
  3617. "angle": -312.38,
  3618. "curve": [ 0.25, 0, 0.75, 1 ]
  3619. },
  3620. {
  3621. "time": 1,
  3622. "angle": 7.88,
  3623. "curve": [ 0.25, 0, 0.75, 1 ]
  3624. },
  3625. {
  3626. "time": 1.5,
  3627. "angle": -312.38,
  3628. "curve": [ 0.25, 0, 0.75, 1 ]
  3629. },
  3630. { "time": 2, "angle": 7.88 }
  3631. ],
  3632. "translate": [
  3633. {
  3634. "time": 0,
  3635. "x": 0,
  3636. "y": 0,
  3637. "curve": [ 0.25, 0, 0.75, 1 ]
  3638. },
  3639. {
  3640. "time": 0.5,
  3641. "x": 2.21,
  3642. "y": -4.87,
  3643. "curve": [ 0.25, 0, 0.75, 1 ]
  3644. },
  3645. {
  3646. "time": 1,
  3647. "x": 0,
  3648. "y": 0,
  3649. "curve": [ 0.25, 0, 0.75, 1 ]
  3650. },
  3651. {
  3652. "time": 1.5,
  3653. "x": 2.21,
  3654. "y": -4.87,
  3655. "curve": [ 0.25, 0, 0.75, 1 ]
  3656. },
  3657. { "time": 2, "x": 0, "y": 0 }
  3658. ],
  3659. "scale": [
  3660. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3661. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3662. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3663. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3664. { "time": 2, "x": 1, "y": 1 }
  3665. ]
  3666. },
  3667. "bone24": {
  3668. "rotate": [
  3669. { "time": 0, "angle": -6.45 },
  3670. { "time": 0.5, "angle": -25.96 },
  3671. { "time": 1, "angle": -6.45 },
  3672. { "time": 1.5, "angle": -25.96 },
  3673. { "time": 2, "angle": -6.45 }
  3674. ],
  3675. "translate": [
  3676. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3677. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3678. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3679. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3680. { "time": 2, "x": 0, "y": 0 }
  3681. ],
  3682. "scale": [
  3683. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3684. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3685. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3686. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3687. { "time": 2, "x": 1, "y": 1 }
  3688. ]
  3689. },
  3690. "bone25": {
  3691. "rotate": [
  3692. { "time": 0, "angle": -22.48, "curve": "stepped" },
  3693. { "time": 0.5, "angle": -22.48, "curve": "stepped" },
  3694. { "time": 1, "angle": -22.48, "curve": "stepped" },
  3695. { "time": 1.5, "angle": -22.48, "curve": "stepped" },
  3696. { "time": 2, "angle": -22.48 }
  3697. ],
  3698. "translate": [
  3699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3700. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3701. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3702. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3703. { "time": 2, "x": 0, "y": 0 }
  3704. ],
  3705. "scale": [
  3706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3707. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3708. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3709. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3710. { "time": 2, "x": 1, "y": 1 }
  3711. ]
  3712. },
  3713. "bone26": {
  3714. "rotate": [
  3715. {
  3716. "time": 0,
  3717. "angle": -16.51,
  3718. "curve": [ 0.25, 0, 0.75, 1 ]
  3719. },
  3720. {
  3721. "time": 0.5,
  3722. "angle": -36.41,
  3723. "curve": [ 0.25, 0, 0.75, 1 ]
  3724. },
  3725. {
  3726. "time": 1,
  3727. "angle": -16.51,
  3728. "curve": [ 0.25, 0, 0.75, 1 ]
  3729. },
  3730. {
  3731. "time": 1.5,
  3732. "angle": -36.41,
  3733. "curve": [ 0.25, 0, 0.75, 1 ]
  3734. },
  3735. { "time": 2, "angle": -16.51 }
  3736. ],
  3737. "translate": [
  3738. {
  3739. "time": 0,
  3740. "x": 0,
  3741. "y": 0,
  3742. "curve": [ 0.25, 0, 0.75, 1 ]
  3743. },
  3744. {
  3745. "time": 0.5,
  3746. "x": 0.1,
  3747. "y": 0.99,
  3748. "curve": [ 0.25, 0, 0.75, 1 ]
  3749. },
  3750. {
  3751. "time": 1,
  3752. "x": 0,
  3753. "y": 0,
  3754. "curve": [ 0.25, 0, 0.75, 1 ]
  3755. },
  3756. {
  3757. "time": 1.5,
  3758. "x": 0.1,
  3759. "y": 0.99,
  3760. "curve": [ 0.25, 0, 0.75, 1 ]
  3761. },
  3762. { "time": 2, "x": 0, "y": 0 }
  3763. ],
  3764. "scale": [
  3765. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3766. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3767. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3768. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3769. { "time": 2, "x": 1, "y": 1 }
  3770. ]
  3771. },
  3772. "bone27": {
  3773. "rotate": [
  3774. { "time": 0, "angle": -24.64 },
  3775. { "time": 0.5, "angle": -30.4 },
  3776. { "time": 1, "angle": -24.64 },
  3777. { "time": 1.5, "angle": -30.4 },
  3778. { "time": 2, "angle": -24.64 }
  3779. ],
  3780. "translate": [
  3781. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3782. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3783. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3784. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3785. { "time": 2, "x": 0, "y": 0 }
  3786. ],
  3787. "scale": [
  3788. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3791. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 2, "x": 1, "y": 1 }
  3793. ]
  3794. },
  3795. "bone28": {
  3796. "rotate": [
  3797. { "time": 0, "angle": -10.13 },
  3798. { "time": 0.5, "angle": 0 },
  3799. { "time": 1, "angle": -10.13 },
  3800. { "time": 1.5, "angle": 0 },
  3801. { "time": 2, "angle": -10.13 }
  3802. ],
  3803. "translate": [
  3804. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3805. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3806. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3807. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3808. { "time": 2, "x": 0, "y": 0 }
  3809. ],
  3810. "scale": [
  3811. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3812. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3813. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3814. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3815. { "time": 2, "x": 1, "y": 1 }
  3816. ]
  3817. },
  3818. "bone29": {
  3819. "rotate": [
  3820. { "time": 0, "angle": 0, "curve": "stepped" },
  3821. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3822. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3823. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3824. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3825. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3826. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3827. { "time": 1, "angle": 0, "curve": "stepped" },
  3828. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3829. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  3830. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3831. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3832. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3833. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3834. { "time": 2, "angle": 0 }
  3835. ],
  3836. "translate": [
  3837. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3838. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3839. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3840. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3841. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3842. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3843. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3844. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3845. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3846. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3847. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3848. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3849. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3850. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3851. { "time": 2, "x": 0, "y": 0 }
  3852. ],
  3853. "scale": [
  3854. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3855. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3858. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3859. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3860. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3861. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3862. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3863. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3864. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3865. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3866. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3867. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3868. { "time": 2, "x": 1, "y": 1 }
  3869. ]
  3870. },
  3871. "bone30": {
  3872. "rotate": [
  3873. { "time": 0, "angle": 0, "curve": "stepped" },
  3874. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3875. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3876. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3877. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3878. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3879. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3880. { "time": 1, "angle": 0, "curve": "stepped" },
  3881. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  3882. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  3883. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3884. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3885. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3886. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3887. { "time": 2, "angle": 0 }
  3888. ],
  3889. "translate": [
  3890. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3891. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3892. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3893. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3894. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3896. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3897. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3898. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  3899. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3900. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3901. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3902. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3903. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3904. { "time": 2, "x": 0, "y": 0 }
  3905. ],
  3906. "scale": [
  3907. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3908. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3909. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3910. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3911. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3912. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3913. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3914. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3915. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  3916. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3917. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3918. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3919. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3920. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3921. { "time": 2, "x": 1, "y": 1 }
  3922. ]
  3923. },
  3924. "bone31": {
  3925. "rotate": [
  3926. { "time": 0, "angle": 0, "curve": "stepped" },
  3927. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3928. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3929. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3930. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3931. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3932. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3933. { "time": 1, "angle": 0, "curve": "stepped" },
  3934. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3935. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3936. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3937. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3938. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3939. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3940. { "time": 2, "angle": 0 }
  3941. ],
  3942. "translate": [
  3943. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3944. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3945. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3946. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3947. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3948. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3949. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3950. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3951. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3952. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  3953. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3954. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3955. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  3956. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  3957. { "time": 2, "x": 0, "y": 0 }
  3958. ],
  3959. "scale": [
  3960. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3961. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3962. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3963. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3964. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3965. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3966. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  3967. { "time": 1, "x": 1, "y": 1 },
  3968. { "time": 1.1, "x": 0.483, "y": 1, "curve": "stepped" },
  3969. { "time": 1.2, "x": 0.483, "y": 1 },
  3970. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3971. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3972. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  3973. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  3974. { "time": 2, "x": 1, "y": 1 }
  3975. ]
  3976. },
  3977. "bone32": {
  3978. "rotate": [
  3979. { "time": 0, "angle": 0, "curve": "stepped" },
  3980. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3981. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3982. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3983. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3984. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  3985. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  3986. { "time": 1, "angle": 0, "curve": "stepped" },
  3987. { "time": 1.1, "angle": 0, "curve": "stepped" },
  3988. { "time": 1.2, "angle": 0, "curve": "stepped" },
  3989. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  3990. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3991. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  3992. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  3993. { "time": 2, "angle": 0 }
  3994. ],
  3995. "translate": [
  3996. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3997. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3998. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3999. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4000. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4001. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4002. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4003. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4004. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4005. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4006. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4007. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4008. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4009. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4010. { "time": 2, "x": 0, "y": 0 }
  4011. ],
  4012. "scale": [
  4013. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4014. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4015. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4019. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4020. { "time": 1, "x": 1, "y": 1 },
  4021. { "time": 1.1, "x": 0.503, "y": 1, "curve": "stepped" },
  4022. { "time": 1.2, "x": 0.503, "y": 1 },
  4023. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4024. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4025. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4026. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4027. { "time": 2, "x": 1, "y": 1 }
  4028. ]
  4029. },
  4030. "bone33": {
  4031. "rotate": [
  4032. { "time": 0, "angle": 0, "curve": "stepped" },
  4033. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4034. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4035. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4036. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4037. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4038. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4039. { "time": 1, "angle": 0, "curve": "stepped" },
  4040. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4041. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4042. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4043. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4044. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4045. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4046. { "time": 2, "angle": 0 }
  4047. ],
  4048. "translate": [
  4049. { "time": 0, "x": -1.48, "y": 0.16 }
  4050. ],
  4051. "scale": [
  4052. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4053. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4054. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4055. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4056. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4057. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4058. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4059. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4060. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4061. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4062. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4063. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4064. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4065. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4066. { "time": 2, "x": 1, "y": 1 }
  4067. ]
  4068. },
  4069. "bone34": {
  4070. "rotate": [
  4071. { "time": 0, "angle": 0, "curve": "stepped" },
  4072. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4073. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4074. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4075. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4076. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4077. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4078. { "time": 1, "angle": 0, "curve": "stepped" },
  4079. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4080. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4081. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4082. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4083. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4084. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4085. { "time": 2, "angle": 0 }
  4086. ],
  4087. "translate": [
  4088. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4089. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4090. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4091. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4092. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4093. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4094. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4095. { "time": 1, "x": 0, "y": 0 },
  4096. { "time": 1.1, "x": -1.09, "y": 0.1, "curve": "stepped" },
  4097. { "time": 1.2, "x": -1.09, "y": 0.1 },
  4098. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4099. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4100. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4101. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4102. { "time": 2, "x": 0, "y": 0 }
  4103. ],
  4104. "scale": [
  4105. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4107. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4108. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4109. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4110. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4111. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4112. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4113. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4114. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4115. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4116. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4117. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4118. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4119. { "time": 2, "x": 1, "y": 1 }
  4120. ]
  4121. },
  4122. "bone35": {
  4123. "rotate": [
  4124. { "time": 0, "angle": 0 },
  4125. { "time": 0.5, "angle": 336.97 },
  4126. { "time": 1, "angle": 0 },
  4127. { "time": 1.5, "angle": 336.97 },
  4128. { "time": 2, "angle": 0 }
  4129. ],
  4130. "translate": [
  4131. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4132. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4133. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4134. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4135. { "time": 2, "x": 0, "y": 0 }
  4136. ],
  4137. "scale": [
  4138. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4139. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4140. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4141. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4142. { "time": 2, "x": 1, "y": 1 }
  4143. ]
  4144. },
  4145. "bone36": {
  4146. "rotate": [
  4147. { "time": 0, "angle": 0 },
  4148. { "time": 0.2333, "angle": 12.48 },
  4149. { "time": 0.5, "angle": 26.33 },
  4150. { "time": 0.7333, "angle": 2.27 },
  4151. { "time": 1, "angle": 0 },
  4152. { "time": 1.2333, "angle": 12.48 },
  4153. { "time": 1.5, "angle": 26.33 },
  4154. { "time": 1.7333, "angle": 2.27 },
  4155. { "time": 2, "angle": 0 }
  4156. ],
  4157. "translate": [
  4158. { "time": 0, "x": 0, "y": 0 },
  4159. { "time": 0.5, "x": -0.43, "y": 1.25 },
  4160. { "time": 1, "x": 0, "y": 0 },
  4161. { "time": 1.5, "x": -0.43, "y": 1.25 },
  4162. { "time": 2, "x": 0, "y": 0 }
  4163. ],
  4164. "scale": [
  4165. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4166. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4167. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4168. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4169. { "time": 2, "x": 1, "y": 1 }
  4170. ]
  4171. },
  4172. "bone37": {
  4173. "rotate": [
  4174. { "time": 0, "angle": 0 },
  4175. { "time": 0.2333, "angle": -17.16 },
  4176. { "time": 0.5, "angle": -17.63 },
  4177. { "time": 0.7333, "angle": 17.02 },
  4178. { "time": 1, "angle": 0 },
  4179. { "time": 1.2333, "angle": -17.16 },
  4180. { "time": 1.5, "angle": -17.63 },
  4181. { "time": 1.7333, "angle": 17.02 },
  4182. { "time": 2, "angle": 0 }
  4183. ],
  4184. "translate": [
  4185. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4186. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4187. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4188. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4189. { "time": 2, "x": 0, "y": 0 }
  4190. ],
  4191. "scale": [
  4192. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4193. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4194. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4195. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4196. { "time": 2, "x": 1, "y": 1 }
  4197. ]
  4198. },
  4199. "bone38": {
  4200. "rotate": [
  4201. { "time": 0, "angle": 0 },
  4202. { "time": 0.2333, "angle": -14.42 },
  4203. { "time": 0.5, "angle": -20.97 },
  4204. { "time": 0.7333, "angle": -7.53 },
  4205. { "time": 1, "angle": 0 },
  4206. { "time": 1.2333, "angle": -14.42 },
  4207. { "time": 1.5, "angle": -20.97 },
  4208. { "time": 1.7333, "angle": -7.53 },
  4209. { "time": 2, "angle": 0 }
  4210. ],
  4211. "translate": [
  4212. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4213. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4214. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4215. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4216. { "time": 2, "x": 0, "y": 0 }
  4217. ],
  4218. "scale": [
  4219. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4220. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4221. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4222. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4223. { "time": 2, "x": 1, "y": 1 }
  4224. ]
  4225. },
  4226. "bone39": {
  4227. "rotate": [
  4228. { "time": 0, "angle": 0, "curve": "stepped" },
  4229. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4230. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4231. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4232. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4233. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4234. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4235. { "time": 1, "angle": 0, "curve": "stepped" },
  4236. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4237. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4238. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4239. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4240. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4241. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4242. { "time": 2, "angle": 0 }
  4243. ],
  4244. "translate": [
  4245. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4246. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4247. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4248. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4249. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4250. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4251. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4252. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4253. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4254. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4255. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4256. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4257. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4258. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4259. { "time": 2, "x": 0, "y": 0 }
  4260. ],
  4261. "scale": [
  4262. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4263. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4264. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4265. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4266. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4267. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4268. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4269. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4270. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4271. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4272. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4273. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4274. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4275. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4276. { "time": 2, "x": 1, "y": 1 }
  4277. ]
  4278. },
  4279. "bone40": {
  4280. "rotate": [
  4281. { "time": 0, "angle": 0, "curve": "stepped" },
  4282. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4283. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4284. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4285. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4286. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4287. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4288. { "time": 1, "angle": 0, "curve": "stepped" },
  4289. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4290. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4291. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4292. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4293. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4294. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4295. { "time": 2, "angle": 0 }
  4296. ],
  4297. "translate": [
  4298. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4299. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4300. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4301. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4302. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4303. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4304. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4305. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4306. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4307. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4308. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4309. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4310. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4311. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4312. { "time": 2, "x": 0, "y": 0 }
  4313. ],
  4314. "scale": [
  4315. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4316. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4317. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4318. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4319. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4320. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4321. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4322. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4323. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4324. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4325. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4326. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4327. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4328. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4329. { "time": 2, "x": 1, "y": 1 }
  4330. ]
  4331. },
  4332. "bone41": {
  4333. "rotate": [
  4334. { "time": 0, "angle": 0, "curve": "stepped" },
  4335. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4336. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4337. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4338. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4339. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4340. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4341. { "time": 1, "angle": 0, "curve": "stepped" },
  4342. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4343. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4344. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4345. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4346. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4347. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4348. { "time": 2, "angle": 0 }
  4349. ],
  4350. "translate": [
  4351. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4352. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4353. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4354. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4355. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4356. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4357. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4358. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4359. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4360. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4361. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4362. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4363. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4364. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4365. { "time": 2, "x": 0, "y": 0 }
  4366. ],
  4367. "scale": [
  4368. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4369. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4370. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4372. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4374. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4375. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4376. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4377. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4378. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4379. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4380. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4381. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4382. { "time": 2, "x": 1, "y": 1 }
  4383. ]
  4384. },
  4385. "bone42": {
  4386. "rotate": [
  4387. { "time": 0, "angle": 0 },
  4388. { "time": 0.5, "angle": -2.16 },
  4389. { "time": 1, "angle": 0 },
  4390. { "time": 1.5, "angle": -2.16 },
  4391. { "time": 2, "angle": 0 }
  4392. ],
  4393. "translate": [
  4394. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4395. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4396. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4397. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4398. { "time": 2, "x": 0, "y": 0 }
  4399. ],
  4400. "scale": [
  4401. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4402. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4403. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4404. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4405. { "time": 2, "x": 1, "y": 1 }
  4406. ]
  4407. },
  4408. "bone43": {
  4409. "rotate": [
  4410. { "time": 0, "angle": 0 },
  4411. { "time": 0.5, "angle": -2.16 },
  4412. { "time": 1, "angle": 0 },
  4413. { "time": 1.5, "angle": -2.16 },
  4414. { "time": 2, "angle": 0 }
  4415. ],
  4416. "translate": [
  4417. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4418. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4419. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4420. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4421. { "time": 2, "x": 0, "y": 0 }
  4422. ],
  4423. "scale": [
  4424. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4425. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4426. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4427. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4428. { "time": 2, "x": 1, "y": 1 }
  4429. ]
  4430. },
  4431. "bone44": {
  4432. "rotate": [
  4433. { "time": 0, "angle": 0 },
  4434. { "time": 0.5, "angle": -2.16 },
  4435. { "time": 1, "angle": 0 },
  4436. { "time": 1.5, "angle": -2.16 },
  4437. { "time": 2, "angle": 0 }
  4438. ],
  4439. "translate": [
  4440. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4441. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4442. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4443. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4444. { "time": 2, "x": 0, "y": 0 }
  4445. ],
  4446. "scale": [
  4447. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4448. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4449. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4450. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4451. { "time": 2, "x": 1, "y": 1 }
  4452. ]
  4453. },
  4454. "bone45": {
  4455. "rotate": [
  4456. { "time": 0, "angle": 0 },
  4457. { "time": 0.5, "angle": -2.16 },
  4458. { "time": 1, "angle": 0 },
  4459. { "time": 1.5, "angle": -2.16 },
  4460. { "time": 2, "angle": 0 }
  4461. ],
  4462. "translate": [
  4463. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4464. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4465. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4466. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4467. { "time": 2, "x": 0, "y": 0 }
  4468. ],
  4469. "scale": [
  4470. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4471. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4472. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4473. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4474. { "time": 2, "x": 1, "y": 1 }
  4475. ]
  4476. },
  4477. "bone46": {
  4478. "rotate": [
  4479. { "time": 0, "angle": 0 },
  4480. { "time": 0.5, "angle": -2.16 },
  4481. { "time": 1, "angle": 0 },
  4482. { "time": 1.5, "angle": -2.16 },
  4483. { "time": 2, "angle": 0 }
  4484. ],
  4485. "translate": [
  4486. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4487. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4488. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4489. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4490. { "time": 2, "x": 0, "y": 0 }
  4491. ],
  4492. "scale": [
  4493. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4494. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4495. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4496. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4497. { "time": 2, "x": 1, "y": 1 }
  4498. ]
  4499. },
  4500. "bone47": {
  4501. "rotate": [
  4502. { "time": 0, "angle": 0 },
  4503. { "time": 0.5, "angle": -2.16 },
  4504. { "time": 1, "angle": 0 },
  4505. { "time": 1.5, "angle": -2.16 },
  4506. { "time": 2, "angle": 0 }
  4507. ],
  4508. "translate": [
  4509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4510. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4511. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4512. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4513. { "time": 2, "x": 0, "y": 0 }
  4514. ],
  4515. "scale": [
  4516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4517. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4518. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4519. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4520. { "time": 2, "x": 1, "y": 1 }
  4521. ]
  4522. },
  4523. "bone48": {
  4524. "rotate": [
  4525. { "time": 0, "angle": 0 },
  4526. { "time": 0.5, "angle": -2.16 },
  4527. { "time": 1, "angle": 0 },
  4528. { "time": 1.5, "angle": -2.16 },
  4529. { "time": 2, "angle": 0 }
  4530. ],
  4531. "translate": [
  4532. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4533. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4534. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4535. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4536. { "time": 2, "x": 0, "y": 0 }
  4537. ],
  4538. "scale": [
  4539. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4540. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4541. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4542. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4543. { "time": 2, "x": 1, "y": 1 }
  4544. ]
  4545. },
  4546. "bone49": {
  4547. "rotate": [
  4548. { "time": 0, "angle": 0, "curve": "stepped" },
  4549. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4550. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4551. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4552. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4553. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4554. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4555. { "time": 1, "angle": 0, "curve": "stepped" },
  4556. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4557. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4558. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4559. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4560. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4561. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4562. { "time": 2, "angle": 0 }
  4563. ],
  4564. "translate": [
  4565. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4566. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4567. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4568. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4569. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4570. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4571. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4572. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4573. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4574. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4575. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4576. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4577. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4578. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4579. { "time": 2, "x": 0, "y": 0 }
  4580. ],
  4581. "scale": [
  4582. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4583. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4584. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4585. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4586. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4587. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4588. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4589. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4590. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4591. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4592. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4596. { "time": 2, "x": 1, "y": 1 }
  4597. ]
  4598. },
  4599. "bone50": {
  4600. "rotate": [
  4601. { "time": 0, "angle": 0 },
  4602. { "time": 0.5, "angle": 7.67 },
  4603. { "time": 1, "angle": 0 },
  4604. { "time": 1.5, "angle": 7.67 },
  4605. { "time": 2, "angle": 0 }
  4606. ],
  4607. "translate": [
  4608. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4609. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4610. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4611. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4612. { "time": 2, "x": 0, "y": 0 }
  4613. ],
  4614. "scale": [
  4615. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4616. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4617. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4618. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4619. { "time": 2, "x": 1, "y": 1 }
  4620. ]
  4621. },
  4622. "bone51": {
  4623. "rotate": [
  4624. { "time": 0, "angle": 0 },
  4625. { "time": 0.5, "angle": -14.22 },
  4626. { "time": 1, "angle": 0 },
  4627. { "time": 1.5, "angle": -14.22 },
  4628. { "time": 2, "angle": 0 }
  4629. ],
  4630. "translate": [
  4631. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4632. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4633. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4634. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4635. { "time": 2, "x": 0, "y": 0 }
  4636. ],
  4637. "scale": [
  4638. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4639. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4640. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4641. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4642. { "time": 2, "x": 1, "y": 1 }
  4643. ]
  4644. },
  4645. "bone52": {
  4646. "rotate": [
  4647. { "time": 0, "angle": 0 },
  4648. { "time": 0.5, "angle": -3.41 },
  4649. { "time": 1, "angle": 0 },
  4650. { "time": 1.5, "angle": -3.41 },
  4651. { "time": 2, "angle": 0 }
  4652. ],
  4653. "translate": [
  4654. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4655. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4656. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4657. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4658. { "time": 2, "x": 0, "y": 0 }
  4659. ],
  4660. "scale": [
  4661. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4662. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4663. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4664. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4665. { "time": 2, "x": 1, "y": 1 }
  4666. ]
  4667. },
  4668. "bone53": {
  4669. "rotate": [
  4670. { "time": 0, "angle": 0 },
  4671. { "time": 0.5, "angle": -3.41 },
  4672. { "time": 1, "angle": 0 },
  4673. { "time": 1.5, "angle": -3.41 },
  4674. { "time": 2, "angle": 0 }
  4675. ],
  4676. "translate": [
  4677. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4678. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4681. { "time": 2, "x": 0, "y": 0 }
  4682. ],
  4683. "scale": [
  4684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4685. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4687. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4688. { "time": 2, "x": 1, "y": 1 }
  4689. ]
  4690. },
  4691. "bone54": {
  4692. "rotate": [
  4693. { "time": 0, "angle": 0 },
  4694. { "time": 0.5, "angle": -3.41 },
  4695. { "time": 1, "angle": 0 },
  4696. { "time": 1.5, "angle": -3.41 },
  4697. { "time": 2, "angle": 0 }
  4698. ],
  4699. "translate": [
  4700. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4701. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4702. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4703. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4704. { "time": 2, "x": 0, "y": 0 }
  4705. ],
  4706. "scale": [
  4707. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4708. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4709. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4710. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4711. { "time": 2, "x": 1, "y": 1 }
  4712. ]
  4713. },
  4714. "bone55": {
  4715. "rotate": [
  4716. { "time": 0, "angle": 0, "curve": "stepped" },
  4717. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4718. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4719. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4720. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4721. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4722. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4723. { "time": 1, "angle": 0, "curve": "stepped" },
  4724. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4725. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4726. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4727. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4728. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4729. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4730. { "time": 2, "angle": 0 }
  4731. ],
  4732. "translate": [
  4733. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4734. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4735. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4736. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4737. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4738. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4739. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4740. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4741. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4742. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4743. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4744. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4745. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4746. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4747. { "time": 2, "x": 0, "y": 0 }
  4748. ],
  4749. "scale": [
  4750. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4752. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4753. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4754. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4755. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4756. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4757. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4761. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4762. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4763. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4764. { "time": 2, "x": 1, "y": 1 }
  4765. ]
  4766. },
  4767. "bone56": {
  4768. "rotate": [
  4769. { "time": 0, "angle": 0 },
  4770. { "time": 0.5, "angle": -11.79 },
  4771. { "time": 1, "angle": 0 },
  4772. { "time": 1.5, "angle": -11.79 },
  4773. { "time": 2, "angle": 0 }
  4774. ],
  4775. "translate": [
  4776. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4777. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4778. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4779. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4780. { "time": 2, "x": 0, "y": 0 }
  4781. ],
  4782. "scale": [
  4783. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4784. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4785. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4786. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4787. { "time": 2, "x": 1, "y": 1 }
  4788. ]
  4789. },
  4790. "bone57": {
  4791. "rotate": [
  4792. { "time": 0, "angle": 0 },
  4793. { "time": 0.5, "angle": -11.79 },
  4794. { "time": 1, "angle": 0 },
  4795. { "time": 1.5, "angle": -11.79 },
  4796. { "time": 2, "angle": 0 }
  4797. ],
  4798. "translate": [
  4799. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4800. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4801. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4802. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4803. { "time": 2, "x": 0, "y": 0 }
  4804. ],
  4805. "scale": [
  4806. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4807. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4808. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4809. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4810. { "time": 2, "x": 1, "y": 1 }
  4811. ]
  4812. },
  4813. "bone58": {
  4814. "rotate": [
  4815. { "time": 0, "angle": 0 },
  4816. { "time": 0.5, "angle": -11.79 },
  4817. { "time": 1, "angle": 0 },
  4818. { "time": 1.5, "angle": -11.79 },
  4819. { "time": 2, "angle": 0 }
  4820. ],
  4821. "translate": [
  4822. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4823. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4824. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4825. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4826. { "time": 2, "x": 0, "y": 0 }
  4827. ],
  4828. "scale": [
  4829. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4830. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4831. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4832. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4833. { "time": 2, "x": 1, "y": 1 }
  4834. ]
  4835. },
  4836. "bone59": {
  4837. "rotate": [
  4838. { "time": 0, "angle": 0 },
  4839. { "time": 0.5, "angle": -11.79 },
  4840. { "time": 1, "angle": 0 },
  4841. { "time": 1.5, "angle": -11.79 },
  4842. { "time": 2, "angle": 0 }
  4843. ],
  4844. "translate": [
  4845. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4846. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4847. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4848. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4849. { "time": 2, "x": 0, "y": 0 }
  4850. ],
  4851. "scale": [
  4852. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4853. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4854. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4855. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4856. { "time": 2, "x": 1, "y": 1 }
  4857. ]
  4858. },
  4859. "bone60": {
  4860. "rotate": [
  4861. { "time": 0, "angle": 0 },
  4862. { "time": 0.5, "angle": -11.79 },
  4863. { "time": 1, "angle": 0 },
  4864. { "time": 1.5, "angle": -11.79 },
  4865. { "time": 2, "angle": 0 }
  4866. ],
  4867. "translate": [
  4868. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4869. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4870. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4871. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4872. { "time": 2, "x": 0, "y": 0 }
  4873. ],
  4874. "scale": [
  4875. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4876. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4877. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4878. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4879. { "time": 2, "x": 1, "y": 1 }
  4880. ]
  4881. },
  4882. "bone61": {
  4883. "rotate": [
  4884. { "time": 0, "angle": 0, "curve": "stepped" },
  4885. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4886. { "time": 1, "angle": 0, "curve": "stepped" },
  4887. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4888. { "time": 2, "angle": 0 }
  4889. ],
  4890. "translate": [
  4891. { "time": 0, "x": 0, "y": 0 },
  4892. { "time": 0.5, "x": 0.3, "y": 0.81 },
  4893. { "time": 1, "x": 0, "y": 0 },
  4894. { "time": 1.5, "x": 0.3, "y": 0.81 },
  4895. { "time": 2, "x": 0, "y": 0 }
  4896. ],
  4897. "scale": [
  4898. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4899. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4900. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4901. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4902. { "time": 2, "x": 1, "y": 1 }
  4903. ]
  4904. },
  4905. "bone62": {
  4906. "rotate": [
  4907. { "time": 0, "angle": 0, "curve": "stepped" },
  4908. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4909. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4910. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4911. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4912. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4913. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4914. { "time": 1, "angle": 0, "curve": "stepped" },
  4915. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4916. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4917. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4918. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4919. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4920. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4921. { "time": 2, "angle": 0 }
  4922. ],
  4923. "translate": [
  4924. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4925. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4926. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4927. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4928. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4929. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4930. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4931. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4932. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4933. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4934. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4935. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4936. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4937. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4938. { "time": 2, "x": 0, "y": 0 }
  4939. ],
  4940. "scale": [
  4941. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4942. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4943. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4944. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4945. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4946. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4947. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4948. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4949. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4950. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4951. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4952. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4953. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4954. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4955. { "time": 2, "x": 1, "y": 1 }
  4956. ]
  4957. },
  4958. "bone63": {
  4959. "rotate": [
  4960. { "time": 0, "angle": 0, "curve": "stepped" },
  4961. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4962. { "time": 1, "angle": 0, "curve": "stepped" },
  4963. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4964. { "time": 2, "angle": 0 }
  4965. ],
  4966. "translate": [
  4967. { "time": 0, "x": -0.75, "y": -1.39 },
  4968. { "time": 0.5, "x": -0.03, "y": -0.65 },
  4969. { "time": 1, "x": -0.75, "y": -1.39 },
  4970. { "time": 1.5, "x": -0.03, "y": -0.65 },
  4971. { "time": 2, "x": -0.75, "y": -1.39 }
  4972. ],
  4973. "scale": [
  4974. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4975. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4976. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4977. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4978. { "time": 2, "x": 1, "y": 1 }
  4979. ]
  4980. },
  4981. "bone64": {
  4982. "rotate": [
  4983. { "time": 0, "angle": 0 },
  4984. { "time": 0.5, "angle": -5.61 },
  4985. { "time": 1, "angle": 0 },
  4986. { "time": 1.5, "angle": -5.61 },
  4987. { "time": 2, "angle": 0 }
  4988. ],
  4989. "translate": [
  4990. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4991. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4992. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4993. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4994. { "time": 2, "x": 0, "y": 0 }
  4995. ],
  4996. "scale": [
  4997. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4998. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4999. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5000. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5001. { "time": 2, "x": 1, "y": 1 }
  5002. ]
  5003. },
  5004. "bone65": {
  5005. "rotate": [
  5006. { "time": 0, "angle": 0, "curve": "stepped" },
  5007. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5008. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5009. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5010. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5011. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5012. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5013. { "time": 1, "angle": 0, "curve": "stepped" },
  5014. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5015. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5016. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5017. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5018. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5019. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5020. { "time": 2, "angle": 0 }
  5021. ],
  5022. "translate": [
  5023. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5024. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5025. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5026. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5027. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5028. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5029. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5030. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5031. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5032. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5033. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5034. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5035. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5036. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5037. { "time": 2, "x": 0, "y": 0 }
  5038. ],
  5039. "scale": [
  5040. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5041. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5042. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5043. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5044. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5045. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5046. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5047. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5048. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5049. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5050. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5051. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5052. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5053. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5054. { "time": 2, "x": 1, "y": 1 }
  5055. ]
  5056. },
  5057. "bone66": {
  5058. "rotate": [
  5059. { "time": 0, "angle": 0, "curve": "stepped" },
  5060. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5061. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5062. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5063. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5064. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5065. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5066. { "time": 1, "angle": 0, "curve": "stepped" },
  5067. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5068. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5069. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5070. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5071. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5072. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5073. { "time": 2, "angle": 0 }
  5074. ],
  5075. "translate": [
  5076. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5077. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5078. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5079. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5080. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5081. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5082. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5083. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5084. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5085. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5086. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5087. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5088. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5089. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5090. { "time": 2, "x": 0, "y": 0 }
  5091. ],
  5092. "scale": [
  5093. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5094. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5095. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5096. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5097. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5098. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5099. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5100. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5101. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5102. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5103. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5104. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5105. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5106. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5107. { "time": 2, "x": 1, "y": 1 }
  5108. ]
  5109. },
  5110. "bone67": {
  5111. "rotate": [
  5112. { "time": 0, "angle": 0, "curve": "stepped" },
  5113. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5114. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5115. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5116. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5117. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5118. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5119. { "time": 1, "angle": 0, "curve": "stepped" },
  5120. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5121. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5122. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5123. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5124. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5125. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5126. { "time": 2, "angle": 0 }
  5127. ],
  5128. "translate": [
  5129. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5130. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5131. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5132. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5133. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5134. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5135. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5136. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5137. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5138. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5139. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5140. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5141. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5142. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5143. { "time": 2, "x": 0, "y": 0 }
  5144. ],
  5145. "scale": [
  5146. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5147. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5148. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5149. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5150. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5151. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5152. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5153. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5154. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5155. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5156. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5157. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5158. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5159. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5160. { "time": 2, "x": 1, "y": 1 }
  5161. ]
  5162. },
  5163. "bone68": {
  5164. "rotate": [
  5165. { "time": 0, "angle": 0, "curve": "stepped" },
  5166. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5167. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5168. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5169. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5170. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5171. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5172. { "time": 1, "angle": 0, "curve": "stepped" },
  5173. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5174. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5175. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5176. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5177. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5178. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5179. { "time": 2, "angle": 0 }
  5180. ],
  5181. "translate": [
  5182. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5183. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5184. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5185. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5186. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5187. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5188. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5189. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5190. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5191. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5192. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5193. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5194. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5195. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5196. { "time": 2, "x": 0, "y": 0 }
  5197. ],
  5198. "scale": [
  5199. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5200. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5201. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5202. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5203. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5204. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5205. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5206. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5207. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5208. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5209. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5210. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5211. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5212. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5213. { "time": 2, "x": 1, "y": 1 }
  5214. ]
  5215. },
  5216. "bone69": {
  5217. "rotate": [
  5218. { "time": 0, "angle": 0, "curve": "stepped" },
  5219. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5220. { "time": 0.5, "angle": 0 },
  5221. { "time": 0.8333, "angle": 3.44 },
  5222. { "time": 1, "angle": 0, "curve": "stepped" },
  5223. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5224. { "time": 1.5, "angle": 0 },
  5225. { "time": 1.8333, "angle": 3.44 },
  5226. { "time": 2, "angle": 0 }
  5227. ],
  5228. "translate": [
  5229. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5230. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5231. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5232. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5233. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5234. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5235. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5236. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5237. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5238. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5239. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5240. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5241. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5242. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5243. { "time": 2, "x": 0, "y": 0 }
  5244. ],
  5245. "scale": [
  5246. { "time": 0, "x": 1, "y": 1 },
  5247. { "time": 0.1667, "x": 1, "y": 0.677 },
  5248. { "time": 0.3333, "x": 1, "y": 0.643 },
  5249. { "time": 0.5, "x": 1, "y": 1 },
  5250. { "time": 0.6667, "x": 1, "y": 0.643 },
  5251. { "time": 0.8333, "x": 1, "y": 0.804 },
  5252. { "time": 1, "x": 1, "y": 1 },
  5253. { "time": 1.1667, "x": 1, "y": 0.677 },
  5254. { "time": 1.3333, "x": 1, "y": 0.643 },
  5255. { "time": 1.5, "x": 1, "y": 1 },
  5256. { "time": 1.6667, "x": 1, "y": 0.643 },
  5257. { "time": 1.8333, "x": 1, "y": 0.804 },
  5258. { "time": 2, "x": 1, "y": 1 }
  5259. ]
  5260. },
  5261. "bone70": {
  5262. "rotate": [
  5263. { "time": 0, "angle": 0, "curve": "stepped" },
  5264. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5265. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5266. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5267. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5268. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5269. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5270. { "time": 1, "angle": 0, "curve": "stepped" },
  5271. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5272. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5273. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5274. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5275. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5276. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5277. { "time": 2, "angle": 0 }
  5278. ],
  5279. "translate": [
  5280. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5281. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5282. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5283. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5284. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5285. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5286. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5287. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5288. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5289. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5290. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5291. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5292. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5293. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5294. { "time": 2, "x": 0, "y": 0 }
  5295. ],
  5296. "scale": [
  5297. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5298. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5299. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5300. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5301. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5302. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5303. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5304. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5305. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5306. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5307. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5308. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5309. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5310. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5311. { "time": 2, "x": 1, "y": 1 }
  5312. ]
  5313. },
  5314. "bone71": {
  5315. "rotate": [
  5316. { "time": 0, "angle": 0, "curve": "stepped" },
  5317. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5318. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5319. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5320. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5321. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5322. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5323. { "time": 1, "angle": 0, "curve": "stepped" },
  5324. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5325. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5326. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5327. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5328. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5329. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5330. { "time": 2, "angle": 0 }
  5331. ],
  5332. "translate": [
  5333. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5334. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5335. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  5336. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5337. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5338. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5339. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5340. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5341. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5342. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5343. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5344. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5345. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5346. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5347. { "time": 2, "x": 0, "y": 0 }
  5348. ],
  5349. "scale": [
  5350. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5351. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5352. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5353. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5354. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5355. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5356. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5357. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5358. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5359. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5360. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5361. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5362. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5363. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5364. { "time": 2, "x": 1, "y": 1 }
  5365. ]
  5366. },
  5367. "bone72": {
  5368. "rotate": [
  5369. { "time": 0, "angle": 0 },
  5370. { "time": 0.2333, "angle": -52.4 },
  5371. { "time": 0.5, "angle": -39.73 },
  5372. { "time": 0.7333, "angle": -12.41 },
  5373. { "time": 1, "angle": 0 },
  5374. { "time": 1.2333, "angle": -52.4 },
  5375. { "time": 1.5, "angle": -39.73 },
  5376. { "time": 1.7333, "angle": -12.41 },
  5377. { "time": 2, "angle": 0 }
  5378. ],
  5379. "translate": [
  5380. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5381. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5382. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5383. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5384. { "time": 2, "x": 0, "y": 0 }
  5385. ],
  5386. "scale": [
  5387. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5388. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5389. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5390. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5391. { "time": 2, "x": 1, "y": 1 }
  5392. ]
  5393. }
  5394. },
  5395. "deform": {
  5396. "default": {
  5397. "qundi": {
  5398. "qundi": [
  5399. { "time": 0 },
  5400. {
  5401. "time": 0.2667,
  5402. "vertices": [ -0.90092, 5.80306, -0.8501, 5.81073, -1.03832, 5.78004, -1.03498, 6.17271, -0.98092, 6.18154, -1.18111, 6.14641, 0.48655, 4.7709, 0.52832, 4.76645, 0.37323, 4.78108, 0.33065, 6.58006, 0.38826, 6.57691, 0.17446, 6.58604, -0.89451, 10.23078, -0.80489, 10.23822, -1.13694, 10.20667, -1.06675, 16.56632, -0.92167, 16.57503, -1.4594, 16.53634, -0.88035, 22.26667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.69633, 3.63551, 3.57633, 3.75361, 3.29443, 5.04605, 3.12884, 5.15036, 2.94384, 2.47647, 2.96537, 2.4506, 2.88424, 2.54559, 0.8463, 4.6852, 0.88729, 4.67761, 0.7349, 4.70395, 1.37434, 5.98399, 1.42668, 5.97172, 1.23197, 6.01489, 1.17709, 5.9641, 1.22927, 5.95357, 1.03525, 5.99033, 0.21424, 2.11616, 0.23278, 2.1142, 0.16396, 2.12065 ]
  5403. },
  5404. {
  5405. "time": 0.5,
  5406. "offset": 12,
  5407. "vertices": [ 0.28802, -2.43423, 0.26675, -2.43667, 0.34565, -2.42672, 0.3805, -4.68833, 0.33947, -4.69149, 0.49156, -4.67799, 0.32655, -3.37344, 0.29705, -3.37618, 0.40645, -3.36475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.80051, 3.41968, 0.83044, 3.41254, 0.71913, 3.43771, 1.12226, 4.74997, 1.16385, 4.73996, 1.00922, 4.77526, 0.76198, 4.35888, 0.80016, 4.35204, 0.65832, 4.37573, 0.4017, 3.9678, 0.43646, 3.96413, 0.30742, 3.97622 ]
  5408. },
  5409. {
  5410. "time": 0.6667,
  5411. "vertices": [ -0.41828, 6.54914, -0.36092, 6.55255, -0.57356, 6.53737, -0.29974, 7.32249, -0.23561, 7.32483, -0.47339, 7.31332, 0.37189, 8.02184, 0.44216, 8.01827, 0.18144, 8.0284, -0.31585, 7.27763, -0.25208, 7.28012, -0.48845, 7.26809, 0.64012, 8.17118, 0.71167, 8.16525, 0.44607, 8.18406, 0.53824, 11.5791, 0.63961, 11.57395, 0.26338, 11.58861, -1.36033, 19.93338, 0, 0, 0, 0, 0, 0, 0, 0, -0.2959, -4.52495, -1.26154, -6.14387, -0.8269, -6.12613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.53368, 2.27979, 0.55362, 2.27502, 0.47942, 2.2918, 0.74818, 3.16665, 0.7759, 3.15997, 0.67281, 3.1835, 0.50799, 2.90592, 0.53344, 2.90136, 0.43888, 2.91715, 0.2678, 2.6452, 0.29097, 2.64275, 0.20495, 2.65081 ]
  5412. },
  5413. { "time": 1 },
  5414. {
  5415. "time": 1.2667,
  5416. "vertices": [ -0.90092, 5.80306, -0.8501, 5.81073, -1.03832, 5.78004, -1.03498, 6.17271, -0.98092, 6.18154, -1.18111, 6.14641, 0.48655, 4.7709, 0.52832, 4.76645, 0.37323, 4.78108, 0.33065, 6.58006, 0.38826, 6.57691, 0.17446, 6.58604, -0.89451, 10.23078, -0.80489, 10.23822, -1.13694, 10.20667, -1.06675, 16.56632, -0.92167, 16.57503, -1.4594, 16.53634, -0.88035, 22.26667, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.69633, 3.63551, 3.57633, 3.75361, 3.29443, 5.04605, 3.12884, 5.15036, 2.94384, 2.47647, 2.96537, 2.4506, 2.88424, 2.54559, 0.8463, 4.6852, 0.88729, 4.67761, 0.7349, 4.70395, 1.37434, 5.98399, 1.42668, 5.97172, 1.23197, 6.01489, 1.17709, 5.9641, 1.22927, 5.95357, 1.03525, 5.99033, 0.21424, 2.11616, 0.23278, 2.1142, 0.16396, 2.12065 ]
  5417. },
  5418. {
  5419. "time": 1.5,
  5420. "offset": 12,
  5421. "vertices": [ 0.28802, -2.43423, 0.26675, -2.43667, 0.34565, -2.42672, 0.3805, -4.68833, 0.33947, -4.69149, 0.49156, -4.67799, 0.32655, -3.37344, 0.29705, -3.37618, 0.40645, -3.36475, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.80051, 3.41968, 0.83044, 3.41254, 0.71913, 3.43771, 1.12226, 4.74997, 1.16385, 4.73996, 1.00922, 4.77526, 0.76198, 4.35888, 0.80016, 4.35204, 0.65832, 4.37573, 0.4017, 3.9678, 0.43646, 3.96413, 0.30742, 3.97622 ]
  5422. },
  5423. {
  5424. "time": 1.6667,
  5425. "vertices": [ -0.41828, 6.54914, -0.36092, 6.55255, -0.57356, 6.53737, -0.29974, 7.32249, -0.23561, 7.32483, -0.47339, 7.31332, 0.37189, 8.02184, 0.44216, 8.01827, 0.18144, 8.0284, -0.31585, 7.27763, -0.25208, 7.28012, -0.48845, 7.26809, 0.64012, 8.17118, 0.71167, 8.16525, 0.44607, 8.18406, 0.53824, 11.5791, 0.63961, 11.57395, 0.26338, 11.58861, -1.36033, 19.93338, 0, 0, 0, 0, 0, 0, 0, 0, -0.2959, -4.52495, -1.26154, -6.14387, -0.8269, -6.12613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.53368, 2.27979, 0.55362, 2.27502, 0.47942, 2.2918, 0.74818, 3.16665, 0.7759, 3.15997, 0.67281, 3.1835, 0.50799, 2.90592, 0.53344, 2.90136, 0.43888, 2.91715, 0.2678, 2.6452, 0.29097, 2.64275, 0.20495, 2.65081 ]
  5426. },
  5427. { "time": 2 }
  5428. ]
  5429. },
  5430. "qunzi2": {
  5431. "qunzi2": [
  5432. { "time": 0 },
  5433. {
  5434. "time": 0.3333,
  5435. "offset": 4,
  5436. "vertices": [ 0.34072, 4.98593, -1.02466, 8.8801, -1.02466, 8.8801, -1.02466, 8.8801, -0.35466, 3.07363 ]
  5437. },
  5438. {
  5439. "time": 0.5,
  5440. "offset": 4,
  5441. "vertices": [ 0.51108, 7.4789, -0.53199, 4.61044, -0.53199, 4.61044, -0.53199, 4.61044, -0.53199, 4.61044 ]
  5442. },
  5443. {
  5444. "time": 0.6667,
  5445. "offset": 4,
  5446. "vertices": [ 0.34072, 4.98593, -1.02466, 8.8801, -1.02466, 8.8801, -1.02466, 8.8801, -0.35466, 3.07363 ]
  5447. },
  5448. { "time": 1 },
  5449. {
  5450. "time": 1.3333,
  5451. "offset": 4,
  5452. "vertices": [ 0.34072, 4.98593, -1.02466, 8.8801, -1.02466, 8.8801, -1.02466, 8.8801, -0.35466, 3.07363 ]
  5453. },
  5454. {
  5455. "time": 1.5,
  5456. "offset": 4,
  5457. "vertices": [ 0.51108, 7.4789, -0.53199, 4.61044, -0.53199, 4.61044, -0.53199, 4.61044, -0.53199, 4.61044 ]
  5458. },
  5459. {
  5460. "time": 1.6667,
  5461. "offset": 4,
  5462. "vertices": [ 0.34072, 4.98593, -1.02466, 8.8801, -1.02466, 8.8801, -1.02466, 8.8801, -0.35466, 3.07363 ]
  5463. },
  5464. { "time": 2 }
  5465. ]
  5466. },
  5467. "shenti": {
  5468. "shenti": [
  5469. { "time": 0 },
  5470. {
  5471. "time": 0.5,
  5472. "offset": 18,
  5473. "vertices": [ -0.51214, 1.82449, -0.13901, 1.89087, -1.22057, -1.45087, -0.72976, -1.74995, -0.51214, 1.82449, -0.13901, 1.89087, -1.22057, -1.45087, -0.72976, -1.74995, -0.51214, 1.82449, -0.13901, 1.89087, -1.22057, -1.45087, -0.72976, -1.74995, -0.86048, 1.73353, -0.49806, 1.86448, -0.94507, -1.68263, -0.39748, -1.88853, -0.39532, 1.14993, -0.08916, 1.21271, -0.78281, -0.9305, -0.46803, -1.12232, -0.40862, -1.14526, -0.39532, 1.14993, -0.08916, 1.21271, -0.78281, -0.9305, -0.46803, -1.12232, -0.40862, -1.14526, -0.08916, 1.21271, -0.78281, -0.9305, -0.46803, -1.12232, -0.40862, -1.14526, -0.78281, -0.9305, -0.46803, -1.12232, -0.40862, -1.14526, -1.07637, -1.27945, -0.64355, -1.5432, -0.56185, -1.57475, -0.76103, -1.48874, -0.69541, -1.5205, -0.16417, -1.57843, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -1.07542, -1.16696, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -1.07542, -1.16696, -0.03965, -0.81757, -0.49898, -0.64886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.14671, 0.60071, 2.11849, 0.69371, 2.13565, -0.63878, 2.36606, -0.07748, 2.3672, 0.02573, 1.95884, -1.32928, 1.90724, -0.97499, 1.94793, -0.89092, 1.09156, -1.84296, 2.01746, -0.71977, 1.90724, -0.97499, 1.94793, -0.89092, 2.01746, -0.71977, 1.90724, -0.97499, 1.94793, -0.89092, 6.0E-5, 5.0E-5, 4.0E-5, -2.0E-5, 6.0E-5, 0, 6.0E-5, 5.0E-5, 4.0E-5, -2.0E-5, 6.0E-5, 0, 6.0E-5, 5.0E-5, 4.0E-5, -2.0E-5, 6.0E-5, 5.0E-5, 4.0E-5, -2.0E-5, 0.44488, -3.18893, 0.61131, -3.16119, 0.19679, -3.21378, 2.20074, -2.35019, 0.44488, -3.18893, 0.61131, -3.16119, 0.19679, -3.21378, -0.53105, -3.17567, 2.20074, -2.35019, 0.44488, -3.18893, 0.61131, -3.16119, -0.53105, -3.17567, 2.19215, -2.35819, 2.20074, -2.35019, 0.44488, -3.18893, 0.61131, -3.16119, -0.53105, -3.17567, 2.19215, -2.35819, 2.20074, -2.35019, 0.44488, -3.18893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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.29171, 3.41801, -2.06657, 3.01344, -1.29171, 3.41801, -2.06657, 3.01344, -3.00985, 2.07183, -1.29171, 3.41801, -2.06657, 3.01344, -3.00985, 2.07183, 0, 0, 0, 0, -2.06657, 3.01344, -3.00985, 2.07183, -2.06657, 3.01344, -3.00985, 2.07183, -2.06657, 3.01344, -3.00985, 2.07183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.14805, 0.03868, 0.15261, 0.01122, -0.14957, -0.03269, 0.14805, 0.03868, 0.15261, 0.01122, -0.14957, -0.03269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.59885, 2.29313, 0, 0, 0, 0, -0.02114, 2.37486, 0.3566, -2.34802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.59885, 2.29313, -0.59885, 2.29313, 0.14805, 0.03868, 0.15261, 0.01122, -0.11707, 0.09851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.17432, 1.18865, 0.38665, 1.1374, -0.22211, -1.18066, 1.17192, 1.6073, 1.44356, 1.36853, -1.9889, 0.028, -0.18375, 4.42, 0.61952, 4.3802, 0.00583, -4.4238, 1.47238, 3.09236, 2.00792, 2.7747, -1.59557, -3.03068 ]
  5474. },
  5475. { "time": 1 },
  5476. {
  5477. "time": 1.5,
  5478. "offset": 18,
  5479. "vertices": [ -0.51214, 1.82449, -0.13901, 1.89087, -1.22057, -1.45087, -0.72976, -1.74995, -0.51214, 1.82449, -0.13901, 1.89087, -1.22057, -1.45087, -0.72976, -1.74995, -0.51214, 1.82449, -0.13901, 1.89087, -1.22057, -1.45087, -0.72976, -1.74995, -0.86048, 1.73353, -0.49806, 1.86448, -0.94507, -1.68263, -0.39748, -1.88853, -0.39532, 1.14993, -0.08916, 1.21271, -0.78281, -0.9305, -0.46803, -1.12232, -0.40862, -1.14526, -0.39532, 1.14993, -0.08916, 1.21271, -0.78281, -0.9305, -0.46803, -1.12232, -0.40862, -1.14526, -0.08916, 1.21271, -0.78281, -0.9305, -0.46803, -1.12232, -0.40862, -1.14526, -0.78281, -0.9305, -0.46803, -1.12232, -0.40862, -1.14526, -1.07637, -1.27945, -0.64355, -1.5432, -0.56185, -1.57475, -0.76103, -1.48874, -0.69541, -1.5205, -0.16417, -1.57843, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -1.07542, -1.16696, -0.08127, -1.58484, -0.28582, -1.56097, -0.21751, -1.57195, -1.07542, -1.16696, -0.03965, -0.81757, -0.49898, -0.64886, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.14671, 0.60071, 2.11849, 0.69371, 2.13565, -0.63878, 2.36606, -0.07748, 2.3672, 0.02573, 1.95884, -1.32928, 1.90724, -0.97499, 1.94793, -0.89092, 1.09156, -1.84296, 2.01746, -0.71977, 1.90724, -0.97499, 1.94793, -0.89092, 2.01746, -0.71977, 1.90724, -0.97499, 1.94793, -0.89092, 6.0E-5, 5.0E-5, 4.0E-5, -2.0E-5, 6.0E-5, 0, 6.0E-5, 5.0E-5, 4.0E-5, -2.0E-5, 6.0E-5, 0, 6.0E-5, 5.0E-5, 4.0E-5, -2.0E-5, 6.0E-5, 5.0E-5, 4.0E-5, -2.0E-5, 0.44488, -3.18893, 0.61131, -3.16119, 0.19679, -3.21378, 2.20074, -2.35019, 0.44488, -3.18893, 0.61131, -3.16119, 0.19679, -3.21378, -0.53105, -3.17567, 2.20074, -2.35019, 0.44488, -3.18893, 0.61131, -3.16119, -0.53105, -3.17567, 2.19215, -2.35819, 2.20074, -2.35019, 0.44488, -3.18893, 0.61131, -3.16119, -0.53105, -3.17567, 2.19215, -2.35819, 2.20074, -2.35019, 0.44488, -3.18893, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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.29171, 3.41801, -2.06657, 3.01344, -1.29171, 3.41801, -2.06657, 3.01344, -3.00985, 2.07183, -1.29171, 3.41801, -2.06657, 3.01344, -3.00985, 2.07183, 0, 0, 0, 0, -2.06657, 3.01344, -3.00985, 2.07183, -2.06657, 3.01344, -3.00985, 2.07183, -2.06657, 3.01344, -3.00985, 2.07183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.14805, 0.03868, 0.15261, 0.01122, -0.14957, -0.03269, 0.14805, 0.03868, 0.15261, 0.01122, -0.14957, -0.03269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.59885, 2.29313, 0, 0, 0, 0, -0.02114, 2.37486, 0.3566, -2.34802, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.59885, 2.29313, -0.59885, 2.29313, 0.14805, 0.03868, 0.15261, 0.01122, -0.11707, 0.09851, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.17432, 1.18865, 0.38665, 1.1374, -0.22211, -1.18066, 1.17192, 1.6073, 1.44356, 1.36853, -1.9889, 0.028, -0.18375, 4.42, 0.61952, 4.3802, 0.00583, -4.4238, 1.47238, 3.09236, 2.00792, 2.7747, -1.59557, -3.03068 ]
  5480. },
  5481. { "time": 2 }
  5482. ]
  5483. }
  5484. }
  5485. }
  5486. }
  5487. }
  5488. }