42101.json 507 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675
  1. {
  2. "skeleton": { "hash": "eBvbnyreipdyv82KOQ7Z/oUWryI", "spine": "3.6.53", "width": 169.24, "height": 193, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -3.51, "y": 62.44 },
  6. { "name": "bone2", "parent": "bone", "length": 15.95, "rotation": 90.99, "y": 2.2 },
  7. { "name": "bone3", "parent": "bone2", "length": 17.93, "rotation": -5.39, "x": 15.95 },
  8. { "name": "bone4", "parent": "bone", "length": 8.24, "rotation": -89.01, "x": -0.08, "y": -2.12 },
  9. { "name": "bone5", "parent": "bone", "length": 21.36, "rotation": -94.19, "x": -7.27, "y": -8.39 },
  10. { "name": "bone6", "parent": "bone5", "length": 23.51, "rotation": -0.66, "x": 21.36 },
  11. { "name": "bone7", "parent": "bone6", "length": 13.88, "rotation": -71.54, "x": 25.37, "y": 0.01 },
  12. { "name": "bone8", "parent": "bone", "length": 22.67, "rotation": -84.97, "x": 12.75, "y": -7.82, "color": "2db3f9ff" },
  13. { "name": "bone9", "parent": "bone8", "length": 21.33, "rotation": -1.98, "x": 22.82, "y": 0.13, "color": "2db3f9ff" },
  14. { "name": "bone10", "parent": "bone9", "length": 12.17, "rotation": -76.1, "x": 23.44, "y": -0.4, "color": "2db3f9ff" },
  15. { "name": "bone11", "parent": "bone3", "length": 17.26, "rotation": 148.59, "x": 20.16, "y": 9.14, "color": "2db4f9ff" },
  16. { "name": "bone12", "parent": "bone11", "length": 18.39, "rotation": -10.51, "x": 17.26, "color": "2db4f9ff" },
  17. { "name": "bone13", "parent": "bone12", "length": 13.5, "rotation": 6.73, "x": 18.38, "y": 0.28, "color": "2db4f9ff" },
  18. { "name": "bone14", "parent": "bone3", "length": 21.31, "rotation": -135.93, "x": 21.99, "y": -18.5 },
  19. { "name": "bone15", "parent": "bone14", "length": 14.97, "rotation": 0.73, "x": 20.71, "y": -0.25 },
  20. { "name": "bone16", "parent": "bone15", "length": 13.54, "rotation": -2.59, "x": 14.97 },
  21. { "name": "bone17", "parent": "bone3", "length": 16.07, "rotation": 176.17, "x": 19.12, "y": 8.29 },
  22. { "name": "bone18", "parent": "bone17", "length": 12.83, "rotation": -2.55, "x": 16.07 },
  23. { "name": "bone19", "parent": "bone18", "length": 11.65, "rotation": -9.83, "x": 12.83 },
  24. { "name": "bone20", "parent": "bone3", "length": 18.98, "rotation": -170.46, "x": 20.84, "y": -10.13 },
  25. { "name": "bone21", "parent": "bone20", "length": 12.33, "rotation": 3.25, "x": 18.98 },
  26. { "name": "bone22", "parent": "bone21", "length": 10.56, "rotation": 8.67, "x": 12.45, "y": 0.08 },
  27. { "name": "bone23", "parent": "bone3", "length": 6.16, "rotation": 4.4, "x": 14.31, "y": -1.85 },
  28. { "name": "bone24", "parent": "bone3", "length": 61.42, "rotation": 5.76, "x": 22.63, "y": -0.24 },
  29. { "name": "bone25", "parent": "bone24", "length": 11.02, "rotation": 150.57, "x": 63.69, "y": 19.72 },
  30. { "name": "bone26", "parent": "bone25", "length": 9.9, "rotation": 6.97, "x": 11.73, "y": 0.38 },
  31. { "name": "bone27", "parent": "bone26", "length": 9.06, "rotation": 10.8, "x": 10.65, "y": 0.29 },
  32. { "name": "bone28", "parent": "bone27", "length": 8.8, "rotation": 3.96, "x": 9.85, "y": 0.14 },
  33. { "name": "bone29", "parent": "bone24", "length": 7.47, "rotation": -140.76, "x": 64.59, "y": 3 },
  34. { "name": "bone30", "parent": "bone29", "length": 6.88, "rotation": -25.58, "x": 8.17, "y": -0.18 },
  35. { "name": "bone31", "parent": "bone30", "length": 5.84, "rotation": -11.84, "x": 8.33, "y": -0.22 },
  36. { "name": "bone32", "parent": "bone24", "length": 10.3, "rotation": -115.51, "x": 71.03, "y": 0.91 },
  37. { "name": "bone33", "parent": "bone32", "length": 10.11, "rotation": -30.64, "x": 10.94, "y": -0.24 },
  38. { "name": "bone34", "parent": "bone33", "length": 11.4, "rotation": -12.66, "x": 10.11 },
  39. { "name": "bone35", "parent": "bone34", "length": 10.95, "rotation": -14.91, "x": 11.55, "y": -0.06 },
  40. { "name": "bone36", "parent": "bone24", "length": 10.09, "rotation": 118.5, "x": 73.42, "y": 12.03 },
  41. { "name": "bone37", "parent": "bone36", "length": 11.12, "rotation": 16.91, "x": 10.09 },
  42. { "name": "bone38", "parent": "bone37", "length": 11.28, "rotation": 22.19, "x": 11.35, "y": 0.22 },
  43. { "name": "bone39", "parent": "bone38", "length": 9.99, "rotation": 12.64, "x": 11.53, "y": 0.27 },
  44. { "name": "bone40", "parent": "bone39", "length": 9.28, "rotation": -16.38, "x": 10.31, "y": 0.05 },
  45. { "name": "bone41", "parent": "bone24", "length": 15.59, "rotation": -138.89, "x": 67.36, "y": -17.64 },
  46. { "name": "bone42", "parent": "bone41", "length": 11.67, "rotation": -16.98, "x": 15.59 },
  47. { "name": "bone43", "parent": "bone42", "length": 9.66, "rotation": -2.8, "x": 11.67 },
  48. { "name": "bone44", "parent": "bone43", "length": 9.44, "rotation": 27.88, "x": 9.81, "y": -0.06 },
  49. { "name": "bone45", "parent": "bone24", "length": 17.07, "rotation": -86.46, "x": 75.24, "y": 0.16 },
  50. { "name": "bone46", "parent": "bone45", "length": 13.85, "rotation": -33.56, "x": 17.07 },
  51. { "name": "bone47", "parent": "bone46", "length": 12.88, "rotation": -21.44, "x": 14.73, "y": -0.26 },
  52. { "name": "bone48", "parent": "bone47", "length": 13.64, "rotation": -9.98, "x": 13.11, "y": 0.02 },
  53. { "name": "bone49", "parent": "bone48", "length": 9.26, "rotation": 27.23, "x": 13.64 },
  54. { "name": "bone50", "parent": "bone24", "length": 11.51, "rotation": 91.06, "x": 77.49, "y": 6.1 },
  55. { "name": "bone51", "parent": "bone50", "length": 8.27, "rotation": 20.63, "x": 11.51 },
  56. { "name": "bone52", "parent": "bone51", "length": 7.59, "rotation": -6.94, "x": 8.64, "y": 0.02 },
  57. { "name": "bone53", "parent": "bone52", "length": 5.83, "rotation": -16.11, "x": 7.9, "y": -0.09 },
  58. { "name": "bone54", "parent": "bone24", "length": 12.04, "rotation": -2.03, "x": 19.19, "y": -11.94 },
  59. { "name": "bone55", "parent": "bone24", "length": 13.16, "rotation": -0.14, "x": 18.3, "y": 15.67 },
  60. { "name": "bone56", "parent": "bone24", "length": 6.58, "rotation": -0.14, "x": 19.13, "y": 3.33 },
  61. { "name": "bone57", "parent": "bone24", "length": 5.91, "rotation": 4.08, "x": 35.43, "y": 5.46 },
  62. { "name": "bone58", "parent": "bone24", "length": 6.41, "rotation": -2.16, "x": 6.44, "y": 2.7 },
  63. { "name": "bone59", "parent": "root", "x": -89.02, "y": 119.96 },
  64. { "name": "bone60", "parent": "root", "x": 54.94, "y": 124.54 },
  65. { "name": "bone61", "parent": "root", "x": -67.3, "y": 167.81 },
  66. { "name": "bone62", "parent": "root", "x": 55.22, "y": 171.32 }
  67. ],
  68. "slots": [
  69. { "name": "zuoshou", "bone": "bone11", "attachment": "zuoshou" },
  70. { "name": "book", "bone": "bone13", "attachment": "book" },
  71. { "name": "zuotui", "bone": "bone5", "attachment": "zuotui" },
  72. { "name": "youtui", "bone": "bone8", "attachment": "youtui" },
  73. { "name": "kudang", "bone": "bone4", "attachment": "kudang" },
  74. { "name": "shenti", "bone": "bone2", "attachment": "shenti" },
  75. { "name": "waitaozuo", "bone": "bone17", "attachment": "waitaozuo" },
  76. { "name": "waitaoyou", "bone": "bone20", "attachment": "waitaoyou" },
  77. { "name": "bozigenlingjie", "bone": "bone2", "attachment": "bozigenlingjie" },
  78. { "name": "youshou", "bone": "bone14", "attachment": "youshou" },
  79. { "name": "lingjie", "bone": "bone23", "attachment": "lingjie" },
  80. { "name": "toufa10", "bone": "bone2", "attachment": "toufa10" },
  81. { "name": "toufa9", "bone": "bone2", "attachment": "toufa9" },
  82. { "name": "lian", "bone": "bone24", "attachment": "lian" },
  83. { "name": "zuiba", "bone": "bone58", "attachment": "zuiba" },
  84. { "name": "bizui", "bone": "bone58" },
  85. { "name": "zuoyan", "bone": "bone55", "attachment": "zuoyan" },
  86. { "name": "youyan", "bone": "bone54", "attachment": "youyan" },
  87. { "name": "biyan", "bone": "bone56" },
  88. { "name": "meimao", "bone": "bone57", "attachment": "meimao" },
  89. { "name": "toufa8", "bone": "bone50", "attachment": "toufa8" },
  90. { "name": "toufa7", "bone": "bone45", "attachment": "toufa7" },
  91. { "name": "toufa6", "bone": "bone2", "attachment": "toufa6" },
  92. { "name": "toufa5", "bone": "bone36", "attachment": "toufa5" },
  93. { "name": "toufa4", "bone": "bone41", "attachment": "toufa4" },
  94. { "name": "toufa3", "bone": "bone32", "attachment": "toufa3" },
  95. { "name": "toufa2", "bone": "bone29", "attachment": "toufa2" },
  96. { "name": "toufa1", "bone": "bone25", "attachment": "toufa1" },
  97. { "name": "fuhao16", "bone": "bone62", "attachment": "fuhao5" },
  98. { "name": "fuhao7", "bone": "bone60", "attachment": "fuhao4" },
  99. { "name": "fuhao14", "bone": "bone61", "attachment": "fuhao2" },
  100. { "name": "fuhao1", "bone": "bone59", "attachment": "fuhao1" }
  101. ],
  102. "skins": {
  103. "default": {
  104. "biyan": {
  105. "biyan": { "x": 2.76, "y": -2.58, "rotation": -91.22, "width": 51, "height": 10 }
  106. },
  107. "bizui": {
  108. "bizui": { "x": 2.52, "y": -2.56, "rotation": -89.2, "width": 13, "height": 6 }
  109. },
  110. "book": {
  111. "book": { "x": 17.23, "y": -0.72, "rotation": 129.59, "width": 34, "height": 33 }
  112. },
  113. "bozigenlingjie": {
  114. "bozigenlingjie": { "x": 39.27, "y": -5.12, "rotation": -90.99, "width": 19, "height": 14 }
  115. },
  116. "fuhao1": {
  117. "fuhao1": { "x": 1.65, "y": -2.49, "width": 23, "height": 24 }
  118. },
  119. "fuhao14": {
  120. "fuhao2": { "x": 0.65, "y": -1.97, "width": 21, "height": 28 }
  121. },
  122. "fuhao16": {
  123. "fuhao5": { "x": 1.15, "y": 0.97, "width": 28, "height": 29 }
  124. },
  125. "fuhao7": {
  126. "fuhao4": { "x": 4.15, "y": -0.35, "width": 22, "height": 26 }
  127. },
  128. "kudang": {
  129. "kudang": {
  130. "type": "mesh",
  131. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  132. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  133. "vertices": [ 14.72, 22.77, 14.05, -16.22, -10.95, -15.79, -10.28, 23.21 ],
  134. "hull": 4,
  135. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  136. "width": 39,
  137. "height": 25
  138. }
  139. },
  140. "lian": {
  141. "lian": { "x": 31.71, "y": -6.5, "rotation": -91.36, "width": 69, "height": 66 }
  142. },
  143. "lingjie": {
  144. "lingjie": { "x": 2.28, "y": 0.23, "rotation": -90, "width": 25, "height": 14 }
  145. },
  146. "meimao": {
  147. "meimao": { "x": 1.27, "y": -3.18, "rotation": -95.44, "width": 39, "height": 8 }
  148. },
  149. "shenti": {
  150. "shenti": {
  151. "type": "mesh",
  152. "uvs": [ 1, 0.50627, 1, 0.58621, 1, 0.72151, 1, 1, 0.40498, 1, 0, 1, 0, 0.71946, 0, 0.60261, 0, 0.51241, 0, 0, 0.45245, 0, 1, 0, 0.40929, 0.60056, 0.40799, 0.72171, 0.41512, 0.5195 ],
  153. "triangles": [ 12, 1, 2, 7, 8, 12, 12, 14, 1, 12, 8, 14, 14, 0, 1, 0, 14, 10, 10, 14, 9, 14, 8, 9, 10, 11, 0, 4, 13, 3, 13, 2, 3, 13, 4, 6, 4, 5, 6, 13, 12, 2, 12, 13, 7, 13, 6, 7 ],
  154. "vertices": [ 2, 2, 19.73, -22.29, 0.27291, 3, 5.85, -21.83, 0.72709, 2, 2, 16.53, -22.23, 0.39017, 3, 2.66, -22.08, 0.60983, 2, 2, 11.12, -22.14, 0.59754, 3, -2.74, -22.49, 0.40246, 2, 2, -0.02, -21.94, 0.81739, 3, -13.84, -23.35, 0.18261, 1, 2, 0.37, 0.66, 1, 2, 2, 0.63, 16.05, 0.96682, 3, -16.76, 14.54, 0.03318, 2, 2, 11.85, 15.86, 0.69149, 3, -5.57, 15.4, 0.30851, 2, 2, 16.53, 15.78, 0.44406, 3, -0.91, 15.76, 0.55594, 2, 2, 20.13, 15.71, 0.26165, 3, 2.69, 16.04, 0.73835, 2, 2, 40.63, 15.36, 0, 3, 23.12, 17.61, 1, 1, 3, 24.44, 0.47, 1, 2, 2, 39.97, -22.63, 1.0E-5, 3, 26.04, -20.28, 0.99999, 2, 2, 16.34, 0.22, 0.1, 3, 0.37, 0.26, 0.9, 2, 2, 11.5, 0.36, 0.99585, 3, -4.47, -0.06, 0.00415, 2, 2, 19.58, -0.05, 0.00139, 3, 3.62, 0.29, 0.99861 ],
  155. "hull": 12,
  156. "edges": [ 6, 8, 8, 10, 18, 20, 20, 22, 14, 24, 24, 2, 10, 12, 12, 14, 8, 26, 26, 24, 12, 26, 2, 4, 4, 6, 26, 4, 14, 16, 16, 18, 20, 28, 28, 24, 16, 28, 2, 0, 0, 22, 28, 0 ],
  157. "width": 38,
  158. "height": 40
  159. }
  160. },
  161. "toufa1": {
  162. "toufa1": {
  163. "type": "mesh",
  164. "uvs": [ 0.99999, 0.21652, 1, 0.39582, 0.80557, 0.41286, 0.70418, 0.41991, 0.62932, 0.4846, 0.54533, 0.55717, 0.48709, 0.67377, 0.44548, 0.75705, 0.3824, 0.88694, 0.32748, 1, 0.15502, 1, 0, 1, 0, 0.82624, 0, 0.67381, 0, 0.57638, 0, 0.45067, 0, 0.29506, 0.13099, 0.1861, 0.2016, 0.12737, 0.35472, 0, 0.74922, 0.00786, 1, 0, 0.42279, 0.25894, 0.25941, 0.48531, 0.1931, 0.72343, 0.58961, 0.07936, 0.48316, 0.19396, 0.33239, 0.3842, 0.22349, 0.60918, 0.17691, 0.85672 ],
  165. "triangles": [ 24, 28, 7, 12, 13, 24, 29, 12, 24, 8, 29, 24, 7, 8, 24, 11, 12, 29, 10, 11, 29, 9, 29, 8, 10, 29, 9, 28, 14, 15, 23, 28, 15, 6, 23, 5, 28, 23, 6, 13, 14, 28, 24, 13, 28, 7, 28, 6, 16, 17, 27, 23, 15, 16, 4, 22, 3, 27, 22, 4, 27, 23, 16, 5, 27, 4, 23, 27, 5, 25, 19, 20, 26, 19, 25, 18, 19, 26, 0, 20, 21, 25, 20, 0, 22, 18, 26, 17, 18, 22, 27, 17, 22, 2, 25, 0, 26, 25, 2, 22, 26, 3, 2, 0, 1, 3, 26, 2 ],
  166. "vertices": [ 1, 25, 1.22, 12.51, 1, 1, 25, 8.97, 16.64, 1, 1, 25, 12.08, 12.58, 1, 3, 25, 13.63, 10.41, 0.14204, 26, 3.1, 9.73, 0.72785, 27, -5.65, 10.68, 0.13011, 4, 25, 17.34, 10.19, 0.01395, 26, 6.76, 9.05, 0.60019, 27, -2.18, 9.34, 0.38228, 28, -11.37, 10, 0.00358, 3, 26, 10.86, 8.3, 0.21637, 27, 1.71, 7.82, 0.72809, 28, -7.6, 8.22, 0.05554, 3, 26, 16.74, 8.94, 0.00116, 27, 7.6, 7.36, 0.54799, 28, -1.75, 7.35, 0.45086, 2, 27, 11.81, 7.02, 0.12438, 28, 2.42, 6.72, 0.87562, 1, 28, 8.93, 5.8, 1, 1, 28, 14.59, 4.99, 1, 1, 28, 15.09, 0.53, 1, 1, 28, 15.54, -3.47, 1, 2, 27, 17.21, -3.77, 3.3E-4, 28, 7.07, -4.41, 0.99967, 3, 26, 21.3, -2.87, 0.0011, 27, 9.87, -5.1, 0.61195, 28, -0.35, -5.24, 0.38695, 3, 26, 16.85, -4.59, 0.09969, 27, 5.17, -5.96, 0.89295, 28, -5.1, -5.76, 0.00736, 3, 25, 23.58, -5.03, 0.03246, 26, 11.1, -6.81, 0.71449, 27, -0.89, -7.06, 0.25305, 2, 25, 16.85, -8.62, 0.33126, 26, 3.99, -9.56, 0.66874, 2, 25, 10.53, -8.13, 0.81419, 26, -2.22, -8.3, 0.18581, 2, 25, 7.13, -7.86, 0.9758, 26, -5.57, -7.62, 0.0242, 1, 25, -0.25, -7.29, 1, 1, 25, -4.74, 1.94, 1, 1, 25, -8.14, 7.52, 1, 3, 25, 10.11, 0.25, 0.95488, 26, -1.62, 0.06, 0.04497, 27, -12.1, 2.07, 1.5E-4, 2, 26, 10.26, 0.09, 0.5856, 27, -0.43, -0.12, 0.4144, 1, 28, 1.51, 0.02, 1, 1, 25, 0.31, -0.07, 1, 3, 25, 6.56, 0.13, 0.99696, 26, -5.16, 0.38, 0.00302, 27, -15.52, 3.05, 1.0E-5, 2, 26, 4.95, 0.08, 0.99887, 27, -5.64, 0.86, 0.00113, 2, 27, 5.71, 0.05, 0.99941, 28, -4.14, 0.19, 5.9E-4, 1, 28, 8.05, 0.32, 1 ],
  167. "hull": 22,
  168. "edges": [ 40, 42, 20, 22, 38, 40, 18, 20, 40, 50, 38, 50, 2, 0, 0, 42, 50, 0, 36, 38, 44, 52, 52, 50, 36, 52, 2, 4, 4, 6, 52, 4, 32, 34, 34, 36, 34, 44, 44, 6, 44, 54, 54, 46, 32, 54, 6, 8, 8, 10, 54, 8, 30, 32, 30, 46, 46, 10, 28, 30, 46, 56, 56, 48, 28, 56, 10, 12, 12, 14, 56, 12, 26, 28, 26, 48, 22, 24, 24, 26, 20, 58, 58, 48, 24, 58, 14, 16, 16, 18, 58, 16 ],
  169. "width": 26,
  170. "height": 49
  171. }
  172. },
  173. "toufa10": {
  174. "toufa10": {
  175. "type": "mesh",
  176. "uvs": [ 1, 0.67253, 0.76783, 0.84145, 0.28483, 1, 0, 1, 0, 0, 1, 0 ],
  177. "triangles": [ 1, 4, 5, 0, 1, 5, 2, 3, 4, 1, 2, 4 ],
  178. "vertices": [ 59.53, -46.98, 49.36, -39.37, 39.95, -23.75, 40.11, -14.64, 101.1, -15.69, 100.55, -47.68 ],
  179. "hull": 6,
  180. "edges": [ 6, 8, 8, 10, 4, 6, 4, 2, 0, 10, 2, 0 ],
  181. "width": 32,
  182. "height": 61
  183. }
  184. },
  185. "toufa2": {
  186. "toufa2": {
  187. "type": "mesh",
  188. "uvs": [ 0.94086, 0.2307, 0.99999, 0.3289, 1, 0.53993, 1, 0.72924, 0.90591, 0.99069, 0.74418, 1, 0.41691, 1, 0.27695, 0.93515, 0.15109, 0.87527, 1.0E-5, 0.80682, 0, 0.5989, 0, 0.44062, 0, 0, 0.20828, 0, 0.65009, 0, 0.85054, 0.08069, 0.61736, 0.4251, 0.69509, 0.62372, 0.43902, 0.20633, 0.7251, 0.88487, 0.70425, 0.75368, 0.5379, 0.32763 ],
  189. "triangles": [ 6, 19, 5, 5, 19, 4, 19, 6, 20, 4, 19, 3, 20, 6, 7, 20, 7, 17, 19, 20, 3, 3, 20, 2, 17, 8, 16, 20, 17, 2, 1, 17, 16, 1, 16, 0, 17, 1, 2, 0, 16, 15, 17, 7, 8, 8, 9, 16, 16, 10, 21, 21, 11, 18, 21, 10, 11, 11, 13, 18, 11, 12, 13, 16, 21, 15, 21, 14, 15, 21, 18, 14, 18, 13, 14, 16, 9, 10 ],
  190. "vertices": [ 2, 29, 9.14, 8.6, 0.57058, 30, -2.92, 8.34, 0.42942, 3, 29, 12.14, 7.74, 0.32193, 30, 0.17, 8.85, 0.67363, 31, -9.85, 7.21, 0.00444, 3, 29, 16.79, 3.76, 0.0228, 30, 6.08, 7.27, 0.7604, 31, -3.74, 6.87, 0.2168, 2, 30, 11.38, 5.85, 0.20653, 31, 1.74, 6.56, 0.79347, 1, 31, 9.2, 4.08, 1, 2, 29, 23.26, -9.2, 1.0E-5, 31, 9.27, 0.51, 0.99999, 3, 29, 18.57, -14.67, 0.03626, 30, 15.64, -8.58, 0.02861, 31, 8.87, -6.68, 0.93513, 3, 29, 15.14, -15.78, 0.09575, 30, 13.03, -11.07, 0.08361, 31, 6.82, -9.65, 0.82063, 1, 29, 12.02, -16.75, 1, 1, 29, 8.35, -17.98, 1, 1, 29, 3.77, -14.06, 1, 1, 29, 0.29, -11.07, 1, 1, 29, -9.41, -2.76, 1, 1, 29, -6.43, 0.72, 1, 1, 29, -0.11, 8.1, 1, 2, 29, 4.54, 9.93, 0.87534, 30, -7.64, 7.54, 0.12466, 2, 30, 0.68, 0, 0.99998, 31, -7.53, -1.35, 2.0E-5, 1, 30, 6.69, 0.16, 1, 1, 29, 1.41, 0.68, 1, 1, 31, 5.91, 0.28, 1, 1, 31, 2.09, 0.03, 1, 1, 29, 5.5, 0.04, 1 ],
  191. "hull": 16,
  192. "edges": [ 24, 26, 32, 34, 8, 10, 22, 24, 26, 36, 22, 36, 26, 28, 36, 28, 28, 30, 10, 12, 18, 32, 16, 18, 16, 34, 34, 2, 10, 38, 12, 38, 6, 8, 38, 6, 12, 14, 14, 16, 34, 40, 40, 38, 14, 40, 2, 4, 4, 6, 40, 4, 18, 20, 20, 22, 32, 42, 42, 36, 20, 42, 42, 30, 2, 0, 0, 30, 32, 0 ],
  193. "width": 22,
  194. "height": 29
  195. }
  196. },
  197. "toufa3": {
  198. "toufa3": {
  199. "type": "mesh",
  200. "uvs": [ 0.82569, 0.17866, 0.91367, 0.37001, 0.97, 0.55176, 0.88469, 0.74243, 0.74194, 0.95033, 0.66336, 1, 0.5878, 0.83804, 0.56036, 0.7792, 0.51705, 0.67024, 0.45388, 0.6091, 0.40647, 0.55541, 0.32719, 0.51188, 0.23746, 0.48221, 0.16689, 0.48993, 0, 0.62603, 0, 0.49787, 0, 0.21018, 0.17074, 0, 0.41156, 0, 0.65687, 0.03317, 0.25389, 0.20239, 0.42461, 0.19187, 0.54247, 0.31218, 0.64825, 0.53972, 0.10518, 0.33553, 0.61035, 0.42242, 0.68489, 0.70032, 0.71105, 0.81496 ],
  201. "triangles": [ 4, 6, 27, 4, 5, 6, 4, 27, 3, 6, 7, 27, 7, 26, 27, 27, 26, 3, 7, 8, 26, 3, 26, 2, 8, 23, 26, 26, 23, 2, 8, 9, 23, 23, 9, 25, 9, 10, 25, 25, 10, 22, 23, 1, 2, 23, 25, 1, 1, 25, 0, 10, 11, 22, 11, 21, 22, 25, 22, 0, 22, 19, 0, 22, 21, 19, 14, 15, 13, 12, 20, 11, 11, 20, 21, 15, 24, 13, 15, 16, 24, 13, 24, 12, 12, 24, 20, 24, 16, 20, 16, 17, 20, 20, 18, 21, 20, 17, 18, 21, 18, 19 ],
  202. "vertices": [ 2, 33, 8.82, 14.72, 0.66378, 34, -4.49, 14.08, 0.33622, 3, 33, 19.23, 12.21, 0.15822, 34, 6.22, 13.91, 0.8038, 35, -8.75, 12.14, 0.03798, 3, 33, 28.42, 8.83, 0.00355, 34, 15.92, 12.63, 0.55653, 35, 0.96, 13.39, 0.43992, 2, 34, 23.61, 5.28, 0.04299, 35, 10.27, 8.26, 0.95701, 1, 35, 20.13, 0.46, 1, 1, 35, 22.22, -3.39, 1, 1, 35, 13.42, -5.64, 1, 1, 35, 10.22, -6.46, 1, 4, 32, 23.81, -21.08, 0.00178, 33, 21.69, -11.37, 0.0015, 34, 13.79, -8.56, 0.03306, 35, 4.35, -7.63, 0.96365, 4, 32, 19.92, -19.35, 0.01962, 33, 17.46, -11.86, 0.03073, 34, 9.77, -9.96, 0.22922, 35, 0.82, -10.03, 0.72043, 4, 32, 16.83, -17.67, 0.07233, 33, 13.95, -11.99, 0.11577, 34, 6.37, -10.86, 0.38451, 35, -2.23, -11.77, 0.42739, 4, 32, 12.65, -17.06, 0.22699, 33, 10.04, -13.6, 0.24832, 34, 2.91, -13.29, 0.33526, 35, -4.95, -15, 0.18943, 4, 32, 8.33, -17.31, 0.47188, 33, 6.45, -16.01, 0.26439, 34, -0.06, -16.43, 0.19232, 35, -7.02, -18.8, 0.0714, 4, 32, 5.6, -18.97, 0.63409, 33, 4.95, -18.84, 0.21728, 34, -0.91, -19.51, 0.12011, 35, -7.04, -22, 0.02852, 4, 32, 1.64, -28.5, 0.72887, 33, 6.4, -29.05, 0.18286, 34, 2.74, -29.16, 0.08417, 35, -1.03, -30.39, 0.0041, 4, 32, -1.09, -22.42, 0.72867, 33, 0.95, -25.21, 0.18049, 34, -3.41, -26.61, 0.08388, 35, -7.63, -29.5, 0.00697, 4, 32, -7.21, -8.77, 0.92584, 33, -11.27, -16.58, 0.05428, 34, -17.23, -20.87, 0.01966, 35, -22.46, -27.51, 2.2E-4, 1, 32, -4.67, 4.34, 1, 2, 32, 5.22, 8.78, 0.89859, 33, -9.52, 4.85, 0.10141, 3, 32, 16, 11.72, 0.13424, 33, -1.74, 12.87, 0.83455, 34, -14.39, 9.96, 0.03121, 4, 32, 3.05, -3.73, 0.91498, 33, -5.01, -7.02, 0.07052, 34, -13.22, -10.16, 0.01253, 35, -21.34, -16.13, 0.00198, 3, 32, 9.84, -0.09, 0.99986, 34, -10.78, -2.86, 1.1E-4, 35, -20.86, -8.44, 2.0E-5, 1, 33, 7.14, 0.3, 1, 3, 32, 26.42, -12.48, 9.0E-5, 34, 9.79, -0.5, 0.87501, 35, -1.59, -0.88, 0.1249, 4, 32, -0.22, -12.78, 0.78526, 33, -3.21, -16.48, 0.14626, 34, -9.39, -19, 0.05999, 35, -15.37, -23.68, 0.00849, 1, 34, 3.5, 0.26, 1, 1, 35, 6.91, -0.36, 1, 1, 35, 12.97, 0.02, 1 ],
  203. "hull": 20,
  204. "edges": [ 40, 42, 42, 44, 38, 0, 0, 2, 2, 4, 28, 30, 28, 26, 10, 8, 30, 32, 32, 34, 30, 48, 48, 40, 32, 48, 48, 26, 34, 40, 24, 26, 40, 24, 34, 36, 36, 38, 36, 42, 20, 22, 22, 24, 42, 22, 38, 44, 44, 20, 44, 50, 50, 46, 0, 50, 16, 18, 18, 20, 50, 18, 16, 46, 46, 2, 52, 46, 4, 52, 14, 16, 52, 14, 10, 12, 12, 14, 8, 54, 54, 52, 12, 54, 4, 6, 6, 8, 54, 6 ],
  205. "width": 45,
  206. "height": 52
  207. }
  208. },
  209. "toufa4": {
  210. "toufa4": {
  211. "type": "mesh",
  212. "uvs": [ 0.54834, 0.07274, 0.6628, 0.14046, 0.7429, 0.23129, 0.8066, 0.31808, 0.86931, 0.4921, 0.89554, 0.60935, 0.94407, 0.72966, 1, 0.86835, 1, 1, 0.80473, 1, 0.74705, 0.95141, 0.65942, 0.8776, 0.57675, 0.79887, 0.50402, 0.7296, 0.44135, 0.64927, 0.38495, 0.57697, 0.28819, 0.48307, 0.2134, 0.41048, 0.08998, 0.31284, 0, 0.24166, 0, 0.13992, 0, 0, 0.20937, 0, 0.38495, 0, 0.34751, 0.15229, 0.57015, 0.34804, 0.66144, 0.54691, 0.75878, 0.74931, 0.17024, 0.12969, 0.4788, 0.24272, 0.62809, 0.45302, 0.7058, 0.65271, 0.86542, 0.87649, 0.92664, 0.93267 ],
  213. "triangles": [ 9, 33, 8, 33, 7, 8, 9, 32, 33, 9, 10, 32, 32, 10, 27, 33, 32, 7, 10, 11, 27, 11, 12, 27, 32, 6, 7, 32, 27, 6, 12, 31, 27, 12, 13, 31, 27, 5, 6, 27, 31, 5, 31, 13, 26, 5, 31, 4, 31, 26, 4, 13, 14, 26, 26, 14, 30, 14, 15, 30, 15, 25, 30, 15, 16, 25, 4, 26, 3, 26, 30, 3, 2, 30, 25, 2, 3, 30, 16, 29, 25, 16, 17, 29, 18, 28, 17, 17, 24, 29, 17, 28, 24, 25, 1, 2, 25, 29, 1, 18, 19, 28, 29, 0, 1, 29, 24, 0, 19, 20, 28, 28, 22, 24, 24, 23, 0, 24, 22, 23, 20, 21, 28, 28, 21, 22 ],
  214. "vertices": [ 2, 41, 5.14, 7.99, 0.99905, 42, -12.33, 4.59, 9.5E-4, 3, 41, 11.79, 10.44, 0.85821, 42, -6.69, 8.87, 0.14174, 43, -18.76, 7.96, 6.0E-5, 3, 41, 17.98, 10.74, 0.43875, 42, -0.85, 10.97, 0.53663, 43, -13.04, 10.35, 0.02462, 3, 41, 23.42, 10.51, 0.13332, 42, 4.41, 12.34, 0.73326, 43, -7.85, 11.97, 0.13342, 4, 41, 31.91, 7.42, 9.6E-4, 42, 13.44, 11.86, 0.38458, 43, 1.19, 11.93, 0.60623, 44, -2.01, 14.63, 0.00823, 3, 42, 19.14, 10.74, 0.09151, 43, 6.94, 11.09, 0.74317, 44, 2.68, 11.2, 0.16532, 3, 42, 25.5, 10.66, 0.00239, 43, 13.3, 11.32, 0.32354, 44, 8.41, 8.43, 0.67407, 2, 43, 20.62, 11.59, 0.02351, 44, 15.01, 5.25, 0.97649, 1, 44, 19.03, 0.36, 1, 1, 44, 10.73, -6.46, 1, 1, 44, 6.8, -6.67, 1, 3, 42, 25.17, -6.53, 3.6E-4, 43, 13.81, -5.86, 0.02845, 44, 0.83, -6.99, 0.97119, 3, 42, 19.8, -9, 0.06762, 43, 8.57, -8.6, 0.41502, 44, -5.09, -6.96, 0.51736, 4, 41, 26.75, -15.1, 0.00953, 42, 15.08, -11.18, 0.30645, 43, 3.96, -11, 0.493, 44, -10.29, -6.94, 0.19102, 4, 41, 21.58, -15.04, 0.08649, 42, 10.11, -12.64, 0.57828, 43, -0.93, -12.7, 0.27962, 44, -15.4, -6.15, 0.05561, 4, 41, 16.93, -14.98, 0.28208, 42, 5.65, -13.94, 0.60425, 43, -5.33, -14.22, 0.10198, 44, -20, -5.44, 0.01169, 4, 41, 10.01, -15.86, 0.66474, 42, -0.71, -16.8, 0.32513, 43, -11.54, -17.39, 0.01006, 44, -26.97, -5.33, 6.0E-5, 3, 41, 4.66, -16.55, 0.8575, 42, -5.63, -19.02, 0.14232, 43, -16.34, -19.84, 1.8E-4, 2, 41, -3.38, -18.39, 0.97503, 42, -12.78, -23.13, 0.02497, 2, 41, -9.24, -19.73, 0.99508, 42, -17.99, -26.12, 0.00492, 2, 41, -12.85, -16.43, 0.99905, 42, -22.4, -24.02, 9.5E-4, 1, 41, -17.8, -11.9, 1, 1, 41, -10.02, -3.4, 1, 1, 41, -3.5, 3.72, 1, 2, 41, 0.5, -2.74, 0.9949, 42, -13.64, -7.02, 0.0051, 2, 41, 15.7, -0.05, 0.41797, 42, 0.11, -0.02, 0.58203, 2, 42, 10.89, 0.41, 0.94559, 43, -0.79, 0.37, 0.05441, 2, 43, 10.23, 1.56, 0.60536, 44, 1.14, 1.23, 0.39464, 2, 41, -6.88, -9.2, 0.99524, 42, -18.81, -15.36, 0.00476, 2, 41, 8.58, -0.34, 0.99797, 42, -6.61, -2.38, 0.00203, 2, 42, 6.03, 0.69, 0.99857, 43, -5.66, 0.41, 0.00143, 1, 43, 4.83, 0.66, 1, 2, 43, 18.13, 4.61, 0.0021, 44, 9.54, 0.24, 0.9979, 2, 43, 21.92, 6.68, 0.00146, 44, 13.86, 0.3, 0.99854 ],
  215. "hull": 24,
  216. "edges": [ 40, 42, 38, 40, 16, 18, 16, 14, 34, 36, 36, 38, 40, 56, 56, 48, 36, 56, 42, 44, 44, 46, 56, 44, 46, 48, 48, 34, 30, 32, 32, 34, 48, 58, 58, 50, 32, 58, 2, 0, 0, 46, 58, 0, 2, 50, 50, 30, 26, 28, 28, 30, 50, 60, 60, 52, 28, 60, 2, 4, 4, 6, 60, 4, 26, 52, 52, 6, 22, 54, 54, 10, 6, 8, 8, 10, 52, 62, 62, 54, 8, 62, 22, 24, 24, 26, 62, 24, 18, 20, 20, 22, 64, 54, 20, 64, 10, 12, 12, 14, 64, 12, 16, 66, 66, 64, 18, 66, 66, 14 ],
  217. "width": 55,
  218. "height": 48
  219. }
  220. },
  221. "toufa5": {
  222. "toufa5": {
  223. "type": "mesh",
  224. "uvs": [ 1, 0.30605, 1, 0.4996, 0.89417, 0.58669, 0.77389, 0.60373, 0.71847, 0.66299, 0.66953, 0.75516, 0.62769, 0.88903, 0.55622, 1, 0.42896, 1, 0.3732, 0.99999, 0.41202, 0.86217, 0.41501, 0.71622, 0.42547, 0.53367, 0.45336, 0.33409, 0.51831, 0.16447, 0.61824, 0.05004, 0.73025, 0, 0.83317, 0, 0.90835, 0, 1, 0, 0.69742, 0.17588, 0.55058, 0.4539, 0.52509, 0.60539, 0.49904, 0.77175, 0.80001, 0.09034, 0.86618, 0.03516, 0.61406, 0.29393, 0.45776, 0.90421 ],
  225. "triangles": [ 5, 23, 22, 10, 11, 23, 6, 23, 5, 27, 10, 23, 27, 23, 6, 9, 10, 27, 8, 9, 27, 7, 27, 6, 8, 27, 7, 4, 22, 21, 11, 12, 22, 5, 22, 4, 23, 11, 22, 12, 13, 21, 22, 12, 21, 3, 4, 21, 26, 14, 20, 13, 14, 26, 21, 13, 26, 26, 3, 21, 2, 3, 26, 25, 17, 18, 24, 16, 17, 24, 17, 25, 20, 15, 16, 20, 16, 24, 14, 15, 20, 25, 18, 19, 0, 25, 19, 24, 25, 0, 1, 20, 24, 26, 20, 2, 24, 0, 1, 20, 1, 2 ],
  226. "vertices": [ 1, 36, -7.81, 16.56, 1, 1, 36, -2.7, 25.45, 1, 1, 36, 6.39, 25.56, 1, 1, 36, 14.56, 21.91, 1, 5, 36, 19.68, 22.59, 0.06937, 37, 15.75, 18.82, 2.0E-5, 38, 11.1, 15.56, 0.21393, 39, 2.93, 15.02, 0.43767, 40, -11.3, 12.28, 0.279, 4, 36, 25.25, 25.03, 0.01348, 38, 16.96, 13.94, 0.03898, 39, 8.29, 12.15, 0.30535, 40, -5.35, 11.04, 0.64219, 3, 36, 31.47, 29.64, 1.8E-4, 39, 15.76, 10.12, 0.00936, 40, 2.39, 11.2, 0.99046, 1, 40, 9.95, 8.87, 1, 1, 40, 13.89, 0.32, 1, 1, 40, 15.62, -3.43, 1, 3, 38, 29.09, -1.81, 0.00148, 39, 16.68, -5.88, 0.09038, 40, 7.79, -3.88, 0.90814, 3, 38, 21.79, -4.38, 0.13961, 39, 9, -6.79, 0.80243, 40, 0.67, -6.92, 0.05796, 3, 37, 25.61, -1.67, 0.04864, 38, 12.48, -7.13, 0.92404, 39, -0.69, -7.43, 0.02732, 2, 37, 16.49, -7.41, 0.77664, 38, 1.87, -9, 0.22336, 2, 36, 19.37, -7.7, 0.01754, 37, 6.64, -10.06, 0.98246, 2, 36, 9.94, -9.27, 0.56097, 37, -2.84, -8.83, 0.43903, 2, 36, 1.43, -7.45, 0.99171, 37, -10.45, -4.61, 0.00829, 1, 36, -5.18, -3.66, 1, 3, 36, -10, -0.89, 0.99604, 38, -26.74, 16.06, 0.00271, 39, -33.88, 23.79, 0.00125, 3, 36, -15.88, 2.49, 0.99011, 38, -29.18, 22.39, 0.00675, 39, -34.87, 30.5, 0.00314, 2, 36, 8.18, -0.57, 0.99491, 37, -1.99, 0.01, 0.00509, 3, 36, 24.94, 6.8, 0, 37, 16.19, 2.18, 5.5E-4, 38, 5.21, -0.01, 0.99945, 3, 36, 30.57, 12.82, 1.6E-4, 39, 2, 0.42, 0.99265, 40, -8.08, -1.99, 0.00719, 3, 38, 22.31, 2.48, 2.1E-4, 39, 11, -0.2, 0.00273, 40, 0.74, -0.05, 0.99706, 1, 36, -0.66, -0.73, 1, 3, 36, -6.37, -0.82, 0.99753, 38, -23.88, 13.82, 0.00168, 39, -31.58, 20.97, 8.0E-4, 1, 37, 6.79, -0.2, 1, 1, 40, 8.39, 0.12, 1 ],
  227. "hull": 20,
  228. "edges": [ 36, 38, 42, 44, 44, 46, 30, 28, 28, 26, 26, 24, 24, 22, 16, 18, 2, 4, 4, 6, 10, 12, 14, 16, 12, 14, 30, 32, 48, 40, 32, 48, 48, 2, 32, 34, 34, 36, 36, 50, 50, 48, 34, 50, 2, 0, 0, 38, 50, 0, 40, 4, 30, 40, 40, 52, 52, 42, 28, 52, 52, 6, 26, 42, 6, 8, 8, 10, 42, 8, 24, 44, 44, 10, 22, 46, 46, 12, 18, 20, 20, 22, 16, 54, 54, 46, 20, 54, 54, 14 ],
  229. "width": 74,
  230. "height": 53
  231. }
  232. },
  233. "toufa6": {
  234. "toufa6": {
  235. "type": "mesh",
  236. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  237. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  238. "vertices": [ 62.69, -39.03, 63, -21.03, 86, -21.43, 85.69, -39.42 ],
  239. "hull": 4,
  240. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  241. "width": 18,
  242. "height": 23
  243. }
  244. },
  245. "toufa7": {
  246. "toufa7": {
  247. "type": "mesh",
  248. "uvs": [ 0.65378, 0.10376, 0.80168, 0.24421, 0.91511, 0.43976, 1, 0.67087, 1, 0.78208, 1, 1, 0.59347, 1, 0.53694, 0.9359, 0.46565, 0.85505, 0.39101, 0.77043, 0.36496, 0.57703, 0.35011, 0.50741, 0.33934, 0.45695, 0.27665, 0.44135, 0.22366, 0.45467, 0.15614, 0.47595, 0, 0.63709, 0, 0.55176, 0, 0.24598, 0.08376, 0.11708, 0.15983, 0, 0.36791, 0, 0.49727, 0, 0.16127, 0.24421, 0.37091, 0.22109, 0.52599, 0.32065, 0.64229, 0.48776, 0.73563, 0.67087, 0.09122, 0.37779, 0.29012, 0.23, 0.45107, 0.27255, 0.80515, 0.75743, 0.88707, 0.85941 ],
  249. "triangles": [ 27, 2, 3, 31, 27, 3, 31, 3, 4, 32, 31, 4, 7, 8, 27, 7, 27, 31, 6, 7, 31, 6, 31, 32, 32, 4, 5, 6, 32, 5, 26, 25, 1, 26, 1, 2, 26, 10, 25, 27, 26, 2, 9, 10, 26, 9, 26, 27, 8, 9, 27, 24, 21, 22, 30, 24, 22, 0, 30, 22, 25, 30, 0, 25, 0, 1, 12, 24, 30, 11, 12, 30, 25, 11, 30, 25, 10, 11, 29, 20, 21, 29, 21, 24, 19, 20, 29, 23, 19, 29, 18, 19, 23, 28, 18, 23, 13, 23, 29, 14, 28, 23, 13, 14, 23, 12, 29, 24, 13, 29, 12, 15, 28, 14, 17, 18, 28, 17, 28, 15, 16, 17, 15 ],
  250. "vertices": [ 4, 45, 39.73, 4.73, 0.00277, 46, 16.27, 16.47, 0.54178, 47, -4.68, 16.13, 0.34981, 48, -20.31, 12.78, 0.10564, 4, 46, 30.63, 14.24, 0.0553, 47, 9.51, 19.31, 0.37636, 48, -6.89, 18.37, 0.52735, 49, -9.85, 25.73, 0.04099, 3, 47, 24.64, 18.19, 0.02926, 48, 8.2, 19.89, 0.59207, 49, 4.26, 20.18, 0.37867, 2, 48, 24.12, 18.37, 0.0843, 49, 17.73, 11.54, 0.9157, 2, 48, 30.2, 14.88, 0.01063, 49, 21.53, 5.66, 0.98937, 1, 49, 28.97, -5.88, 1, 4, 46, 39.22, -35.33, 0.01267, 47, 35.62, -23.69, 0.12036, 48, 26.28, -19.45, 0.27509, 49, 2.34, -23.08, 0.59187, 4, 46, 33.42, -33.9, 0.02783, 47, 29.69, -24.49, 0.18739, 48, 20.58, -21.26, 0.35294, 49, -3.56, -22.08, 0.43184, 4, 46, 26.09, -32.1, 0.071, 47, 22.22, -25.49, 0.32674, 48, 13.4, -23.54, 0.40177, 49, -10.99, -20.82, 0.2005, 5, 45, 15.72, -35.37, 1.0E-5, 46, 18.43, -30.22, 0.13299, 47, 14.4, -26.53, 0.44957, 48, 5.87, -25.93, 0.3452, 49, -18.77, -19.5, 0.07224, 5, 45, 14.74, -23.05, 0.03692, 46, 10.8, -20.5, 0.33496, 47, 3.75, -20.28, 0.49062, 48, -5.7, -21.61, 0.13405, 49, -27.09, -10.37, 0.00345, 5, 45, 13.96, -18.59, 0.11612, 46, 7.68, -17.21, 0.45268, 47, -0.36, -18.35, 0.37435, 48, -10.08, -20.43, 0.05679, 49, -30.44, -7.31, 5.0E-5, 4, 45, 13.39, -15.35, 0.27893, 46, 5.42, -14.82, 0.48953, 47, -3.34, -16.96, 0.21299, 48, -13.26, -19.57, 0.01855, 4, 45, 8.61, -13.95, 0.66691, 46, 0.66, -16.3, 0.28089, 47, -7.23, -20.08, 0.05096, 48, -16.55, -23.32, 0.00124, 4, 45, 4.42, -14.43, 0.86116, 46, -2.57, -19.02, 0.12645, 47, -9.24, -23.79, 0.01238, 48, -17.88, -27.32, 1.0E-5, 3, 45, -0.95, -15.32, 0.96706, 46, -6.54, -22.73, 0.03224, 47, -11.59, -28.69, 7.0E-4, 2, 45, -13.95, -24.39, 1, 46, -12.36, -37.48, 0, 1, 45, -13.49, -19.04, 1, 1, 45, -11.84, 0.16, 1, 1, 45, -4.64, 7.69, 1, 1, 45, 1.9, 14.53, 1, 2, 45, 18.07, 13.15, 0.73021, 46, -6.43, 11.51, 0.26979, 4, 45, 28.13, 12.28, 0.21506, 46, 2.42, 16.35, 0.76047, 47, -17.52, 10.96, 0.02239, 48, -32.07, 5.46, 0.00209, 2, 45, 0.7, -0.81, 0.99879, 46, -13.2, -9.72, 0.00121, 3, 45, 17.12, -0.75, 0.32392, 46, 0.45, -0.6, 0.67588, 47, -13.16, -5.54, 2.0E-4, 3, 45, 28.63, -8.03, 2.0E-5, 46, 14.07, -0.3, 0.79546, 47, -0.59, -0.28, 0.20452, 2, 46, 27.08, -5.19, 9.0E-5, 48, 0.21, -0.06, 0.99991, 2, 48, 13.84, 0.5, 0.33308, 49, 0.4, 0.35, 0.66692, 2, 45, -5.46, -8.72, 0.99416, 46, -13.95, -19.73, 0.00584, 3, 45, 10.79, -0.77, 0.98767, 46, -4.81, -4.12, 0.01192, 47, -16.77, -10.73, 4.1E-4, 3, 45, 23.07, -4.52, 8.6E-4, 46, 7.49, -0.45, 0.99835, 47, -6.66, -2.82, 7.9E-4, 2, 47, 34.49, -1.22, 7.0E-4, 49, 7.92, -1.28, 0.9993, 1, 49, 16.77, -3.22, 1 ],
  251. "hull": 23,
  252. "edges": [ 50, 52, 52, 54, 44, 0, 0, 2, 2, 4, 4, 6, 32, 34, 32, 30, 20, 18, 10, 12, 34, 36, 34, 56, 56, 46, 36, 56, 56, 30, 36, 38, 38, 40, 38, 46, 26, 28, 28, 30, 46, 28, 46, 58, 58, 48, 40, 58, 58, 26, 40, 42, 42, 44, 42, 48, 24, 26, 48, 24, 48, 60, 60, 50, 44, 60, 20, 22, 22, 24, 60, 22, 20, 50, 50, 0, 18, 52, 52, 2, 16, 18, 16, 54, 54, 4, 12, 14, 14, 16, 62, 54, 14, 62, 62, 6, 10, 64, 64, 62, 12, 64, 6, 8, 8, 10, 64, 8 ],
  253. "width": 78,
  254. "height": 63
  255. }
  256. },
  257. "toufa8": {
  258. "toufa8": {
  259. "type": "mesh",
  260. "uvs": [ 0.50383, 0.45244, 0.50414, 0.76241, 0.43367, 0.82165, 0.38146, 0.86554, 0.32153, 0.86746, 0.26532, 0.86926, 0.23546, 0.87022, 0.17046, 0.94554, 0.12346, 1, 0.07322, 1, 0, 1, 0, 0.69616, 0, 0.51347, 0.05904, 0.44587, 0.08898, 0.4116, 0.11046, 0.387, 0.15425, 0.26331, 0.18561, 0.17472, 0.24746, 0, 0.31217, 0, 0.38704, 0, 0.50338, 0, 0.29646, 0.41979, 0.20046, 0.57905, 0.11746, 0.71489, 0.42352, 0.4398, 0.35569, 0.42912, 0.2313, 0.52789, 0.14771, 0.66539, 0.07119, 0.70751 ],
  261. "triangles": [ 29, 24, 9, 29, 9, 10, 10, 11, 29, 29, 13, 24, 29, 11, 12, 13, 29, 12, 24, 13, 14, 24, 7, 8, 9, 24, 8, 6, 7, 28, 24, 28, 7, 14, 28, 24, 28, 15, 23, 15, 28, 14, 23, 5, 6, 5, 27, 4, 23, 6, 28, 5, 23, 27, 23, 16, 27, 17, 22, 27, 16, 23, 15, 27, 16, 17, 26, 3, 4, 22, 26, 4, 22, 4, 27, 2, 26, 25, 2, 3, 26, 1, 25, 0, 1, 2, 25, 25, 21, 0, 26, 20, 25, 25, 20, 21, 20, 26, 19, 19, 26, 22, 19, 22, 18, 18, 22, 17 ],
  262. "vertices": [ 1, 50, -8.97, 1.44, 1, 1, 50, -8.75, 7.33, 1, 2, 50, -2.43, 8.19, 0.99978, 51, -10.17, 12.58, 2.2E-4, 2, 50, 2.24, 8.82, 0.97326, 51, -5.57, 11.52, 0.02674, 2, 50, 7.57, 8.63, 0.77147, 51, -0.64, 9.47, 0.22853, 3, 50, 12.57, 8.46, 0.32651, 51, 3.97, 7.54, 0.65199, 52, -5.54, 6.9, 0.02149, 3, 50, 15.23, 8.36, 0.11997, 51, 6.43, 6.52, 0.72715, 52, -2.98, 6.18, 0.15288, 4, 50, 21.07, 9.55, 4.6E-4, 51, 12.31, 5.57, 0.1, 52, 2.98, 5.95, 0.89593, 53, -6.41, 4.44, 0.0036, 3, 51, 16.56, 4.88, 2.0E-5, 52, 7.28, 5.78, 0.77882, 53, -2.22, 5.47, 0.22116, 2, 52, 11.58, 4.54, 0.19502, 53, 2.25, 5.47, 0.80498, 1, 53, 8.76, 5.47, 1, 1, 53, 8.76, -0.3, 1, 1, 53, 8.76, -3.77, 1, 2, 52, 9.87, -5.92, 0.02743, 53, 3.51, -5.06, 0.97257, 3, 51, 15.01, -6.61, 0.0098, 52, 7.13, -5.81, 0.23983, 53, 0.85, -5.71, 0.75037, 3, 51, 13.07, -6.29, 0.06607, 52, 5.16, -5.73, 0.48526, 53, -1.07, -6.18, 0.44867, 4, 50, 21.96, -3.46, 0.00199, 51, 8.56, -6.92, 0.51077, 52, 0.76, -6.9, 0.41606, 53, -4.96, -8.53, 0.07118, 4, 50, 19.1, -5.03, 0.05101, 51, 5.33, -7.38, 0.79782, 52, -2.38, -7.75, 0.14013, 53, -7.75, -10.21, 0.01105, 3, 50, 13.46, -8.11, 0.49174, 51, -1.03, -8.28, 0.50766, 52, -8.59, -9.41, 6.0E-4, 2, 50, 7.71, -7.87, 0.92114, 51, -6.33, -6.02, 0.07886, 1, 50, 1.05, -7.59, 1, 1, 50, -9.29, -7.15, 1, 2, 50, 9.44, 0.04, 0.99904, 51, -1.92, 0.77, 9.6E-4, 2, 50, 18.11, 2.7, 4.6E-4, 51, 7.13, 0.21, 0.99954, 1, 52, 6.29, 0.43, 1, 1, 50, -1.84, 0.9, 1, 2, 50, 4.18, 0.44, 0.99957, 51, -6.7, 3, 4.3E-4, 2, 50, 15.32, 1.85, 0.00528, 51, 4.22, 0.39, 0.99472, 1, 52, 3.44, 0.27, 1, 1, 53, 2.43, -0.09, 1 ],
  263. "hull": 22,
  264. "edges": [ 0, 42, 20, 22, 22, 24, 0, 2, 40, 42, 0, 50, 40, 50, 2, 4, 4, 6, 50, 4, 36, 38, 38, 40, 44, 52, 52, 50, 38, 52, 52, 6, 6, 8, 44, 8, 36, 44, 34, 36, 44, 54, 54, 46, 34, 54, 8, 10, 10, 12, 54, 10, 30, 32, 32, 34, 32, 46, 46, 12, 46, 56, 56, 48, 30, 56, 12, 14, 14, 16, 56, 14, 48, 16, 24, 26, 22, 58, 58, 48, 26, 58, 16, 18, 18, 20, 58, 18, 26, 28, 28, 30, 28, 48 ],
  265. "width": 89,
  266. "height": 19
  267. }
  268. },
  269. "toufa9": {
  270. "toufa9": {
  271. "type": "mesh",
  272. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  273. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  274. "vertices": [ 52.66, 17.15, 52.87, 29.15, 87.86, 28.55, 87.66, 16.55 ],
  275. "hull": 4,
  276. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  277. "width": 12,
  278. "height": 35
  279. }
  280. },
  281. "waitaoyou": {
  282. "waitaoyou": {
  283. "type": "mesh",
  284. "uvs": [ 1, 0.47348, 1, 0.56792, 1, 0.60759, 1, 0.65103, 1, 0.70203, 1, 0.76248, 1, 1, 0.60283, 1, 0, 1, 0, 0.82103, 0, 0.73981, 0, 0.67181, 0, 0.6227, 0, 0.56603, 0, 0.49615, 0, 0, 0.22729, 0, 1, 0, 0.31538, 0.49048, 0.39884, 0.72281, 0.34158, 0.56341, 0.381, 0.67315, 0.36266, 0.62209, 0.46324, 0.81033 ],
  285. "triangles": [ 4, 19, 3, 23, 19, 4, 5, 23, 4, 8, 9, 23, 7, 23, 5, 8, 23, 7, 7, 5, 6, 13, 18, 20, 20, 0, 1, 22, 20, 1, 2, 22, 1, 12, 13, 20, 12, 20, 22, 21, 22, 2, 11, 12, 22, 3, 21, 2, 11, 22, 21, 19, 21, 3, 10, 11, 21, 10, 21, 19, 9, 10, 19, 9, 19, 23, 18, 16, 17, 0, 18, 17, 14, 15, 16, 14, 16, 18, 20, 18, 0, 13, 14, 18 ],
  286. "vertices": [ 3, 20, 18.58, 14.91, 0.55426, 21, 0.45, 14.91, 0.22221, 22, -9.63, 16.47, 0.22353, 3, 20, 23.66, 14.46, 0.25311, 21, 5.49, 14.17, 0.27989, 22, -4.75, 14.97, 0.467, 3, 20, 25.79, 14.27, 0.1566, 21, 7.61, 13.86, 0.24617, 22, -2.7, 14.34, 0.59724, 3, 20, 28.13, 14.06, 0.08191, 21, 9.93, 13.51, 0.17721, 22, -0.46, 13.66, 0.74088, 3, 20, 30.87, 13.81, 0.03059, 21, 12.66, 13.11, 0.08642, 22, 2.17, 12.85, 0.88299, 3, 20, 34.12, 13.52, 0.00534, 21, 15.89, 12.64, 0.01797, 22, 5.29, 11.89, 0.97669, 1, 22, 17.55, 8.13, 1, 2, 21, 27.3, 2.12, 0.00455, 22, 14.99, -0.23, 0.99545, 2, 21, 25.36, -11, 0.41542, 22, 11.1, -12.91, 0.58458, 2, 21, 15.8, -9.59, 0.8392, 22, 1.86, -10.07, 0.1608, 2, 21, 11.46, -8.95, 0.99227, 22, -2.33, -8.78, 0.00773, 2, 20, 27.27, -7.96, 0.00251, 21, 7.83, -8.41, 0.99749, 2, 20, 24.63, -7.72, 0.03486, 21, 5.21, -8.03, 0.96514, 2, 20, 21.58, -7.44, 0.17646, 21, 2.18, -7.58, 0.82354, 2, 20, 17.82, -7.11, 0.56479, 21, -1.55, -7.03, 0.43521, 1, 20, -8.86, -4.71, 1, 1, 20, -8.41, 0.27, 1, 2, 20, -6.89, 17.21, 1, 22, -34.07, 23.97, 0, 1, 20, 18.14, -0.17, 1, 1, 21, 11.84, -0.14, 1, 1, 21, 3.14, -0.13, 1, 1, 21, 9.13, -0.13, 1, 1, 21, 6.34, -0.13, 1, 2, 21, 16.72, 0.58, 0.00685, 22, 4.3, -0.16, 0.99315 ],
  287. "hull": 18,
  288. "edges": [ 30, 32, 32, 34, 32, 36, 12, 14, 14, 16, 28, 30, 28, 36, 0, 34, 36, 0, 26, 28, 36, 40, 26, 40, 0, 2, 40, 2, 20, 38, 38, 8, 20, 22, 38, 42, 22, 42, 6, 8, 42, 6, 22, 24, 24, 26, 40, 44, 44, 42, 24, 44, 2, 4, 4, 6, 44, 4, 16, 18, 18, 20, 14, 46, 46, 38, 18, 46, 8, 10, 10, 12, 46, 10 ],
  289. "width": 22,
  290. "height": 54
  291. }
  292. },
  293. "waitaozuo": {
  294. "waitaozuo": {
  295. "type": "mesh",
  296. "uvs": [ 0.81196, 0.43438, 0.79034, 0.48434, 0.7766, 0.54294, 0.76368, 0.59799, 0.74938, 0.659, 0.73934, 0.70181, 0.72608, 0.77335, 0.68409, 1, 0.19109, 1, 0, 1, 0, 0.78264, 0.07884, 0.69616, 0.13159, 0.6383, 0.15249, 0.59399, 0.17484, 0.54661, 0.2037, 0.48542, 0.22509, 0.44007, 0.23939, 0.38718, 0.34409, 0, 0.63309, 0, 1, 0, 0.53109, 0.46702, 0.44184, 0.69988, 0.54218, 0.41622, 0.50914, 0.52429, 0.46032, 0.65167, 0.48587, 0.58501, 0.40198, 0.74759 ],
  297. "triangles": [ 27, 12, 22, 11, 12, 27, 27, 22, 6, 8, 9, 10, 8, 11, 27, 8, 10, 11, 7, 27, 6, 8, 27, 7, 24, 16, 21, 15, 16, 24, 2, 21, 1, 24, 21, 2, 26, 15, 24, 14, 15, 26, 3, 24, 2, 26, 24, 3, 25, 14, 26, 13, 14, 25, 4, 26, 3, 25, 26, 4, 22, 13, 25, 12, 13, 22, 5, 25, 4, 22, 25, 5, 6, 22, 5, 23, 18, 19, 17, 18, 23, 0, 19, 20, 23, 19, 0, 21, 17, 23, 16, 17, 21, 1, 23, 0, 21, 23, 1 ],
  298. "vertices": [ 2, 17, 13.53, 6.51, 0.84258, 18, -2.83, 6.39, 0.15742, 2, 17, 16.22, 6.37, 0.52273, 18, -0.13, 6.38, 0.47727, 2, 17, 19.34, 6.49, 0.1582, 18, 2.98, 6.63, 0.8418, 3, 17, 22.27, 6.6, 0.02269, 18, 5.91, 6.87, 0.96526, 19, -7.99, 5.59, 0.01205, 2, 18, 9.15, 7.14, 0.87715, 19, -4.84, 6.41, 0.12285, 2, 18, 11.42, 7.33, 0.67951, 19, -2.63, 6.98, 0.32049, 2, 18, 15.21, 7.73, 0.2593, 19, 1.03, 8.02, 0.7407, 1, 19, 12.63, 11.31, 1, 1, 19, 16.79, 0.23, 1, 1, 19, 18.41, -4.06, 1, 2, 18, 18.95, -9.3, 0.0317, 19, 7.62, -8.12, 0.9683, 2, 18, 14.09, -8.3, 0.2735, 19, 2.67, -7.96, 0.7265, 2, 18, 10.85, -7.63, 0.62784, 19, -0.65, -7.85, 0.37216, 3, 17, 24.16, -7.94, 0.00233, 18, 8.45, -7.57, 0.8369, 19, -3.02, -8.21, 0.16078, 3, 17, 21.6, -7.77, 0.03216, 18, 5.88, -7.52, 0.92216, 19, -5.56, -8.59, 0.04567, 3, 17, 18.29, -7.55, 0.20107, 18, 2.56, -7.44, 0.79601, 19, -8.84, -9.09, 0.00292, 2, 17, 15.84, -7.39, 0.46226, 18, 0.11, -7.39, 0.53774, 2, 17, 13.02, -7.45, 0.76935, 18, -2.71, -7.58, 0.23065, 1, 17, -7.65, -7.9, 1, 1, 17, -8.64, -1.04, 1, 1, 17, -9.9, 7.68, 1, 2, 17, 16.2, 0.09, 0.39016, 18, 0.13, 0.09, 0.60984, 2, 18, 12.66, 0.3, 0.67161, 19, -0.22, 0.26, 0.32839, 2, 17, 13.5, -0.04, 0.99993, 18, -2.56, -0.15, 7.0E-5, 1, 18, 3.21, 0.14, 1, 1, 18, 10.07, 0.25, 1, 1, 18, 6.48, 0.2, 1, 1, 19, 2.49, 0.26, 1 ],
  299. "hull": 21,
  300. "edges": [ 38, 40, 16, 18, 36, 38, 18, 20, 14, 16, 32, 42, 42, 2, 32, 34, 34, 36, 38, 46, 46, 42, 34, 46, 2, 0, 0, 40, 46, 0, 30, 32, 42, 48, 30, 48, 2, 4, 48, 4, 24, 44, 44, 10, 24, 26, 44, 50, 26, 50, 8, 10, 50, 8, 26, 28, 28, 30, 48, 52, 52, 50, 28, 52, 4, 6, 6, 8, 52, 6, 20, 22, 22, 24, 16, 54, 54, 44, 22, 54, 10, 12, 12, 14, 54, 12 ],
  301. "width": 24,
  302. "height": 53
  303. }
  304. },
  305. "youshou": {
  306. "youshou": {
  307. "type": "mesh",
  308. "uvs": [ 0.32469, 0.12334, 0.56061, 0.27929, 0.59798, 0.304, 0.65123, 0.3392, 0.78836, 0.42905, 0.85751, 0.47556, 0.93737, 0.52249, 1, 0.56975, 1, 1, 0.57293, 1, 0.45324, 0.87826, 0.42107, 0.84554, 0.34911, 0.77235, 0.20213, 0.62284, 0.17168, 0.59187, 0.1433, 0.563, 0, 0.41725, 0, 0.19929, 0, 0, 0.13811, 0, 0.36959, 0.41471, 0.64644, 0.66379, 0.43923, 0.47883, 0.40371, 0.44612, 0.5842, 0.61232, 0.68095, 0.70183, 0.2068, 0.23204 ],
  309. "triangles": [ 9, 25, 8, 25, 7, 8, 25, 6, 7, 9, 10, 25, 10, 21, 25, 10, 11, 21, 25, 5, 6, 25, 21, 5, 11, 24, 21, 11, 12, 24, 12, 22, 24, 12, 13, 22, 21, 4, 5, 21, 24, 4, 13, 23, 22, 13, 14, 23, 24, 3, 4, 24, 22, 3, 14, 15, 20, 14, 20, 23, 20, 15, 26, 22, 2, 3, 22, 23, 2, 23, 1, 2, 23, 20, 1, 15, 16, 26, 16, 17, 26, 26, 0, 20, 20, 0, 1, 26, 18, 19, 26, 19, 0, 26, 17, 18 ],
  310. "vertices": [ 3, 14, 7.64, 7.62, 0.98456, 15, -12.96, 8.04, 0.01508, 16, -28.26, 6.77, 3.6E-4, 3, 14, 19.28, 9.92, 0.96505, 15, -1.3, 10.19, 0.03414, 16, -16.71, 9.45, 8.1E-4, 3, 14, 21.12, 10.29, 0.89943, 15, 0.55, 10.54, 0.0954, 16, -14.88, 9.87, 0.00518, 3, 14, 23.75, 10.81, 0.73721, 15, 3.18, 11.02, 0.23707, 16, -12.27, 10.48, 0.02572, 3, 14, 30.48, 12.17, 0.28095, 15, 9.93, 12.3, 0.47835, 16, -5.59, 12.06, 0.2407, 3, 14, 33.92, 12.82, 0.14259, 15, 13.38, 12.91, 0.40255, 16, -2.17, 12.82, 0.45486, 3, 14, 37.64, 13.78, 0.06305, 15, 17.11, 13.82, 0.26109, 16, 1.52, 13.9, 0.67586, 3, 14, 40.95, 14.22, 0.0349, 15, 20.43, 14.21, 0.17923, 16, 4.81, 14.44, 0.78588, 1, 16, 21.13, 1.78, 1, 2, 15, 25.36, -11.86, 0.02021, 16, 10.92, -11.38, 0.97979, 2, 15, 17.89, -11.63, 0.2618, 16, 3.44, -11.48, 0.7382, 2, 15, 15.88, -11.56, 0.40195, 16, 1.43, -11.51, 0.59805, 2, 15, 11.38, -11.42, 0.73147, 16, -3.07, -11.58, 0.26853, 3, 14, 23.05, -11.36, 0.01112, 15, 2.2, -11.14, 0.98345, 16, -12.25, -11.71, 0.00543, 3, 14, 21.15, -11.33, 0.0457, 15, 0.3, -11.08, 0.95354, 16, -14.15, -11.73, 7.6E-4, 3, 14, 19.37, -11.3, 0.11019, 15, -1.47, -11.03, 0.88981, 16, -15.93, -11.76, 0, 2, 14, 10.42, -11.13, 0.65562, 15, -10.42, -10.75, 0.34438, 2, 14, 2.37, -4.45, 0.83552, 15, -18.39, -3.97, 0.16448, 1, 14, -5, 1.65, 1, 1, 14, -1.56, 5.8, 1, 1, 14, 19.53, 0.04, 1, 3, 14, 35.62, 0.72, 0.00254, 15, 14.93, 0.78, 0.54241, 16, -0.08, 0.78, 0.45504, 2, 14, 23.63, 0.17, 0.08602, 15, 2.93, 0.38, 0.91398, 1, 14, 21.54, 0.1, 1, 3, 14, 32.17, 0.43, 0.00406, 15, 11.47, 0.54, 0.99163, 16, -3.52, 0.38, 0.0043, 3, 14, 37.89, 0.59, 9.4E-4, 15, 17.19, 0.63, 0.0241, 16, 2.19, 0.73, 0.97495, 1, 14, 8.72, 0.75, 1 ],
  311. "hull": 20,
  312. "edges": [ 36, 38, 16, 14, 16, 18, 30, 32, 30, 40, 40, 2, 26, 44, 44, 6, 26, 28, 28, 30, 40, 46, 46, 44, 28, 46, 2, 4, 4, 6, 46, 4, 22, 42, 42, 10, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 6, 8, 8, 10, 48, 8, 18, 20, 20, 22, 16, 50, 50, 42, 20, 50, 10, 12, 12, 14, 50, 12, 36, 52, 52, 40, 32, 52, 2, 0, 0, 38, 52, 0, 32, 34, 34, 36 ],
  313. "width": 39,
  314. "height": 48
  315. }
  316. },
  317. "youtui": {
  318. "youtui": {
  319. "type": "mesh",
  320. "uvs": [ 1, 0.37813, 0.99999, 0.44868, 0.99999, 0.50406, 0.99999, 0.71527, 0.99999, 0.75292, 0.99999, 0.79348, 1, 1, 0, 1, 0, 0.87449, 0.34901, 0.79259, 0.33921, 0.75424, 0.32845, 0.71215, 0.28035, 0.52395, 0.26234, 0.4535, 0.25022, 0.40607, 0.14643, 0, 0.53005, 0, 1, 0, 0.62056, 0.4607, 0.67094, 0.8039, 0.66467, 0.76118, 0.65789, 0.71498, 0.62868, 0.51599, 0.61064, 0.41017 ],
  321. "triangles": [ 7, 8, 9, 7, 9, 19, 7, 19, 6, 0, 18, 23, 1, 18, 0, 1, 22, 18, 2, 22, 1, 12, 13, 18, 12, 18, 22, 11, 12, 22, 21, 22, 2, 11, 22, 21, 3, 21, 2, 3, 20, 21, 10, 11, 21, 4, 20, 3, 10, 21, 20, 9, 10, 20, 4, 19, 20, 5, 19, 4, 9, 20, 19, 19, 5, 6, 17, 23, 16, 14, 15, 16, 23, 14, 16, 17, 0, 23, 13, 14, 23, 13, 23, 18 ],
  322. "vertices": [ 3, 8, 19.64, 11.51, 0.30724, 9, -3.57, 11.27, 0.69275, 10, -17.81, -23.42, 0, 3, 8, 23.71, 11.16, 0.07702, 9, 0.51, 11.05, 0.92298, 10, -16.62, -19.51, 0, 3, 8, 26.91, 10.87, 0.00714, 9, 3.72, 10.88, 0.99286, 10, -15.68, -16.43, 0, 3, 8, 39.12, 9.8, 1.5E-4, 9, 15.95, 10.23, 0.95406, 10, -12.11, -4.72, 0.04579, 3, 8, 41.29, 9.61, 1.1E-4, 9, 18.13, 10.11, 0.88181, 10, -11.48, -2.63, 0.11808, 3, 8, 43.63, 9.4, 7.0E-5, 9, 20.48, 9.99, 0.75087, 10, -10.79, -0.38, 0.24906, 3, 8, 55.57, 8.35, 1.0E-5, 9, 32.44, 9.35, 0.06883, 10, -7.3, 11.08, 0.93116, 1, 10, 20.44, 2.62, 1, 1, 10, 18.32, -4.34, 1, 3, 8, 41.93, -9.4, 5.8E-4, 9, 19.43, -8.86, 0.36233, 10, 7.25, -5.93, 0.63709, 3, 8, 39.69, -9.49, 0.00556, 9, 17.19, -9.03, 0.64868, 10, 6.88, -8.14, 0.34575, 3, 8, 37.23, -9.58, 0.02085, 9, 14.74, -9.21, 0.81332, 10, 6.46, -10.57, 0.16583, 3, 8, 26.23, -10.02, 0.48955, 9, 3.76, -10.02, 0.51041, 10, 4.61, -21.42, 3.0E-5, 2, 8, 22.12, -10.18, 0.8055, 9, -0.35, -10.33, 0.1945, 2, 8, 19.34, -10.29, 0.93925, 9, -3.11, -10.53, 0.06075, 1, 8, -4.38, -11.22, 1, 1, 8, -3.4, -0.14, 1, 3, 8, -2.21, 13.44, 0.99879, 9, -25.47, 12.44, 0.00121, 10, -24.21, -44.4, 0, 3, 8, 23.44, 0.13, 0.00561, 9, 0.62, 0.03, 0.99439, 10, -5.89, -22.05, 0, 2, 8, 43.4, -0.16, 0, 9, 20.58, 0.42, 1, 2, 8, 40.92, -0.12, 0, 9, 18.09, 0.37, 1, 1, 9, 15.41, 0.32, 1, 2, 9, 3.84, 0.09, 1, 10, -5.18, -18.91, 0, 3, 8, 20.5, 0.1, 0.99562, 9, -2.32, -0.11, 0.00438, 10, -6.47, -24.94, 0 ],
  323. "hull": 18,
  324. "edges": [ 12, 14, 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 18, 38, 12, 10, 38, 10, 18, 20, 40, 38, 20, 40, 10, 8, 40, 8, 20, 22, 42, 40, 22, 42, 8, 6, 42, 6, 26, 36, 36, 2, 22, 24, 24, 26, 36, 44, 44, 42, 24, 44, 2, 4, 4, 6, 44, 4, 26, 28, 28, 30, 32, 46, 46, 36, 28, 46, 2, 0, 0, 34, 46, 0 ],
  325. "width": 29,
  326. "height": 58
  327. }
  328. },
  329. "youyan": {
  330. "youyan": { "x": 5.42, "y": -2.7, "rotation": -89.33, "width": 22, "height": 20 }
  331. },
  332. "zuiba": {
  333. "zuiba": { "x": 2.01, "y": -2.07, "rotation": -89.2, "width": 14, "height": 9 }
  334. },
  335. "zuoshou": {
  336. "zuoshou": {
  337. "type": "mesh",
  338. "uvs": [ 0.69968, 0.42541, 0.67161, 0.47744, 0.63749, 0.54065, 0.49605, 0.80273, 0.46377, 0.86254, 0.44034, 0.90596, 0.38959, 1, 0, 1, 0, 0.72008, 0.13713, 0.57089, 0.16379, 0.54188, 0.19593, 0.50692, 0.42696, 0.25556, 0.46017, 0.21943, 0.5027, 0.17316, 0.66186, 0, 0.80529, 0, 0.92927, 0, 0.57191, 0.35408, 0.3045, 0.69908, 0.5425, 0.39203, 0.60615, 0.30213, 0.33906, 0.65449, 0.28359, 0.71974 ],
  339. "triangles": [ 19, 10, 22, 9, 10, 19, 23, 9, 19, 8, 9, 23, 19, 22, 3, 4, 19, 3, 23, 19, 4, 5, 23, 4, 7, 8, 23, 6, 7, 23, 5, 6, 23, 11, 12, 20, 22, 11, 20, 22, 20, 2, 10, 11, 22, 3, 22, 2, 21, 14, 15, 13, 14, 21, 21, 15, 16, 18, 13, 21, 12, 13, 18, 20, 12, 18, 0, 21, 16, 18, 21, 0, 0, 16, 17, 1, 18, 0, 20, 18, 1, 2, 20, 1 ],
  340. "vertices": [ 3, 11, 12.86, 8.49, 0.87604, 12, -5.88, 7.54, 0.12384, 13, -23.25, 10.06, 1.2E-4, 3, 11, 15.79, 8.6, 0.65817, 12, -3.02, 8.19, 0.33812, 13, -20.32, 10.36, 0.00371, 3, 11, 19.36, 8.73, 0.31442, 12, 0.47, 8.97, 0.66016, 13, -16.77, 10.73, 0.02542, 2, 12, 14.91, 12.21, 0.28051, 13, -2.05, 12.25, 0.71949, 2, 12, 18.2, 12.95, 0.10312, 13, 1.31, 12.6, 0.89688, 2, 12, 20.6, 13.49, 0.03458, 13, 3.75, 12.86, 0.96542, 2, 12, 25.78, 14.65, 5.0E-5, 13, 9.03, 13.4, 0.99995, 1, 13, 23.43, -4.01, 1, 2, 12, 33.03, -10.47, 0.12512, 13, 13.29, -12.39, 0.87488, 2, 12, 22.44, -10.05, 0.65437, 13, 2.82, -10.73, 0.34563, 2, 12, 20.38, -9.96, 0.80358, 13, 0.78, -10.41, 0.19642, 2, 12, 17.9, -9.86, 0.93383, 13, -1.67, -10.02, 0.06617, 2, 11, 15.64, -9.01, 0.50163, 12, 0.05, -9.15, 0.49837, 2, 11, 13.13, -8.44, 0.72908, 12, -2.52, -9.05, 0.27092, 2, 11, 9.93, -7.71, 0.91969, 12, -5.81, -8.92, 0.08031, 1, 11, -2.08, -4.99, 1, 1, 11, -6.94, 1.76, 1, 1, 11, -11.15, 7.59, 1, 1, 11, 14.47, 0.52, 1, 1, 13, 1.27, 0.59, 1, 3, 11, 16.92, 0.18, 0.77007, 12, -0.37, 0.11, 0.22989, 13, -18.65, 2.03, 4.0E-5, 1, 11, 11.33, 0.7, 1, 2, 12, 16.68, 0.89, 0.67609, 13, -1.62, 0.8, 0.32391, 1, 13, 2.79, 0.27, 1 ],
  341. "hull": 18,
  342. "edges": [ 30, 32, 14, 16, 32, 34, 12, 14, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 40, 4, 26, 28, 28, 30, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 20, 38, 38, 8, 20, 22, 22, 24, 38, 44, 44, 40, 22, 44, 4, 6, 6, 8, 44, 6, 16, 18, 18, 20, 14, 46, 46, 38, 18, 46, 8, 10, 10, 12, 46, 10 ],
  343. "width": 58,
  344. "height": 47
  345. }
  346. },
  347. "zuotui": {
  348. "zuotui": {
  349. "type": "mesh",
  350. "uvs": [ 0.94191, 0.39521, 0.93314, 0.45491, 0.92498, 0.5104, 0.89251, 0.73135, 0.88705, 0.76851, 0.88239, 0.80022, 0.8566, 1, 0, 1, 0, 0.90328, 0.30071, 0.76443, 0.30465, 0.73949, 0.30875, 0.71354, 0.34547, 0.48094, 0.35321, 0.4319, 0.36078, 0.38398, 0.4214, 0, 0.68837, 0, 1, 0, 0.62986, 0.44552, 0.57746, 0.79509, 0.58706, 0.73104, 0.58193, 0.76526, 0.63665, 0.3938, 0.62275, 0.49291 ],
  351. "triangles": [ 7, 8, 9, 7, 19, 6, 23, 13, 18, 12, 13, 23, 2, 18, 1, 23, 18, 2, 20, 12, 23, 11, 12, 20, 3, 23, 2, 20, 23, 3, 21, 11, 20, 10, 11, 21, 4, 20, 3, 21, 20, 4, 19, 10, 21, 9, 10, 19, 5, 21, 4, 19, 21, 5, 7, 9, 19, 6, 19, 5, 22, 15, 16, 14, 15, 22, 0, 16, 17, 22, 16, 0, 18, 14, 22, 13, 14, 18, 1, 22, 0, 18, 22, 1 ],
  352. "vertices": [ 2, 5, 17.65, 10.5, 0.78391, 6, -3.83, 10.46, 0.21609, 2, 5, 21.18, 10.45, 0.51691, 6, -0.29, 10.45, 0.48309, 2, 5, 24.47, 10.41, 0.25326, 6, 2.99, 10.44, 0.74674, 2, 6, 16.08, 10.41, 0.9619, 7, -12.8, -5.52, 0.0381, 2, 6, 18.28, 10.41, 0.90259, 7, -12.1, -3.43, 0.09741, 2, 6, 20.16, 10.4, 0.81517, 7, -11.5, -1.65, 0.18483, 2, 6, 31.98, 10.5, 0.09887, 7, -7.85, 9.59, 0.90113, 1, 7, 21.29, 2.54, 1, 1, 7, 19.95, -3.01, 1, 2, 6, 19.78, -10.06, 0.50841, 7, 7.79, -8.49, 0.49159, 2, 6, 18.3, -10.05, 0.66918, 7, 7.31, -9.89, 0.33082, 2, 6, 16.76, -10.04, 0.78535, 7, 6.81, -11.35, 0.21465, 2, 5, 24.22, -9.95, 0.23881, 6, 2.98, -9.92, 0.76119, 2, 5, 21.31, -9.89, 0.47652, 6, 0.07, -9.89, 0.52348, 2, 5, 18.48, -9.83, 0.71417, 6, -2.77, -9.87, 0.28583, 1, 5, -4.27, -9.37, 1, 1, 5, -4.96, -0.06, 1, 1, 5, -5.75, 10.82, 1, 2, 5, 21.41, -0.18, 0.46609, 6, 0.05, -0.17, 0.53391, 2, 6, 20.76, -0.26, 0.99442, 7, -1.2, -4.46, 0.00558, 2, 6, 16.96, -0.24, 0.99823, 7, -2.42, -8.05, 0.00177, 2, 6, 18.99, -0.25, 0.99651, 7, -1.77, -6.13, 0.00349, 1, 5, 18.35, -0.16, 1, 1, 6, 2.86, -0.19, 1 ],
  353. "hull": 18,
  354. "edges": [ 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 12, 14, 18, 38, 12, 10, 38, 10, 22, 40, 40, 6, 18, 20, 20, 22, 38, 42, 42, 40, 20, 42, 6, 8, 8, 10, 42, 8, 26, 36, 36, 2, 26, 28, 28, 30, 32, 44, 44, 36, 28, 44, 2, 0, 0, 34, 44, 0, 22, 24, 24, 26, 36, 46, 46, 40, 24, 46, 2, 4, 4, 6, 46, 4 ],
  355. "width": 35,
  356. "height": 59
  357. }
  358. },
  359. "zuoyan": {
  360. "zuoyan": { "x": 5.94, "y": 0.53, "rotation": -91.22, "width": 20, "height": 18 }
  361. }
  362. }
  363. },
  364. "animations": {
  365. "stand1": {
  366. "slots": {
  367. "biyan": {
  368. "attachment": [
  369. { "time": 1.1, "name": "biyan" },
  370. { "time": 1.2, "name": null }
  371. ]
  372. },
  373. "fuhao1": {
  374. "color": [
  375. { "time": 0, "color": "ffffff00" }
  376. ]
  377. },
  378. "fuhao7": {
  379. "color": [
  380. { "time": 0, "color": "ffffff00" }
  381. ]
  382. },
  383. "fuhao14": {
  384. "color": [
  385. { "time": 0, "color": "ffffff00" }
  386. ]
  387. },
  388. "fuhao16": {
  389. "color": [
  390. { "time": 0, "color": "ffffff00" }
  391. ]
  392. },
  393. "youyan": {
  394. "attachment": [
  395. { "time": 1.1, "name": null },
  396. { "time": 1.2, "name": "youyan" }
  397. ]
  398. },
  399. "zuoyan": {
  400. "attachment": [
  401. { "time": 1.1, "name": null },
  402. { "time": 1.2, "name": "zuoyan" }
  403. ]
  404. }
  405. },
  406. "bones": {
  407. "root": {
  408. "rotate": [
  409. { "time": 0, "angle": 0 }
  410. ],
  411. "translate": [
  412. { "time": 0, "x": 0, "y": 0 }
  413. ],
  414. "scale": [
  415. { "time": 0, "x": 0.65, "y": 0.65 }
  416. ]
  417. },
  418. "bone": {
  419. "rotate": [
  420. { "time": 0, "angle": 0 }
  421. ],
  422. "translate": [
  423. { "time": 0, "x": 0, "y": 0 }
  424. ],
  425. "scale": [
  426. { "time": 0, "x": 1, "y": 1 }
  427. ]
  428. },
  429. "bone2": {
  430. "rotate": [
  431. { "time": 0, "angle": 0, "curve": "stepped" },
  432. { "time": 0.5, "angle": 0, "curve": "stepped" },
  433. { "time": 1, "angle": 0, "curve": "stepped" },
  434. { "time": 1.5, "angle": 0, "curve": "stepped" },
  435. { "time": 2, "angle": 0 }
  436. ],
  437. "translate": [
  438. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  439. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  440. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  441. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  442. { "time": 2, "x": 0, "y": 0 }
  443. ],
  444. "scale": [
  445. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  446. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  447. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  448. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  449. { "time": 2, "x": 1, "y": 1 }
  450. ]
  451. },
  452. "bone3": {
  453. "rotate": [
  454. { "time": 0, "angle": 0, "curve": "stepped" },
  455. { "time": 0.5, "angle": 0, "curve": "stepped" },
  456. { "time": 1, "angle": 0, "curve": "stepped" },
  457. { "time": 1.5, "angle": 0, "curve": "stepped" },
  458. { "time": 2, "angle": 0 }
  459. ],
  460. "translate": [
  461. { "time": 0, "x": 0, "y": 0 },
  462. { "time": 0.5, "x": 1.17, "y": -0.11 },
  463. { "time": 1, "x": 0, "y": 0 },
  464. { "time": 1.5, "x": 1.17, "y": -0.11 },
  465. { "time": 2, "x": 0, "y": 0 }
  466. ],
  467. "scale": [
  468. { "time": 0, "x": 1, "y": 1 },
  469. { "time": 0.5, "x": 1.04, "y": 1 },
  470. { "time": 1, "x": 1, "y": 1 },
  471. { "time": 1.5, "x": 1.04, "y": 1 },
  472. { "time": 2, "x": 1, "y": 1 }
  473. ]
  474. },
  475. "bone4": {
  476. "rotate": [
  477. { "time": 0, "angle": 0, "curve": "stepped" },
  478. { "time": 0.5, "angle": 0, "curve": "stepped" },
  479. { "time": 1, "angle": 0, "curve": "stepped" },
  480. { "time": 1.5, "angle": 0, "curve": "stepped" },
  481. { "time": 2, "angle": 0 }
  482. ],
  483. "translate": [
  484. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  485. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  486. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  487. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  488. { "time": 2, "x": 0, "y": 0 }
  489. ],
  490. "scale": [
  491. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  492. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  493. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  494. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  495. { "time": 2, "x": 1, "y": 1 }
  496. ]
  497. },
  498. "bone5": {
  499. "rotate": [
  500. { "time": 0, "angle": 0, "curve": "stepped" },
  501. { "time": 0.5, "angle": 0, "curve": "stepped" },
  502. { "time": 1, "angle": 0, "curve": "stepped" },
  503. { "time": 1.5, "angle": 0, "curve": "stepped" },
  504. { "time": 2, "angle": 0 }
  505. ],
  506. "translate": [
  507. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  508. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  509. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  510. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  511. { "time": 2, "x": 0, "y": 0 }
  512. ],
  513. "scale": [
  514. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  515. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  516. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  517. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  518. { "time": 2, "x": 1, "y": 1 }
  519. ]
  520. },
  521. "bone6": {
  522. "rotate": [
  523. { "time": 0, "angle": 0, "curve": "stepped" },
  524. { "time": 0.5, "angle": 0, "curve": "stepped" },
  525. { "time": 1, "angle": 0, "curve": "stepped" },
  526. { "time": 1.5, "angle": 0, "curve": "stepped" },
  527. { "time": 2, "angle": 0 }
  528. ],
  529. "translate": [
  530. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  531. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  532. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  533. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  534. { "time": 2, "x": 0, "y": 0 }
  535. ],
  536. "scale": [
  537. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  538. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  539. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  540. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  541. { "time": 2, "x": 1, "y": 1 }
  542. ]
  543. },
  544. "bone7": {
  545. "rotate": [
  546. { "time": 0, "angle": 0, "curve": "stepped" },
  547. { "time": 0.5, "angle": 0, "curve": "stepped" },
  548. { "time": 1, "angle": 0, "curve": "stepped" },
  549. { "time": 1.5, "angle": 0, "curve": "stepped" },
  550. { "time": 2, "angle": 0 }
  551. ],
  552. "translate": [
  553. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  554. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  555. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  556. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  557. { "time": 2, "x": 0, "y": 0 }
  558. ],
  559. "scale": [
  560. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  561. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  562. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  563. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  564. { "time": 2, "x": 1, "y": 1 }
  565. ]
  566. },
  567. "bone8": {
  568. "rotate": [
  569. { "time": 0, "angle": 0, "curve": "stepped" },
  570. { "time": 0.5, "angle": 0, "curve": "stepped" },
  571. { "time": 1, "angle": 0, "curve": "stepped" },
  572. { "time": 1.5, "angle": 0, "curve": "stepped" },
  573. { "time": 2, "angle": 0 }
  574. ],
  575. "translate": [
  576. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  577. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  578. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  579. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  580. { "time": 2, "x": 0, "y": 0 }
  581. ],
  582. "scale": [
  583. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  584. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  585. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  586. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  587. { "time": 2, "x": 1, "y": 1 }
  588. ]
  589. },
  590. "bone9": {
  591. "rotate": [
  592. { "time": 0, "angle": 0, "curve": "stepped" },
  593. { "time": 0.5, "angle": 0, "curve": "stepped" },
  594. { "time": 1, "angle": 0, "curve": "stepped" },
  595. { "time": 1.5, "angle": 0, "curve": "stepped" },
  596. { "time": 2, "angle": 0 }
  597. ],
  598. "translate": [
  599. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  600. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  601. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  602. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  603. { "time": 2, "x": 0, "y": 0 }
  604. ],
  605. "scale": [
  606. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  607. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  608. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  609. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  610. { "time": 2, "x": 1, "y": 1 }
  611. ]
  612. },
  613. "bone10": {
  614. "rotate": [
  615. { "time": 0, "angle": 0, "curve": "stepped" },
  616. { "time": 0.5, "angle": 0, "curve": "stepped" },
  617. { "time": 1, "angle": 0, "curve": "stepped" },
  618. { "time": 1.5, "angle": 0, "curve": "stepped" },
  619. { "time": 2, "angle": 0 }
  620. ],
  621. "translate": [
  622. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  623. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  624. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  625. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  626. { "time": 2, "x": 0, "y": 0 }
  627. ],
  628. "scale": [
  629. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  630. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  631. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  632. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  633. { "time": 2, "x": 1, "y": 1 }
  634. ]
  635. },
  636. "bone11": {
  637. "rotate": [
  638. { "time": 0, "angle": 10.08 },
  639. { "time": 0.5, "angle": 0.55 },
  640. { "time": 1, "angle": 10.08 },
  641. { "time": 1.5, "angle": 0.55 },
  642. { "time": 2, "angle": 10.08 }
  643. ],
  644. "translate": [
  645. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  646. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  647. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  648. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  649. { "time": 2, "x": 0, "y": 0 }
  650. ],
  651. "scale": [
  652. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  653. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  654. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  655. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  656. { "time": 2, "x": 1, "y": 1 }
  657. ]
  658. },
  659. "bone12": {
  660. "rotate": [
  661. { "time": 0, "angle": 5.87 },
  662. { "time": 0.5, "angle": 17.69 },
  663. { "time": 1, "angle": 5.87 },
  664. { "time": 1.5, "angle": 17.69 },
  665. { "time": 2, "angle": 5.87 }
  666. ],
  667. "translate": [
  668. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  669. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  670. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  671. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  672. { "time": 2, "x": 0, "y": 0 }
  673. ],
  674. "scale": [
  675. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  676. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  677. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  678. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  679. { "time": 2, "x": 1, "y": 1 }
  680. ]
  681. },
  682. "bone13": {
  683. "rotate": [
  684. { "time": 0, "angle": 0 },
  685. { "time": 0.5, "angle": -11.76 },
  686. { "time": 1, "angle": 0 },
  687. { "time": 1.5, "angle": -11.76 },
  688. { "time": 2, "angle": 0 }
  689. ],
  690. "translate": [
  691. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  692. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  693. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  694. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  695. { "time": 2, "x": 0, "y": 0 }
  696. ],
  697. "scale": [
  698. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  699. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  700. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  701. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  702. { "time": 2, "x": 1, "y": 1 }
  703. ]
  704. },
  705. "bone14": {
  706. "rotate": [
  707. { "time": 0, "angle": -21.7 },
  708. { "time": 0.5, "angle": -12.15 },
  709. { "time": 1, "angle": -21.7 },
  710. { "time": 1.5, "angle": -12.15 },
  711. { "time": 2, "angle": -21.7 }
  712. ],
  713. "translate": [
  714. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  715. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  716. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  717. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  718. { "time": 2, "x": 0, "y": 0 }
  719. ],
  720. "scale": [
  721. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  722. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  723. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  725. { "time": 2, "x": 1, "y": 1 }
  726. ]
  727. },
  728. "bone15": {
  729. "rotate": [
  730. { "time": 0, "angle": -8.23 },
  731. { "time": 0.5, "angle": -5.73 },
  732. { "time": 1, "angle": -8.23 },
  733. { "time": 1.5, "angle": -5.73 },
  734. { "time": 2, "angle": -8.23 }
  735. ],
  736. "translate": [
  737. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  738. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  739. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  741. { "time": 2, "x": 0, "y": 0 }
  742. ],
  743. "scale": [
  744. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  745. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  746. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  747. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  748. { "time": 2, "x": 1, "y": 1 }
  749. ]
  750. },
  751. "bone16": {
  752. "rotate": [
  753. { "time": 0, "angle": 0, "curve": "stepped" },
  754. { "time": 0.5, "angle": 0, "curve": "stepped" },
  755. { "time": 1, "angle": 0, "curve": "stepped" },
  756. { "time": 1.5, "angle": 0, "curve": "stepped" },
  757. { "time": 2, "angle": 0 }
  758. ],
  759. "translate": [
  760. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  761. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  762. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  764. { "time": 2, "x": 0, "y": 0 }
  765. ],
  766. "scale": [
  767. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  768. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  769. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  770. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  771. { "time": 2, "x": 1, "y": 1 }
  772. ]
  773. },
  774. "bone17": {
  775. "rotate": [
  776. { "time": 0, "angle": 0 },
  777. { "time": 0.5, "angle": -3.34 },
  778. { "time": 1, "angle": 0 },
  779. { "time": 1.5, "angle": -3.34 },
  780. { "time": 2, "angle": 0 }
  781. ],
  782. "translate": [
  783. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  784. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  785. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  786. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  787. { "time": 2, "x": 0, "y": 0 }
  788. ],
  789. "scale": [
  790. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  791. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  792. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  793. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  794. { "time": 2, "x": 1, "y": 1 }
  795. ]
  796. },
  797. "bone18": {
  798. "rotate": [
  799. { "time": 0, "angle": 0 },
  800. { "time": 0.5, "angle": -9.75 },
  801. { "time": 1, "angle": 0 },
  802. { "time": 1.5, "angle": -9.75 },
  803. { "time": 2, "angle": 0 }
  804. ],
  805. "translate": [
  806. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  807. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  808. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  809. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  810. { "time": 2, "x": 0, "y": 0 }
  811. ],
  812. "scale": [
  813. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  814. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  815. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  816. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  817. { "time": 2, "x": 1, "y": 1 }
  818. ]
  819. },
  820. "bone19": {
  821. "rotate": [
  822. { "time": 0, "angle": 0 },
  823. { "time": 0.5, "angle": -3.41 },
  824. { "time": 1, "angle": 0 },
  825. { "time": 1.5, "angle": -3.41 },
  826. { "time": 2, "angle": 0 }
  827. ],
  828. "translate": [
  829. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  830. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  833. { "time": 2, "x": 0, "y": 0 }
  834. ],
  835. "scale": [
  836. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  837. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  838. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  839. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  840. { "time": 2, "x": 1, "y": 1 }
  841. ]
  842. },
  843. "bone20": {
  844. "rotate": [
  845. { "time": 0, "angle": 0 },
  846. { "time": 0.5, "angle": 3.26 },
  847. { "time": 1, "angle": 0 },
  848. { "time": 1.5, "angle": 3.26 },
  849. { "time": 2, "angle": 0 }
  850. ],
  851. "translate": [
  852. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  853. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  854. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  856. { "time": 2, "x": 0, "y": 0 }
  857. ],
  858. "scale": [
  859. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  860. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 2, "x": 1, "y": 1 }
  864. ]
  865. },
  866. "bone21": {
  867. "rotate": [
  868. { "time": 0, "angle": 0 },
  869. { "time": 0.5, "angle": 9.51 },
  870. { "time": 1, "angle": 0 },
  871. { "time": 1.5, "angle": 9.51 },
  872. { "time": 2, "angle": 0 }
  873. ],
  874. "translate": [
  875. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  876. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  877. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 2, "x": 0, "y": 0 }
  880. ],
  881. "scale": [
  882. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  883. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  884. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  886. { "time": 2, "x": 1, "y": 1 }
  887. ]
  888. },
  889. "bone22": {
  890. "rotate": [
  891. { "time": 0, "angle": 0 },
  892. { "time": 0.5, "angle": 6.25 },
  893. { "time": 1, "angle": 0 },
  894. { "time": 1.5, "angle": 6.25 },
  895. { "time": 2, "angle": 0 }
  896. ],
  897. "translate": [
  898. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  899. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  900. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  901. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  902. { "time": 2, "x": 0, "y": 0 }
  903. ],
  904. "scale": [
  905. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  906. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  907. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  908. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  909. { "time": 2, "x": 1, "y": 1 }
  910. ]
  911. },
  912. "bone23": {
  913. "rotate": [
  914. { "time": 0, "angle": 0, "curve": "stepped" },
  915. { "time": 0.5, "angle": 0, "curve": "stepped" },
  916. { "time": 1, "angle": 0, "curve": "stepped" },
  917. { "time": 1.5, "angle": 0, "curve": "stepped" },
  918. { "time": 2, "angle": 0 }
  919. ],
  920. "translate": [
  921. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  922. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  923. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  924. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  925. { "time": 2, "x": 0, "y": 0 }
  926. ],
  927. "scale": [
  928. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  929. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  930. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  931. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  932. { "time": 2, "x": 1, "y": 1 }
  933. ]
  934. },
  935. "bone24": {
  936. "rotate": [
  937. { "time": 0, "angle": 0, "curve": "stepped" },
  938. { "time": 0.5, "angle": 0, "curve": "stepped" },
  939. { "time": 1, "angle": 0, "curve": "stepped" },
  940. { "time": 1.5, "angle": 0, "curve": "stepped" },
  941. { "time": 2, "angle": 0 }
  942. ],
  943. "translate": [
  944. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  945. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  946. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  947. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  948. { "time": 2, "x": 0, "y": 0 }
  949. ],
  950. "scale": [
  951. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  952. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  953. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  954. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  955. { "time": 2, "x": 1, "y": 1 }
  956. ]
  957. },
  958. "bone25": {
  959. "rotate": [
  960. { "time": 0, "angle": 0, "curve": "stepped" },
  961. { "time": 0.5, "angle": 0, "curve": "stepped" },
  962. { "time": 1, "angle": 0, "curve": "stepped" },
  963. { "time": 1.5, "angle": 0, "curve": "stepped" },
  964. { "time": 2, "angle": 0 }
  965. ],
  966. "translate": [
  967. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  968. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  969. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  970. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  971. { "time": 2, "x": 0, "y": 0 }
  972. ],
  973. "scale": [
  974. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  975. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 2, "x": 1, "y": 1 }
  979. ]
  980. },
  981. "bone26": {
  982. "rotate": [
  983. { "time": 0, "angle": 0 },
  984. { "time": 0.5, "angle": -6.43 },
  985. { "time": 1, "angle": 0 },
  986. { "time": 1.5, "angle": -6.43 },
  987. { "time": 2, "angle": 0 }
  988. ],
  989. "translate": [
  990. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  991. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  992. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  993. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  994. { "time": 2, "x": 0, "y": 0 }
  995. ],
  996. "scale": [
  997. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  998. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  999. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1001. { "time": 2, "x": 1, "y": 1 }
  1002. ]
  1003. },
  1004. "bone27": {
  1005. "rotate": [
  1006. { "time": 0, "angle": 0 },
  1007. { "time": 0.5, "angle": -5.6 },
  1008. { "time": 1, "angle": 0 },
  1009. { "time": 1.5, "angle": -5.6 },
  1010. { "time": 2, "angle": 0 }
  1011. ],
  1012. "translate": [
  1013. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1014. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1015. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 2, "x": 0, "y": 0 }
  1018. ],
  1019. "scale": [
  1020. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1021. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1022. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1023. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1024. { "time": 2, "x": 1, "y": 1 }
  1025. ]
  1026. },
  1027. "bone28": {
  1028. "rotate": [
  1029. { "time": 0, "angle": 0 },
  1030. { "time": 0.5, "angle": -11.89 },
  1031. { "time": 1, "angle": 0 },
  1032. { "time": 1.5, "angle": -11.89 },
  1033. { "time": 2, "angle": 0 }
  1034. ],
  1035. "translate": [
  1036. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1037. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1038. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1039. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1040. { "time": 2, "x": 0, "y": 0 }
  1041. ],
  1042. "scale": [
  1043. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1044. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 2, "x": 1, "y": 1 }
  1048. ]
  1049. },
  1050. "bone29": {
  1051. "rotate": [
  1052. { "time": 0, "angle": 0, "curve": "stepped" },
  1053. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1054. { "time": 1, "angle": 0, "curve": "stepped" },
  1055. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1056. { "time": 2, "angle": 0 }
  1057. ],
  1058. "translate": [
  1059. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1060. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1061. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1062. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1063. { "time": 2, "x": 0, "y": 0 }
  1064. ],
  1065. "scale": [
  1066. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1067. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1068. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1069. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1070. { "time": 2, "x": 1, "y": 1 }
  1071. ]
  1072. },
  1073. "bone30": {
  1074. "rotate": [
  1075. { "time": 0, "angle": 0 },
  1076. { "time": 0.5, "angle": 19.73 },
  1077. { "time": 1, "angle": 0 },
  1078. { "time": 1.5, "angle": 19.73 },
  1079. { "time": 2, "angle": 0 }
  1080. ],
  1081. "translate": [
  1082. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1083. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1084. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1085. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1086. { "time": 2, "x": 0, "y": 0 }
  1087. ],
  1088. "scale": [
  1089. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1090. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 2, "x": 1, "y": 1 }
  1094. ]
  1095. },
  1096. "bone31": {
  1097. "rotate": [
  1098. { "time": 0, "angle": 0 },
  1099. { "time": 0.5, "angle": 15.43 },
  1100. { "time": 1, "angle": 0 },
  1101. { "time": 1.5, "angle": 15.43 },
  1102. { "time": 2, "angle": 0 }
  1103. ],
  1104. "translate": [
  1105. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1106. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1107. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1108. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1109. { "time": 2, "x": 0, "y": 0 }
  1110. ],
  1111. "scale": [
  1112. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1113. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1114. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1115. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1116. { "time": 2, "x": 1, "y": 1 }
  1117. ]
  1118. },
  1119. "bone32": {
  1120. "rotate": [
  1121. { "time": 0, "angle": 0 },
  1122. { "time": 0.5, "angle": 4.21 },
  1123. { "time": 1, "angle": 0 },
  1124. { "time": 1.5, "angle": 4.21 },
  1125. { "time": 2, "angle": 0 }
  1126. ],
  1127. "translate": [
  1128. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1129. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1130. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1131. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1132. { "time": 2, "x": 0, "y": 0 }
  1133. ],
  1134. "scale": [
  1135. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1136. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 2, "x": 1, "y": 1 }
  1140. ]
  1141. },
  1142. "bone33": {
  1143. "rotate": [
  1144. { "time": 0, "angle": 0 },
  1145. { "time": 0.5, "angle": 6.91 },
  1146. { "time": 1, "angle": 0 },
  1147. { "time": 1.5, "angle": 6.91 },
  1148. { "time": 2, "angle": 0 }
  1149. ],
  1150. "translate": [
  1151. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1152. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1153. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1154. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 2, "x": 0, "y": 0 }
  1156. ],
  1157. "scale": [
  1158. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1159. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1160. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1161. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1162. { "time": 2, "x": 1, "y": 1 }
  1163. ]
  1164. },
  1165. "bone34": {
  1166. "rotate": [
  1167. { "time": 0, "angle": 0 },
  1168. { "time": 0.5, "angle": 10.04 },
  1169. { "time": 1, "angle": 0 },
  1170. { "time": 1.5, "angle": 10.04 },
  1171. { "time": 2, "angle": 0 }
  1172. ],
  1173. "translate": [
  1174. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1175. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1176. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1177. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1178. { "time": 2, "x": 0, "y": 0 }
  1179. ],
  1180. "scale": [
  1181. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1182. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1183. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1184. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1185. { "time": 2, "x": 1, "y": 1 }
  1186. ]
  1187. },
  1188. "bone35": {
  1189. "rotate": [
  1190. { "time": 0, "angle": 0 },
  1191. { "time": 0.5, "angle": 22.51 },
  1192. { "time": 1, "angle": 0 },
  1193. { "time": 1.5, "angle": 22.51 },
  1194. { "time": 2, "angle": 0 }
  1195. ],
  1196. "translate": [
  1197. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1198. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1199. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1200. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1201. { "time": 2, "x": 0, "y": 0 }
  1202. ],
  1203. "scale": [
  1204. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1205. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1207. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 2, "x": 1, "y": 1 }
  1209. ]
  1210. },
  1211. "bone36": {
  1212. "rotate": [
  1213. { "time": 0, "angle": 0 },
  1214. { "time": 0.5, "angle": -7.53 },
  1215. { "time": 1, "angle": 0 },
  1216. { "time": 1.5, "angle": -7.53 },
  1217. { "time": 2, "angle": 0 }
  1218. ],
  1219. "translate": [
  1220. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1221. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 2, "x": 0, "y": 0 }
  1225. ],
  1226. "scale": [
  1227. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1228. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1229. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1230. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1231. { "time": 2, "x": 1, "y": 1 }
  1232. ]
  1233. },
  1234. "bone37": {
  1235. "rotate": [
  1236. { "time": 0, "angle": 0 },
  1237. { "time": 0.5, "angle": 0.87 },
  1238. { "time": 1, "angle": 0 },
  1239. { "time": 1.5, "angle": 0.87 },
  1240. { "time": 2, "angle": 0 }
  1241. ],
  1242. "translate": [
  1243. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1244. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1245. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1247. { "time": 2, "x": 0, "y": 0 }
  1248. ],
  1249. "scale": [
  1250. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1251. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1252. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1254. { "time": 2, "x": 1, "y": 1 }
  1255. ]
  1256. },
  1257. "bone38": {
  1258. "rotate": [
  1259. { "time": 0, "angle": 0 },
  1260. { "time": 0.5, "angle": -1.83 },
  1261. { "time": 1, "angle": 0 },
  1262. { "time": 1.5, "angle": -1.83 },
  1263. { "time": 2, "angle": 0 }
  1264. ],
  1265. "translate": [
  1266. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1267. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 2, "x": 0, "y": 0 }
  1271. ],
  1272. "scale": [
  1273. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1274. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1275. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1276. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1277. { "time": 2, "x": 1, "y": 1 }
  1278. ]
  1279. },
  1280. "bone39": {
  1281. "rotate": [
  1282. { "time": 0, "angle": 0 },
  1283. { "time": 0.5, "angle": 5.94 },
  1284. { "time": 1, "angle": 0 },
  1285. { "time": 1.5, "angle": 5.94 },
  1286. { "time": 2, "angle": 0 }
  1287. ],
  1288. "translate": [
  1289. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1290. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1291. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1292. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1293. { "time": 2, "x": 0, "y": 0 }
  1294. ],
  1295. "scale": [
  1296. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 2, "x": 1, "y": 1 }
  1301. ]
  1302. },
  1303. "bone40": {
  1304. "rotate": [
  1305. { "time": 0, "angle": 0, "curve": "stepped" },
  1306. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1307. { "time": 1, "angle": 0, "curve": "stepped" },
  1308. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1309. { "time": 2, "angle": 0 }
  1310. ],
  1311. "translate": [
  1312. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1313. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 2, "x": 0, "y": 0 }
  1317. ],
  1318. "scale": [
  1319. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1320. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1321. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1322. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1323. { "time": 2, "x": 1, "y": 1 }
  1324. ]
  1325. },
  1326. "bone41": {
  1327. "rotate": [
  1328. { "time": 0, "angle": 0, "curve": "stepped" },
  1329. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1330. { "time": 1, "angle": 0, "curve": "stepped" },
  1331. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1332. { "time": 2, "angle": 0 }
  1333. ],
  1334. "translate": [
  1335. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1336. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1337. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1338. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1339. { "time": 2, "x": 0, "y": 0 }
  1340. ],
  1341. "scale": [
  1342. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1343. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1344. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1346. { "time": 2, "x": 1, "y": 1 }
  1347. ]
  1348. },
  1349. "bone42": {
  1350. "rotate": [
  1351. { "time": 0, "angle": 0, "curve": "stepped" },
  1352. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1353. { "time": 1, "angle": 0, "curve": "stepped" },
  1354. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1355. { "time": 2, "angle": 0 }
  1356. ],
  1357. "translate": [
  1358. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1359. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1360. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1361. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1362. { "time": 2, "x": 0, "y": 0 }
  1363. ],
  1364. "scale": [
  1365. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1366. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1367. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1368. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1369. { "time": 2, "x": 1, "y": 1 }
  1370. ]
  1371. },
  1372. "bone43": {
  1373. "rotate": [
  1374. { "time": 0, "angle": 0, "curve": "stepped" },
  1375. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1376. { "time": 1, "angle": 0, "curve": "stepped" },
  1377. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1378. { "time": 2, "angle": 0 }
  1379. ],
  1380. "translate": [
  1381. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1382. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1385. { "time": 2, "x": 0, "y": 0 }
  1386. ],
  1387. "scale": [
  1388. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1389. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1390. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1391. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1392. { "time": 2, "x": 1, "y": 1 }
  1393. ]
  1394. },
  1395. "bone44": {
  1396. "rotate": [
  1397. { "time": 0, "angle": 0, "curve": "stepped" },
  1398. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1399. { "time": 1, "angle": 0, "curve": "stepped" },
  1400. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1401. { "time": 2, "angle": 0 }
  1402. ],
  1403. "translate": [
  1404. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1405. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1406. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1407. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1408. { "time": 2, "x": 0, "y": 0 }
  1409. ],
  1410. "scale": [
  1411. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1412. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1413. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1414. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1415. { "time": 2, "x": 1, "y": 1 }
  1416. ]
  1417. },
  1418. "bone45": {
  1419. "rotate": [
  1420. { "time": 0, "angle": 0, "curve": "stepped" },
  1421. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1422. { "time": 1, "angle": 0, "curve": "stepped" },
  1423. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1424. { "time": 2, "angle": 0 }
  1425. ],
  1426. "translate": [
  1427. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1428. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1429. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1430. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1431. { "time": 2, "x": 0, "y": 0 }
  1432. ],
  1433. "scale": [
  1434. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1435. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1436. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1437. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1438. { "time": 2, "x": 1, "y": 1 }
  1439. ]
  1440. },
  1441. "bone46": {
  1442. "rotate": [
  1443. { "time": 0, "angle": 0 },
  1444. { "time": 0.5, "angle": 4.42 },
  1445. { "time": 1, "angle": 0 },
  1446. { "time": 1.5, "angle": 4.42 },
  1447. { "time": 2, "angle": 0 }
  1448. ],
  1449. "translate": [
  1450. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1451. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1452. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1453. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1454. { "time": 2, "x": 0, "y": 0 }
  1455. ],
  1456. "scale": [
  1457. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1458. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1459. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1460. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1461. { "time": 2, "x": 1, "y": 1 }
  1462. ]
  1463. },
  1464. "bone47": {
  1465. "rotate": [
  1466. { "time": 0, "angle": 0 },
  1467. { "time": 0.5, "angle": 6.2 },
  1468. { "time": 1, "angle": 0 },
  1469. { "time": 1.5, "angle": 6.2 },
  1470. { "time": 2, "angle": 0 }
  1471. ],
  1472. "translate": [
  1473. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1474. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1475. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1476. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1477. { "time": 2, "x": 0, "y": 0 }
  1478. ],
  1479. "scale": [
  1480. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1481. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1482. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1483. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1484. { "time": 2, "x": 1, "y": 1 }
  1485. ]
  1486. },
  1487. "bone48": {
  1488. "rotate": [
  1489. { "time": 0, "angle": 0 },
  1490. { "time": 0.5, "angle": -1.49 },
  1491. { "time": 1, "angle": 0 },
  1492. { "time": 1.5, "angle": -1.49 },
  1493. { "time": 2, "angle": 0 }
  1494. ],
  1495. "translate": [
  1496. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1497. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1498. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1499. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1500. { "time": 2, "x": 0, "y": 0 }
  1501. ],
  1502. "scale": [
  1503. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1504. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1505. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1506. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1507. { "time": 2, "x": 1, "y": 1 }
  1508. ]
  1509. },
  1510. "bone49": {
  1511. "rotate": [
  1512. { "time": 0, "angle": 0, "curve": "stepped" },
  1513. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1514. { "time": 1, "angle": 0, "curve": "stepped" },
  1515. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1516. { "time": 2, "angle": 0 }
  1517. ],
  1518. "translate": [
  1519. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1520. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1521. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1522. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1523. { "time": 2, "x": 0, "y": 0 }
  1524. ],
  1525. "scale": [
  1526. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1527. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1528. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1529. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1530. { "time": 2, "x": 1, "y": 1 }
  1531. ]
  1532. },
  1533. "bone50": {
  1534. "rotate": [
  1535. { "time": 0, "angle": 0 },
  1536. { "time": 0.5, "angle": -7.52 },
  1537. { "time": 1, "angle": 0 },
  1538. { "time": 1.5, "angle": -7.52 },
  1539. { "time": 2, "angle": 0 }
  1540. ],
  1541. "translate": [
  1542. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1543. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1544. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1545. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1546. { "time": 2, "x": 0, "y": 0 }
  1547. ],
  1548. "scale": [
  1549. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1550. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1551. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1552. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1553. { "time": 2, "x": 1, "y": 1 }
  1554. ]
  1555. },
  1556. "bone51": {
  1557. "rotate": [
  1558. { "time": 0, "angle": 0 },
  1559. { "time": 0.5, "angle": -6.66 },
  1560. { "time": 1, "angle": 0 },
  1561. { "time": 1.5, "angle": -6.66 },
  1562. { "time": 2, "angle": 0 }
  1563. ],
  1564. "translate": [
  1565. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1566. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1567. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1568. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1569. { "time": 2, "x": 0, "y": 0 }
  1570. ],
  1571. "scale": [
  1572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1573. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1576. { "time": 2, "x": 1, "y": 1 }
  1577. ]
  1578. },
  1579. "bone52": {
  1580. "rotate": [
  1581. { "time": 0, "angle": 0 },
  1582. { "time": 0.5, "angle": -11.43 },
  1583. { "time": 1, "angle": 0 },
  1584. { "time": 1.5, "angle": -11.43 },
  1585. { "time": 2, "angle": 0 }
  1586. ],
  1587. "translate": [
  1588. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1589. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1590. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1591. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1592. { "time": 2, "x": 0, "y": 0 }
  1593. ],
  1594. "scale": [
  1595. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1596. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1597. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1598. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1599. { "time": 2, "x": 1, "y": 1 }
  1600. ]
  1601. },
  1602. "bone53": {
  1603. "rotate": [
  1604. { "time": 0, "angle": 0, "curve": "stepped" },
  1605. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1606. { "time": 1, "angle": 0, "curve": "stepped" },
  1607. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1608. { "time": 2, "angle": 0 }
  1609. ],
  1610. "translate": [
  1611. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1612. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1613. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1614. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1615. { "time": 2, "x": 0, "y": 0 }
  1616. ],
  1617. "scale": [
  1618. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1619. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1620. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1621. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1622. { "time": 2, "x": 1, "y": 1 }
  1623. ]
  1624. },
  1625. "bone54": {
  1626. "rotate": [
  1627. { "time": 0, "angle": 0, "curve": "stepped" },
  1628. { "time": 1, "angle": 0, "curve": "stepped" },
  1629. { "time": 1.1, "angle": 0, "curve": "stepped" },
  1630. { "time": 1.2, "angle": 0, "curve": "stepped" },
  1631. { "time": 1.3333, "angle": 0 }
  1632. ],
  1633. "translate": [
  1634. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1635. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1636. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1637. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1638. { "time": 1.3333, "x": 0, "y": 0 }
  1639. ],
  1640. "scale": [
  1641. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1642. { "time": 1, "x": 1, "y": 1 },
  1643. { "time": 1.1, "x": 0.654, "y": 1, "curve": "stepped" },
  1644. { "time": 1.2, "x": 0.654, "y": 1 },
  1645. { "time": 1.3333, "x": 1, "y": 1 }
  1646. ]
  1647. },
  1648. "bone55": {
  1649. "rotate": [
  1650. { "time": 0, "angle": 0, "curve": "stepped" },
  1651. { "time": 1, "angle": 0, "curve": "stepped" },
  1652. { "time": 1.1, "angle": 0, "curve": "stepped" },
  1653. { "time": 1.2, "angle": 0, "curve": "stepped" },
  1654. { "time": 1.3333, "angle": 0 }
  1655. ],
  1656. "translate": [
  1657. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1658. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1659. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  1660. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  1661. { "time": 1.3333, "x": 0, "y": 0 }
  1662. ],
  1663. "scale": [
  1664. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1665. { "time": 1, "x": 1, "y": 1 },
  1666. { "time": 1.1, "x": 0.585, "y": 1, "curve": "stepped" },
  1667. { "time": 1.2, "x": 0.585, "y": 1 },
  1668. { "time": 1.3333, "x": 1, "y": 1 }
  1669. ]
  1670. },
  1671. "bone56": {
  1672. "rotate": [
  1673. { "time": 0, "angle": 0, "curve": "stepped" },
  1674. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1675. { "time": 1, "angle": 0, "curve": "stepped" },
  1676. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1677. { "time": 2, "angle": 0 }
  1678. ],
  1679. "translate": [
  1680. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1681. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1682. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1683. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1684. { "time": 2, "x": 0, "y": 0 }
  1685. ],
  1686. "scale": [
  1687. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1688. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1689. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1690. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1691. { "time": 2, "x": 1, "y": 1 }
  1692. ]
  1693. },
  1694. "bone57": {
  1695. "rotate": [
  1696. { "time": 0, "angle": 0, "curve": "stepped" },
  1697. { "time": 1, "angle": 0, "curve": "stepped" },
  1698. { "time": 1.1, "angle": 0, "curve": "stepped" },
  1699. { "time": 1.2, "angle": 0, "curve": "stepped" },
  1700. { "time": 1.3333, "angle": 0 }
  1701. ],
  1702. "translate": [
  1703. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1704. { "time": 1, "x": 0, "y": 0 },
  1705. { "time": 1.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
  1706. { "time": 1.2, "x": -1.21, "y": -0.09 },
  1707. { "time": 1.3333, "x": 0, "y": 0 }
  1708. ],
  1709. "scale": [
  1710. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1711. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  1714. { "time": 1.3333, "x": 1, "y": 1 }
  1715. ]
  1716. },
  1717. "bone58": {
  1718. "rotate": [
  1719. { "time": 0, "angle": 0, "curve": "stepped" },
  1720. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1721. { "time": 1, "angle": 0, "curve": "stepped" },
  1722. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1723. { "time": 2, "angle": 0 }
  1724. ],
  1725. "translate": [
  1726. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1727. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1728. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 2, "x": 0, "y": 0 }
  1731. ],
  1732. "scale": [
  1733. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1734. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1735. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1736. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1737. { "time": 2, "x": 1, "y": 1 }
  1738. ]
  1739. },
  1740. "bone59": {
  1741. "rotate": [
  1742. { "time": 0, "angle": 0 }
  1743. ],
  1744. "translate": [
  1745. { "time": 0, "x": 25.65, "y": 5.4 }
  1746. ],
  1747. "scale": [
  1748. { "time": 0, "x": 1, "y": 1 }
  1749. ]
  1750. },
  1751. "bone61": {
  1752. "rotate": [
  1753. { "time": 0, "angle": 0 }
  1754. ],
  1755. "translate": [
  1756. { "time": 0, "x": 43.69, "y": -37.66 }
  1757. ],
  1758. "scale": [
  1759. { "time": 0, "x": 1, "y": 1 }
  1760. ]
  1761. },
  1762. "bone62": {
  1763. "rotate": [
  1764. { "time": 0, "angle": 0, "curve": "stepped" },
  1765. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1766. { "time": 1, "angle": 0, "curve": "stepped" },
  1767. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1768. { "time": 2, "angle": 0 }
  1769. ],
  1770. "translate": [
  1771. { "time": 0, "x": -41.86, "y": -54.54 },
  1772. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1773. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1774. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1775. { "time": 2, "x": 0, "y": 0 }
  1776. ],
  1777. "scale": [
  1778. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1779. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1780. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1781. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  1782. { "time": 2, "x": 1, "y": 1 }
  1783. ]
  1784. },
  1785. "bone60": {
  1786. "rotate": [
  1787. { "time": 0, "angle": 0 }
  1788. ],
  1789. "translate": [
  1790. { "time": 0, "x": -48.26, "y": -6.24 }
  1791. ],
  1792. "scale": [
  1793. { "time": 0, "x": 1, "y": 1 }
  1794. ]
  1795. }
  1796. },
  1797. "deform": {
  1798. "default": {
  1799. "toufa10": {
  1800. "toufa10": [
  1801. { "time": 0 },
  1802. {
  1803. "time": 0.5,
  1804. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  1805. },
  1806. { "time": 1 },
  1807. {
  1808. "time": 1.5,
  1809. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  1810. },
  1811. { "time": 2 }
  1812. ]
  1813. }
  1814. }
  1815. }
  1816. },
  1817. "stand2": {
  1818. "slots": {
  1819. "biyan": {
  1820. "attachment": [
  1821. { "time": 1.1, "name": "biyan" },
  1822. { "time": 1.2, "name": null },
  1823. { "time": 3.1, "name": "biyan" },
  1824. { "time": 3.2, "name": null },
  1825. { "time": 4.1, "name": "biyan" },
  1826. { "time": 4.2, "name": null }
  1827. ]
  1828. },
  1829. "bizui": {
  1830. "attachment": [
  1831. { "time": 0.5, "name": "bizui" }
  1832. ]
  1833. },
  1834. "fuhao1": {
  1835. "color": [
  1836. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1837. { "time": 1.1667, "color": "ffffff00" },
  1838. { "time": 1.2667, "color": "ffffffff", "curve": "stepped" },
  1839. { "time": 1.6667, "color": "ffffffff" },
  1840. { "time": 1.8667, "color": "ffffff00", "curve": "stepped" },
  1841. { "time": 2.0333, "color": "ffffff00", "curve": "stepped" },
  1842. { "time": 2.0667, "color": "ffffff00" },
  1843. { "time": 2.1667, "color": "ffffffff", "curve": "stepped" },
  1844. { "time": 2.5667, "color": "ffffffff" },
  1845. { "time": 2.7667, "color": "ffffff00", "curve": "stepped" },
  1846. { "time": 2.8333, "color": "ffffff00", "curve": "stepped" },
  1847. { "time": 2.8667, "color": "ffffff00" },
  1848. { "time": 2.9667, "color": "ffffffff", "curve": "stepped" },
  1849. { "time": 3.3667, "color": "ffffffff" },
  1850. { "time": 3.5667, "color": "ffffff00" }
  1851. ]
  1852. },
  1853. "fuhao7": {
  1854. "color": [
  1855. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1856. { "time": 0.7, "color": "ffffff00" },
  1857. { "time": 0.7333, "color": "ffffffff", "curve": "stepped" },
  1858. { "time": 1.2333, "color": "ffffffff" },
  1859. { "time": 1.3333, "color": "ffffff00", "curve": "stepped" },
  1860. { "time": 1.5667, "color": "ffffff00", "curve": "stepped" },
  1861. { "time": 1.6, "color": "ffffff00" },
  1862. { "time": 1.6333, "color": "ffffffff", "curve": "stepped" },
  1863. { "time": 2.1333, "color": "ffffffff" },
  1864. { "time": 2.2333, "color": "ffffff00", "curve": "stepped" },
  1865. { "time": 2.4333, "color": "ffffff00", "curve": "stepped" },
  1866. { "time": 2.5, "color": "ffffff00" },
  1867. { "time": 2.5333, "color": "ffffffff", "curve": "stepped" },
  1868. { "time": 3.0667, "color": "ffffffff" },
  1869. { "time": 3.2, "color": "ffffff00", "curve": "stepped" },
  1870. { "time": 3.2333, "color": "ffffff00", "curve": "stepped" },
  1871. { "time": 3.3, "color": "ffffff00" },
  1872. { "time": 3.3667, "color": "ffffffff", "curve": "stepped" },
  1873. { "time": 3.9, "color": "ffffffff" },
  1874. { "time": 4, "color": "ffffff00" }
  1875. ]
  1876. },
  1877. "fuhao14": {
  1878. "color": [
  1879. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1880. { "time": 1.3333, "color": "ffffff00" },
  1881. { "time": 1.4, "color": "ffffffff", "curve": "stepped" },
  1882. { "time": 1.9333, "color": "ffffffff" },
  1883. { "time": 2.0667, "color": "ffffff00", "curve": "stepped" },
  1884. { "time": 3.1667, "color": "ffffff00", "curve": "stepped" },
  1885. { "time": 3.2, "color": "ffffff00" },
  1886. { "time": 3.2667, "color": "ffffffff", "curve": "stepped" },
  1887. { "time": 3.8, "color": "ffffffff" },
  1888. { "time": 3.9333, "color": "ffffff00" }
  1889. ]
  1890. },
  1891. "fuhao16": {
  1892. "color": [
  1893. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  1894. { "time": 0.8, "color": "ffffff00" },
  1895. { "time": 0.9667, "color": "ffffffff", "curve": "stepped" },
  1896. { "time": 1.3333, "color": "ffffffff" },
  1897. { "time": 1.5, "color": "ffffff00", "curve": "stepped" },
  1898. { "time": 1.6667, "color": "ffffff00", "curve": "stepped" },
  1899. { "time": 1.7, "color": "ffffff00" },
  1900. { "time": 1.8667, "color": "ffffffff", "curve": "stepped" },
  1901. { "time": 2.2333, "color": "ffffffff" },
  1902. { "time": 2.4, "color": "ffffff00" }
  1903. ]
  1904. },
  1905. "youyan": {
  1906. "attachment": [
  1907. { "time": 1.1, "name": null },
  1908. { "time": 1.2, "name": "youyan" },
  1909. { "time": 3.1, "name": null },
  1910. { "time": 3.2, "name": "youyan" },
  1911. { "time": 4.1, "name": null },
  1912. { "time": 4.2, "name": "youyan" }
  1913. ]
  1914. },
  1915. "zuiba": {
  1916. "attachment": [
  1917. { "time": 0.5, "name": null },
  1918. { "time": 0.6667, "name": "zuiba" },
  1919. { "time": 0.8333, "name": null },
  1920. { "time": 1, "name": "zuiba" },
  1921. { "time": 1.1667, "name": null },
  1922. { "time": 1.3333, "name": "zuiba" },
  1923. { "time": 1.5, "name": null },
  1924. { "time": 1.6667, "name": "zuiba" },
  1925. { "time": 1.8333, "name": null },
  1926. { "time": 2, "name": "zuiba" },
  1927. { "time": 2.1667, "name": null },
  1928. { "time": 2.3333, "name": "zuiba" },
  1929. { "time": 2.5, "name": null },
  1930. { "time": 2.6667, "name": "zuiba" },
  1931. { "time": 2.8333, "name": null },
  1932. { "time": 3, "name": "zuiba" },
  1933. { "time": 3.1667, "name": null },
  1934. { "time": 3.3333, "name": "zuiba" },
  1935. { "time": 3.5, "name": null },
  1936. { "time": 3.6667, "name": "zuiba" },
  1937. { "time": 3.8333, "name": null },
  1938. { "time": 4, "name": "zuiba" }
  1939. ]
  1940. },
  1941. "zuoyan": {
  1942. "attachment": [
  1943. { "time": 1.1, "name": null },
  1944. { "time": 1.2, "name": "zuoyan" },
  1945. { "time": 3.1, "name": null },
  1946. { "time": 3.2, "name": "zuoyan" },
  1947. { "time": 4.1, "name": null },
  1948. { "time": 4.2, "name": "zuoyan" }
  1949. ]
  1950. }
  1951. },
  1952. "bones": {
  1953. "root": {
  1954. "rotate": [
  1955. { "time": 0, "angle": 0 }
  1956. ],
  1957. "translate": [
  1958. { "time": 0, "x": 0, "y": 0 }
  1959. ],
  1960. "scale": [
  1961. { "time": 0, "x": 0.65, "y": 0.65 }
  1962. ]
  1963. },
  1964. "bone": {
  1965. "rotate": [
  1966. { "time": 0, "angle": 0 }
  1967. ],
  1968. "translate": [
  1969. { "time": 0, "x": 0, "y": 0 }
  1970. ],
  1971. "scale": [
  1972. { "time": 0, "x": 1, "y": 1 }
  1973. ]
  1974. },
  1975. "bone2": {
  1976. "rotate": [
  1977. { "time": 0, "angle": 0, "curve": "stepped" },
  1978. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1979. { "time": 1, "angle": 0, "curve": "stepped" },
  1980. { "time": 1.5, "angle": 0, "curve": "stepped" },
  1981. { "time": 2, "angle": 0, "curve": "stepped" },
  1982. { "time": 2.5, "angle": 0, "curve": "stepped" },
  1983. { "time": 3, "angle": 0, "curve": "stepped" },
  1984. { "time": 3.5, "angle": 0, "curve": "stepped" },
  1985. { "time": 4, "angle": 0, "curve": "stepped" },
  1986. { "time": 4.5, "angle": 0, "curve": "stepped" },
  1987. { "time": 5, "angle": 0 }
  1988. ],
  1989. "translate": [
  1990. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1991. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1995. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  1996. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  1997. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  1998. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  1999. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2000. { "time": 5, "x": 0, "y": 0 }
  2001. ],
  2002. "scale": [
  2003. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2004. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2005. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2006. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2007. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2008. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2009. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2010. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2011. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2012. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2013. { "time": 5, "x": 1, "y": 1 }
  2014. ]
  2015. },
  2016. "bone3": {
  2017. "rotate": [
  2018. { "time": 0, "angle": 0, "curve": "stepped" },
  2019. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2020. { "time": 1, "angle": 0, "curve": "stepped" },
  2021. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2022. { "time": 2, "angle": 0, "curve": "stepped" },
  2023. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2024. { "time": 3, "angle": 0, "curve": "stepped" },
  2025. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2026. { "time": 4, "angle": 0, "curve": "stepped" },
  2027. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2028. { "time": 5, "angle": 0 }
  2029. ],
  2030. "translate": [
  2031. { "time": 0, "x": 0, "y": 0 },
  2032. { "time": 0.5, "x": 1.17, "y": -0.11 },
  2033. { "time": 1, "x": 0, "y": 0 },
  2034. { "time": 1.5, "x": 1.17, "y": -0.11 },
  2035. { "time": 2, "x": 0, "y": 0 },
  2036. { "time": 2.5, "x": 1.17, "y": -0.11 },
  2037. { "time": 3, "x": 0, "y": 0 },
  2038. { "time": 3.5, "x": 1.17, "y": -0.11 },
  2039. { "time": 4, "x": 0, "y": 0 },
  2040. { "time": 4.5, "x": 1.17, "y": -0.11 },
  2041. { "time": 5, "x": 0, "y": 0 }
  2042. ],
  2043. "scale": [
  2044. { "time": 0, "x": 1, "y": 1 },
  2045. { "time": 0.5, "x": 1.04, "y": 1 },
  2046. { "time": 1, "x": 1, "y": 1 },
  2047. { "time": 1.5, "x": 1.04, "y": 1 },
  2048. { "time": 2, "x": 1, "y": 1 },
  2049. { "time": 2.5, "x": 1.04, "y": 1 },
  2050. { "time": 3, "x": 1, "y": 1 },
  2051. { "time": 3.5, "x": 1.04, "y": 1 },
  2052. { "time": 4, "x": 1, "y": 1 },
  2053. { "time": 4.5, "x": 1.04, "y": 1 },
  2054. { "time": 5, "x": 1, "y": 1 }
  2055. ]
  2056. },
  2057. "bone4": {
  2058. "rotate": [
  2059. { "time": 0, "angle": 0, "curve": "stepped" },
  2060. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2061. { "time": 1, "angle": 0, "curve": "stepped" },
  2062. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2063. { "time": 2, "angle": 0, "curve": "stepped" },
  2064. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2065. { "time": 3, "angle": 0, "curve": "stepped" },
  2066. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2067. { "time": 4, "angle": 0, "curve": "stepped" },
  2068. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2069. { "time": 5, "angle": 0 }
  2070. ],
  2071. "translate": [
  2072. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2073. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2074. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2075. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2076. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2077. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2078. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2079. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2080. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2081. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2082. { "time": 5, "x": 0, "y": 0 }
  2083. ],
  2084. "scale": [
  2085. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2086. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2087. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2088. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2089. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2090. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2091. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2092. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2093. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2094. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2095. { "time": 5, "x": 1, "y": 1 }
  2096. ]
  2097. },
  2098. "bone5": {
  2099. "rotate": [
  2100. { "time": 0, "angle": 0, "curve": "stepped" },
  2101. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2102. { "time": 1, "angle": 0, "curve": "stepped" },
  2103. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2104. { "time": 2, "angle": 0, "curve": "stepped" },
  2105. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2106. { "time": 3, "angle": 0, "curve": "stepped" },
  2107. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2108. { "time": 4, "angle": 0, "curve": "stepped" },
  2109. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2110. { "time": 5, "angle": 0 }
  2111. ],
  2112. "translate": [
  2113. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2114. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2115. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2116. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2117. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2118. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2119. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2120. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2121. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2122. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2123. { "time": 5, "x": 0, "y": 0 }
  2124. ],
  2125. "scale": [
  2126. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2127. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2128. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2129. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2130. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2131. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2132. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2133. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2134. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2135. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2136. { "time": 5, "x": 1, "y": 1 }
  2137. ]
  2138. },
  2139. "bone6": {
  2140. "rotate": [
  2141. { "time": 0, "angle": 0, "curve": "stepped" },
  2142. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2143. { "time": 1, "angle": 0, "curve": "stepped" },
  2144. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2145. { "time": 2, "angle": 0, "curve": "stepped" },
  2146. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2147. { "time": 3, "angle": 0, "curve": "stepped" },
  2148. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2149. { "time": 4, "angle": 0, "curve": "stepped" },
  2150. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2151. { "time": 5, "angle": 0 }
  2152. ],
  2153. "translate": [
  2154. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2155. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2156. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2157. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2158. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2159. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2160. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2161. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2162. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2163. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2164. { "time": 5, "x": 0, "y": 0 }
  2165. ],
  2166. "scale": [
  2167. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2168. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2169. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2170. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2171. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2172. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2173. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2174. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2175. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2176. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2177. { "time": 5, "x": 1, "y": 1 }
  2178. ]
  2179. },
  2180. "bone7": {
  2181. "rotate": [
  2182. { "time": 0, "angle": 0, "curve": "stepped" },
  2183. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2184. { "time": 1, "angle": 0, "curve": "stepped" },
  2185. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2186. { "time": 2, "angle": 0, "curve": "stepped" },
  2187. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2188. { "time": 3, "angle": 0, "curve": "stepped" },
  2189. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2190. { "time": 4, "angle": 0, "curve": "stepped" },
  2191. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2192. { "time": 5, "angle": 0 }
  2193. ],
  2194. "translate": [
  2195. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2196. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2197. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2198. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2199. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2200. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2201. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2202. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2203. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2204. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2205. { "time": 5, "x": 0, "y": 0 }
  2206. ],
  2207. "scale": [
  2208. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2209. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2210. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2211. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2213. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2214. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2215. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2216. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2217. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2218. { "time": 5, "x": 1, "y": 1 }
  2219. ]
  2220. },
  2221. "bone8": {
  2222. "rotate": [
  2223. { "time": 0, "angle": 0, "curve": "stepped" },
  2224. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2225. { "time": 1, "angle": 0, "curve": "stepped" },
  2226. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2227. { "time": 2, "angle": 0, "curve": "stepped" },
  2228. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2229. { "time": 3, "angle": 0, "curve": "stepped" },
  2230. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2231. { "time": 4, "angle": 0, "curve": "stepped" },
  2232. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2233. { "time": 5, "angle": 0 }
  2234. ],
  2235. "translate": [
  2236. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2237. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2238. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2239. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2240. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2241. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2242. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2243. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2244. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2245. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2246. { "time": 5, "x": 0, "y": 0 }
  2247. ],
  2248. "scale": [
  2249. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2250. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 5, "x": 1, "y": 1 }
  2260. ]
  2261. },
  2262. "bone9": {
  2263. "rotate": [
  2264. { "time": 0, "angle": 0, "curve": "stepped" },
  2265. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2266. { "time": 1, "angle": 0, "curve": "stepped" },
  2267. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2268. { "time": 2, "angle": 0, "curve": "stepped" },
  2269. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2270. { "time": 3, "angle": 0, "curve": "stepped" },
  2271. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2272. { "time": 4, "angle": 0, "curve": "stepped" },
  2273. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2274. { "time": 5, "angle": 0 }
  2275. ],
  2276. "translate": [
  2277. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2278. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2279. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2280. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2281. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2282. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2283. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2284. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2285. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2286. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2287. { "time": 5, "x": 0, "y": 0 }
  2288. ],
  2289. "scale": [
  2290. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2291. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2292. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2293. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2294. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2295. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2296. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2297. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2298. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2299. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2300. { "time": 5, "x": 1, "y": 1 }
  2301. ]
  2302. },
  2303. "bone10": {
  2304. "rotate": [
  2305. { "time": 0, "angle": 0, "curve": "stepped" },
  2306. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2307. { "time": 1, "angle": 0, "curve": "stepped" },
  2308. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2309. { "time": 2, "angle": 0, "curve": "stepped" },
  2310. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2311. { "time": 3, "angle": 0, "curve": "stepped" },
  2312. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2313. { "time": 4, "angle": 0, "curve": "stepped" },
  2314. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2315. { "time": 5, "angle": 0 }
  2316. ],
  2317. "translate": [
  2318. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2319. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2320. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2321. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2322. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2323. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2324. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2325. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2326. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2327. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 5, "x": 0, "y": 0 }
  2329. ],
  2330. "scale": [
  2331. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2332. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2333. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2336. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2337. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2338. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2339. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2340. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2341. { "time": 5, "x": 1, "y": 1 }
  2342. ]
  2343. },
  2344. "bone11": {
  2345. "rotate": [
  2346. { "time": 0, "angle": 10.08 },
  2347. { "time": 0.3333, "angle": 14.15, "curve": "stepped" },
  2348. { "time": 0.5333, "angle": 14.15, "curve": "stepped" },
  2349. { "time": 4, "angle": 14.15 },
  2350. { "time": 4.5, "angle": 0.55 },
  2351. { "time": 5, "angle": 10.08 }
  2352. ],
  2353. "translate": [
  2354. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2355. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2356. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2357. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2358. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2359. { "time": 5, "x": 0, "y": 0 }
  2360. ],
  2361. "scale": [
  2362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2363. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2364. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2365. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2366. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2367. { "time": 5, "x": 1, "y": 1 }
  2368. ]
  2369. },
  2370. "bone12": {
  2371. "rotate": [
  2372. { "time": 0, "angle": 5.87 },
  2373. { "time": 0.3333, "angle": -95.14 },
  2374. { "time": 0.5333, "angle": -90.77, "curve": "stepped" },
  2375. { "time": 4, "angle": -90.77 },
  2376. { "time": 4.5, "angle": 17.69 },
  2377. { "time": 5, "angle": 5.87 }
  2378. ],
  2379. "translate": [
  2380. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2381. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2382. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2383. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2384. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2385. { "time": 5, "x": 0, "y": 0 }
  2386. ],
  2387. "scale": [
  2388. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2390. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2391. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2392. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2393. { "time": 5, "x": 1, "y": 1 }
  2394. ]
  2395. },
  2396. "bone13": {
  2397. "rotate": [
  2398. { "time": 0, "angle": 0 },
  2399. { "time": 0.3333, "angle": -38.42 },
  2400. { "time": 0.5333, "angle": -34.05, "curve": "stepped" },
  2401. { "time": 4, "angle": -34.05 },
  2402. { "time": 4.5, "angle": -11.76 },
  2403. { "time": 5, "angle": 0 }
  2404. ],
  2405. "translate": [
  2406. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2407. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2408. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  2409. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2410. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2411. { "time": 5, "x": 0, "y": 0 }
  2412. ],
  2413. "scale": [
  2414. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2415. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2416. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  2417. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2418. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2419. { "time": 5, "x": 1, "y": 1 }
  2420. ]
  2421. },
  2422. "bone14": {
  2423. "rotate": [
  2424. { "time": 0, "angle": -21.7 },
  2425. { "time": 0.5, "angle": -12.15 },
  2426. { "time": 1, "angle": -21.7 },
  2427. { "time": 1.5, "angle": -12.15 },
  2428. { "time": 2, "angle": -21.7 },
  2429. { "time": 2.5, "angle": -12.15 },
  2430. { "time": 3, "angle": -21.7 },
  2431. { "time": 3.5, "angle": -12.15 },
  2432. { "time": 4, "angle": -21.7 },
  2433. { "time": 4.5, "angle": -12.15 },
  2434. { "time": 5, "angle": -21.7 }
  2435. ],
  2436. "translate": [
  2437. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2438. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2439. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2440. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2441. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2442. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2443. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2444. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2445. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2446. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2447. { "time": 5, "x": 0, "y": 0 }
  2448. ],
  2449. "scale": [
  2450. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2451. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2454. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2455. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2456. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2457. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2458. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2459. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2460. { "time": 5, "x": 1, "y": 1 }
  2461. ]
  2462. },
  2463. "bone15": {
  2464. "rotate": [
  2465. { "time": 0, "angle": -8.23 },
  2466. { "time": 0.5, "angle": -5.73 },
  2467. { "time": 1, "angle": -8.23 },
  2468. { "time": 1.5, "angle": -5.73 },
  2469. { "time": 2, "angle": -8.23 },
  2470. { "time": 2.5, "angle": -5.73 },
  2471. { "time": 3, "angle": -8.23 },
  2472. { "time": 3.5, "angle": -5.73 },
  2473. { "time": 4, "angle": -8.23 },
  2474. { "time": 4.5, "angle": -5.73 },
  2475. { "time": 5, "angle": -8.23 }
  2476. ],
  2477. "translate": [
  2478. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2479. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2480. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2481. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2482. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2483. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2484. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2485. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2486. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2487. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2488. { "time": 5, "x": 0, "y": 0 }
  2489. ],
  2490. "scale": [
  2491. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2492. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2493. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2494. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2495. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2496. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2497. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2498. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2499. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2500. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2501. { "time": 5, "x": 1, "y": 1 }
  2502. ]
  2503. },
  2504. "bone16": {
  2505. "rotate": [
  2506. { "time": 0, "angle": 0, "curve": "stepped" },
  2507. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2508. { "time": 1, "angle": 0, "curve": "stepped" },
  2509. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2510. { "time": 2, "angle": 0, "curve": "stepped" },
  2511. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2512. { "time": 3, "angle": 0, "curve": "stepped" },
  2513. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2514. { "time": 4, "angle": 0, "curve": "stepped" },
  2515. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2516. { "time": 5, "angle": 0 }
  2517. ],
  2518. "translate": [
  2519. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2520. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2521. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2522. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2523. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2524. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2525. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2526. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2527. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2528. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2529. { "time": 5, "x": 0, "y": 0 }
  2530. ],
  2531. "scale": [
  2532. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2533. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2534. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2535. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2536. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2537. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2538. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2539. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2540. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2541. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2542. { "time": 5, "x": 1, "y": 1 }
  2543. ]
  2544. },
  2545. "bone17": {
  2546. "rotate": [
  2547. { "time": 0, "angle": 0 },
  2548. { "time": 0.5, "angle": -3.34 },
  2549. { "time": 1, "angle": 0 },
  2550. { "time": 1.5, "angle": -3.34 },
  2551. { "time": 2, "angle": 0 },
  2552. { "time": 2.5, "angle": -3.34 },
  2553. { "time": 3, "angle": 0 },
  2554. { "time": 3.5, "angle": -3.34 },
  2555. { "time": 4, "angle": 0 },
  2556. { "time": 4.5, "angle": -3.34 },
  2557. { "time": 5, "angle": 0 }
  2558. ],
  2559. "translate": [
  2560. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2561. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2562. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2563. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2564. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2565. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2566. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2567. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2568. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2569. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2570. { "time": 5, "x": 0, "y": 0 }
  2571. ],
  2572. "scale": [
  2573. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2574. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2575. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2576. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2577. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2578. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2579. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2581. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2582. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2583. { "time": 5, "x": 1, "y": 1 }
  2584. ]
  2585. },
  2586. "bone18": {
  2587. "rotate": [
  2588. { "time": 0, "angle": 0 },
  2589. { "time": 0.5, "angle": -9.75 },
  2590. { "time": 1, "angle": 0 },
  2591. { "time": 1.5, "angle": -9.75 },
  2592. { "time": 2, "angle": 0 },
  2593. { "time": 2.5, "angle": -9.75 },
  2594. { "time": 3, "angle": 0 },
  2595. { "time": 3.5, "angle": -9.75 },
  2596. { "time": 4, "angle": 0 },
  2597. { "time": 4.5, "angle": -9.75 },
  2598. { "time": 5, "angle": 0 }
  2599. ],
  2600. "translate": [
  2601. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2602. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2603. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2604. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2605. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2606. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2607. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2608. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2609. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2610. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2611. { "time": 5, "x": 0, "y": 0 }
  2612. ],
  2613. "scale": [
  2614. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2615. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2616. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2617. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2618. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2619. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2620. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2621. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2622. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2623. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2624. { "time": 5, "x": 1, "y": 1 }
  2625. ]
  2626. },
  2627. "bone19": {
  2628. "rotate": [
  2629. { "time": 0, "angle": 0 },
  2630. { "time": 0.5, "angle": -3.41 },
  2631. { "time": 1, "angle": 0 },
  2632. { "time": 1.5, "angle": -3.41 },
  2633. { "time": 2, "angle": 0 },
  2634. { "time": 2.5, "angle": -3.41 },
  2635. { "time": 3, "angle": 0 },
  2636. { "time": 3.5, "angle": -3.41 },
  2637. { "time": 4, "angle": 0 },
  2638. { "time": 4.5, "angle": -3.41 },
  2639. { "time": 5, "angle": 0 }
  2640. ],
  2641. "translate": [
  2642. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2643. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2644. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2645. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2646. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2647. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2648. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2649. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2650. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2651. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2652. { "time": 5, "x": 0, "y": 0 }
  2653. ],
  2654. "scale": [
  2655. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2656. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2657. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2658. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2659. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2660. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2661. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2662. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2663. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2664. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2665. { "time": 5, "x": 1, "y": 1 }
  2666. ]
  2667. },
  2668. "bone20": {
  2669. "rotate": [
  2670. { "time": 0, "angle": 0 },
  2671. { "time": 0.5, "angle": 3.26 },
  2672. { "time": 1, "angle": 0 },
  2673. { "time": 1.5, "angle": 3.26 },
  2674. { "time": 2, "angle": 0 },
  2675. { "time": 2.5, "angle": 3.26 },
  2676. { "time": 3, "angle": 0 },
  2677. { "time": 3.5, "angle": 3.26 },
  2678. { "time": 4, "angle": 0 },
  2679. { "time": 4.5, "angle": 3.26 },
  2680. { "time": 5, "angle": 0 }
  2681. ],
  2682. "translate": [
  2683. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2684. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2685. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2686. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2687. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2688. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2689. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2690. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2691. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2692. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2693. { "time": 5, "x": 0, "y": 0 }
  2694. ],
  2695. "scale": [
  2696. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2697. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2698. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2699. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2700. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2701. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2702. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2703. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2704. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2705. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2706. { "time": 5, "x": 1, "y": 1 }
  2707. ]
  2708. },
  2709. "bone21": {
  2710. "rotate": [
  2711. { "time": 0, "angle": 0 },
  2712. { "time": 0.5, "angle": 9.51 },
  2713. { "time": 1, "angle": 0 },
  2714. { "time": 1.5, "angle": 9.51 },
  2715. { "time": 2, "angle": 0 },
  2716. { "time": 2.5, "angle": 9.51 },
  2717. { "time": 3, "angle": 0 },
  2718. { "time": 3.5, "angle": 9.51 },
  2719. { "time": 4, "angle": 0 },
  2720. { "time": 4.5, "angle": 9.51 },
  2721. { "time": 5, "angle": 0 }
  2722. ],
  2723. "translate": [
  2724. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2725. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2726. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2727. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2728. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2729. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2730. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2731. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2732. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2733. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2734. { "time": 5, "x": 0, "y": 0 }
  2735. ],
  2736. "scale": [
  2737. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2738. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2739. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2740. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2741. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2742. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2743. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2744. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2745. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2746. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2747. { "time": 5, "x": 1, "y": 1 }
  2748. ]
  2749. },
  2750. "bone22": {
  2751. "rotate": [
  2752. { "time": 0, "angle": 0 },
  2753. { "time": 0.5, "angle": 6.25 },
  2754. { "time": 1, "angle": 0 },
  2755. { "time": 1.5, "angle": 6.25 },
  2756. { "time": 2, "angle": 0 },
  2757. { "time": 2.5, "angle": 6.25 },
  2758. { "time": 3, "angle": 0 },
  2759. { "time": 3.5, "angle": 6.25 },
  2760. { "time": 4, "angle": 0 },
  2761. { "time": 4.5, "angle": 6.25 },
  2762. { "time": 5, "angle": 0 }
  2763. ],
  2764. "translate": [
  2765. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2766. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2767. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2768. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2769. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2770. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2771. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2772. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2773. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2774. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2775. { "time": 5, "x": 0, "y": 0 }
  2776. ],
  2777. "scale": [
  2778. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2779. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2780. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2781. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2782. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2783. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2784. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2785. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2786. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2787. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2788. { "time": 5, "x": 1, "y": 1 }
  2789. ]
  2790. },
  2791. "bone23": {
  2792. "rotate": [
  2793. { "time": 0, "angle": 0, "curve": "stepped" },
  2794. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2795. { "time": 1, "angle": 0, "curve": "stepped" },
  2796. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2797. { "time": 2, "angle": 0, "curve": "stepped" },
  2798. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2799. { "time": 3, "angle": 0, "curve": "stepped" },
  2800. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2801. { "time": 4, "angle": 0, "curve": "stepped" },
  2802. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2803. { "time": 5, "angle": 0 }
  2804. ],
  2805. "translate": [
  2806. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2807. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2808. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2809. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2810. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2811. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2812. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2813. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2814. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2815. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2816. { "time": 5, "x": 0, "y": 0 }
  2817. ],
  2818. "scale": [
  2819. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2820. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2821. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2822. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2823. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2824. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2825. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2826. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2827. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2828. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2829. { "time": 5, "x": 1, "y": 1 }
  2830. ]
  2831. },
  2832. "bone24": {
  2833. "rotate": [
  2834. { "time": 0, "angle": 0, "curve": "stepped" },
  2835. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2836. { "time": 1, "angle": 0, "curve": "stepped" },
  2837. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2838. { "time": 2, "angle": 0, "curve": "stepped" },
  2839. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2840. { "time": 3, "angle": 0, "curve": "stepped" },
  2841. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2842. { "time": 4, "angle": 0, "curve": "stepped" },
  2843. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2844. { "time": 5, "angle": 0 }
  2845. ],
  2846. "translate": [
  2847. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2848. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2849. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 5, "x": 0, "y": 0 }
  2858. ],
  2859. "scale": [
  2860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2861. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2862. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 5, "x": 1, "y": 1 }
  2871. ]
  2872. },
  2873. "bone25": {
  2874. "rotate": [
  2875. { "time": 0, "angle": 0, "curve": "stepped" },
  2876. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2877. { "time": 1, "angle": 0, "curve": "stepped" },
  2878. { "time": 1.5, "angle": 0, "curve": "stepped" },
  2879. { "time": 2, "angle": 0, "curve": "stepped" },
  2880. { "time": 2.5, "angle": 0, "curve": "stepped" },
  2881. { "time": 3, "angle": 0, "curve": "stepped" },
  2882. { "time": 3.5, "angle": 0, "curve": "stepped" },
  2883. { "time": 4, "angle": 0, "curve": "stepped" },
  2884. { "time": 4.5, "angle": 0, "curve": "stepped" },
  2885. { "time": 5, "angle": 0 }
  2886. ],
  2887. "translate": [
  2888. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2889. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2890. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2891. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2895. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2896. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2897. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2898. { "time": 5, "x": 0, "y": 0 }
  2899. ],
  2900. "scale": [
  2901. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2902. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2903. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2904. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2905. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2906. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2909. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2910. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2911. { "time": 5, "x": 1, "y": 1 }
  2912. ]
  2913. },
  2914. "bone26": {
  2915. "rotate": [
  2916. { "time": 0, "angle": 0 },
  2917. { "time": 0.5, "angle": -6.43 },
  2918. { "time": 1, "angle": 0 },
  2919. { "time": 1.5, "angle": -6.43 },
  2920. { "time": 2, "angle": 0 },
  2921. { "time": 2.5, "angle": -6.43 },
  2922. { "time": 3, "angle": 0 },
  2923. { "time": 3.5, "angle": -6.43 },
  2924. { "time": 4, "angle": 0 },
  2925. { "time": 4.5, "angle": -6.43 },
  2926. { "time": 5, "angle": 0 }
  2927. ],
  2928. "translate": [
  2929. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2931. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2932. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2933. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2936. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2937. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2938. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2939. { "time": 5, "x": 0, "y": 0 }
  2940. ],
  2941. "scale": [
  2942. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2943. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2944. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2945. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2946. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2947. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2948. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2949. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2950. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2951. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2952. { "time": 5, "x": 1, "y": 1 }
  2953. ]
  2954. },
  2955. "bone27": {
  2956. "rotate": [
  2957. { "time": 0, "angle": 0 },
  2958. { "time": 0.5, "angle": -5.6 },
  2959. { "time": 1, "angle": 0 },
  2960. { "time": 1.5, "angle": -5.6 },
  2961. { "time": 2, "angle": 0 },
  2962. { "time": 2.5, "angle": -5.6 },
  2963. { "time": 3, "angle": 0 },
  2964. { "time": 3.5, "angle": -5.6 },
  2965. { "time": 4, "angle": 0 },
  2966. { "time": 4.5, "angle": -5.6 },
  2967. { "time": 5, "angle": 0 }
  2968. ],
  2969. "translate": [
  2970. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2971. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2972. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2973. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  2974. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  2975. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2976. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  2977. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  2978. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  2979. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  2980. { "time": 5, "x": 0, "y": 0 }
  2981. ],
  2982. "scale": [
  2983. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2984. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2985. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2986. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  2987. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  2988. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2989. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  2990. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  2991. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  2992. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  2993. { "time": 5, "x": 1, "y": 1 }
  2994. ]
  2995. },
  2996. "bone28": {
  2997. "rotate": [
  2998. { "time": 0, "angle": 0 },
  2999. { "time": 0.5, "angle": -11.89 },
  3000. { "time": 1, "angle": 0 },
  3001. { "time": 1.5, "angle": -11.89 },
  3002. { "time": 2, "angle": 0 },
  3003. { "time": 2.5, "angle": -11.89 },
  3004. { "time": 3, "angle": 0 },
  3005. { "time": 3.5, "angle": -11.89 },
  3006. { "time": 4, "angle": 0 },
  3007. { "time": 4.5, "angle": -11.89 },
  3008. { "time": 5, "angle": 0 }
  3009. ],
  3010. "translate": [
  3011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3012. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3013. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3014. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3015. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3016. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3017. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3018. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3019. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3020. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3021. { "time": 5, "x": 0, "y": 0 }
  3022. ],
  3023. "scale": [
  3024. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3025. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3026. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3027. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3028. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3029. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3030. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3031. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3032. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3033. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3034. { "time": 5, "x": 1, "y": 1 }
  3035. ]
  3036. },
  3037. "bone29": {
  3038. "rotate": [
  3039. { "time": 0, "angle": 0, "curve": "stepped" },
  3040. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3041. { "time": 1, "angle": 0, "curve": "stepped" },
  3042. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3043. { "time": 2, "angle": 0, "curve": "stepped" },
  3044. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3045. { "time": 3, "angle": 0, "curve": "stepped" },
  3046. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3047. { "time": 4, "angle": 0, "curve": "stepped" },
  3048. { "time": 4.5, "angle": 0, "curve": "stepped" },
  3049. { "time": 5, "angle": 0 }
  3050. ],
  3051. "translate": [
  3052. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3053. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3054. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3055. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3056. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3057. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3058. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3059. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3060. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3061. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3062. { "time": 5, "x": 0, "y": 0 }
  3063. ],
  3064. "scale": [
  3065. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3066. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3067. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3068. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3069. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3070. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3071. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3072. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3073. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 5, "x": 1, "y": 1 }
  3076. ]
  3077. },
  3078. "bone30": {
  3079. "rotate": [
  3080. { "time": 0, "angle": 0 },
  3081. { "time": 0.5, "angle": 19.73 },
  3082. { "time": 1, "angle": 0 },
  3083. { "time": 1.5, "angle": 19.73 },
  3084. { "time": 2, "angle": 0 },
  3085. { "time": 2.5, "angle": 19.73 },
  3086. { "time": 3, "angle": 0 },
  3087. { "time": 3.5, "angle": 19.73 },
  3088. { "time": 4, "angle": 0 },
  3089. { "time": 4.5, "angle": 19.73 },
  3090. { "time": 5, "angle": 0 }
  3091. ],
  3092. "translate": [
  3093. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3094. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3095. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3096. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3097. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3098. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3099. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3100. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3101. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3102. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3103. { "time": 5, "x": 0, "y": 0 }
  3104. ],
  3105. "scale": [
  3106. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3107. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3108. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3109. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3110. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3111. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3112. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3113. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3114. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3115. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3116. { "time": 5, "x": 1, "y": 1 }
  3117. ]
  3118. },
  3119. "bone31": {
  3120. "rotate": [
  3121. { "time": 0, "angle": 0 },
  3122. { "time": 0.5, "angle": 15.43 },
  3123. { "time": 1, "angle": 0 },
  3124. { "time": 1.5, "angle": 15.43 },
  3125. { "time": 2, "angle": 0 },
  3126. { "time": 2.5, "angle": 15.43 },
  3127. { "time": 3, "angle": 0 },
  3128. { "time": 3.5, "angle": 15.43 },
  3129. { "time": 4, "angle": 0 },
  3130. { "time": 4.5, "angle": 15.43 },
  3131. { "time": 5, "angle": 0 }
  3132. ],
  3133. "translate": [
  3134. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3135. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3136. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3137. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3138. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3139. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3140. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3141. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3142. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3143. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3144. { "time": 5, "x": 0, "y": 0 }
  3145. ],
  3146. "scale": [
  3147. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3148. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3149. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3150. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3151. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3152. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3153. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3154. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3155. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3156. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3157. { "time": 5, "x": 1, "y": 1 }
  3158. ]
  3159. },
  3160. "bone32": {
  3161. "rotate": [
  3162. { "time": 0, "angle": 0 },
  3163. { "time": 0.5, "angle": 4.21 },
  3164. { "time": 1, "angle": 0 },
  3165. { "time": 1.5, "angle": 4.21 },
  3166. { "time": 2, "angle": 0 },
  3167. { "time": 2.5, "angle": 4.21 },
  3168. { "time": 3, "angle": 0 },
  3169. { "time": 3.5, "angle": 4.21 },
  3170. { "time": 4, "angle": 0 },
  3171. { "time": 4.5, "angle": 4.21 },
  3172. { "time": 5, "angle": 0 }
  3173. ],
  3174. "translate": [
  3175. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3176. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3177. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3178. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3179. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3180. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3181. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3182. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3183. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3184. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3185. { "time": 5, "x": 0, "y": 0 }
  3186. ],
  3187. "scale": [
  3188. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3189. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3190. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3191. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3192. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3193. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3194. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3195. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3196. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3197. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3198. { "time": 5, "x": 1, "y": 1 }
  3199. ]
  3200. },
  3201. "bone33": {
  3202. "rotate": [
  3203. { "time": 0, "angle": 0 },
  3204. { "time": 0.5, "angle": 6.91 },
  3205. { "time": 1, "angle": 0 },
  3206. { "time": 1.5, "angle": 6.91 },
  3207. { "time": 2, "angle": 0 },
  3208. { "time": 2.5, "angle": 6.91 },
  3209. { "time": 3, "angle": 0 },
  3210. { "time": 3.5, "angle": 6.91 },
  3211. { "time": 4, "angle": 0 },
  3212. { "time": 4.5, "angle": 6.91 },
  3213. { "time": 5, "angle": 0 }
  3214. ],
  3215. "translate": [
  3216. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3217. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3218. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3219. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3220. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3221. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3222. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3223. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3224. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3225. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3226. { "time": 5, "x": 0, "y": 0 }
  3227. ],
  3228. "scale": [
  3229. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3230. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3231. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3232. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3233. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3234. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3235. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3236. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3238. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3239. { "time": 5, "x": 1, "y": 1 }
  3240. ]
  3241. },
  3242. "bone34": {
  3243. "rotate": [
  3244. { "time": 0, "angle": 0 },
  3245. { "time": 0.5, "angle": 10.04 },
  3246. { "time": 1, "angle": 0 },
  3247. { "time": 1.5, "angle": 10.04 },
  3248. { "time": 2, "angle": 0 },
  3249. { "time": 2.5, "angle": 10.04 },
  3250. { "time": 3, "angle": 0 },
  3251. { "time": 3.5, "angle": 10.04 },
  3252. { "time": 4, "angle": 0 },
  3253. { "time": 4.5, "angle": 10.04 },
  3254. { "time": 5, "angle": 0 }
  3255. ],
  3256. "translate": [
  3257. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3258. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3259. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3260. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3261. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3262. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3263. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3264. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3265. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3266. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3267. { "time": 5, "x": 0, "y": 0 }
  3268. ],
  3269. "scale": [
  3270. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3271. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3272. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3273. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3274. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3275. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3276. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3277. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3278. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3279. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3280. { "time": 5, "x": 1, "y": 1 }
  3281. ]
  3282. },
  3283. "bone35": {
  3284. "rotate": [
  3285. { "time": 0, "angle": 0 },
  3286. { "time": 0.5, "angle": 22.51 },
  3287. { "time": 1, "angle": 0 },
  3288. { "time": 1.5, "angle": 22.51 },
  3289. { "time": 2, "angle": 0 },
  3290. { "time": 2.5, "angle": 22.51 },
  3291. { "time": 3, "angle": 0 },
  3292. { "time": 3.5, "angle": 22.51 },
  3293. { "time": 4, "angle": 0 },
  3294. { "time": 4.5, "angle": 22.51 },
  3295. { "time": 5, "angle": 0 }
  3296. ],
  3297. "translate": [
  3298. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3299. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3300. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3301. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3302. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3303. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3304. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3305. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3306. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3307. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3308. { "time": 5, "x": 0, "y": 0 }
  3309. ],
  3310. "scale": [
  3311. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3312. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3313. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3314. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3315. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3316. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3317. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3318. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3319. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3320. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3321. { "time": 5, "x": 1, "y": 1 }
  3322. ]
  3323. },
  3324. "bone36": {
  3325. "rotate": [
  3326. { "time": 0, "angle": 0 },
  3327. { "time": 0.5, "angle": -7.53 },
  3328. { "time": 1, "angle": 0 },
  3329. { "time": 1.5, "angle": -7.53 },
  3330. { "time": 2, "angle": 0 },
  3331. { "time": 2.5, "angle": -7.53 },
  3332. { "time": 3, "angle": 0 },
  3333. { "time": 3.5, "angle": -7.53 },
  3334. { "time": 4, "angle": 0 },
  3335. { "time": 4.5, "angle": -7.53 },
  3336. { "time": 5, "angle": 0 }
  3337. ],
  3338. "translate": [
  3339. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3340. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3341. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3342. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3343. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3344. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3345. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3346. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3347. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3348. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3349. { "time": 5, "x": 0, "y": 0 }
  3350. ],
  3351. "scale": [
  3352. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3353. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3354. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3355. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3356. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3357. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3358. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3359. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3360. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3361. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 5, "x": 1, "y": 1 }
  3363. ]
  3364. },
  3365. "bone37": {
  3366. "rotate": [
  3367. { "time": 0, "angle": 0 },
  3368. { "time": 0.5, "angle": 0.87 },
  3369. { "time": 1, "angle": 0 },
  3370. { "time": 1.5, "angle": 0.87 },
  3371. { "time": 2, "angle": 0 },
  3372. { "time": 2.5, "angle": 0.87 },
  3373. { "time": 3, "angle": 0 },
  3374. { "time": 3.5, "angle": 0.87 },
  3375. { "time": 4, "angle": 0 },
  3376. { "time": 4.5, "angle": 0.87 },
  3377. { "time": 5, "angle": 0 }
  3378. ],
  3379. "translate": [
  3380. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3381. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3382. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3383. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3384. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3385. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3386. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3387. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3388. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3389. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3390. { "time": 5, "x": 0, "y": 0 }
  3391. ],
  3392. "scale": [
  3393. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3394. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3395. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3396. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3397. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3398. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3399. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3400. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3401. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3403. { "time": 5, "x": 1, "y": 1 }
  3404. ]
  3405. },
  3406. "bone38": {
  3407. "rotate": [
  3408. { "time": 0, "angle": 0 },
  3409. { "time": 0.5, "angle": -1.83 },
  3410. { "time": 1, "angle": 0 },
  3411. { "time": 1.5, "angle": -1.83 },
  3412. { "time": 2, "angle": 0 },
  3413. { "time": 2.5, "angle": -1.83 },
  3414. { "time": 3, "angle": 0 },
  3415. { "time": 3.5, "angle": -1.83 },
  3416. { "time": 4, "angle": 0 },
  3417. { "time": 4.5, "angle": -1.83 },
  3418. { "time": 5, "angle": 0 }
  3419. ],
  3420. "translate": [
  3421. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3422. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3423. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3424. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3425. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3426. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3427. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3428. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3429. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3430. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3431. { "time": 5, "x": 0, "y": 0 }
  3432. ],
  3433. "scale": [
  3434. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3435. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3436. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3437. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3438. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3439. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3440. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3441. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3442. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3443. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3444. { "time": 5, "x": 1, "y": 1 }
  3445. ]
  3446. },
  3447. "bone39": {
  3448. "rotate": [
  3449. { "time": 0, "angle": 0 },
  3450. { "time": 0.5, "angle": 5.94 },
  3451. { "time": 1, "angle": 0 },
  3452. { "time": 1.5, "angle": 5.94 },
  3453. { "time": 2, "angle": 0 },
  3454. { "time": 2.5, "angle": 5.94 },
  3455. { "time": 3, "angle": 0 },
  3456. { "time": 3.5, "angle": 5.94 },
  3457. { "time": 4, "angle": 0 },
  3458. { "time": 4.5, "angle": 5.94 },
  3459. { "time": 5, "angle": 0 }
  3460. ],
  3461. "translate": [
  3462. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3463. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3464. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3465. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3466. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3467. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3468. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3469. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3470. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3471. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3472. { "time": 5, "x": 0, "y": 0 }
  3473. ],
  3474. "scale": [
  3475. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3476. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3477. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3478. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3479. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3480. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3481. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3482. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3483. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3484. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3485. { "time": 5, "x": 1, "y": 1 }
  3486. ]
  3487. },
  3488. "bone40": {
  3489. "rotate": [
  3490. { "time": 0, "angle": 0, "curve": "stepped" },
  3491. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3492. { "time": 1, "angle": 0, "curve": "stepped" },
  3493. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3494. { "time": 2, "angle": 0, "curve": "stepped" },
  3495. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3496. { "time": 3, "angle": 0, "curve": "stepped" },
  3497. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3498. { "time": 4, "angle": 0, "curve": "stepped" },
  3499. { "time": 4.5, "angle": 0, "curve": "stepped" },
  3500. { "time": 5, "angle": 0 }
  3501. ],
  3502. "translate": [
  3503. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3504. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3505. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3506. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3507. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3508. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3509. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3510. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3511. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3512. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3513. { "time": 5, "x": 0, "y": 0 }
  3514. ],
  3515. "scale": [
  3516. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3517. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3518. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3519. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3520. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3521. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3522. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3523. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3524. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3525. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3526. { "time": 5, "x": 1, "y": 1 }
  3527. ]
  3528. },
  3529. "bone41": {
  3530. "rotate": [
  3531. { "time": 0, "angle": 0, "curve": "stepped" },
  3532. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3533. { "time": 1, "angle": 0, "curve": "stepped" },
  3534. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3535. { "time": 2, "angle": 0, "curve": "stepped" },
  3536. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3537. { "time": 3, "angle": 0, "curve": "stepped" },
  3538. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3539. { "time": 4, "angle": 0, "curve": "stepped" },
  3540. { "time": 4.5, "angle": 0, "curve": "stepped" },
  3541. { "time": 5, "angle": 0 }
  3542. ],
  3543. "translate": [
  3544. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3545. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3546. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3547. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3548. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3549. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3550. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3551. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3552. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3553. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3554. { "time": 5, "x": 0, "y": 0 }
  3555. ],
  3556. "scale": [
  3557. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3558. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3559. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3560. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3561. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3562. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3563. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3564. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3565. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3566. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3567. { "time": 5, "x": 1, "y": 1 }
  3568. ]
  3569. },
  3570. "bone42": {
  3571. "rotate": [
  3572. { "time": 0, "angle": 0, "curve": "stepped" },
  3573. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3574. { "time": 1, "angle": 0, "curve": "stepped" },
  3575. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3576. { "time": 2, "angle": 0, "curve": "stepped" },
  3577. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3578. { "time": 3, "angle": 0, "curve": "stepped" },
  3579. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3580. { "time": 4, "angle": 0, "curve": "stepped" },
  3581. { "time": 4.5, "angle": 0, "curve": "stepped" },
  3582. { "time": 5, "angle": 0 }
  3583. ],
  3584. "translate": [
  3585. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3586. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3589. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3590. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3591. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3592. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3593. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3594. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3595. { "time": 5, "x": 0, "y": 0 }
  3596. ],
  3597. "scale": [
  3598. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3599. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3604. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3605. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3606. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3607. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3608. { "time": 5, "x": 1, "y": 1 }
  3609. ]
  3610. },
  3611. "bone43": {
  3612. "rotate": [
  3613. { "time": 0, "angle": 0, "curve": "stepped" },
  3614. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3615. { "time": 1, "angle": 0, "curve": "stepped" },
  3616. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3617. { "time": 2, "angle": 0, "curve": "stepped" },
  3618. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3619. { "time": 3, "angle": 0, "curve": "stepped" },
  3620. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3621. { "time": 4, "angle": 0, "curve": "stepped" },
  3622. { "time": 4.5, "angle": 0, "curve": "stepped" },
  3623. { "time": 5, "angle": 0 }
  3624. ],
  3625. "translate": [
  3626. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3627. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3628. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3629. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3630. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3631. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3632. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3633. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3634. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3635. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3636. { "time": 5, "x": 0, "y": 0 }
  3637. ],
  3638. "scale": [
  3639. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3640. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3641. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3642. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3643. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3644. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3645. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3646. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3647. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3648. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3649. { "time": 5, "x": 1, "y": 1 }
  3650. ]
  3651. },
  3652. "bone44": {
  3653. "rotate": [
  3654. { "time": 0, "angle": 0, "curve": "stepped" },
  3655. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3656. { "time": 1, "angle": 0, "curve": "stepped" },
  3657. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3658. { "time": 2, "angle": 0, "curve": "stepped" },
  3659. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3660. { "time": 3, "angle": 0, "curve": "stepped" },
  3661. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3662. { "time": 4, "angle": 0, "curve": "stepped" },
  3663. { "time": 4.5, "angle": 0, "curve": "stepped" },
  3664. { "time": 5, "angle": 0 }
  3665. ],
  3666. "translate": [
  3667. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3668. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3669. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3670. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3671. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3672. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3673. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3674. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3675. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3676. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3677. { "time": 5, "x": 0, "y": 0 }
  3678. ],
  3679. "scale": [
  3680. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3681. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3682. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3683. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3684. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3685. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3686. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3687. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3688. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3689. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3690. { "time": 5, "x": 1, "y": 1 }
  3691. ]
  3692. },
  3693. "bone45": {
  3694. "rotate": [
  3695. { "time": 0, "angle": 0, "curve": "stepped" },
  3696. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3697. { "time": 1, "angle": 0, "curve": "stepped" },
  3698. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3699. { "time": 2, "angle": 0, "curve": "stepped" },
  3700. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3701. { "time": 3, "angle": 0, "curve": "stepped" },
  3702. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3703. { "time": 4, "angle": 0, "curve": "stepped" },
  3704. { "time": 4.5, "angle": 0, "curve": "stepped" },
  3705. { "time": 5, "angle": 0 }
  3706. ],
  3707. "translate": [
  3708. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3709. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3710. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3711. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3712. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3713. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3714. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3715. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3716. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3717. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 5, "x": 0, "y": 0 }
  3719. ],
  3720. "scale": [
  3721. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3722. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3723. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3724. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3725. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3727. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3728. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3729. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3730. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3731. { "time": 5, "x": 1, "y": 1 }
  3732. ]
  3733. },
  3734. "bone46": {
  3735. "rotate": [
  3736. { "time": 0, "angle": 0 },
  3737. { "time": 0.5, "angle": 4.42 },
  3738. { "time": 1, "angle": 0 },
  3739. { "time": 1.5, "angle": 4.42 },
  3740. { "time": 2, "angle": 0 },
  3741. { "time": 2.5, "angle": 4.42 },
  3742. { "time": 3, "angle": 0 },
  3743. { "time": 3.5, "angle": 4.42 },
  3744. { "time": 4, "angle": 0 },
  3745. { "time": 4.5, "angle": 4.42 },
  3746. { "time": 5, "angle": 0 }
  3747. ],
  3748. "translate": [
  3749. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3750. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3751. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3752. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3753. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3754. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3755. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3756. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3757. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3758. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3759. { "time": 5, "x": 0, "y": 0 }
  3760. ],
  3761. "scale": [
  3762. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3763. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3764. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3765. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3766. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3767. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3768. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3769. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3770. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3771. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3772. { "time": 5, "x": 1, "y": 1 }
  3773. ]
  3774. },
  3775. "bone47": {
  3776. "rotate": [
  3777. { "time": 0, "angle": 0 },
  3778. { "time": 0.5, "angle": 6.2 },
  3779. { "time": 1, "angle": 0 },
  3780. { "time": 1.5, "angle": 6.2 },
  3781. { "time": 2, "angle": 0 },
  3782. { "time": 2.5, "angle": 6.2 },
  3783. { "time": 3, "angle": 0 },
  3784. { "time": 3.5, "angle": 6.2 },
  3785. { "time": 4, "angle": 0 },
  3786. { "time": 4.5, "angle": 6.2 },
  3787. { "time": 5, "angle": 0 }
  3788. ],
  3789. "translate": [
  3790. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3791. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3792. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3793. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3794. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3795. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3796. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3797. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3798. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3799. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3800. { "time": 5, "x": 0, "y": 0 }
  3801. ],
  3802. "scale": [
  3803. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3804. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3805. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3806. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3807. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3808. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3809. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3810. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3811. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3812. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3813. { "time": 5, "x": 1, "y": 1 }
  3814. ]
  3815. },
  3816. "bone48": {
  3817. "rotate": [
  3818. { "time": 0, "angle": 0 },
  3819. { "time": 0.5, "angle": -1.49 },
  3820. { "time": 1, "angle": 0 },
  3821. { "time": 1.5, "angle": -1.49 },
  3822. { "time": 2, "angle": 0 },
  3823. { "time": 2.5, "angle": -1.49 },
  3824. { "time": 3, "angle": 0 },
  3825. { "time": 3.5, "angle": -1.49 },
  3826. { "time": 4, "angle": 0 },
  3827. { "time": 4.5, "angle": -1.49 },
  3828. { "time": 5, "angle": 0 }
  3829. ],
  3830. "translate": [
  3831. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3832. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3833. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3834. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3835. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3836. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3837. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3838. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3839. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3840. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3841. { "time": 5, "x": 0, "y": 0 }
  3842. ],
  3843. "scale": [
  3844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3845. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3846. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3847. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3848. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3849. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3850. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3851. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3852. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3853. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 5, "x": 1, "y": 1 }
  3855. ]
  3856. },
  3857. "bone49": {
  3858. "rotate": [
  3859. { "time": 0, "angle": 0, "curve": "stepped" },
  3860. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3861. { "time": 1, "angle": 0, "curve": "stepped" },
  3862. { "time": 1.5, "angle": 0, "curve": "stepped" },
  3863. { "time": 2, "angle": 0, "curve": "stepped" },
  3864. { "time": 2.5, "angle": 0, "curve": "stepped" },
  3865. { "time": 3, "angle": 0, "curve": "stepped" },
  3866. { "time": 3.5, "angle": 0, "curve": "stepped" },
  3867. { "time": 4, "angle": 0, "curve": "stepped" },
  3868. { "time": 4.5, "angle": 0, "curve": "stepped" },
  3869. { "time": 5, "angle": 0 }
  3870. ],
  3871. "translate": [
  3872. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3873. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3874. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3875. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3876. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3877. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3878. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3879. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3880. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3881. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3882. { "time": 5, "x": 0, "y": 0 }
  3883. ],
  3884. "scale": [
  3885. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3886. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3887. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3888. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3889. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3890. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3891. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3892. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3893. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3894. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3895. { "time": 5, "x": 1, "y": 1 }
  3896. ]
  3897. },
  3898. "bone50": {
  3899. "rotate": [
  3900. { "time": 0, "angle": 0 },
  3901. { "time": 0.5, "angle": -7.52 },
  3902. { "time": 1, "angle": 0 },
  3903. { "time": 1.5, "angle": -7.52 },
  3904. { "time": 2, "angle": 0 },
  3905. { "time": 2.5, "angle": -7.52 },
  3906. { "time": 3, "angle": 0 },
  3907. { "time": 3.5, "angle": -7.52 },
  3908. { "time": 4, "angle": 0 },
  3909. { "time": 4.5, "angle": -7.52 },
  3910. { "time": 5, "angle": 0 }
  3911. ],
  3912. "translate": [
  3913. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3914. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3915. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3916. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3917. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3918. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3919. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3920. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3921. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3922. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3923. { "time": 5, "x": 0, "y": 0 }
  3924. ],
  3925. "scale": [
  3926. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3927. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3928. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3929. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3930. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3931. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3932. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3933. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3934. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3935. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3936. { "time": 5, "x": 1, "y": 1 }
  3937. ]
  3938. },
  3939. "bone51": {
  3940. "rotate": [
  3941. { "time": 0, "angle": 0 },
  3942. { "time": 0.5, "angle": -6.66 },
  3943. { "time": 1, "angle": 0 },
  3944. { "time": 1.5, "angle": -6.66 },
  3945. { "time": 2, "angle": 0 },
  3946. { "time": 2.5, "angle": -6.66 },
  3947. { "time": 3, "angle": 0 },
  3948. { "time": 3.5, "angle": -6.66 },
  3949. { "time": 4, "angle": 0 },
  3950. { "time": 4.5, "angle": -6.66 },
  3951. { "time": 5, "angle": 0 }
  3952. ],
  3953. "translate": [
  3954. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3955. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3956. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3957. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3958. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  3959. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3960. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  3961. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  3962. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  3963. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  3964. { "time": 5, "x": 0, "y": 0 }
  3965. ],
  3966. "scale": [
  3967. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3968. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3969. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3970. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  3971. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  3972. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  3973. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  3974. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  3975. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  3976. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  3977. { "time": 5, "x": 1, "y": 1 }
  3978. ]
  3979. },
  3980. "bone52": {
  3981. "rotate": [
  3982. { "time": 0, "angle": 0 },
  3983. { "time": 0.5, "angle": -11.43 },
  3984. { "time": 1, "angle": 0 },
  3985. { "time": 1.5, "angle": -11.43 },
  3986. { "time": 2, "angle": 0 },
  3987. { "time": 2.5, "angle": -11.43 },
  3988. { "time": 3, "angle": 0 },
  3989. { "time": 3.5, "angle": -11.43 },
  3990. { "time": 4, "angle": 0 },
  3991. { "time": 4.5, "angle": -11.43 },
  3992. { "time": 5, "angle": 0 }
  3993. ],
  3994. "translate": [
  3995. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3996. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3997. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3998. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  3999. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4000. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4001. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4002. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  4003. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4004. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  4005. { "time": 5, "x": 0, "y": 0 }
  4006. ],
  4007. "scale": [
  4008. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4009. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4010. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4011. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4012. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4013. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4014. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4015. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4017. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  4018. { "time": 5, "x": 1, "y": 1 }
  4019. ]
  4020. },
  4021. "bone53": {
  4022. "rotate": [
  4023. { "time": 0, "angle": 0, "curve": "stepped" },
  4024. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4025. { "time": 1, "angle": 0, "curve": "stepped" },
  4026. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4027. { "time": 2, "angle": 0, "curve": "stepped" },
  4028. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4029. { "time": 3, "angle": 0, "curve": "stepped" },
  4030. { "time": 3.5, "angle": 0, "curve": "stepped" },
  4031. { "time": 4, "angle": 0, "curve": "stepped" },
  4032. { "time": 4.5, "angle": 0, "curve": "stepped" },
  4033. { "time": 5, "angle": 0 }
  4034. ],
  4035. "translate": [
  4036. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4037. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4038. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4039. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4040. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4041. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4042. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4043. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  4044. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4045. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  4046. { "time": 5, "x": 0, "y": 0 }
  4047. ],
  4048. "scale": [
  4049. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4050. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4051. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4052. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4053. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4054. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4055. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4056. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  4057. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4058. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  4059. { "time": 5, "x": 1, "y": 1 }
  4060. ]
  4061. },
  4062. "bone54": {
  4063. "rotate": [
  4064. { "time": 0, "angle": 0, "curve": "stepped" },
  4065. { "time": 1, "angle": 0, "curve": "stepped" },
  4066. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4067. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4068. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4069. { "time": 2, "angle": 0, "curve": "stepped" },
  4070. { "time": 3, "angle": 0, "curve": "stepped" },
  4071. { "time": 3.1, "angle": 0, "curve": "stepped" },
  4072. { "time": 3.2, "angle": 0, "curve": "stepped" },
  4073. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  4074. { "time": 4, "angle": 0, "curve": "stepped" },
  4075. { "time": 4.1, "angle": 0, "curve": "stepped" },
  4076. { "time": 4.2, "angle": 0, "curve": "stepped" },
  4077. { "time": 4.3333, "angle": 0 }
  4078. ],
  4079. "translate": [
  4080. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4081. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4082. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4083. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4084. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4085. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4086. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4087. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  4088. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4089. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4090. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4091. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  4092. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  4093. { "time": 4.3333, "x": 0, "y": 0 }
  4094. ],
  4095. "scale": [
  4096. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4097. { "time": 1, "x": 1, "y": 1 },
  4098. { "time": 1.1, "x": 0.654, "y": 1, "curve": "stepped" },
  4099. { "time": 1.2, "x": 0.654, "y": 1 },
  4100. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4101. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4102. { "time": 3, "x": 1, "y": 1 },
  4103. { "time": 3.1, "x": 0.654, "y": 1, "curve": "stepped" },
  4104. { "time": 3.2, "x": 0.654, "y": 1 },
  4105. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 4, "x": 1, "y": 1 },
  4107. { "time": 4.1, "x": 0.654, "y": 1, "curve": "stepped" },
  4108. { "time": 4.2, "x": 0.654, "y": 1 },
  4109. { "time": 4.3333, "x": 1, "y": 1 }
  4110. ]
  4111. },
  4112. "bone55": {
  4113. "rotate": [
  4114. { "time": 0, "angle": 0, "curve": "stepped" },
  4115. { "time": 1, "angle": 0, "curve": "stepped" },
  4116. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4117. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4118. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4119. { "time": 2, "angle": 0, "curve": "stepped" },
  4120. { "time": 3, "angle": 0, "curve": "stepped" },
  4121. { "time": 3.1, "angle": 0, "curve": "stepped" },
  4122. { "time": 3.2, "angle": 0, "curve": "stepped" },
  4123. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  4124. { "time": 4, "angle": 0, "curve": "stepped" },
  4125. { "time": 4.1, "angle": 0, "curve": "stepped" },
  4126. { "time": 4.2, "angle": 0, "curve": "stepped" },
  4127. { "time": 4.3333, "angle": 0 }
  4128. ],
  4129. "translate": [
  4130. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4131. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4132. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  4133. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  4134. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4135. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4136. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4137. { "time": 3.1, "x": 0, "y": 0, "curve": "stepped" },
  4138. { "time": 3.2, "x": 0, "y": 0, "curve": "stepped" },
  4139. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4140. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4141. { "time": 4.1, "x": 0, "y": 0, "curve": "stepped" },
  4142. { "time": 4.2, "x": 0, "y": 0, "curve": "stepped" },
  4143. { "time": 4.3333, "x": 0, "y": 0 }
  4144. ],
  4145. "scale": [
  4146. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4147. { "time": 1, "x": 1, "y": 1 },
  4148. { "time": 1.1, "x": 0.585, "y": 1, "curve": "stepped" },
  4149. { "time": 1.2, "x": 0.585, "y": 1 },
  4150. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4151. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4152. { "time": 3, "x": 1, "y": 1 },
  4153. { "time": 3.1, "x": 0.585, "y": 1, "curve": "stepped" },
  4154. { "time": 3.2, "x": 0.585, "y": 1 },
  4155. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4156. { "time": 4, "x": 1, "y": 1 },
  4157. { "time": 4.1, "x": 0.585, "y": 1, "curve": "stepped" },
  4158. { "time": 4.2, "x": 0.585, "y": 1 },
  4159. { "time": 4.3333, "x": 1, "y": 1 }
  4160. ]
  4161. },
  4162. "bone56": {
  4163. "rotate": [
  4164. { "time": 0, "angle": 0, "curve": "stepped" },
  4165. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4166. { "time": 1, "angle": 0, "curve": "stepped" },
  4167. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4168. { "time": 2, "angle": 0, "curve": "stepped" },
  4169. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4170. { "time": 3, "angle": 0, "curve": "stepped" },
  4171. { "time": 3.5, "angle": 0, "curve": "stepped" },
  4172. { "time": 4, "angle": 0, "curve": "stepped" },
  4173. { "time": 4.5, "angle": 0, "curve": "stepped" },
  4174. { "time": 5, "angle": 0 }
  4175. ],
  4176. "translate": [
  4177. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4178. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4179. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4180. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4181. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4182. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4183. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4184. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  4185. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4186. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  4187. { "time": 5, "x": 0, "y": 0 }
  4188. ],
  4189. "scale": [
  4190. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4191. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4192. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4193. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4194. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4195. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4196. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4197. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  4198. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4199. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 5, "x": 1, "y": 1 }
  4201. ]
  4202. },
  4203. "bone57": {
  4204. "rotate": [
  4205. { "time": 0, "angle": 0, "curve": "stepped" },
  4206. { "time": 1, "angle": 0, "curve": "stepped" },
  4207. { "time": 1.1, "angle": 0, "curve": "stepped" },
  4208. { "time": 1.2, "angle": 0, "curve": "stepped" },
  4209. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4210. { "time": 2, "angle": 0, "curve": "stepped" },
  4211. { "time": 3, "angle": 0, "curve": "stepped" },
  4212. { "time": 3.1, "angle": 0, "curve": "stepped" },
  4213. { "time": 3.2, "angle": 0, "curve": "stepped" },
  4214. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  4215. { "time": 4, "angle": 0, "curve": "stepped" },
  4216. { "time": 4.1, "angle": 0, "curve": "stepped" },
  4217. { "time": 4.2, "angle": 0, "curve": "stepped" },
  4218. { "time": 4.3333, "angle": 0 }
  4219. ],
  4220. "translate": [
  4221. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4222. { "time": 1, "x": 0, "y": 0 },
  4223. { "time": 1.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
  4224. { "time": 1.2, "x": -1.21, "y": -0.09 },
  4225. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4226. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4227. { "time": 3, "x": 0, "y": 0 },
  4228. { "time": 3.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
  4229. { "time": 3.2, "x": -1.21, "y": -0.09 },
  4230. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  4231. { "time": 4, "x": 0, "y": 0 },
  4232. { "time": 4.1, "x": -1.21, "y": -0.09, "curve": "stepped" },
  4233. { "time": 4.2, "x": -1.21, "y": -0.09 },
  4234. { "time": 4.3333, "x": 0, "y": 0 }
  4235. ],
  4236. "scale": [
  4237. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4238. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4239. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  4240. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  4241. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4242. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4243. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4244. { "time": 3.1, "x": 1, "y": 1, "curve": "stepped" },
  4245. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4246. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  4247. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4248. { "time": 4.1, "x": 1, "y": 1, "curve": "stepped" },
  4249. { "time": 4.2, "x": 1, "y": 1, "curve": "stepped" },
  4250. { "time": 4.3333, "x": 1, "y": 1 }
  4251. ]
  4252. },
  4253. "bone58": {
  4254. "rotate": [
  4255. { "time": 0, "angle": 0, "curve": "stepped" },
  4256. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4257. { "time": 1, "angle": 0, "curve": "stepped" },
  4258. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4259. { "time": 2, "angle": 0, "curve": "stepped" },
  4260. { "time": 2.5, "angle": 0, "curve": "stepped" },
  4261. { "time": 3, "angle": 0, "curve": "stepped" },
  4262. { "time": 3.5, "angle": 0, "curve": "stepped" },
  4263. { "time": 4, "angle": 0, "curve": "stepped" },
  4264. { "time": 4.5, "angle": 0, "curve": "stepped" },
  4265. { "time": 5, "angle": 0 }
  4266. ],
  4267. "translate": [
  4268. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4269. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4270. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4271. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4272. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  4273. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  4274. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  4275. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  4276. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4277. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  4278. { "time": 5, "x": 0, "y": 0 }
  4279. ],
  4280. "scale": [
  4281. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4282. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4283. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4284. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4285. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  4286. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4287. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  4288. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  4289. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4290. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  4291. { "time": 5, "x": 1, "y": 1 }
  4292. ]
  4293. },
  4294. "bone59": {
  4295. "rotate": [
  4296. { "time": 0, "angle": 0, "curve": "stepped" },
  4297. { "time": 1.1667, "angle": 0 },
  4298. { "time": 1.8667, "angle": 1.2, "curve": "stepped" },
  4299. { "time": 2.0333, "angle": 1.2 },
  4300. { "time": 2.0667, "angle": 0 },
  4301. { "time": 2.7667, "angle": 1.2, "curve": "stepped" },
  4302. { "time": 2.8333, "angle": 1.2 },
  4303. { "time": 2.8667, "angle": 0 },
  4304. { "time": 3.5667, "angle": 1.2 }
  4305. ],
  4306. "translate": [
  4307. { "time": 0, "x": 25.65, "y": 5.4, "curve": "stepped" },
  4308. { "time": 1.1667, "x": 25.65, "y": 5.4 },
  4309. { "time": 1.4667, "x": -2.17, "y": 0.87 },
  4310. { "time": 1.8667, "x": -31.28, "y": 7.84, "curve": "stepped" },
  4311. { "time": 2.0333, "x": -31.28, "y": 7.84 },
  4312. { "time": 2.0667, "x": 25.65, "y": 5.4 },
  4313. { "time": 2.3667, "x": -2.17, "y": 0.87 },
  4314. { "time": 2.7667, "x": -26.97, "y": 32.94, "curve": "stepped" },
  4315. { "time": 2.8333, "x": -26.97, "y": 32.94 },
  4316. { "time": 2.8667, "x": 25.65, "y": 5.4 },
  4317. { "time": 3.1667, "x": -2.17, "y": 0.87 },
  4318. { "time": 3.5667, "x": -26.97, "y": 32.94 }
  4319. ],
  4320. "scale": [
  4321. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4322. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4323. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4324. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  4325. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4326. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  4327. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  4328. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  4329. { "time": 3.5667, "x": 1, "y": 1 }
  4330. ],
  4331. "shear": [
  4332. { "time": 1.8667, "x": 1.2, "y": 0, "curve": "stepped" },
  4333. { "time": 2.0333, "x": 1.2, "y": 0, "curve": "stepped" },
  4334. { "time": 2.7667, "x": 1.2, "y": 0, "curve": "stepped" },
  4335. { "time": 2.8333, "x": 1.2, "y": 0, "curve": "stepped" },
  4336. { "time": 3.5667, "x": 1.2, "y": 0 }
  4337. ]
  4338. },
  4339. "bone60": {
  4340. "rotate": [
  4341. { "time": 0, "angle": 0, "curve": "stepped" },
  4342. { "time": 0.7, "angle": 0 },
  4343. { "time": 1.3333, "angle": 1.2, "curve": "stepped" },
  4344. { "time": 1.5667, "angle": 1.2 },
  4345. { "time": 1.6, "angle": 0 },
  4346. { "time": 2.2333, "angle": 1.2, "curve": "stepped" },
  4347. { "time": 2.4333, "angle": 1.2 },
  4348. { "time": 2.5, "angle": 0 },
  4349. { "time": 3.2, "angle": 1.2, "curve": "stepped" },
  4350. { "time": 3.2333, "angle": 1.2 },
  4351. { "time": 3.3, "angle": 0 },
  4352. { "time": 4, "angle": 1.2 }
  4353. ],
  4354. "translate": [
  4355. { "time": 0, "x": -48.26, "y": -6.24, "curve": "stepped" },
  4356. { "time": 0.7, "x": -48.26, "y": -6.24 },
  4357. { "time": 0.9667, "x": 12.54, "y": -6.97 },
  4358. { "time": 1.3333, "x": 35.3, "y": 12.57, "curve": "stepped" },
  4359. { "time": 1.5667, "x": 35.3, "y": 12.57 },
  4360. { "time": 1.6, "x": -48.26, "y": -6.24 },
  4361. { "time": 1.8667, "x": 12.54, "y": -6.97 },
  4362. { "time": 2.2333, "x": 35.3, "y": 12.57, "curve": "stepped" },
  4363. { "time": 2.4333, "x": 35.3, "y": 12.57 },
  4364. { "time": 2.5, "x": -48.26, "y": -6.24 },
  4365. { "time": 2.8, "x": 12.54, "y": -6.97 },
  4366. { "time": 3.2, "x": 35.3, "y": 12.57, "curve": "stepped" },
  4367. { "time": 3.2333, "x": 35.3, "y": 12.57 },
  4368. { "time": 3.3, "x": -48.26, "y": -6.24 },
  4369. { "time": 3.6, "x": 12.54, "y": -6.97 },
  4370. { "time": 4, "x": 35.3, "y": 12.57 }
  4371. ],
  4372. "scale": [
  4373. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4374. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4375. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4376. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4377. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  4378. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  4379. { "time": 2.4333, "x": 1, "y": 1, "curve": "stepped" },
  4380. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  4381. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4382. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4383. { "time": 3.3, "x": 1, "y": 1, "curve": "stepped" },
  4384. { "time": 4, "x": 1, "y": 1 }
  4385. ],
  4386. "shear": [
  4387. { "time": 1.3333, "x": 1.2, "y": 0, "curve": "stepped" },
  4388. { "time": 1.5667, "x": 1.2, "y": 0, "curve": "stepped" },
  4389. { "time": 2.2333, "x": 1.2, "y": 0, "curve": "stepped" },
  4390. { "time": 2.4333, "x": 1.2, "y": 0, "curve": "stepped" },
  4391. { "time": 3.2, "x": 1.2, "y": 0, "curve": "stepped" },
  4392. { "time": 3.2333, "x": 1.2, "y": 0, "curve": "stepped" },
  4393. { "time": 4, "x": 1.2, "y": 0 }
  4394. ]
  4395. },
  4396. "bone61": {
  4397. "rotate": [
  4398. { "time": 0, "angle": 0, "curve": "stepped" },
  4399. { "time": 1.3333, "angle": 0 },
  4400. { "time": 2.0667, "angle": 1.2, "curve": "stepped" },
  4401. { "time": 3.1667, "angle": 1.2 },
  4402. { "time": 3.2, "angle": 0 },
  4403. { "time": 3.9333, "angle": 1.2 },
  4404. { "time": 4, "angle": 0, "curve": "stepped" },
  4405. { "time": 4.5, "angle": 0, "curve": "stepped" },
  4406. { "time": 5, "angle": 0 }
  4407. ],
  4408. "translate": [
  4409. { "time": 0, "x": 43.69, "y": -37.66, "curve": "stepped" },
  4410. { "time": 1.3333, "x": 43.69, "y": -37.66 },
  4411. { "time": 1.6667, "x": 13.96, "y": 6.14 },
  4412. { "time": 2.0667, "x": 16.68, "y": 67.27, "curve": "stepped" },
  4413. { "time": 3.1667, "x": 16.68, "y": 67.27 },
  4414. { "time": 3.2, "x": 43.69, "y": -37.66 },
  4415. { "time": 3.5333, "x": 13.96, "y": 6.14 },
  4416. { "time": 3.9333, "x": -24.36, "y": 34.1 },
  4417. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  4418. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  4419. { "time": 5, "x": 0, "y": 0 }
  4420. ],
  4421. "scale": [
  4422. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4423. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4424. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4425. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  4426. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  4427. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  4428. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  4429. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  4430. { "time": 5, "x": 1, "y": 1 }
  4431. ],
  4432. "shear": [
  4433. { "time": 2.0667, "x": 1.2, "y": 0, "curve": "stepped" },
  4434. { "time": 3.1667, "x": 1.2, "y": 0, "curve": "stepped" },
  4435. { "time": 3.9333, "x": 1.2, "y": 0 }
  4436. ]
  4437. },
  4438. "bone62": {
  4439. "rotate": [
  4440. { "time": 0, "angle": 0, "curve": "stepped" },
  4441. { "time": 0.8, "angle": 0 },
  4442. { "time": 1.5, "angle": 1.2, "curve": "stepped" },
  4443. { "time": 1.6667, "angle": 1.2 },
  4444. { "time": 1.7, "angle": 0 },
  4445. { "time": 2.4, "angle": 1.2 }
  4446. ],
  4447. "translate": [
  4448. { "time": 0, "x": -41.86, "y": -54.54, "curve": "stepped" },
  4449. { "time": 0.8, "x": -41.86, "y": -54.54 },
  4450. { "time": 1.1, "x": -10.3, "y": -41.18 },
  4451. { "time": 1.5, "x": 15.78, "y": 1.24, "curve": "stepped" },
  4452. { "time": 1.6667, "x": 15.78, "y": 1.24 },
  4453. { "time": 1.7, "x": -41.86, "y": -54.54 },
  4454. { "time": 2, "x": -10.3, "y": -41.18 },
  4455. { "time": 2.4, "x": 15.78, "y": 1.24 }
  4456. ],
  4457. "scale": [
  4458. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4459. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  4460. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4461. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4462. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  4463. { "time": 2.4, "x": 1, "y": 1 }
  4464. ],
  4465. "shear": [
  4466. { "time": 1.5, "x": 1.2, "y": 0, "curve": "stepped" },
  4467. { "time": 1.6667, "x": 1.2, "y": 0, "curve": "stepped" },
  4468. { "time": 2.4, "x": 1.2, "y": 0 }
  4469. ]
  4470. }
  4471. },
  4472. "deform": {
  4473. "default": {
  4474. "toufa10": {
  4475. "toufa10": [
  4476. { "time": 0 },
  4477. {
  4478. "time": 0.5,
  4479. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  4480. },
  4481. { "time": 1 },
  4482. {
  4483. "time": 1.5,
  4484. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  4485. },
  4486. { "time": 2 },
  4487. {
  4488. "time": 2.5,
  4489. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  4490. },
  4491. { "time": 3 },
  4492. {
  4493. "time": 3.5,
  4494. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  4495. },
  4496. { "time": 4 },
  4497. {
  4498. "time": 4.5,
  4499. "vertices": [ 1.07381, -0.01849, 1.43179, -0.02464, 2.54462, -0.04387, 1.80208, 0.68503 ]
  4500. },
  4501. { "time": 5 }
  4502. ]
  4503. }
  4504. }
  4505. }
  4506. },
  4507. "walk1": {
  4508. "slots": {
  4509. "biyan": {
  4510. "attachment": [
  4511. { "time": 1.0667, "name": "biyan" },
  4512. { "time": 1.1333, "name": null }
  4513. ]
  4514. },
  4515. "fuhao1": {
  4516. "color": [
  4517. { "time": 0, "color": "ffffff00" }
  4518. ]
  4519. },
  4520. "fuhao7": {
  4521. "color": [
  4522. { "time": 0, "color": "ffffff00" }
  4523. ]
  4524. },
  4525. "fuhao14": {
  4526. "color": [
  4527. { "time": 0, "color": "ffffff00" }
  4528. ]
  4529. },
  4530. "fuhao16": {
  4531. "color": [
  4532. { "time": 0, "color": "ffffff00" }
  4533. ]
  4534. },
  4535. "youyan": {
  4536. "attachment": [
  4537. { "time": 1.0667, "name": null },
  4538. { "time": 1.1333, "name": "youyan" }
  4539. ]
  4540. },
  4541. "zuoyan": {
  4542. "attachment": [
  4543. { "time": 1.0667, "name": null },
  4544. { "time": 1.1333, "name": "zuoyan" }
  4545. ]
  4546. }
  4547. },
  4548. "bones": {
  4549. "root": {
  4550. "rotate": [
  4551. { "time": 0, "angle": 0 }
  4552. ],
  4553. "translate": [
  4554. { "time": 0, "x": 0, "y": 0 }
  4555. ],
  4556. "scale": [
  4557. { "time": 0, "x": 0.65, "y": 0.65 }
  4558. ]
  4559. },
  4560. "bone": {
  4561. "rotate": [
  4562. { "time": 0, "angle": 0 }
  4563. ],
  4564. "translate": [
  4565. { "time": 0, "x": 0, "y": 2.18 },
  4566. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4567. { "time": 0.2667, "x": 0, "y": 0 },
  4568. { "time": 0.5, "x": 0, "y": 2.18 },
  4569. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4570. { "time": 0.7667, "x": 0, "y": 0 },
  4571. { "time": 1, "x": 0, "y": 2.18 },
  4572. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4573. { "time": 1.2667, "x": 0, "y": 0 },
  4574. { "time": 1.5, "x": 0, "y": 2.18 },
  4575. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4576. { "time": 1.7667, "x": 0, "y": 0 },
  4577. { "time": 2, "x": 0, "y": 2.18 }
  4578. ],
  4579. "scale": [
  4580. { "time": 0, "x": 1, "y": 1 }
  4581. ]
  4582. },
  4583. "bone2": {
  4584. "rotate": [
  4585. { "time": 0, "angle": 0, "curve": "stepped" },
  4586. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4587. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4588. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4589. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4590. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4591. { "time": 1, "angle": 0, "curve": "stepped" },
  4592. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4593. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4594. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4595. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4596. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4597. { "time": 2, "angle": 0 }
  4598. ],
  4599. "translate": [
  4600. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4601. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4602. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4603. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4604. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4605. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4606. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4607. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4608. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4609. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4610. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4611. { "time": 1.8333, "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.1667, "x": 1, "y": 1, "curve": "stepped" },
  4617. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4618. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4619. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4620. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4621. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4622. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4624. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4627. { "time": 2, "x": 1, "y": 1 }
  4628. ]
  4629. },
  4630. "bone3": {
  4631. "rotate": [
  4632. { "time": 0, "angle": 1.61, "curve": "stepped" },
  4633. { "time": 1, "angle": 1.61, "curve": "stepped" },
  4634. { "time": 2, "angle": 1.61 }
  4635. ],
  4636. "translate": [
  4637. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4638. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4639. { "time": 2, "x": 0, "y": 0 }
  4640. ],
  4641. "scale": [
  4642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4643. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4644. { "time": 2, "x": 1, "y": 1 }
  4645. ]
  4646. },
  4647. "bone4": {
  4648. "rotate": [
  4649. { "time": 0, "angle": 0, "curve": "stepped" },
  4650. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4651. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4652. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4653. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4654. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4655. { "time": 1, "angle": 0, "curve": "stepped" },
  4656. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4657. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4658. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4659. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4660. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4661. { "time": 2, "angle": 0 }
  4662. ],
  4663. "translate": [
  4664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4665. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4666. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4667. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4668. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4669. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4670. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4671. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4672. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4673. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4674. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4675. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4676. { "time": 2, "x": 0, "y": 0 }
  4677. ],
  4678. "scale": [
  4679. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4680. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4681. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4682. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4683. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4684. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4685. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4686. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4687. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4688. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4689. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4690. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4691. { "time": 2, "x": 1, "y": 1 }
  4692. ]
  4693. },
  4694. "bone5": {
  4695. "rotate": [
  4696. { "time": 0, "angle": -10.72 },
  4697. { "time": 0.1667, "angle": -8.03 },
  4698. { "time": 0.3333, "angle": 7.5 },
  4699. { "time": 0.5, "angle": 22.39 },
  4700. { "time": 0.6667, "angle": 13.32 },
  4701. { "time": 0.8333, "angle": -6.02 },
  4702. { "time": 1, "angle": -10.72 },
  4703. { "time": 1.1667, "angle": -8.03 },
  4704. { "time": 1.3333, "angle": 7.5 },
  4705. { "time": 1.5, "angle": 22.39 },
  4706. { "time": 1.6667, "angle": 8.19 },
  4707. { "time": 1.8333, "angle": -6.02 },
  4708. { "time": 2, "angle": -10.72 }
  4709. ],
  4710. "translate": [
  4711. { "time": 0, "x": -0.82, "y": -1.81 },
  4712. { "time": 0.1667, "x": 2.67, "y": -0.26 },
  4713. { "time": 0.3333, "x": 12.94, "y": -2.35 },
  4714. { "time": 0.5, "x": 19.17, "y": 0.63 },
  4715. { "time": 0.6667, "x": 12.78, "y": 0.42 },
  4716. { "time": 0.8333, "x": 5.18, "y": 2.25 },
  4717. { "time": 1, "x": -0.82, "y": -1.81 },
  4718. { "time": 1.1667, "x": 2.67, "y": -0.26 },
  4719. { "time": 1.3333, "x": 12.94, "y": -2.35 },
  4720. { "time": 1.5, "x": 19.17, "y": 0.63 },
  4721. { "time": 1.6667, "x": 12.78, "y": 0.42 },
  4722. { "time": 1.8333, "x": 5.18, "y": 2.25 },
  4723. { "time": 2, "x": -0.82, "y": -1.81 }
  4724. ],
  4725. "scale": [
  4726. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4727. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4728. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4729. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4730. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4731. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4732. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4733. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4734. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4735. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4736. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4737. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4738. { "time": 2, "x": 1, "y": 1 }
  4739. ]
  4740. },
  4741. "bone6": {
  4742. "rotate": [
  4743. { "time": 0, "angle": 0 },
  4744. { "time": 0.1667, "angle": 14.37 },
  4745. { "time": 0.3333, "angle": 1.27 },
  4746. { "time": 0.5, "angle": 27.15 },
  4747. { "time": 0.6667, "angle": 44.05 },
  4748. { "time": 0.8333, "angle": 29.43 },
  4749. { "time": 1, "angle": 0 },
  4750. { "time": 1.1667, "angle": 14.37 },
  4751. { "time": 1.3333, "angle": 1.27 },
  4752. { "time": 1.5, "angle": 27.15 },
  4753. { "time": 1.6667, "angle": 44.05 },
  4754. { "time": 1.8333, "angle": 29.43 },
  4755. { "time": 2, "angle": 0 }
  4756. ],
  4757. "translate": [
  4758. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4759. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4760. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4761. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4762. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4763. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4764. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4765. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4766. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4767. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4768. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4769. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4770. { "time": 2, "x": 0, "y": 0 }
  4771. ],
  4772. "scale": [
  4773. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4774. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4775. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4776. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4777. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4778. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4779. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4780. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4781. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4782. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4783. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4784. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4785. { "time": 2, "x": 1, "y": 1 }
  4786. ]
  4787. },
  4788. "bone7": {
  4789. "rotate": [
  4790. { "time": 0, "angle": 0 },
  4791. { "time": 0.1667, "angle": -3.65 },
  4792. { "time": 0.3333, "angle": -13.75 },
  4793. { "time": 0.5, "angle": 0 },
  4794. { "time": 0.6667, "angle": -17.88 },
  4795. { "time": 0.8333, "angle": 0 },
  4796. { "time": 1, "angle": -9.16 },
  4797. { "time": 1.1667, "angle": -3.65 },
  4798. { "time": 1.3333, "angle": -13.75 },
  4799. { "time": 1.5, "angle": 0 },
  4800. { "time": 1.6667, "angle": -17.88 },
  4801. { "time": 1.8333, "angle": 0 },
  4802. { "time": 2, "angle": -9.16 }
  4803. ],
  4804. "translate": [
  4805. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4806. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4807. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4808. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4809. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4810. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4811. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4812. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4813. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4814. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4815. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4816. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4817. { "time": 2, "x": 0, "y": 0 }
  4818. ],
  4819. "scale": [
  4820. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4821. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4822. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4823. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4824. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4825. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4826. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4827. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4828. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4829. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4830. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4831. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4832. { "time": 2, "x": 1, "y": 1 }
  4833. ]
  4834. },
  4835. "bone8": {
  4836. "rotate": [
  4837. { "time": 0, "angle": 22.51 },
  4838. { "time": 0.1667, "angle": 5.96 },
  4839. { "time": 0.3333, "angle": -10.59 },
  4840. { "time": 0.5, "angle": -27.14 },
  4841. { "time": 0.6667, "angle": -10.59 },
  4842. { "time": 0.8333, "angle": 9.2 },
  4843. { "time": 1, "angle": 22.51 },
  4844. { "time": 1.1667, "angle": 5.96 },
  4845. { "time": 1.3333, "angle": -10.59 },
  4846. { "time": 1.5, "angle": -27.14 },
  4847. { "time": 1.6667, "angle": -10.59 },
  4848. { "time": 1.8333, "angle": 9.2 },
  4849. { "time": 2, "angle": 22.51 }
  4850. ],
  4851. "translate": [
  4852. { "time": 0, "x": 0, "y": 0 },
  4853. { "time": 0.1667, "x": -6.7, "y": -0.56 },
  4854. { "time": 0.3333, "x": -15.71, "y": -0.36 },
  4855. { "time": 0.5, "x": -17.88, "y": -0.93 },
  4856. { "time": 0.6667, "x": -14.78, "y": -0.45 },
  4857. { "time": 0.8333, "x": -5.79, "y": -0.38 },
  4858. { "time": 1, "x": 0, "y": 0 },
  4859. { "time": 1.1667, "x": -6.7, "y": -0.56 },
  4860. { "time": 1.3333, "x": -15.71, "y": -0.36 },
  4861. { "time": 1.5, "x": -17.88, "y": -0.93 },
  4862. { "time": 1.6667, "x": -14.78, "y": -0.45 },
  4863. { "time": 1.8333, "x": -5.79, "y": -0.38 },
  4864. { "time": 2, "x": 0, "y": 0 }
  4865. ],
  4866. "scale": [
  4867. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4868. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4869. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4870. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4871. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4872. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4873. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4874. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4875. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4876. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4877. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4878. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4879. { "time": 2, "x": 1, "y": 1 }
  4880. ]
  4881. },
  4882. "bone9": {
  4883. "rotate": [
  4884. { "time": 0, "angle": 15.57 },
  4885. { "time": 0.1667, "angle": 39.42 },
  4886. { "time": 0.3333, "angle": 37.74 },
  4887. { "time": 0.5, "angle": 4.94 },
  4888. { "time": 0.6667, "angle": 8.49 },
  4889. { "time": 0.8333, "angle": 1.81 },
  4890. { "time": 1, "angle": 15.57 },
  4891. { "time": 1.1667, "angle": 39.42 },
  4892. { "time": 1.3333, "angle": 37.74 },
  4893. { "time": 1.5, "angle": 4.94 },
  4894. { "time": 1.6667, "angle": 8.49 },
  4895. { "time": 1.8333, "angle": 1.81 },
  4896. { "time": 2, "angle": 15.57 }
  4897. ],
  4898. "translate": [
  4899. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4900. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4901. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4902. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4903. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4904. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4905. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4906. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4907. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4908. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4909. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4910. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4911. { "time": 2, "x": 0, "y": 0 }
  4912. ],
  4913. "scale": [
  4914. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4915. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4916. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4917. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4918. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4919. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4920. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4921. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4922. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4923. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4924. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4925. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4926. { "time": 2, "x": 1, "y": 1 }
  4927. ]
  4928. },
  4929. "bone10": {
  4930. "rotate": [
  4931. { "time": 0, "angle": 0, "curve": "stepped" },
  4932. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4933. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4934. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4935. { "time": 0.6667, "angle": 0 },
  4936. { "time": 0.8333, "angle": 1.8 },
  4937. { "time": 1, "angle": 0, "curve": "stepped" },
  4938. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4939. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4940. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4941. { "time": 1.6667, "angle": 0 },
  4942. { "time": 1.8333, "angle": 1.8 },
  4943. { "time": 2, "angle": 0 }
  4944. ],
  4945. "translate": [
  4946. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4947. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4948. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4949. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4950. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4951. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4952. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4953. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4954. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4955. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4956. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4957. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4958. { "time": 2, "x": 0, "y": 0 }
  4959. ],
  4960. "scale": [
  4961. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4962. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4963. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4964. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4965. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4966. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4967. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4968. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4969. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4970. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4971. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4972. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4973. { "time": 2, "x": 1, "y": 1 }
  4974. ]
  4975. },
  4976. "bone11": {
  4977. "rotate": [
  4978. {
  4979. "time": 0,
  4980. "angle": -314.13,
  4981. "curve": [ 0.25, 0, 0.75, 1 ]
  4982. },
  4983. {
  4984. "time": 0.5,
  4985. "angle": 12.05,
  4986. "curve": [ 0.25, 0, 0.75, 1 ]
  4987. },
  4988. {
  4989. "time": 1,
  4990. "angle": -314.13,
  4991. "curve": [ 0.25, 0, 0.75, 1 ]
  4992. },
  4993. {
  4994. "time": 1.5,
  4995. "angle": 12.05,
  4996. "curve": [ 0.25, 0, 0.75, 1 ]
  4997. },
  4998. { "time": 2, "angle": -314.13 }
  4999. ],
  5000. "translate": [
  5001. {
  5002. "time": 0,
  5003. "x": -3.85,
  5004. "y": -15.51,
  5005. "curve": [ 0.25, 0, 0.75, 1 ]
  5006. },
  5007. {
  5008. "time": 0.5,
  5009. "x": -0.05,
  5010. "y": -0.74,
  5011. "curve": [ 0.25, 0, 0.75, 1 ]
  5012. },
  5013. {
  5014. "time": 1,
  5015. "x": -3.85,
  5016. "y": -15.51,
  5017. "curve": [ 0.25, 0, 0.75, 1 ]
  5018. },
  5019. {
  5020. "time": 1.5,
  5021. "x": -0.05,
  5022. "y": -0.74,
  5023. "curve": [ 0.25, 0, 0.75, 1 ]
  5024. },
  5025. { "time": 2, "x": -3.85, "y": -15.51 }
  5026. ],
  5027. "scale": [
  5028. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5029. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5030. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5031. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5032. { "time": 2, "x": 1, "y": 1 }
  5033. ]
  5034. },
  5035. "bone12": {
  5036. "rotate": [
  5037. {
  5038. "time": 0,
  5039. "angle": -28.67,
  5040. "curve": [ 0.25, 0, 0.75, 1 ]
  5041. },
  5042. {
  5043. "time": 0.5,
  5044. "angle": -10.22,
  5045. "curve": [ 0.25, 0, 0.75, 1 ]
  5046. },
  5047. {
  5048. "time": 1,
  5049. "angle": -28.67,
  5050. "curve": [ 0.25, 0, 0.75, 1 ]
  5051. },
  5052. {
  5053. "time": 1.5,
  5054. "angle": -10.22,
  5055. "curve": [ 0.25, 0, 0.75, 1 ]
  5056. },
  5057. { "time": 2, "angle": -28.67 }
  5058. ],
  5059. "translate": [
  5060. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5061. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5062. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5063. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5064. { "time": 2, "x": 0, "y": 0 }
  5065. ],
  5066. "scale": [
  5067. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5068. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5069. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5070. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5071. { "time": 2, "x": 1, "y": 1 }
  5072. ]
  5073. },
  5074. "bone13": {
  5075. "rotate": [
  5076. { "time": 0, "angle": 0 },
  5077. { "time": 0.5, "angle": -18.7 },
  5078. { "time": 1, "angle": 0 },
  5079. { "time": 1.5, "angle": -18.7 },
  5080. { "time": 2, "angle": 0 }
  5081. ],
  5082. "translate": [
  5083. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5084. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5085. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5086. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5087. { "time": 2, "x": 0, "y": 0 }
  5088. ],
  5089. "scale": [
  5090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5091. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5092. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5093. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5094. { "time": 2, "x": 1, "y": 1 }
  5095. ]
  5096. },
  5097. "bone14": {
  5098. "rotate": [
  5099. { "time": 0, "angle": -70.19 },
  5100. { "time": 0.1667, "angle": -51.72 },
  5101. { "time": 0.3333, "angle": -28.9 },
  5102. { "time": 0.5, "angle": -10.59 },
  5103. { "time": 0.6667, "angle": -28.9 },
  5104. { "time": 0.8333, "angle": -51.72 },
  5105. { "time": 1, "angle": -70.19 },
  5106. { "time": 1.1667, "angle": -51.72 },
  5107. { "time": 1.3333, "angle": -28.9 },
  5108. { "time": 1.5, "angle": -10.59 },
  5109. { "time": 1.6667, "angle": -28.9 },
  5110. { "time": 1.8333, "angle": -51.72 },
  5111. { "time": 2, "angle": -70.19 }
  5112. ],
  5113. "translate": [
  5114. { "time": 0, "x": -5.94, "y": 7.98 },
  5115. { "time": 0.1667, "x": -4.57, "y": 6.49 },
  5116. { "time": 0.3333, "x": -3.21, "y": 5 },
  5117. { "time": 0.5, "x": -1.85, "y": 3.51 },
  5118. { "time": 0.6667, "x": -3.21, "y": 5 },
  5119. { "time": 0.8333, "x": -4.57, "y": 6.49 },
  5120. { "time": 1, "x": -5.94, "y": 7.98 },
  5121. { "time": 1.1667, "x": -4.57, "y": 6.49 },
  5122. { "time": 1.3333, "x": -3.21, "y": 5 },
  5123. { "time": 1.5, "x": -1.85, "y": 3.51 },
  5124. { "time": 1.6667, "x": -3.21, "y": 5 },
  5125. { "time": 1.8333, "x": -4.57, "y": 6.49 },
  5126. { "time": 2, "x": -5.94, "y": 7.98 }
  5127. ],
  5128. "scale": [
  5129. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5130. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5131. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5132. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5133. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5134. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5135. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5136. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5137. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5138. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5139. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5140. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5141. { "time": 2, "x": 1, "y": 1 }
  5142. ]
  5143. },
  5144. "bone15": {
  5145. "rotate": [
  5146. { "time": 0, "angle": -39.25 },
  5147. { "time": 0.1667, "angle": -19.91 },
  5148. { "time": 0.3333, "angle": -12.55 },
  5149. { "time": 0.5, "angle": -19.63 },
  5150. { "time": 0.6667, "angle": -12.55 },
  5151. { "time": 0.8333, "angle": -19.91 },
  5152. { "time": 1, "angle": -39.25 },
  5153. { "time": 1.1667, "angle": -19.91 },
  5154. { "time": 1.3333, "angle": -12.55 },
  5155. { "time": 1.5, "angle": -19.63 },
  5156. { "time": 1.6667, "angle": -12.55 },
  5157. { "time": 1.8333, "angle": -19.91 },
  5158. { "time": 2, "angle": -39.25 }
  5159. ],
  5160. "translate": [
  5161. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5162. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5163. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5164. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5165. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5166. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5167. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5168. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5169. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5170. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5171. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5172. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5173. { "time": 2, "x": 0, "y": 0 }
  5174. ],
  5175. "scale": [
  5176. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5177. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5178. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5179. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5180. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5181. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5182. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5183. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5184. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5185. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5186. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 2, "x": 1, "y": 1 }
  5189. ]
  5190. },
  5191. "bone16": {
  5192. "rotate": [
  5193. { "time": 0, "angle": 4.04 },
  5194. { "time": 0.1667, "angle": -12.68 },
  5195. { "time": 0.3333, "angle": -9.89 },
  5196. { "time": 0.5, "angle": -7.11 },
  5197. { "time": 0.6667, "angle": -9.89 },
  5198. { "time": 0.8333, "angle": -12.68 },
  5199. { "time": 1, "angle": 4.04 },
  5200. { "time": 1.1667, "angle": -12.68 },
  5201. { "time": 1.3333, "angle": -9.89 },
  5202. { "time": 1.5, "angle": -7.11 },
  5203. { "time": 1.6667, "angle": -9.89 },
  5204. { "time": 1.8333, "angle": -12.68 },
  5205. { "time": 2, "angle": 4.04 }
  5206. ],
  5207. "translate": [
  5208. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5209. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5210. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5211. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5212. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5213. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5214. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5215. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5216. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5217. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5218. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5219. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5220. { "time": 2, "x": 0, "y": 0 }
  5221. ],
  5222. "scale": [
  5223. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5224. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5225. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5226. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5227. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5228. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5229. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5230. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5231. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5232. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5233. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5234. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5235. { "time": 2, "x": 1, "y": 1 }
  5236. ]
  5237. },
  5238. "bone17": {
  5239. "rotate": [
  5240. { "time": 0, "angle": 0 },
  5241. { "time": 0.5, "angle": -7.58 },
  5242. { "time": 1, "angle": 0 },
  5243. { "time": 1.5, "angle": -7.58 },
  5244. { "time": 2, "angle": 0 }
  5245. ],
  5246. "translate": [
  5247. { "time": 0, "x": 0, "y": 0 },
  5248. { "time": 0.5, "x": -0.14, "y": -0.41 },
  5249. { "time": 1, "x": 0, "y": 0 },
  5250. { "time": 1.5, "x": -0.14, "y": -0.41 },
  5251. { "time": 2, "x": 0, "y": 0 }
  5252. ],
  5253. "scale": [
  5254. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5255. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5256. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5257. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5258. { "time": 2, "x": 1, "y": 1 }
  5259. ]
  5260. },
  5261. "bone18": {
  5262. "rotate": [
  5263. { "time": 0, "angle": 0 },
  5264. { "time": 0.5, "angle": -0.08 },
  5265. { "time": 1, "angle": 0 },
  5266. { "time": 1.5, "angle": -0.08 },
  5267. { "time": 2, "angle": 0 }
  5268. ],
  5269. "translate": [
  5270. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5271. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5272. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5273. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5274. { "time": 2, "x": 0, "y": 0 }
  5275. ],
  5276. "scale": [
  5277. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5278. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5279. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5280. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5281. { "time": 2, "x": 1, "y": 1 }
  5282. ]
  5283. },
  5284. "bone19": {
  5285. "rotate": [
  5286. { "time": 0, "angle": 0 },
  5287. { "time": 0.5, "angle": -13.58 },
  5288. { "time": 1, "angle": 0 },
  5289. { "time": 1.5, "angle": -13.58 },
  5290. { "time": 2, "angle": 0 }
  5291. ],
  5292. "translate": [
  5293. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5294. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5295. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5296. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5297. { "time": 2, "x": 0, "y": 0 }
  5298. ],
  5299. "scale": [
  5300. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5301. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5302. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5303. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5304. { "time": 2, "x": 1, "y": 1 }
  5305. ]
  5306. },
  5307. "bone20": {
  5308. "rotate": [
  5309. { "time": 0, "angle": 7.69 },
  5310. { "time": 0.5, "angle": 5.81 },
  5311. { "time": 1, "angle": 7.69 },
  5312. { "time": 1.5, "angle": 5.81 },
  5313. { "time": 2, "angle": 7.69 }
  5314. ],
  5315. "translate": [
  5316. { "time": 0, "x": -1.35, "y": 3.54 },
  5317. { "time": 0.5, "x": -0.63, "y": 0.76 },
  5318. { "time": 1, "x": -1.35, "y": 3.54 },
  5319. { "time": 1.5, "x": -0.63, "y": 0.76 },
  5320. { "time": 2, "x": -1.35, "y": 3.54 }
  5321. ],
  5322. "scale": [
  5323. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5324. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5325. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5326. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5327. { "time": 2, "x": 1, "y": 1 }
  5328. ]
  5329. },
  5330. "bone21": {
  5331. "rotate": [
  5332. { "time": 0, "angle": 0 },
  5333. { "time": 0.5, "angle": 5.55 },
  5334. { "time": 1, "angle": 0 },
  5335. { "time": 1.5, "angle": 5.55 },
  5336. { "time": 2, "angle": 0 }
  5337. ],
  5338. "translate": [
  5339. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5340. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5341. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5342. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5343. { "time": 2, "x": 0, "y": 0 }
  5344. ],
  5345. "scale": [
  5346. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5347. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5348. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5349. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5350. { "time": 2, "x": 1, "y": 1 }
  5351. ]
  5352. },
  5353. "bone22": {
  5354. "rotate": [
  5355. { "time": 0, "angle": 0 },
  5356. { "time": 0.5, "angle": 9.29 },
  5357. { "time": 1, "angle": 0 },
  5358. { "time": 1.5, "angle": 9.29 },
  5359. { "time": 2, "angle": 0 }
  5360. ],
  5361. "translate": [
  5362. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5363. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5364. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5365. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5366. { "time": 2, "x": 0, "y": 0 }
  5367. ],
  5368. "scale": [
  5369. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5370. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5371. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5372. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5373. { "time": 2, "x": 1, "y": 1 }
  5374. ]
  5375. },
  5376. "bone23": {
  5377. "rotate": [
  5378. { "time": 0, "angle": 0, "curve": "stepped" },
  5379. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  5380. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5381. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  5382. { "time": 1, "angle": 0, "curve": "stepped" },
  5383. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5384. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5385. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  5386. { "time": 2, "angle": 0 }
  5387. ],
  5388. "translate": [
  5389. { "time": 0, "x": 1.48, "y": 6.68 },
  5390. { "time": 0.5, "x": 1.86, "y": 1.75 },
  5391. { "time": 1, "x": 1.48, "y": 6.68 },
  5392. { "time": 1.5, "x": 1.86, "y": 1.75 },
  5393. { "time": 2, "x": 1.48, "y": 6.68 }
  5394. ],
  5395. "scale": [
  5396. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5397. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  5398. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5399. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  5400. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5401. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5402. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5403. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  5404. { "time": 2, "x": 1, "y": 1 }
  5405. ]
  5406. },
  5407. "bone24": {
  5408. "rotate": [
  5409. { "time": 0, "angle": 0 },
  5410. { "time": 0.5, "angle": -0.94 },
  5411. { "time": 1, "angle": 0 },
  5412. { "time": 1.5, "angle": -0.94 },
  5413. { "time": 2, "angle": 0 }
  5414. ],
  5415. "translate": [
  5416. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5417. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5418. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5419. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5420. { "time": 2, "x": 0, "y": 0 }
  5421. ],
  5422. "scale": [
  5423. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5424. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5425. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5426. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5427. { "time": 2, "x": 1, "y": 1 }
  5428. ]
  5429. },
  5430. "bone25": {
  5431. "rotate": [
  5432. { "time": 0, "angle": 0 },
  5433. { "time": 0.5, "angle": -5.8 },
  5434. { "time": 1, "angle": 0 },
  5435. { "time": 1.5, "angle": -5.8 },
  5436. { "time": 2, "angle": 0 }
  5437. ],
  5438. "translate": [
  5439. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5440. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5441. { "time": 2, "x": 0, "y": 0 }
  5442. ],
  5443. "scale": [
  5444. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5445. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5446. { "time": 2, "x": 1, "y": 1 }
  5447. ]
  5448. },
  5449. "bone26": {
  5450. "rotate": [
  5451. { "time": 0, "angle": 0 },
  5452. { "time": 0.5, "angle": -6.12 },
  5453. { "time": 1, "angle": 0 },
  5454. { "time": 1.5, "angle": -6.12 },
  5455. { "time": 2, "angle": 0 }
  5456. ],
  5457. "translate": [
  5458. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5459. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5460. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5461. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5462. { "time": 2, "x": 0, "y": 0 }
  5463. ],
  5464. "scale": [
  5465. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5466. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5467. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5468. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5469. { "time": 2, "x": 1, "y": 1 }
  5470. ]
  5471. },
  5472. "bone27": {
  5473. "rotate": [
  5474. { "time": 0, "angle": 0 },
  5475. { "time": 0.5, "angle": -0.7 },
  5476. { "time": 1, "angle": 0 },
  5477. { "time": 1.5, "angle": -0.7 },
  5478. { "time": 2, "angle": 0 }
  5479. ],
  5480. "translate": [
  5481. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5482. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5483. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5484. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5485. { "time": 2, "x": 0, "y": 0 }
  5486. ],
  5487. "scale": [
  5488. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5489. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5490. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5491. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5492. { "time": 2, "x": 1, "y": 1 }
  5493. ]
  5494. },
  5495. "bone28": {
  5496. "rotate": [
  5497. { "time": 0, "angle": 0, "curve": "stepped" },
  5498. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5499. { "time": 1, "angle": 0, "curve": "stepped" },
  5500. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5501. { "time": 2, "angle": 0 }
  5502. ],
  5503. "translate": [
  5504. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5505. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5506. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5507. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5508. { "time": 2, "x": 0, "y": 0 }
  5509. ],
  5510. "scale": [
  5511. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5512. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5513. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5514. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5515. { "time": 2, "x": 1, "y": 1 }
  5516. ]
  5517. },
  5518. "bone29": {
  5519. "rotate": [
  5520. { "time": 0, "angle": 0, "curve": "stepped" },
  5521. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5522. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5523. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5524. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5525. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5526. { "time": 1, "angle": 0, "curve": "stepped" },
  5527. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5528. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5529. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5530. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5531. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5532. { "time": 2, "angle": 0 }
  5533. ],
  5534. "translate": [
  5535. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5536. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5537. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5538. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5539. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5540. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5541. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5542. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5543. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5544. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5545. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5546. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5547. { "time": 2, "x": 0, "y": 0 }
  5548. ],
  5549. "scale": [
  5550. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5551. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5552. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5553. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5554. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5555. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5556. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5557. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5558. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5559. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5560. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5561. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5562. { "time": 2, "x": 1, "y": 1 }
  5563. ]
  5564. },
  5565. "bone30": {
  5566. "rotate": [
  5567. { "time": 0, "angle": 0 },
  5568. { "time": 0.5, "angle": 11.83 },
  5569. { "time": 1, "angle": 0 },
  5570. { "time": 1.5, "angle": 11.83 },
  5571. { "time": 2, "angle": 0 }
  5572. ],
  5573. "translate": [
  5574. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5575. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5576. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5577. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5578. { "time": 2, "x": 0, "y": 0 }
  5579. ],
  5580. "scale": [
  5581. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5582. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5583. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5584. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5585. { "time": 2, "x": 1, "y": 1 }
  5586. ]
  5587. },
  5588. "bone31": {
  5589. "rotate": [
  5590. { "time": 0, "angle": 0 },
  5591. { "time": 0.5, "angle": 24.7 },
  5592. { "time": 1, "angle": 0 },
  5593. { "time": 1.5, "angle": 24.7 },
  5594. { "time": 2, "angle": 0 }
  5595. ],
  5596. "translate": [
  5597. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5598. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5599. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5600. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5601. { "time": 2, "x": 0, "y": 0 }
  5602. ],
  5603. "scale": [
  5604. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5605. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5606. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5607. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5608. { "time": 2, "x": 1, "y": 1 }
  5609. ]
  5610. },
  5611. "bone32": {
  5612. "rotate": [
  5613. { "time": 0, "angle": 0, "curve": "stepped" },
  5614. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5615. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5616. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5617. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5618. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5619. { "time": 1, "angle": 0, "curve": "stepped" },
  5620. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5621. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5622. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5623. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5624. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5625. { "time": 2, "angle": 0 }
  5626. ],
  5627. "translate": [
  5628. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5629. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5630. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5631. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5632. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5633. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5634. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5635. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5636. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5637. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5638. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5639. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5640. { "time": 2, "x": 0, "y": 0 }
  5641. ],
  5642. "scale": [
  5643. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5644. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5645. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5646. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5647. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5648. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5649. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5650. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5651. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5652. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5653. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5654. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5655. { "time": 2, "x": 1, "y": 1 }
  5656. ]
  5657. },
  5658. "bone33": {
  5659. "rotate": [
  5660. { "time": 0, "angle": 0 },
  5661. { "time": 0.5, "angle": 8.7 },
  5662. { "time": 1, "angle": 0 },
  5663. { "time": 1.5, "angle": 8.7 },
  5664. { "time": 2, "angle": 0 }
  5665. ],
  5666. "translate": [
  5667. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5668. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5669. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5670. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5671. { "time": 2, "x": 0, "y": 0 }
  5672. ],
  5673. "scale": [
  5674. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5675. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5676. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5677. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5678. { "time": 2, "x": 1, "y": 1 }
  5679. ]
  5680. },
  5681. "bone34": {
  5682. "rotate": [
  5683. { "time": 0, "angle": 0 },
  5684. { "time": 0.5, "angle": 8.7 },
  5685. { "time": 1, "angle": 0 },
  5686. { "time": 1.5, "angle": 8.7 },
  5687. { "time": 2, "angle": 0 }
  5688. ],
  5689. "translate": [
  5690. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5691. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5692. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5693. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5694. { "time": 2, "x": 0, "y": 0 }
  5695. ],
  5696. "scale": [
  5697. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5698. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5699. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5700. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5701. { "time": 2, "x": 1, "y": 1 }
  5702. ]
  5703. },
  5704. "bone35": {
  5705. "rotate": [
  5706. { "time": 0, "angle": 0 },
  5707. { "time": 0.5, "angle": 8.7 },
  5708. { "time": 1, "angle": 0 },
  5709. { "time": 1.5, "angle": 8.7 },
  5710. { "time": 2, "angle": 0 }
  5711. ],
  5712. "translate": [
  5713. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5714. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5715. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5716. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5717. { "time": 2, "x": 0, "y": 0 }
  5718. ],
  5719. "scale": [
  5720. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5721. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5722. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5723. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5724. { "time": 2, "x": 1, "y": 1 }
  5725. ]
  5726. },
  5727. "bone36": {
  5728. "rotate": [
  5729. { "time": 0, "angle": 0 },
  5730. { "time": 0.5, "angle": -3 },
  5731. { "time": 1, "angle": 0 },
  5732. { "time": 1.5, "angle": -3 },
  5733. { "time": 2, "angle": 0 }
  5734. ],
  5735. "translate": [
  5736. { "time": 0, "x": 0, "y": 0 },
  5737. { "time": 0.5, "x": 0.74, "y": 0.4 },
  5738. { "time": 1, "x": 0, "y": 0 },
  5739. { "time": 1.5, "x": 0.74, "y": 0.4 },
  5740. { "time": 2, "x": 0, "y": 0 }
  5741. ],
  5742. "scale": [
  5743. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5744. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5745. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5746. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5747. { "time": 2, "x": 1, "y": 1 }
  5748. ]
  5749. },
  5750. "bone37": {
  5751. "rotate": [
  5752. { "time": 0, "angle": 0 },
  5753. { "time": 0.5, "angle": -7.26 },
  5754. { "time": 1, "angle": 0 },
  5755. { "time": 1.5, "angle": -7.26 },
  5756. { "time": 2, "angle": 0 }
  5757. ],
  5758. "translate": [
  5759. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5760. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5761. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5762. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5763. { "time": 2, "x": 0, "y": 0 }
  5764. ],
  5765. "scale": [
  5766. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5767. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5768. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5769. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5770. { "time": 2, "x": 1, "y": 1 }
  5771. ]
  5772. },
  5773. "bone38": {
  5774. "rotate": [
  5775. { "time": 0, "angle": 0 },
  5776. { "time": 0.5, "angle": 1.23 },
  5777. { "time": 1, "angle": 0 },
  5778. { "time": 1.5, "angle": 1.23 },
  5779. { "time": 2, "angle": 0 }
  5780. ],
  5781. "translate": [
  5782. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5783. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5784. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5785. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5786. { "time": 2, "x": 0, "y": 0 }
  5787. ],
  5788. "scale": [
  5789. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5790. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5791. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5792. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5793. { "time": 2, "x": 1, "y": 1 }
  5794. ]
  5795. },
  5796. "bone39": {
  5797. "rotate": [
  5798. { "time": 0, "angle": 0 },
  5799. { "time": 0.5, "angle": -7.26 },
  5800. { "time": 1, "angle": 0 },
  5801. { "time": 1.5, "angle": -7.26 },
  5802. { "time": 2, "angle": 0 }
  5803. ],
  5804. "translate": [
  5805. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5806. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5807. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5808. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5809. { "time": 2, "x": 0, "y": 0 }
  5810. ],
  5811. "scale": [
  5812. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5813. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5814. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5815. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5816. { "time": 2, "x": 1, "y": 1 }
  5817. ]
  5818. },
  5819. "bone40": {
  5820. "rotate": [
  5821. { "time": 0, "angle": 0 },
  5822. { "time": 0.5, "angle": -7.26 },
  5823. { "time": 1, "angle": 0 },
  5824. { "time": 1.5, "angle": -7.26 },
  5825. { "time": 2, "angle": 0 }
  5826. ],
  5827. "translate": [
  5828. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5829. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5830. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5831. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5832. { "time": 2, "x": 0, "y": 0 }
  5833. ],
  5834. "scale": [
  5835. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5836. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5837. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5838. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5839. { "time": 2, "x": 1, "y": 1 }
  5840. ]
  5841. },
  5842. "bone41": {
  5843. "rotate": [
  5844. { "time": 0, "angle": 0 },
  5845. { "time": 0.5, "angle": 10.05 },
  5846. { "time": 1, "angle": 0 },
  5847. { "time": 1.5, "angle": 10.05 },
  5848. { "time": 2, "angle": 0 }
  5849. ],
  5850. "translate": [
  5851. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5852. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5853. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5854. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5855. { "time": 2, "x": 0, "y": 0 }
  5856. ],
  5857. "scale": [
  5858. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5859. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5860. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5861. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5862. { "time": 2, "x": 1, "y": 1 }
  5863. ]
  5864. },
  5865. "bone42": {
  5866. "rotate": [
  5867. { "time": 0, "angle": 0 },
  5868. { "time": 0.5, "angle": -3.01 },
  5869. { "time": 1, "angle": 0 },
  5870. { "time": 1.5, "angle": -3.01 },
  5871. { "time": 2, "angle": 0 }
  5872. ],
  5873. "translate": [
  5874. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5875. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5876. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5877. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5878. { "time": 2, "x": 0, "y": 0 }
  5879. ],
  5880. "scale": [
  5881. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5882. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5883. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5884. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5885. { "time": 2, "x": 1, "y": 1 }
  5886. ]
  5887. },
  5888. "bone43": {
  5889. "rotate": [
  5890. { "time": 0, "angle": 0 },
  5891. { "time": 0.5, "angle": -3.01 },
  5892. { "time": 1, "angle": 0 },
  5893. { "time": 1.5, "angle": -3.01 },
  5894. { "time": 2, "angle": 0 }
  5895. ],
  5896. "translate": [
  5897. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5898. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5899. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5900. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5901. { "time": 2, "x": 0, "y": 0 }
  5902. ],
  5903. "scale": [
  5904. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5905. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5906. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5907. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5908. { "time": 2, "x": 1, "y": 1 }
  5909. ]
  5910. },
  5911. "bone44": {
  5912. "rotate": [
  5913. { "time": 0, "angle": 0 },
  5914. { "time": 0.5, "angle": -3.01 },
  5915. { "time": 1, "angle": 0 },
  5916. { "time": 1.5, "angle": -3.01 },
  5917. { "time": 2, "angle": 0 }
  5918. ],
  5919. "translate": [
  5920. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5921. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5922. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5923. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5924. { "time": 2, "x": 0, "y": 0 }
  5925. ],
  5926. "scale": [
  5927. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5928. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5929. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5930. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5931. { "time": 2, "x": 1, "y": 1 }
  5932. ]
  5933. },
  5934. "bone45": {
  5935. "rotate": [
  5936. { "time": 0, "angle": 0, "curve": "stepped" },
  5937. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5938. { "time": 1, "angle": 0, "curve": "stepped" },
  5939. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5940. { "time": 2, "angle": 0 }
  5941. ],
  5942. "translate": [
  5943. { "time": 0, "x": 0, "y": 0 },
  5944. { "time": 0.5, "x": 0.37, "y": 0.02 },
  5945. { "time": 1, "x": 0, "y": 0 },
  5946. { "time": 1.5, "x": 0.37, "y": 0.02 },
  5947. { "time": 2, "x": 0, "y": 0 }
  5948. ],
  5949. "scale": [
  5950. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5951. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5952. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5953. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5954. { "time": 2, "x": 1, "y": 1 }
  5955. ]
  5956. },
  5957. "bone46": {
  5958. "rotate": [
  5959. { "time": 0, "angle": 0 },
  5960. { "time": 0.5, "angle": -2.75 },
  5961. { "time": 1, "angle": 0 },
  5962. { "time": 1.5, "angle": -2.75 },
  5963. { "time": 2, "angle": 0 }
  5964. ],
  5965. "translate": [
  5966. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5967. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5968. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5969. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5970. { "time": 2, "x": 0, "y": 0 }
  5971. ],
  5972. "scale": [
  5973. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5974. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5975. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5976. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5977. { "time": 2, "x": 1, "y": 1 }
  5978. ]
  5979. },
  5980. "bone47": {
  5981. "rotate": [
  5982. { "time": 0, "angle": 0 },
  5983. { "time": 0.5, "angle": -0.26 },
  5984. { "time": 1, "angle": 0 },
  5985. { "time": 1.5, "angle": -0.26 },
  5986. { "time": 2, "angle": 0 }
  5987. ],
  5988. "translate": [
  5989. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5990. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5991. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5992. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5993. { "time": 2, "x": 0, "y": 0 }
  5994. ],
  5995. "scale": [
  5996. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5997. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5998. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5999. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6000. { "time": 2, "x": 1, "y": 1 }
  6001. ]
  6002. },
  6003. "bone48": {
  6004. "rotate": [
  6005. { "time": 0, "angle": 0 },
  6006. { "time": 0.5, "angle": -0.16 },
  6007. { "time": 1, "angle": 0 },
  6008. { "time": 1.5, "angle": -0.26 },
  6009. { "time": 2, "angle": 0 }
  6010. ],
  6011. "translate": [
  6012. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6013. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6014. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6015. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6016. { "time": 2, "x": 0, "y": 0 }
  6017. ],
  6018. "scale": [
  6019. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6020. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6021. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6022. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6023. { "time": 2, "x": 1, "y": 1 }
  6024. ]
  6025. },
  6026. "bone49": {
  6027. "rotate": [
  6028. { "time": 0, "angle": 0 },
  6029. { "time": 0.5, "angle": -0.26 },
  6030. { "time": 1, "angle": 0 },
  6031. { "time": 1.5, "angle": -0.26 },
  6032. { "time": 2, "angle": 0 }
  6033. ],
  6034. "translate": [
  6035. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6036. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6037. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6038. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6039. { "time": 2, "x": 0, "y": 0 }
  6040. ],
  6041. "scale": [
  6042. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6043. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6044. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6045. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6046. { "time": 2, "x": 1, "y": 1 }
  6047. ]
  6048. },
  6049. "bone50": {
  6050. "rotate": [
  6051. { "time": 0, "angle": 0, "curve": "stepped" },
  6052. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6053. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6054. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6055. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6056. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6057. { "time": 1, "angle": 0, "curve": "stepped" },
  6058. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6059. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6060. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6061. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6062. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6063. { "time": 2, "angle": 0 }
  6064. ],
  6065. "translate": [
  6066. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6067. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6068. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6069. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6070. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6071. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6072. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6073. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6074. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6075. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6076. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6077. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6078. { "time": 2, "x": 0, "y": 0 }
  6079. ],
  6080. "scale": [
  6081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6082. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6083. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6084. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6085. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6086. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6087. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6088. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6089. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6090. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6091. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6092. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6093. { "time": 2, "x": 1, "y": 1 }
  6094. ]
  6095. },
  6096. "bone51": {
  6097. "rotate": [
  6098. { "time": 0, "angle": 0 },
  6099. { "time": 0.5, "angle": 9.97 },
  6100. { "time": 1, "angle": 0 },
  6101. { "time": 1.5, "angle": 9.97 },
  6102. { "time": 2, "angle": 0 }
  6103. ],
  6104. "translate": [
  6105. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6106. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6107. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6108. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6109. { "time": 2, "x": 0, "y": 0 }
  6110. ],
  6111. "scale": [
  6112. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6113. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6114. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6115. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6116. { "time": 2, "x": 1, "y": 1 }
  6117. ]
  6118. },
  6119. "bone52": {
  6120. "rotate": [
  6121. { "time": 0, "angle": 0 },
  6122. { "time": 0.5, "angle": 9.97 },
  6123. { "time": 1, "angle": 0 },
  6124. { "time": 1.5, "angle": 9.97 },
  6125. { "time": 2, "angle": 0 }
  6126. ],
  6127. "translate": [
  6128. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6129. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6130. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6131. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6132. { "time": 2, "x": 0, "y": 0 }
  6133. ],
  6134. "scale": [
  6135. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6136. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6137. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6138. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6139. { "time": 2, "x": 1, "y": 1 }
  6140. ]
  6141. },
  6142. "bone53": {
  6143. "rotate": [
  6144. { "time": 0, "angle": 0 },
  6145. { "time": 0.5, "angle": 9.97 },
  6146. { "time": 1, "angle": 0 },
  6147. { "time": 1.5, "angle": 9.97 },
  6148. { "time": 2, "angle": 0 }
  6149. ],
  6150. "translate": [
  6151. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6152. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6153. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6154. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6155. { "time": 2, "x": 0, "y": 0 }
  6156. ],
  6157. "scale": [
  6158. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6159. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6160. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6161. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6162. { "time": 2, "x": 1, "y": 1 }
  6163. ]
  6164. },
  6165. "bone54": {
  6166. "rotate": [
  6167. { "time": 0, "angle": 0, "curve": "stepped" },
  6168. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6169. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6170. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6171. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6172. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6173. { "time": 1, "angle": 0, "curve": "stepped" },
  6174. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  6175. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6176. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  6177. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6178. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6179. { "time": 2, "angle": 0 }
  6180. ],
  6181. "translate": [
  6182. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6183. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6184. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6185. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6186. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6187. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6188. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6189. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  6190. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6191. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  6192. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6193. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6194. { "time": 2, "x": 0, "y": 0 }
  6195. ],
  6196. "scale": [
  6197. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6198. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6199. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6200. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6201. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6202. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6203. { "time": 1, "x": 1, "y": 1 },
  6204. { "time": 1.0667, "x": 0.644, "y": 1, "curve": "stepped" },
  6205. { "time": 1.1333, "x": 0.644, "y": 1 },
  6206. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  6207. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6208. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6209. { "time": 2, "x": 1, "y": 1 }
  6210. ]
  6211. },
  6212. "bone55": {
  6213. "rotate": [
  6214. { "time": 0, "angle": 0, "curve": "stepped" },
  6215. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6216. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6217. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6218. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6219. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6220. { "time": 1, "angle": 0, "curve": "stepped" },
  6221. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  6222. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6223. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  6224. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6225. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6226. { "time": 2, "angle": 0 }
  6227. ],
  6228. "translate": [
  6229. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6230. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6231. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6232. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6233. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6234. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6235. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6236. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  6237. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  6238. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  6239. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6240. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6241. { "time": 2, "x": 0, "y": 0 }
  6242. ],
  6243. "scale": [
  6244. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6245. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6246. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6247. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6248. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6249. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6250. { "time": 1, "x": 1, "y": 1 },
  6251. { "time": 1.0667, "x": 0.622, "y": 1, "curve": "stepped" },
  6252. { "time": 1.1333, "x": 0.622, "y": 1 },
  6253. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  6254. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6255. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6256. { "time": 2, "x": 1, "y": 1 }
  6257. ]
  6258. },
  6259. "bone56": {
  6260. "rotate": [
  6261. { "time": 0, "angle": 0, "curve": "stepped" },
  6262. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6263. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6264. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6265. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6266. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6267. { "time": 1, "angle": 0, "curve": "stepped" },
  6268. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6269. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6270. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6271. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6272. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6273. { "time": 2, "angle": 0 }
  6274. ],
  6275. "translate": [
  6276. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6277. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6278. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6279. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6280. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6281. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6282. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6283. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6284. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6285. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6286. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6287. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6288. { "time": 2, "x": 0, "y": 0 }
  6289. ],
  6290. "scale": [
  6291. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6292. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6293. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6294. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6295. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6296. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6297. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6298. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6299. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6300. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6301. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6302. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6303. { "time": 2, "x": 1, "y": 1 }
  6304. ]
  6305. },
  6306. "bone57": {
  6307. "rotate": [
  6308. { "time": 0, "angle": 0, "curve": "stepped" },
  6309. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6310. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6311. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6312. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6313. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6314. { "time": 1, "angle": 0, "curve": "stepped" },
  6315. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  6316. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  6317. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  6318. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6319. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6320. { "time": 2, "angle": 0 }
  6321. ],
  6322. "translate": [
  6323. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6324. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6325. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6326. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6327. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6328. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6329. { "time": 1, "x": 0, "y": 0 },
  6330. { "time": 1.0667, "x": -1.13, "y": -0.08, "curve": "stepped" },
  6331. { "time": 1.1333, "x": -1.13, "y": -0.08 },
  6332. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  6333. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6334. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6335. { "time": 2, "x": 0, "y": 0 }
  6336. ],
  6337. "scale": [
  6338. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6339. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6340. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6341. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6342. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6343. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6344. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6345. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  6346. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  6347. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  6348. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6349. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6350. { "time": 2, "x": 1, "y": 1 }
  6351. ]
  6352. },
  6353. "bone58": {
  6354. "rotate": [
  6355. { "time": 0, "angle": 0, "curve": "stepped" },
  6356. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6357. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6358. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6359. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6360. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6361. { "time": 1, "angle": 0, "curve": "stepped" },
  6362. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6363. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6364. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6365. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6366. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6367. { "time": 2, "angle": 0 }
  6368. ],
  6369. "translate": [
  6370. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6371. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6372. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6373. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6374. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6375. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6376. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6377. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6378. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6379. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6380. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6381. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6382. { "time": 2, "x": 0, "y": 0 }
  6383. ],
  6384. "scale": [
  6385. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6386. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6387. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6388. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6389. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6390. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6391. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6392. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6393. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6394. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6395. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6396. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6397. { "time": 2, "x": 1, "y": 1 }
  6398. ]
  6399. },
  6400. "bone59": {
  6401. "rotate": [
  6402. { "time": 0, "angle": 0 }
  6403. ],
  6404. "translate": [
  6405. { "time": 0, "x": 25.65, "y": 5.4 }
  6406. ],
  6407. "scale": [
  6408. { "time": 0, "x": 1, "y": 1 }
  6409. ]
  6410. },
  6411. "bone61": {
  6412. "rotate": [
  6413. { "time": 0, "angle": 0 }
  6414. ],
  6415. "translate": [
  6416. { "time": 0, "x": 43.69, "y": -37.66 }
  6417. ],
  6418. "scale": [
  6419. { "time": 0, "x": 1, "y": 1 }
  6420. ]
  6421. },
  6422. "bone62": {
  6423. "rotate": [
  6424. { "time": 0, "angle": 0 }
  6425. ],
  6426. "translate": [
  6427. { "time": 0, "x": -41.86, "y": -54.54 }
  6428. ],
  6429. "scale": [
  6430. { "time": 0, "x": 1, "y": 1 }
  6431. ]
  6432. },
  6433. "bone60": {
  6434. "rotate": [
  6435. { "time": 0, "angle": 0 }
  6436. ],
  6437. "translate": [
  6438. { "time": 0, "x": -48.26, "y": -6.24 }
  6439. ],
  6440. "scale": [
  6441. { "time": 0, "x": 1, "y": 1 }
  6442. ]
  6443. }
  6444. },
  6445. "deform": {
  6446. "default": {
  6447. "kudang": {
  6448. "kudang": [
  6449. {
  6450. "time": 0,
  6451. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  6452. },
  6453. {
  6454. "time": 0.1667,
  6455. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  6456. },
  6457. {
  6458. "time": 0.2333,
  6459. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  6460. },
  6461. {
  6462. "time": 0.2667,
  6463. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  6464. },
  6465. {
  6466. "time": 0.3333,
  6467. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  6468. },
  6469. {
  6470. "time": 0.5,
  6471. "offset": 2,
  6472. "vertices": [ -1.71885, -1.6606 ]
  6473. },
  6474. {
  6475. "time": 0.6667,
  6476. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  6477. },
  6478. {
  6479. "time": 0.7333,
  6480. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  6481. },
  6482. {
  6483. "time": 0.8333,
  6484. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  6485. },
  6486. {
  6487. "time": 1,
  6488. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  6489. },
  6490. {
  6491. "time": 1.1667,
  6492. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  6493. },
  6494. {
  6495. "time": 1.2333,
  6496. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  6497. },
  6498. {
  6499. "time": 1.2667,
  6500. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  6501. },
  6502. {
  6503. "time": 1.3333,
  6504. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  6505. },
  6506. {
  6507. "time": 1.5,
  6508. "offset": 2,
  6509. "vertices": [ -1.71885, -1.6606 ]
  6510. },
  6511. {
  6512. "time": 1.6667,
  6513. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  6514. },
  6515. {
  6516. "time": 1.7333,
  6517. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  6518. },
  6519. {
  6520. "time": 1.8333,
  6521. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  6522. },
  6523. {
  6524. "time": 2,
  6525. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  6526. }
  6527. ]
  6528. },
  6529. "shenti": {
  6530. "shenti": [
  6531. { "time": 0 },
  6532. {
  6533. "time": 0.5,
  6534. "offset": 16,
  6535. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  6536. },
  6537. { "time": 1 },
  6538. {
  6539. "time": 1.5,
  6540. "offset": 16,
  6541. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  6542. },
  6543. { "time": 2 }
  6544. ]
  6545. },
  6546. "toufa1": {
  6547. "toufa1": [
  6548. { "time": 0 },
  6549. {
  6550. "time": 0.5,
  6551. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  6552. },
  6553. { "time": 1 },
  6554. {
  6555. "time": 1.5,
  6556. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  6557. },
  6558. { "time": 2 }
  6559. ]
  6560. },
  6561. "toufa9": {
  6562. "toufa9": [
  6563. {
  6564. "time": 0,
  6565. "vertices": [ 0.03189, 1.8477, 0.03189, 1.8477, 0.03189, 1.8477, 0.03189, 1.8477 ]
  6566. }
  6567. ]
  6568. },
  6569. "toufa10": {
  6570. "toufa10": [
  6571. { "time": 0 },
  6572. {
  6573. "time": 0.5,
  6574. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  6575. },
  6576. { "time": 1 },
  6577. {
  6578. "time": 1.5,
  6579. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  6580. },
  6581. { "time": 2 }
  6582. ]
  6583. },
  6584. "waitaoyou": {
  6585. "waitaoyou": [
  6586. {
  6587. "time": 0,
  6588. "offset": 38,
  6589. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  6590. },
  6591. { "time": 0.5 },
  6592. {
  6593. "time": 1,
  6594. "offset": 38,
  6595. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  6596. },
  6597. { "time": 1.5 },
  6598. {
  6599. "time": 2,
  6600. "offset": 38,
  6601. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  6602. }
  6603. ]
  6604. },
  6605. "waitaozuo": {
  6606. "waitaozuo": [
  6607. { "time": 0 },
  6608. {
  6609. "time": 0.5,
  6610. "offset": 32,
  6611. "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  6612. },
  6613. { "time": 1 },
  6614. {
  6615. "time": 1.5,
  6616. "offset": 32,
  6617. "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  6618. },
  6619. { "time": 2 }
  6620. ]
  6621. },
  6622. "youshou": {
  6623. "youshou": [
  6624. {
  6625. "time": 0,
  6626. "offset": 84,
  6627. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
  6628. "curve": "stepped"
  6629. },
  6630. {
  6631. "time": 1,
  6632. "offset": 84,
  6633. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
  6634. "curve": "stepped"
  6635. },
  6636. {
  6637. "time": 2,
  6638. "offset": 84,
  6639. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ]
  6640. }
  6641. ]
  6642. },
  6643. "youtui": {
  6644. "youtui": [
  6645. { "time": 0 },
  6646. {
  6647. "time": 0.5,
  6648. "offset": 80,
  6649. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  6650. },
  6651. { "time": 1 },
  6652. {
  6653. "time": 1.5,
  6654. "offset": 80,
  6655. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  6656. },
  6657. { "time": 2 }
  6658. ]
  6659. },
  6660. "zuotui": {
  6661. "zuotui": [
  6662. {
  6663. "time": 0,
  6664. "offset": 58,
  6665. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  6666. "curve": "stepped"
  6667. },
  6668. {
  6669. "time": 1,
  6670. "offset": 58,
  6671. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  6672. "curve": "stepped"
  6673. },
  6674. {
  6675. "time": 2,
  6676. "offset": 58,
  6677. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ]
  6678. }
  6679. ]
  6680. }
  6681. }
  6682. }
  6683. },
  6684. "walk2": {
  6685. "slots": {
  6686. "biyan": {
  6687. "attachment": [
  6688. { "time": 1.0667, "name": "biyan" },
  6689. { "time": 1.1333, "name": null },
  6690. { "time": 2.0667, "name": "biyan" },
  6691. { "time": 2.1333, "name": null },
  6692. { "time": 3.0667, "name": "biyan" },
  6693. { "time": 3.1333, "name": null },
  6694. { "time": 4.0667, "name": "biyan" },
  6695. { "time": 4.1333, "name": null },
  6696. { "time": 5.0667, "name": "biyan" },
  6697. { "time": 5.1333, "name": null }
  6698. ]
  6699. },
  6700. "bizui": {
  6701. "attachment": [
  6702. { "time": 0.6667, "name": "bizui" }
  6703. ]
  6704. },
  6705. "fuhao1": {
  6706. "color": [
  6707. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  6708. { "time": 1.1667, "color": "ffffff00" },
  6709. { "time": 1.2667, "color": "ffffffff", "curve": "stepped" },
  6710. { "time": 1.6667, "color": "ffffffff" },
  6711. { "time": 1.8667, "color": "ffffff00", "curve": "stepped" },
  6712. { "time": 2.0333, "color": "ffffff00", "curve": "stepped" },
  6713. { "time": 2.0667, "color": "ffffff00" },
  6714. { "time": 2.1667, "color": "ffffffff", "curve": "stepped" },
  6715. { "time": 2.5667, "color": "ffffffff" },
  6716. { "time": 2.7667, "color": "ffffff00", "curve": "stepped" },
  6717. { "time": 2.8333, "color": "ffffff00", "curve": "stepped" },
  6718. { "time": 2.8667, "color": "ffffff00" },
  6719. { "time": 2.9667, "color": "ffffffff", "curve": "stepped" },
  6720. { "time": 3.3667, "color": "ffffffff" },
  6721. { "time": 3.5667, "color": "ffffff00" }
  6722. ]
  6723. },
  6724. "fuhao7": {
  6725. "color": [
  6726. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  6727. { "time": 1, "color": "ffffff00" },
  6728. { "time": 1.0667, "color": "ffffffff", "curve": "stepped" },
  6729. { "time": 1.7, "color": "ffffffff" },
  6730. { "time": 1.8333, "color": "ffffff00", "curve": "stepped" },
  6731. { "time": 2.6667, "color": "ffffff00", "curve": "stepped" },
  6732. { "time": 2.7333, "color": "ffffff00" },
  6733. { "time": 2.8, "color": "ffffffff", "curve": "stepped" },
  6734. { "time": 3.4333, "color": "ffffffff" },
  6735. { "time": 3.5667, "color": "ffffff00" }
  6736. ]
  6737. },
  6738. "fuhao14": {
  6739. "color": [
  6740. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  6741. { "time": 1.3333, "color": "ffffff00" },
  6742. { "time": 1.4, "color": "ffffffff", "curve": "stepped" },
  6743. { "time": 1.9333, "color": "ffffffff" },
  6744. { "time": 2.0667, "color": "ffffff00", "curve": "stepped" },
  6745. { "time": 3.1667, "color": "ffffff00", "curve": "stepped" },
  6746. { "time": 3.2, "color": "ffffff00" },
  6747. { "time": 3.2667, "color": "ffffffff", "curve": "stepped" },
  6748. { "time": 3.8, "color": "ffffffff" },
  6749. { "time": 3.9333, "color": "ffffff00" }
  6750. ]
  6751. },
  6752. "fuhao16": {
  6753. "color": [
  6754. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  6755. { "time": 0.8, "color": "ffffff00" },
  6756. { "time": 0.9667, "color": "ffffffff", "curve": "stepped" },
  6757. { "time": 1.3333, "color": "ffffffff" },
  6758. { "time": 1.5, "color": "ffffff00", "curve": "stepped" },
  6759. { "time": 1.6333, "color": "ffffff00", "curve": "stepped" },
  6760. { "time": 1.6667, "color": "ffffff00" },
  6761. { "time": 1.8333, "color": "ffffffff", "curve": "stepped" },
  6762. { "time": 2.2, "color": "ffffffff" },
  6763. { "time": 2.3667, "color": "ffffff00", "curve": "stepped" },
  6764. { "time": 2.5, "color": "ffffff00" },
  6765. { "time": 2.6667, "color": "ffffffff", "curve": "stepped" },
  6766. { "time": 3.0333, "color": "ffffffff" },
  6767. { "time": 3.2, "color": "ffffff00", "curve": "stepped" },
  6768. { "time": 3.3333, "color": "ffffff00", "curve": "stepped" },
  6769. { "time": 3.3667, "color": "ffffff00" },
  6770. { "time": 3.5333, "color": "ffffffff", "curve": "stepped" },
  6771. { "time": 3.9, "color": "ffffffff" },
  6772. { "time": 4.0667, "color": "ffffff00" }
  6773. ]
  6774. },
  6775. "youyan": {
  6776. "attachment": [
  6777. { "time": 1.0667, "name": null },
  6778. { "time": 1.1333, "name": "youyan" },
  6779. { "time": 2.0667, "name": null },
  6780. { "time": 2.1333, "name": "youyan" },
  6781. { "time": 3.0667, "name": null },
  6782. { "time": 3.1333, "name": "youyan" },
  6783. { "time": 4.0667, "name": null },
  6784. { "time": 4.1333, "name": "youyan" },
  6785. { "time": 5.0667, "name": null },
  6786. { "time": 5.1333, "name": "youyan" }
  6787. ]
  6788. },
  6789. "zuiba": {
  6790. "attachment": [
  6791. { "time": 0.6667, "name": null },
  6792. { "time": 0.8333, "name": "zuiba" },
  6793. { "time": 1, "name": null },
  6794. { "time": 1.1667, "name": "zuiba" },
  6795. { "time": 1.3333, "name": null },
  6796. { "time": 1.5, "name": "zuiba" },
  6797. { "time": 1.6667, "name": null },
  6798. { "time": 1.8333, "name": "zuiba" },
  6799. { "time": 2, "name": null },
  6800. { "time": 2.1667, "name": "zuiba" },
  6801. { "time": 2.3333, "name": null },
  6802. { "time": 2.5, "name": "zuiba" },
  6803. { "time": 2.6667, "name": null },
  6804. { "time": 2.8333, "name": "zuiba" },
  6805. { "time": 3, "name": null },
  6806. { "time": 3.1667, "name": "zuiba" },
  6807. { "time": 3.3333, "name": null },
  6808. { "time": 3.5, "name": "zuiba" },
  6809. { "time": 3.6667, "name": null },
  6810. { "time": 3.8333, "name": "zuiba" },
  6811. { "time": 4, "name": null },
  6812. { "time": 4.1667, "name": "zuiba" }
  6813. ]
  6814. },
  6815. "zuoyan": {
  6816. "attachment": [
  6817. { "time": 1.0667, "name": null },
  6818. { "time": 1.1333, "name": "zuoyan" },
  6819. { "time": 2.0667, "name": null },
  6820. { "time": 2.1333, "name": "zuoyan" },
  6821. { "time": 3.0667, "name": null },
  6822. { "time": 3.1333, "name": "zuoyan" },
  6823. { "time": 4.0667, "name": null },
  6824. { "time": 4.1333, "name": "zuoyan" },
  6825. { "time": 5.0667, "name": null },
  6826. { "time": 5.1333, "name": "zuoyan" }
  6827. ]
  6828. }
  6829. },
  6830. "bones": {
  6831. "root": {
  6832. "rotate": [
  6833. { "time": 0, "angle": 0 }
  6834. ],
  6835. "translate": [
  6836. { "time": 0, "x": 0, "y": 0 }
  6837. ],
  6838. "scale": [
  6839. { "time": 0, "x": 0.65, "y": 0.65 }
  6840. ]
  6841. },
  6842. "bone": {
  6843. "rotate": [
  6844. { "time": 0, "angle": 0 }
  6845. ],
  6846. "translate": [
  6847. { "time": 0, "x": 0, "y": 2.18 },
  6848. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6849. { "time": 0.2667, "x": 0, "y": 0 },
  6850. { "time": 0.5, "x": 0, "y": 2.18 },
  6851. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6852. { "time": 0.7667, "x": 0, "y": 0 },
  6853. { "time": 1, "x": 0, "y": 2.18 },
  6854. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6855. { "time": 1.2667, "x": 0, "y": 0 },
  6856. { "time": 1.5, "x": 0, "y": 2.18 },
  6857. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6858. { "time": 1.7667, "x": 0, "y": 0 },
  6859. { "time": 2, "x": 0, "y": 2.18 },
  6860. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  6861. { "time": 2.2667, "x": 0, "y": 0 },
  6862. { "time": 2.5, "x": 0, "y": 2.18 },
  6863. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6864. { "time": 2.7667, "x": 0, "y": 0 },
  6865. { "time": 3, "x": 0, "y": 2.18 },
  6866. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  6867. { "time": 3.2667, "x": 0, "y": 0 },
  6868. { "time": 3.5, "x": 0, "y": 2.18 },
  6869. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  6870. { "time": 3.7667, "x": 0, "y": 0 },
  6871. { "time": 4, "x": 0, "y": 2.18 },
  6872. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  6873. { "time": 4.2667, "x": 0, "y": 0 },
  6874. { "time": 4.5, "x": 0, "y": 2.18 },
  6875. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  6876. { "time": 4.7667, "x": 0, "y": 0 },
  6877. { "time": 5, "x": 0, "y": 2.18 },
  6878. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  6879. { "time": 5.2667, "x": 0, "y": 0 },
  6880. { "time": 5.5, "x": 0, "y": 2.18 },
  6881. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  6882. { "time": 5.7667, "x": 0, "y": 0 },
  6883. { "time": 6, "x": 0, "y": 2.18 }
  6884. ],
  6885. "scale": [
  6886. { "time": 0, "x": 1, "y": 1 }
  6887. ]
  6888. },
  6889. "bone2": {
  6890. "rotate": [
  6891. { "time": 0, "angle": 0, "curve": "stepped" },
  6892. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6893. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6894. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6895. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6896. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6897. { "time": 1, "angle": 0, "curve": "stepped" },
  6898. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6899. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6900. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6901. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6902. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6903. { "time": 2, "angle": 0, "curve": "stepped" },
  6904. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  6905. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  6906. { "time": 2.5, "angle": 0, "curve": "stepped" },
  6907. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  6908. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  6909. { "time": 3, "angle": 0, "curve": "stepped" },
  6910. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  6911. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  6912. { "time": 3.5, "angle": 0, "curve": "stepped" },
  6913. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  6914. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  6915. { "time": 4, "angle": 0, "curve": "stepped" },
  6916. { "time": 4.1667, "angle": 0, "curve": "stepped" },
  6917. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  6918. { "time": 4.5, "angle": 0, "curve": "stepped" },
  6919. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  6920. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  6921. { "time": 5, "angle": 0, "curve": "stepped" },
  6922. { "time": 5.1667, "angle": 0, "curve": "stepped" },
  6923. { "time": 5.3333, "angle": 0, "curve": "stepped" },
  6924. { "time": 5.5, "angle": 0, "curve": "stepped" },
  6925. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  6926. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  6927. { "time": 6, "angle": 0 }
  6928. ],
  6929. "translate": [
  6930. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6931. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6932. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6933. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6934. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6935. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6936. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6937. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6938. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6939. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6940. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6941. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6942. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  6943. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  6944. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  6945. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  6946. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6947. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  6948. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  6949. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  6950. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6951. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  6952. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  6953. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  6954. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  6955. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  6956. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  6957. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  6958. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  6959. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  6960. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  6961. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  6962. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  6963. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  6964. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  6965. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  6966. { "time": 6, "x": 0, "y": 0 }
  6967. ],
  6968. "scale": [
  6969. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6970. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6971. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6972. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6973. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6974. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6975. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6976. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6977. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6978. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6979. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6980. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6981. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  6982. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  6983. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  6984. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  6985. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  6986. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  6987. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  6988. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  6989. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  6990. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  6991. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  6992. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  6993. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  6994. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  6995. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  6996. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  6997. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  6998. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  6999. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7000. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7001. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  7002. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7003. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  7004. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  7005. { "time": 6, "x": 1, "y": 1 }
  7006. ]
  7007. },
  7008. "bone3": {
  7009. "rotate": [
  7010. { "time": 0, "angle": 1.61, "curve": "stepped" },
  7011. { "time": 1, "angle": 1.61, "curve": "stepped" },
  7012. { "time": 2, "angle": 1.61, "curve": "stepped" },
  7013. { "time": 3, "angle": 1.61, "curve": "stepped" },
  7014. { "time": 4, "angle": 1.61, "curve": "stepped" },
  7015. { "time": 5, "angle": 1.61, "curve": "stepped" },
  7016. { "time": 6, "angle": 1.61 }
  7017. ],
  7018. "translate": [
  7019. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7020. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7021. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7022. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7023. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7024. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  7025. { "time": 6, "x": 0, "y": 0 }
  7026. ],
  7027. "scale": [
  7028. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7029. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7030. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7031. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7032. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7033. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7034. { "time": 6, "x": 1, "y": 1 }
  7035. ]
  7036. },
  7037. "bone4": {
  7038. "rotate": [
  7039. { "time": 0, "angle": 0, "curve": "stepped" },
  7040. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7041. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7042. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7043. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7044. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7045. { "time": 1, "angle": 0, "curve": "stepped" },
  7046. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7047. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7048. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7049. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7050. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7051. { "time": 2, "angle": 0, "curve": "stepped" },
  7052. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  7053. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  7054. { "time": 2.5, "angle": 0, "curve": "stepped" },
  7055. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  7056. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  7057. { "time": 3, "angle": 0, "curve": "stepped" },
  7058. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  7059. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  7060. { "time": 3.5, "angle": 0, "curve": "stepped" },
  7061. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  7062. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  7063. { "time": 4, "angle": 0, "curve": "stepped" },
  7064. { "time": 4.1667, "angle": 0, "curve": "stepped" },
  7065. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  7066. { "time": 4.5, "angle": 0, "curve": "stepped" },
  7067. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  7068. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  7069. { "time": 5, "angle": 0, "curve": "stepped" },
  7070. { "time": 5.1667, "angle": 0, "curve": "stepped" },
  7071. { "time": 5.3333, "angle": 0, "curve": "stepped" },
  7072. { "time": 5.5, "angle": 0, "curve": "stepped" },
  7073. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  7074. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  7075. { "time": 6, "angle": 0 }
  7076. ],
  7077. "translate": [
  7078. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7079. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7080. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7081. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7082. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7083. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7084. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7085. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7086. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7087. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7088. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7089. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7090. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7091. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  7092. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  7093. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  7094. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  7095. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7096. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7097. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  7098. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  7099. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  7100. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  7101. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7102. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7103. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  7104. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  7105. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  7106. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  7107. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7108. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  7109. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  7110. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  7111. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  7112. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  7113. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  7114. { "time": 6, "x": 0, "y": 0 }
  7115. ],
  7116. "scale": [
  7117. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7118. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7119. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7120. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7121. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7122. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7123. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7124. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7125. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7126. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7127. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7128. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7129. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7130. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  7131. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  7132. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  7133. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7134. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7135. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7136. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  7137. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7138. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  7139. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  7140. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7141. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7142. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  7143. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  7144. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  7145. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  7146. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7147. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7148. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7149. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  7150. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7151. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  7152. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  7153. { "time": 6, "x": 1, "y": 1 }
  7154. ]
  7155. },
  7156. "bone5": {
  7157. "rotate": [
  7158. { "time": 0, "angle": -10.72 },
  7159. { "time": 0.1667, "angle": -8.03 },
  7160. { "time": 0.3333, "angle": 7.5 },
  7161. { "time": 0.5, "angle": 22.39 },
  7162. { "time": 0.6667, "angle": 13.32 },
  7163. { "time": 0.8333, "angle": -6.02 },
  7164. { "time": 1, "angle": -10.72 },
  7165. { "time": 1.1667, "angle": -8.03 },
  7166. { "time": 1.3333, "angle": 7.5 },
  7167. { "time": 1.5, "angle": 22.39 },
  7168. { "time": 1.6667, "angle": 8.19 },
  7169. { "time": 1.8333, "angle": -6.02 },
  7170. { "time": 2, "angle": -10.72 },
  7171. { "time": 2.1667, "angle": -8.03 },
  7172. { "time": 2.3333, "angle": 7.5 },
  7173. { "time": 2.5, "angle": 22.39 },
  7174. { "time": 2.6667, "angle": 8.19 },
  7175. { "time": 2.8333, "angle": -6.02 },
  7176. { "time": 3, "angle": -10.72 },
  7177. { "time": 3.1667, "angle": -8.03 },
  7178. { "time": 3.3333, "angle": 7.5 },
  7179. { "time": 3.5, "angle": 22.39 },
  7180. { "time": 3.6667, "angle": 8.19 },
  7181. { "time": 3.8333, "angle": -6.02 },
  7182. { "time": 4, "angle": -10.72 },
  7183. { "time": 4.1667, "angle": -8.03 },
  7184. { "time": 4.3333, "angle": 7.5 },
  7185. { "time": 4.5, "angle": 22.39 },
  7186. { "time": 4.6667, "angle": 8.19 },
  7187. { "time": 4.8333, "angle": -6.02 },
  7188. { "time": 5, "angle": -10.72 },
  7189. { "time": 5.1667, "angle": -8.03 },
  7190. { "time": 5.3333, "angle": 7.5 },
  7191. { "time": 5.5, "angle": 22.39 },
  7192. { "time": 5.6667, "angle": 8.19 },
  7193. { "time": 5.8333, "angle": -6.02 },
  7194. { "time": 6, "angle": -10.72 }
  7195. ],
  7196. "translate": [
  7197. { "time": 0, "x": -0.82, "y": -1.81 },
  7198. { "time": 0.1667, "x": 2.67, "y": -0.26 },
  7199. { "time": 0.3333, "x": 12.94, "y": -2.35 },
  7200. { "time": 0.5, "x": 19.17, "y": 0.63 },
  7201. { "time": 0.6667, "x": 12.78, "y": 0.42 },
  7202. { "time": 0.8333, "x": 5.18, "y": 2.25 },
  7203. { "time": 1, "x": -0.82, "y": -1.81 },
  7204. { "time": 1.1667, "x": 2.67, "y": -0.26 },
  7205. { "time": 1.3333, "x": 12.94, "y": -2.35 },
  7206. { "time": 1.5, "x": 19.17, "y": 0.63 },
  7207. { "time": 1.6667, "x": 12.78, "y": 0.42 },
  7208. { "time": 1.8333, "x": 5.18, "y": 2.25 },
  7209. { "time": 2, "x": -0.82, "y": -1.81 },
  7210. { "time": 2.1667, "x": 2.67, "y": -0.26 },
  7211. { "time": 2.3333, "x": 12.94, "y": -2.35 },
  7212. { "time": 2.5, "x": 19.17, "y": 0.63 },
  7213. { "time": 2.6667, "x": 12.78, "y": 0.42 },
  7214. { "time": 2.8333, "x": 5.18, "y": 2.25 },
  7215. { "time": 3, "x": -0.82, "y": -1.81 },
  7216. { "time": 3.1667, "x": 2.67, "y": -0.26 },
  7217. { "time": 3.3333, "x": 12.94, "y": -2.35 },
  7218. { "time": 3.5, "x": 19.17, "y": 0.63 },
  7219. { "time": 3.6667, "x": 12.78, "y": 0.42 },
  7220. { "time": 3.8333, "x": 5.18, "y": 2.25 },
  7221. { "time": 4, "x": -0.82, "y": -1.81 },
  7222. { "time": 4.1667, "x": 2.67, "y": -0.26 },
  7223. { "time": 4.3333, "x": 12.94, "y": -2.35 },
  7224. { "time": 4.5, "x": 19.17, "y": 0.63 },
  7225. { "time": 4.6667, "x": 12.78, "y": 0.42 },
  7226. { "time": 4.8333, "x": 5.18, "y": 2.25 },
  7227. { "time": 5, "x": -0.82, "y": -1.81 },
  7228. { "time": 5.1667, "x": 2.67, "y": -0.26 },
  7229. { "time": 5.3333, "x": 12.94, "y": -2.35 },
  7230. { "time": 5.5, "x": 19.17, "y": 0.63 },
  7231. { "time": 5.6667, "x": 12.78, "y": 0.42 },
  7232. { "time": 5.8333, "x": 5.18, "y": 2.25 },
  7233. { "time": 6, "x": -0.82, "y": -1.81 }
  7234. ],
  7235. "scale": [
  7236. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7237. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7238. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7239. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7240. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7241. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7242. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7243. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7244. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7245. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7246. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7247. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7248. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7249. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  7250. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  7251. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  7252. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7253. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7254. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7255. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  7256. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7257. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  7258. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  7259. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7260. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7261. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  7262. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  7263. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  7264. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  7265. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7266. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7267. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7268. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  7269. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7270. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  7271. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  7272. { "time": 6, "x": 1, "y": 1 }
  7273. ]
  7274. },
  7275. "bone6": {
  7276. "rotate": [
  7277. { "time": 0, "angle": 0 },
  7278. { "time": 0.1667, "angle": 14.37 },
  7279. { "time": 0.3333, "angle": 1.27 },
  7280. { "time": 0.5, "angle": 27.15 },
  7281. { "time": 0.6667, "angle": 44.05 },
  7282. { "time": 0.8333, "angle": 29.43 },
  7283. { "time": 1, "angle": 0 },
  7284. { "time": 1.1667, "angle": 14.37 },
  7285. { "time": 1.3333, "angle": 1.27 },
  7286. { "time": 1.5, "angle": 27.15 },
  7287. { "time": 1.6667, "angle": 44.05 },
  7288. { "time": 1.8333, "angle": 29.43 },
  7289. { "time": 2, "angle": 0 },
  7290. { "time": 2.1667, "angle": 14.37 },
  7291. { "time": 2.3333, "angle": 1.27 },
  7292. { "time": 2.5, "angle": 27.15 },
  7293. { "time": 2.6667, "angle": 44.05 },
  7294. { "time": 2.8333, "angle": 29.43 },
  7295. { "time": 3, "angle": 0 },
  7296. { "time": 3.1667, "angle": 14.37 },
  7297. { "time": 3.3333, "angle": 1.27 },
  7298. { "time": 3.5, "angle": 27.15 },
  7299. { "time": 3.6667, "angle": 44.05 },
  7300. { "time": 3.8333, "angle": 29.43 },
  7301. { "time": 4, "angle": 0 },
  7302. { "time": 4.1667, "angle": 14.37 },
  7303. { "time": 4.3333, "angle": 1.27 },
  7304. { "time": 4.5, "angle": 27.15 },
  7305. { "time": 4.6667, "angle": 44.05 },
  7306. { "time": 4.8333, "angle": 29.43 },
  7307. { "time": 5, "angle": 0 },
  7308. { "time": 5.1667, "angle": 14.37 },
  7309. { "time": 5.3333, "angle": 1.27 },
  7310. { "time": 5.5, "angle": 27.15 },
  7311. { "time": 5.6667, "angle": 44.05 },
  7312. { "time": 5.8333, "angle": 29.43 },
  7313. { "time": 6, "angle": 0 }
  7314. ],
  7315. "translate": [
  7316. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7317. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7318. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7319. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7320. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7321. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7322. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7323. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7324. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7325. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7326. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7327. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7328. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7329. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  7330. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  7331. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  7332. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  7333. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7334. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7335. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  7336. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  7337. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  7338. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  7339. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7340. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7341. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  7342. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  7343. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  7344. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  7345. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7346. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  7347. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  7348. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  7349. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  7350. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  7351. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  7352. { "time": 6, "x": 0, "y": 0 }
  7353. ],
  7354. "scale": [
  7355. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7356. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7357. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7358. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7359. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7360. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7361. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7362. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7363. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7364. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7365. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7366. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7367. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7368. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  7369. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  7370. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  7371. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7372. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7373. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7374. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  7375. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7376. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  7377. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  7378. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7379. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7380. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  7381. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  7382. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  7383. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  7384. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7385. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7386. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7387. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  7388. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7389. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  7390. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  7391. { "time": 6, "x": 1, "y": 1 }
  7392. ]
  7393. },
  7394. "bone7": {
  7395. "rotate": [
  7396. { "time": 0, "angle": -9.16 },
  7397. { "time": 0.1667, "angle": -3.65 },
  7398. { "time": 0.3333, "angle": -13.75 },
  7399. { "time": 0.5, "angle": 0 },
  7400. { "time": 0.6667, "angle": -17.88 },
  7401. { "time": 0.8333, "angle": 0 },
  7402. { "time": 1, "angle": -9.16 },
  7403. { "time": 1.1667, "angle": -3.65 },
  7404. { "time": 1.3333, "angle": -13.75 },
  7405. { "time": 1.5, "angle": 0 },
  7406. { "time": 1.6667, "angle": -17.88 },
  7407. { "time": 1.8333, "angle": 0 },
  7408. { "time": 2, "angle": -9.16 },
  7409. { "time": 2.1667, "angle": -3.65 },
  7410. { "time": 2.3333, "angle": -13.75 },
  7411. { "time": 2.5, "angle": 0 },
  7412. { "time": 2.6667, "angle": -17.88 },
  7413. { "time": 2.8333, "angle": 0 },
  7414. { "time": 3, "angle": -9.16 },
  7415. { "time": 3.1667, "angle": -3.65 },
  7416. { "time": 3.3333, "angle": -13.75 },
  7417. { "time": 3.5, "angle": 0 },
  7418. { "time": 3.6667, "angle": -17.88 },
  7419. { "time": 3.8333, "angle": 0 },
  7420. { "time": 4, "angle": -9.16 },
  7421. { "time": 4.1667, "angle": -3.65 },
  7422. { "time": 4.3333, "angle": -13.75 },
  7423. { "time": 4.5, "angle": 0 },
  7424. { "time": 4.6667, "angle": -17.88 },
  7425. { "time": 4.8333, "angle": 0 },
  7426. { "time": 5, "angle": -9.16 },
  7427. { "time": 5.1667, "angle": -3.65 },
  7428. { "time": 5.3333, "angle": -13.75 },
  7429. { "time": 5.5, "angle": 0 },
  7430. { "time": 5.6667, "angle": -17.88 },
  7431. { "time": 5.8333, "angle": 0 },
  7432. { "time": 6, "angle": -9.16 }
  7433. ],
  7434. "translate": [
  7435. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7436. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7437. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7438. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7439. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7440. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7441. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7442. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7443. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7444. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7445. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7446. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7447. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7448. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  7449. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  7450. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  7451. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  7452. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7453. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7454. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  7455. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  7456. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  7457. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  7458. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7459. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7460. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  7461. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  7462. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  7463. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  7464. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7465. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  7466. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  7467. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  7468. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  7469. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  7470. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  7471. { "time": 6, "x": 0, "y": 0 }
  7472. ],
  7473. "scale": [
  7474. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7475. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7476. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7477. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7478. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7479. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7480. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7481. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7482. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7483. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7484. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7485. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7486. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7487. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  7488. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  7489. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  7490. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7491. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7492. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7493. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  7494. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7495. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  7496. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  7497. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7498. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7499. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  7500. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  7501. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  7502. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  7503. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7504. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7505. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7506. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  7507. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7508. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  7509. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  7510. { "time": 6, "x": 1, "y": 1 }
  7511. ]
  7512. },
  7513. "bone8": {
  7514. "rotate": [
  7515. { "time": 0, "angle": 22.51 },
  7516. { "time": 0.1667, "angle": 5.96 },
  7517. { "time": 0.3333, "angle": -10.59 },
  7518. { "time": 0.5, "angle": -27.14 },
  7519. { "time": 0.6667, "angle": -10.59 },
  7520. { "time": 0.8333, "angle": 9.2 },
  7521. { "time": 1, "angle": 22.51 },
  7522. { "time": 1.1667, "angle": 5.96 },
  7523. { "time": 1.3333, "angle": -10.59 },
  7524. { "time": 1.5, "angle": -27.14 },
  7525. { "time": 1.6667, "angle": -10.59 },
  7526. { "time": 1.8333, "angle": 9.2 },
  7527. { "time": 2, "angle": 22.51 },
  7528. { "time": 2.1667, "angle": 5.96 },
  7529. { "time": 2.3333, "angle": -10.59 },
  7530. { "time": 2.5, "angle": -27.14 },
  7531. { "time": 2.6667, "angle": -10.59 },
  7532. { "time": 2.8333, "angle": 9.2 },
  7533. { "time": 3, "angle": 22.51 },
  7534. { "time": 3.1667, "angle": 5.96 },
  7535. { "time": 3.3333, "angle": -10.59 },
  7536. { "time": 3.5, "angle": -27.14 },
  7537. { "time": 3.6667, "angle": -10.59 },
  7538. { "time": 3.8333, "angle": 9.2 },
  7539. { "time": 4, "angle": 22.51 },
  7540. { "time": 4.1667, "angle": 5.96 },
  7541. { "time": 4.3333, "angle": -10.59 },
  7542. { "time": 4.5, "angle": -27.14 },
  7543. { "time": 4.6667, "angle": -10.59 },
  7544. { "time": 4.8333, "angle": 9.2 },
  7545. { "time": 5, "angle": 22.51 },
  7546. { "time": 5.1667, "angle": 5.96 },
  7547. { "time": 5.3333, "angle": -10.59 },
  7548. { "time": 5.5, "angle": -27.14 },
  7549. { "time": 5.6667, "angle": -10.59 },
  7550. { "time": 5.8333, "angle": 9.2 },
  7551. { "time": 6, "angle": 22.51 }
  7552. ],
  7553. "translate": [
  7554. { "time": 0, "x": 0, "y": 0 },
  7555. { "time": 0.1667, "x": -6.7, "y": -0.56 },
  7556. { "time": 0.3333, "x": -15.71, "y": -0.36 },
  7557. { "time": 0.5, "x": -17.88, "y": -0.93 },
  7558. { "time": 0.6667, "x": -14.78, "y": -0.45 },
  7559. { "time": 0.8333, "x": -5.79, "y": -0.38 },
  7560. { "time": 1, "x": 0, "y": 0 },
  7561. { "time": 1.1667, "x": -6.7, "y": -0.56 },
  7562. { "time": 1.3333, "x": -15.71, "y": -0.36 },
  7563. { "time": 1.5, "x": -17.88, "y": -0.93 },
  7564. { "time": 1.6667, "x": -14.78, "y": -0.45 },
  7565. { "time": 1.8333, "x": -5.79, "y": -0.38 },
  7566. { "time": 2, "x": 0, "y": 0 },
  7567. { "time": 2.1667, "x": -6.7, "y": -0.56 },
  7568. { "time": 2.3333, "x": -15.71, "y": -0.36 },
  7569. { "time": 2.5, "x": -17.88, "y": -0.93 },
  7570. { "time": 2.6667, "x": -14.78, "y": -0.45 },
  7571. { "time": 2.8333, "x": -5.79, "y": -0.38 },
  7572. { "time": 3, "x": 0, "y": 0 },
  7573. { "time": 3.1667, "x": -6.7, "y": -0.56 },
  7574. { "time": 3.3333, "x": -15.71, "y": -0.36 },
  7575. { "time": 3.5, "x": -17.88, "y": -0.93 },
  7576. { "time": 3.6667, "x": -14.78, "y": -0.45 },
  7577. { "time": 3.8333, "x": -5.79, "y": -0.38 },
  7578. { "time": 4, "x": 0, "y": 0 },
  7579. { "time": 4.1667, "x": -6.7, "y": -0.56 },
  7580. { "time": 4.3333, "x": -15.71, "y": -0.36 },
  7581. { "time": 4.5, "x": -17.88, "y": -0.93 },
  7582. { "time": 4.6667, "x": -14.78, "y": -0.45 },
  7583. { "time": 4.8333, "x": -5.79, "y": -0.38 },
  7584. { "time": 5, "x": 0, "y": 0 },
  7585. { "time": 5.1667, "x": -6.7, "y": -0.56 },
  7586. { "time": 5.3333, "x": -15.71, "y": -0.36 },
  7587. { "time": 5.5, "x": -17.88, "y": -0.93 },
  7588. { "time": 5.6667, "x": -14.78, "y": -0.45 },
  7589. { "time": 5.8333, "x": -5.79, "y": -0.38 },
  7590. { "time": 6, "x": 0, "y": 0 }
  7591. ],
  7592. "scale": [
  7593. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7594. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7595. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7596. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7597. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7598. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7599. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7600. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7601. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7602. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7603. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7604. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7605. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7606. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  7607. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  7608. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  7609. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7610. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7611. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7612. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  7613. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7614. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  7615. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  7616. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7617. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7618. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  7619. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  7620. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  7621. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  7622. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7623. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7624. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7625. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  7626. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7627. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  7628. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  7629. { "time": 6, "x": 1, "y": 1 }
  7630. ]
  7631. },
  7632. "bone9": {
  7633. "rotate": [
  7634. { "time": 0, "angle": 15.57 },
  7635. { "time": 0.1667, "angle": 39.42 },
  7636. { "time": 0.3333, "angle": 37.74 },
  7637. { "time": 0.5, "angle": 4.94 },
  7638. { "time": 0.6667, "angle": 8.49 },
  7639. { "time": 0.8333, "angle": 1.81 },
  7640. { "time": 1, "angle": 15.57 },
  7641. { "time": 1.1667, "angle": 39.42 },
  7642. { "time": 1.3333, "angle": 37.74 },
  7643. { "time": 1.5, "angle": 4.94 },
  7644. { "time": 1.6667, "angle": 8.49 },
  7645. { "time": 1.8333, "angle": 1.81 },
  7646. { "time": 2, "angle": 15.57 },
  7647. { "time": 2.1667, "angle": 39.42 },
  7648. { "time": 2.3333, "angle": 37.74 },
  7649. { "time": 2.5, "angle": 4.94 },
  7650. { "time": 2.6667, "angle": 8.49 },
  7651. { "time": 2.8333, "angle": 1.81 },
  7652. { "time": 3, "angle": 15.57 },
  7653. { "time": 3.1667, "angle": 39.42 },
  7654. { "time": 3.3333, "angle": 37.74 },
  7655. { "time": 3.5, "angle": 4.94 },
  7656. { "time": 3.6667, "angle": 8.49 },
  7657. { "time": 3.8333, "angle": 1.81 },
  7658. { "time": 4, "angle": 15.57 },
  7659. { "time": 4.1667, "angle": 39.42 },
  7660. { "time": 4.3333, "angle": 37.74 },
  7661. { "time": 4.5, "angle": 4.94 },
  7662. { "time": 4.6667, "angle": 8.49 },
  7663. { "time": 4.8333, "angle": 1.81 },
  7664. { "time": 5, "angle": 15.57 },
  7665. { "time": 5.1667, "angle": 39.42 },
  7666. { "time": 5.3333, "angle": 37.74 },
  7667. { "time": 5.5, "angle": 4.94 },
  7668. { "time": 5.6667, "angle": 8.49 },
  7669. { "time": 5.8333, "angle": 1.81 },
  7670. { "time": 6, "angle": 15.57 }
  7671. ],
  7672. "translate": [
  7673. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7674. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7675. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7676. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7677. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7678. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7679. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7680. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7681. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7682. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7683. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7684. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7685. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7686. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  7687. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  7688. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  7689. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  7690. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7691. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7692. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  7693. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  7694. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  7695. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  7696. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7697. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7698. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  7699. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  7700. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  7701. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  7702. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7703. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  7704. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  7705. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  7706. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  7707. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  7708. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  7709. { "time": 6, "x": 0, "y": 0 }
  7710. ],
  7711. "scale": [
  7712. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7713. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7714. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7715. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7716. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7717. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7718. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7719. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7720. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7721. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7722. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7723. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7724. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7725. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  7726. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  7727. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  7728. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7729. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7730. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7731. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  7732. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7733. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  7734. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  7735. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7736. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7737. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  7738. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  7739. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  7740. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  7741. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7742. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7743. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7744. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  7745. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7746. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  7747. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  7748. { "time": 6, "x": 1, "y": 1 }
  7749. ]
  7750. },
  7751. "bone10": {
  7752. "rotate": [
  7753. { "time": 0, "angle": 0, "curve": "stepped" },
  7754. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7755. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7756. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7757. { "time": 0.6667, "angle": 0 },
  7758. { "time": 0.8333, "angle": 1.8 },
  7759. { "time": 1, "angle": 0, "curve": "stepped" },
  7760. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7761. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7762. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7763. { "time": 1.6667, "angle": 0 },
  7764. { "time": 1.8333, "angle": 1.8 },
  7765. { "time": 2, "angle": 0, "curve": "stepped" },
  7766. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  7767. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  7768. { "time": 2.5, "angle": 0, "curve": "stepped" },
  7769. { "time": 2.6667, "angle": 0 },
  7770. { "time": 2.8333, "angle": 1.8 },
  7771. { "time": 3, "angle": 0, "curve": "stepped" },
  7772. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  7773. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  7774. { "time": 3.5, "angle": 0, "curve": "stepped" },
  7775. { "time": 3.6667, "angle": 0 },
  7776. { "time": 3.8333, "angle": 1.8 },
  7777. { "time": 4, "angle": 0, "curve": "stepped" },
  7778. { "time": 4.1667, "angle": 0, "curve": "stepped" },
  7779. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  7780. { "time": 4.5, "angle": 0, "curve": "stepped" },
  7781. { "time": 4.6667, "angle": 0 },
  7782. { "time": 4.8333, "angle": 1.8 },
  7783. { "time": 5, "angle": 0, "curve": "stepped" },
  7784. { "time": 5.1667, "angle": 0, "curve": "stepped" },
  7785. { "time": 5.3333, "angle": 0, "curve": "stepped" },
  7786. { "time": 5.5, "angle": 0, "curve": "stepped" },
  7787. { "time": 5.6667, "angle": 0 },
  7788. { "time": 5.8333, "angle": 1.8 },
  7789. { "time": 6, "angle": 0 }
  7790. ],
  7791. "translate": [
  7792. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7793. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7794. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7795. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7796. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7797. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7798. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7799. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7800. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7801. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7802. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7803. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7804. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  7805. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  7806. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  7807. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  7808. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  7809. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  7810. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  7811. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  7812. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  7813. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  7814. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  7815. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  7816. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  7817. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  7818. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  7819. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  7820. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  7821. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  7822. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  7823. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  7824. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  7825. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  7826. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  7827. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  7828. { "time": 6, "x": 0, "y": 0 }
  7829. ],
  7830. "scale": [
  7831. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7832. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7833. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7834. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7835. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7836. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7837. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7838. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7839. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7840. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7841. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7842. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7843. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  7844. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  7845. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  7846. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  7847. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  7848. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  7849. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  7850. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  7851. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  7852. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  7853. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  7854. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  7855. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  7856. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  7857. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  7858. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  7859. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  7860. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  7861. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  7862. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7863. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  7864. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7865. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  7866. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  7867. { "time": 6, "x": 1, "y": 1 }
  7868. ]
  7869. },
  7870. "bone11": {
  7871. "rotate": [
  7872. {
  7873. "time": 0,
  7874. "angle": -314.13,
  7875. "curve": [ 0.25, 0, 0.75, 1 ]
  7876. },
  7877. {
  7878. "time": 0.3333,
  7879. "angle": 12.05,
  7880. "curve": [ 0.271, 0, 0.619, 0.41 ]
  7881. },
  7882. { "time": 0.6667, "angle": 21.17, "curve": "stepped" },
  7883. {
  7884. "time": 4.3333,
  7885. "angle": 21.17,
  7886. "curve": [ 0.342, 0.36, 0.757, 1 ]
  7887. },
  7888. {
  7889. "time": 5.1667,
  7890. "angle": -314.13,
  7891. "curve": [ 0.25, 0, 0.75, 1 ]
  7892. },
  7893. {
  7894. "time": 5.5,
  7895. "angle": 12.05,
  7896. "curve": [ 0.25, 0, 0.75, 1 ]
  7897. },
  7898. { "time": 6, "angle": -314.13 }
  7899. ],
  7900. "translate": [
  7901. {
  7902. "time": 0,
  7903. "x": -3.85,
  7904. "y": -15.51,
  7905. "curve": [ 0.25, 0, 0.75, 1 ]
  7906. },
  7907. { "time": 0.3333, "x": -0.05, "y": -0.74, "curve": "stepped" },
  7908. {
  7909. "time": 4.3333,
  7910. "x": -0.05,
  7911. "y": -0.74,
  7912. "curve": [ 0.25, 0, 0.75, 1 ]
  7913. },
  7914. {
  7915. "time": 5.1667,
  7916. "x": -3.85,
  7917. "y": -15.51,
  7918. "curve": [ 0.25, 0, 0.75, 1 ]
  7919. },
  7920. {
  7921. "time": 5.5,
  7922. "x": -0.05,
  7923. "y": -0.74,
  7924. "curve": [ 0.25, 0, 0.75, 1 ]
  7925. },
  7926. { "time": 6, "x": -3.85, "y": -15.51 }
  7927. ],
  7928. "scale": [
  7929. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7930. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7931. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7932. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7933. { "time": 6, "x": 1, "y": 1 }
  7934. ]
  7935. },
  7936. "bone12": {
  7937. "rotate": [
  7938. {
  7939. "time": 0,
  7940. "angle": -28.67,
  7941. "curve": [ 0.25, 0, 0.75, 1 ]
  7942. },
  7943. { "time": 0.6667, "angle": -91.5, "curve": "stepped" },
  7944. {
  7945. "time": 4.3333,
  7946. "angle": -91.5,
  7947. "curve": [ 0.351, 0.4, 0.757, 1 ]
  7948. },
  7949. {
  7950. "time": 4.7333,
  7951. "angle": 12.05,
  7952. "curve": [ 0.271, 0, 0.619, 0.41 ]
  7953. },
  7954. {
  7955. "time": 5.1667,
  7956. "angle": -28.67,
  7957. "curve": [ 0.25, 0, 0.75, 1 ]
  7958. },
  7959. {
  7960. "time": 5.5,
  7961. "angle": -10.22,
  7962. "curve": [ 0.25, 0, 0.75, 1 ]
  7963. },
  7964. { "time": 6, "angle": -28.67 }
  7965. ],
  7966. "translate": [
  7967. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7968. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  7969. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  7970. { "time": 6, "x": 0, "y": 0 }
  7971. ],
  7972. "scale": [
  7973. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7974. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7975. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7976. { "time": 6, "x": 1, "y": 1 }
  7977. ]
  7978. },
  7979. "bone13": {
  7980. "rotate": [
  7981. { "time": 0, "angle": 0 },
  7982. { "time": 0.6667, "angle": -31.95, "curve": "stepped" },
  7983. { "time": 4.3333, "angle": -31.95 },
  7984. { "time": 5.1667, "angle": 0 },
  7985. { "time": 5.5, "angle": -18.7 },
  7986. { "time": 6, "angle": 0 }
  7987. ],
  7988. "translate": [
  7989. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7990. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  7991. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  7992. { "time": 6, "x": 0, "y": 0 }
  7993. ],
  7994. "scale": [
  7995. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7996. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  7997. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  7998. { "time": 6, "x": 1, "y": 1 }
  7999. ]
  8000. },
  8001. "bone14": {
  8002. "rotate": [
  8003. { "time": 0, "angle": 289.81 },
  8004. { "time": 0.1667, "angle": -51.72 },
  8005. { "time": 0.3333, "angle": -28.9 },
  8006. { "time": 0.5, "angle": -10.59 },
  8007. { "time": 0.6667, "angle": -28.9 },
  8008. { "time": 0.8333, "angle": -51.72 },
  8009. { "time": 1, "angle": 289.81 },
  8010. { "time": 1.1667, "angle": -51.72 },
  8011. { "time": 1.3333, "angle": -28.9 },
  8012. { "time": 1.5, "angle": -10.59 },
  8013. { "time": 1.6667, "angle": -28.9 },
  8014. { "time": 1.8333, "angle": -51.72 },
  8015. { "time": 2, "angle": 289.81 },
  8016. { "time": 2.1667, "angle": -51.72 },
  8017. { "time": 2.3333, "angle": -28.9 },
  8018. { "time": 2.5, "angle": -10.59 },
  8019. { "time": 2.6667, "angle": -28.9 },
  8020. { "time": 2.8333, "angle": -51.72 },
  8021. { "time": 3, "angle": 289.81 },
  8022. { "time": 3.1667, "angle": -51.72 },
  8023. { "time": 3.3333, "angle": -28.9 },
  8024. { "time": 3.5, "angle": -10.59 },
  8025. { "time": 3.6667, "angle": -28.9 },
  8026. { "time": 3.8333, "angle": -51.72 },
  8027. { "time": 4, "angle": 289.81 },
  8028. { "time": 4.1667, "angle": -51.72 },
  8029. { "time": 4.3333, "angle": -28.9 },
  8030. { "time": 4.5, "angle": -10.59 },
  8031. { "time": 4.6667, "angle": -28.9 },
  8032. { "time": 4.8333, "angle": -51.72 },
  8033. { "time": 5, "angle": 289.81 },
  8034. { "time": 5.1667, "angle": -51.72 },
  8035. { "time": 5.3333, "angle": -28.9 },
  8036. { "time": 5.5, "angle": -10.59 },
  8037. { "time": 5.6667, "angle": -28.9 },
  8038. { "time": 5.8333, "angle": -51.72 },
  8039. { "time": 6, "angle": 289.81 }
  8040. ],
  8041. "translate": [
  8042. { "time": 0, "x": -5.94, "y": 7.98 },
  8043. { "time": 0.1667, "x": -4.57, "y": 6.49 },
  8044. { "time": 0.3333, "x": -3.21, "y": 5 },
  8045. { "time": 0.5, "x": -1.85, "y": 3.51 },
  8046. { "time": 0.6667, "x": -3.21, "y": 5 },
  8047. { "time": 0.8333, "x": -4.57, "y": 6.49 },
  8048. { "time": 1, "x": -5.94, "y": 7.98 },
  8049. { "time": 1.1667, "x": -4.57, "y": 6.49 },
  8050. { "time": 1.3333, "x": -3.21, "y": 5 },
  8051. { "time": 1.5, "x": -1.85, "y": 3.51 },
  8052. { "time": 1.6667, "x": -3.21, "y": 5 },
  8053. { "time": 1.8333, "x": -4.57, "y": 6.49 },
  8054. { "time": 2, "x": -5.94, "y": 7.98 },
  8055. { "time": 2.1667, "x": -4.57, "y": 6.49 },
  8056. { "time": 2.3333, "x": -3.21, "y": 5 },
  8057. { "time": 2.5, "x": -1.85, "y": 3.51 },
  8058. { "time": 2.6667, "x": -3.21, "y": 5 },
  8059. { "time": 2.8333, "x": -4.57, "y": 6.49 },
  8060. { "time": 3, "x": -5.94, "y": 7.98 },
  8061. { "time": 3.1667, "x": -4.57, "y": 6.49 },
  8062. { "time": 3.3333, "x": -3.21, "y": 5 },
  8063. { "time": 3.5, "x": -1.85, "y": 3.51 },
  8064. { "time": 3.6667, "x": -3.21, "y": 5 },
  8065. { "time": 3.8333, "x": -4.57, "y": 6.49 },
  8066. { "time": 4, "x": -5.94, "y": 7.98 },
  8067. { "time": 4.1667, "x": -4.57, "y": 6.49 },
  8068. { "time": 4.3333, "x": -3.21, "y": 5 },
  8069. { "time": 4.5, "x": -1.85, "y": 3.51 },
  8070. { "time": 4.6667, "x": -3.21, "y": 5 },
  8071. { "time": 4.8333, "x": -4.57, "y": 6.49 },
  8072. { "time": 5, "x": -5.94, "y": 7.98 },
  8073. { "time": 5.1667, "x": -4.57, "y": 6.49 },
  8074. { "time": 5.3333, "x": -3.21, "y": 5 },
  8075. { "time": 5.5, "x": -1.85, "y": 3.51 },
  8076. { "time": 5.6667, "x": -3.21, "y": 5 },
  8077. { "time": 5.8333, "x": -4.57, "y": 6.49 },
  8078. { "time": 6, "x": -5.94, "y": 7.98 }
  8079. ],
  8080. "scale": [
  8081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8082. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8083. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8084. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8085. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8086. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8087. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8088. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8089. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8090. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8091. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8092. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8093. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8094. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  8095. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  8096. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8097. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  8098. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  8099. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8100. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  8101. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  8102. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8103. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  8104. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  8105. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8106. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  8107. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  8108. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8109. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  8110. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  8111. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8112. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  8113. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  8114. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8115. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  8116. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  8117. { "time": 6, "x": 1, "y": 1 }
  8118. ]
  8119. },
  8120. "bone15": {
  8121. "rotate": [
  8122. { "time": 0, "angle": -39.25 },
  8123. { "time": 0.1667, "angle": -19.91 },
  8124. { "time": 0.3333, "angle": -12.55 },
  8125. { "time": 0.5, "angle": -19.63 },
  8126. { "time": 0.6667, "angle": -12.55 },
  8127. { "time": 0.8333, "angle": -19.91 },
  8128. { "time": 1, "angle": -39.25 },
  8129. { "time": 1.1667, "angle": -19.91 },
  8130. { "time": 1.3333, "angle": -12.55 },
  8131. { "time": 1.5, "angle": -19.63 },
  8132. { "time": 1.6667, "angle": -12.55 },
  8133. { "time": 1.8333, "angle": -19.91 },
  8134. { "time": 2, "angle": -39.25 },
  8135. { "time": 2.1667, "angle": -19.91 },
  8136. { "time": 2.3333, "angle": -12.55 },
  8137. { "time": 2.5, "angle": -19.63 },
  8138. { "time": 2.6667, "angle": -12.55 },
  8139. { "time": 2.8333, "angle": -19.91 },
  8140. { "time": 3, "angle": -39.25 },
  8141. { "time": 3.1667, "angle": -19.91 },
  8142. { "time": 3.3333, "angle": -12.55 },
  8143. { "time": 3.5, "angle": -19.63 },
  8144. { "time": 3.6667, "angle": -12.55 },
  8145. { "time": 3.8333, "angle": -19.91 },
  8146. { "time": 4, "angle": -39.25 },
  8147. { "time": 4.1667, "angle": -19.91 },
  8148. { "time": 4.3333, "angle": -12.55 },
  8149. { "time": 4.5, "angle": -19.63 },
  8150. { "time": 4.6667, "angle": -12.55 },
  8151. { "time": 4.8333, "angle": -19.91 },
  8152. { "time": 5, "angle": -39.25 },
  8153. { "time": 5.1667, "angle": -19.91 },
  8154. { "time": 5.3333, "angle": -12.55 },
  8155. { "time": 5.5, "angle": -19.63 },
  8156. { "time": 5.6667, "angle": -12.55 },
  8157. { "time": 5.8333, "angle": -19.91 },
  8158. { "time": 6, "angle": -39.25 }
  8159. ],
  8160. "translate": [
  8161. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8162. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8163. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8164. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8165. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8166. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8167. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8168. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8169. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8170. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8171. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8172. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8173. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8174. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  8175. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  8176. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8177. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  8178. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  8179. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8180. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  8181. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  8182. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8183. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  8184. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  8185. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8186. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  8187. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  8188. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8189. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  8190. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  8191. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8192. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  8193. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  8194. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8195. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  8196. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  8197. { "time": 6, "x": 0, "y": 0 }
  8198. ],
  8199. "scale": [
  8200. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8201. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8202. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8203. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8204. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8205. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8206. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8207. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8208. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8209. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8210. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8211. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8212. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8213. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  8214. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  8215. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8216. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  8217. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  8218. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8219. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  8220. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  8221. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8222. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  8223. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  8224. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8225. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  8226. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  8227. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8228. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  8229. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  8230. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8231. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  8232. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  8233. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8234. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  8235. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  8236. { "time": 6, "x": 1, "y": 1 }
  8237. ]
  8238. },
  8239. "bone16": {
  8240. "rotate": [
  8241. { "time": 0, "angle": 4.04 },
  8242. { "time": 0.1667, "angle": -12.68 },
  8243. { "time": 0.3333, "angle": -9.89 },
  8244. { "time": 0.5, "angle": -7.11 },
  8245. { "time": 0.6667, "angle": -9.89 },
  8246. { "time": 0.8333, "angle": -12.68 },
  8247. { "time": 1, "angle": 4.04 },
  8248. { "time": 1.1667, "angle": -12.68 },
  8249. { "time": 1.3333, "angle": -9.89 },
  8250. { "time": 1.5, "angle": -7.11 },
  8251. { "time": 1.6667, "angle": -9.89 },
  8252. { "time": 1.8333, "angle": -12.68 },
  8253. { "time": 2, "angle": 4.04 },
  8254. { "time": 2.1667, "angle": -12.68 },
  8255. { "time": 2.3333, "angle": -9.89 },
  8256. { "time": 2.5, "angle": -7.11 },
  8257. { "time": 2.6667, "angle": -9.89 },
  8258. { "time": 2.8333, "angle": -12.68 },
  8259. { "time": 3, "angle": 4.04 },
  8260. { "time": 3.1667, "angle": -12.68 },
  8261. { "time": 3.3333, "angle": -9.89 },
  8262. { "time": 3.5, "angle": -7.11 },
  8263. { "time": 3.6667, "angle": -9.89 },
  8264. { "time": 3.8333, "angle": -12.68 },
  8265. { "time": 4, "angle": 4.04 },
  8266. { "time": 4.1667, "angle": -12.68 },
  8267. { "time": 4.3333, "angle": -9.89 },
  8268. { "time": 4.5, "angle": -7.11 },
  8269. { "time": 4.6667, "angle": -9.89 },
  8270. { "time": 4.8333, "angle": -12.68 },
  8271. { "time": 5, "angle": 4.04 },
  8272. { "time": 5.1667, "angle": -12.68 },
  8273. { "time": 5.3333, "angle": -9.89 },
  8274. { "time": 5.5, "angle": -7.11 },
  8275. { "time": 5.6667, "angle": -9.89 },
  8276. { "time": 5.8333, "angle": -12.68 },
  8277. { "time": 6, "angle": 4.04 }
  8278. ],
  8279. "translate": [
  8280. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8281. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8282. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8283. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8284. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8285. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8286. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8287. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8288. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8289. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8290. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8291. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8292. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8293. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  8294. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  8295. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8296. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  8297. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  8298. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8299. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  8300. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  8301. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8302. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  8303. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  8304. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8305. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  8306. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  8307. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8308. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  8309. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  8310. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8311. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  8312. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  8313. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8314. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  8315. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  8316. { "time": 6, "x": 0, "y": 0 }
  8317. ],
  8318. "scale": [
  8319. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8320. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8321. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8322. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8323. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8324. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8325. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8326. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8327. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8328. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8329. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8330. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8331. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8332. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  8333. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  8334. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8335. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  8336. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  8337. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8338. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  8339. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  8340. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8341. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  8342. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  8343. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8344. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  8345. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  8346. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8347. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  8348. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  8349. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8350. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  8351. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  8352. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8353. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  8354. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  8355. { "time": 6, "x": 1, "y": 1 }
  8356. ]
  8357. },
  8358. "bone17": {
  8359. "rotate": [
  8360. { "time": 0, "angle": 0 },
  8361. { "time": 0.5, "angle": -7.58 },
  8362. { "time": 1, "angle": 0 },
  8363. { "time": 1.5, "angle": -7.58 },
  8364. { "time": 2, "angle": 0 },
  8365. { "time": 2.5, "angle": -7.58 },
  8366. { "time": 3, "angle": 0 },
  8367. { "time": 3.5, "angle": -7.58 },
  8368. { "time": 4, "angle": 0 },
  8369. { "time": 4.5, "angle": -7.58 },
  8370. { "time": 5, "angle": 0 },
  8371. { "time": 5.5, "angle": -7.58 },
  8372. { "time": 6, "angle": 0 }
  8373. ],
  8374. "translate": [
  8375. { "time": 0, "x": 0, "y": 0 },
  8376. { "time": 0.5, "x": -0.14, "y": -0.41 },
  8377. { "time": 1, "x": 0, "y": 0 },
  8378. { "time": 1.5, "x": -0.14, "y": -0.41 },
  8379. { "time": 2, "x": 0, "y": 0 },
  8380. { "time": 2.5, "x": -0.14, "y": -0.41 },
  8381. { "time": 3, "x": 0, "y": 0 },
  8382. { "time": 3.5, "x": -0.14, "y": -0.41 },
  8383. { "time": 4, "x": 0, "y": 0 },
  8384. { "time": 4.5, "x": -0.14, "y": -0.41 },
  8385. { "time": 5, "x": 0, "y": 0 },
  8386. { "time": 5.5, "x": -0.14, "y": -0.41 },
  8387. { "time": 6, "x": 0, "y": 0 }
  8388. ],
  8389. "scale": [
  8390. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8391. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8392. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8393. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8394. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8395. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8396. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8397. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8398. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8399. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8400. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8401. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8402. { "time": 6, "x": 1, "y": 1 }
  8403. ]
  8404. },
  8405. "bone18": {
  8406. "rotate": [
  8407. { "time": 0, "angle": 0 },
  8408. { "time": 0.5, "angle": -0.08 },
  8409. { "time": 1, "angle": 0 },
  8410. { "time": 1.5, "angle": -0.08 },
  8411. { "time": 2, "angle": 0 },
  8412. { "time": 2.5, "angle": -0.08 },
  8413. { "time": 3, "angle": 0 },
  8414. { "time": 3.5, "angle": -0.08 },
  8415. { "time": 4, "angle": 0 },
  8416. { "time": 4.5, "angle": -0.08 },
  8417. { "time": 5, "angle": 0 },
  8418. { "time": 5.5, "angle": -0.08 },
  8419. { "time": 6, "angle": 0 }
  8420. ],
  8421. "translate": [
  8422. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8423. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8424. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8425. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8426. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8427. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8428. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8429. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8430. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8431. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8432. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8433. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8434. { "time": 6, "x": 0, "y": 0 }
  8435. ],
  8436. "scale": [
  8437. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8438. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8439. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8440. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8441. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8442. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8443. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8444. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8445. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8446. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8447. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8448. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8449. { "time": 6, "x": 1, "y": 1 }
  8450. ]
  8451. },
  8452. "bone19": {
  8453. "rotate": [
  8454. { "time": 0, "angle": 0 },
  8455. { "time": 0.5, "angle": -13.58 },
  8456. { "time": 1, "angle": 0 },
  8457. { "time": 1.5, "angle": -13.58 },
  8458. { "time": 2, "angle": 0 },
  8459. { "time": 2.5, "angle": -13.58 },
  8460. { "time": 3, "angle": 0 },
  8461. { "time": 3.5, "angle": -13.58 },
  8462. { "time": 4, "angle": 0 },
  8463. { "time": 4.5, "angle": -13.58 },
  8464. { "time": 5, "angle": 0 },
  8465. { "time": 5.5, "angle": -13.58 },
  8466. { "time": 6, "angle": 0 }
  8467. ],
  8468. "translate": [
  8469. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8470. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8471. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8472. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8473. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8474. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8475. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8476. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8477. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8478. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8479. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8480. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8481. { "time": 6, "x": 0, "y": 0 }
  8482. ],
  8483. "scale": [
  8484. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8485. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8486. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8487. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8488. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8489. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8490. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8491. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8492. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8493. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8494. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8495. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8496. { "time": 6, "x": 1, "y": 1 }
  8497. ]
  8498. },
  8499. "bone20": {
  8500. "rotate": [
  8501. { "time": 0, "angle": 7.69 },
  8502. { "time": 0.5, "angle": 5.81 },
  8503. { "time": 1, "angle": 7.69 },
  8504. { "time": 1.5, "angle": 5.81 },
  8505. { "time": 2, "angle": 7.69 },
  8506. { "time": 2.5, "angle": 5.81 },
  8507. { "time": 3, "angle": 7.69 },
  8508. { "time": 3.5, "angle": 5.81 },
  8509. { "time": 4, "angle": 7.69 },
  8510. { "time": 4.5, "angle": 5.81 },
  8511. { "time": 5, "angle": 7.69 },
  8512. { "time": 5.5, "angle": 5.81 },
  8513. { "time": 6, "angle": 7.69 }
  8514. ],
  8515. "translate": [
  8516. { "time": 0, "x": -1.35, "y": 3.54 },
  8517. { "time": 0.5, "x": -0.63, "y": 0.76 },
  8518. { "time": 1, "x": -1.35, "y": 3.54 },
  8519. { "time": 1.5, "x": -0.63, "y": 0.76 },
  8520. { "time": 2, "x": -1.35, "y": 3.54 },
  8521. { "time": 2.5, "x": -0.63, "y": 0.76 },
  8522. { "time": 3, "x": -1.35, "y": 3.54 },
  8523. { "time": 3.5, "x": -0.63, "y": 0.76 },
  8524. { "time": 4, "x": -1.35, "y": 3.54 },
  8525. { "time": 4.5, "x": -0.63, "y": 0.76 },
  8526. { "time": 5, "x": -1.35, "y": 3.54 },
  8527. { "time": 5.5, "x": -0.63, "y": 0.76 },
  8528. { "time": 6, "x": -1.35, "y": 3.54 }
  8529. ],
  8530. "scale": [
  8531. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8532. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8533. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8534. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8535. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8536. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8537. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8538. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8539. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8540. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8541. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8542. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8543. { "time": 6, "x": 1, "y": 1 }
  8544. ]
  8545. },
  8546. "bone21": {
  8547. "rotate": [
  8548. { "time": 0, "angle": 0 },
  8549. { "time": 0.5, "angle": 5.55 },
  8550. { "time": 1, "angle": 0 },
  8551. { "time": 1.5, "angle": 5.55 },
  8552. { "time": 2, "angle": 0 },
  8553. { "time": 2.5, "angle": 5.55 },
  8554. { "time": 3, "angle": 0 },
  8555. { "time": 3.5, "angle": 5.55 },
  8556. { "time": 4, "angle": 0 },
  8557. { "time": 4.5, "angle": 5.55 },
  8558. { "time": 5, "angle": 0 },
  8559. { "time": 5.5, "angle": 5.55 },
  8560. { "time": 6, "angle": 0 }
  8561. ],
  8562. "translate": [
  8563. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8564. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8565. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8566. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8567. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8568. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8569. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8570. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8571. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8572. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8573. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8574. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8575. { "time": 6, "x": 0, "y": 0 }
  8576. ],
  8577. "scale": [
  8578. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8579. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8580. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8581. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8582. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8583. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8584. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8585. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8586. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8587. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8588. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8589. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8590. { "time": 6, "x": 1, "y": 1 }
  8591. ]
  8592. },
  8593. "bone22": {
  8594. "rotate": [
  8595. { "time": 0, "angle": 0 },
  8596. { "time": 0.5, "angle": 9.29 },
  8597. { "time": 1, "angle": 0 },
  8598. { "time": 1.5, "angle": 9.29 },
  8599. { "time": 2, "angle": 0 },
  8600. { "time": 2.5, "angle": 9.29 },
  8601. { "time": 3, "angle": 0 },
  8602. { "time": 3.5, "angle": 9.29 },
  8603. { "time": 4, "angle": 0 },
  8604. { "time": 4.5, "angle": 9.29 },
  8605. { "time": 5, "angle": 0 },
  8606. { "time": 5.5, "angle": 9.29 },
  8607. { "time": 6, "angle": 0 }
  8608. ],
  8609. "translate": [
  8610. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8611. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8612. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8613. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8614. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8615. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8616. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8617. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8618. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8619. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8620. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8621. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8622. { "time": 6, "x": 0, "y": 0 }
  8623. ],
  8624. "scale": [
  8625. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8626. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8627. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8628. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8629. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8630. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8631. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8632. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8633. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8634. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8635. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8636. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8637. { "time": 6, "x": 1, "y": 1 }
  8638. ]
  8639. },
  8640. "bone23": {
  8641. "rotate": [
  8642. { "time": 0, "angle": 0, "curve": "stepped" },
  8643. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  8644. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8645. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  8646. { "time": 1, "angle": 0, "curve": "stepped" },
  8647. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  8648. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8649. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  8650. { "time": 2, "angle": 0, "curve": "stepped" },
  8651. { "time": 2.2667, "angle": 0, "curve": "stepped" },
  8652. { "time": 2.5, "angle": 0, "curve": "stepped" },
  8653. { "time": 2.7333, "angle": 0, "curve": "stepped" },
  8654. { "time": 3, "angle": 0, "curve": "stepped" },
  8655. { "time": 3.2667, "angle": 0, "curve": "stepped" },
  8656. { "time": 3.5, "angle": 0, "curve": "stepped" },
  8657. { "time": 3.7333, "angle": 0, "curve": "stepped" },
  8658. { "time": 4, "angle": 0, "curve": "stepped" },
  8659. { "time": 4.2667, "angle": 0, "curve": "stepped" },
  8660. { "time": 4.5, "angle": 0, "curve": "stepped" },
  8661. { "time": 4.7333, "angle": 0, "curve": "stepped" },
  8662. { "time": 5, "angle": 0, "curve": "stepped" },
  8663. { "time": 5.2667, "angle": 0, "curve": "stepped" },
  8664. { "time": 5.5, "angle": 0, "curve": "stepped" },
  8665. { "time": 5.7333, "angle": 0, "curve": "stepped" },
  8666. { "time": 6, "angle": 0 }
  8667. ],
  8668. "translate": [
  8669. { "time": 0, "x": 1.48, "y": 6.68 },
  8670. { "time": 0.5, "x": 1.86, "y": 1.75 },
  8671. { "time": 1, "x": 1.48, "y": 6.68 },
  8672. { "time": 1.5, "x": 1.86, "y": 1.75 },
  8673. { "time": 2, "x": 1.48, "y": 6.68 },
  8674. { "time": 2.5, "x": 1.86, "y": 1.75 },
  8675. { "time": 3, "x": 1.48, "y": 6.68 },
  8676. { "time": 3.5, "x": 1.86, "y": 1.75 },
  8677. { "time": 4, "x": 1.48, "y": 6.68 },
  8678. { "time": 4.5, "x": 1.86, "y": 1.75 },
  8679. { "time": 5, "x": 1.48, "y": 6.68 },
  8680. { "time": 5.5, "x": 1.86, "y": 1.75 },
  8681. { "time": 6, "x": 1.48, "y": 6.68 }
  8682. ],
  8683. "scale": [
  8684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8685. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  8686. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8687. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  8688. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8689. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  8690. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8691. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  8692. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8693. { "time": 2.2667, "x": 1, "y": 1, "curve": "stepped" },
  8694. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8695. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  8696. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8697. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  8698. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8699. { "time": 3.7333, "x": 1, "y": 1, "curve": "stepped" },
  8700. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8701. { "time": 4.2667, "x": 1, "y": 1, "curve": "stepped" },
  8702. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8703. { "time": 4.7333, "x": 1, "y": 1, "curve": "stepped" },
  8704. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8705. { "time": 5.2667, "x": 1, "y": 1, "curve": "stepped" },
  8706. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8707. { "time": 5.7333, "x": 1, "y": 1, "curve": "stepped" },
  8708. { "time": 6, "x": 1, "y": 1 }
  8709. ]
  8710. },
  8711. "bone24": {
  8712. "rotate": [
  8713. { "time": 0, "angle": 0 },
  8714. { "time": 0.5, "angle": -0.94 },
  8715. { "time": 1, "angle": 0 },
  8716. { "time": 1.5, "angle": -0.94 },
  8717. { "time": 2, "angle": 0 },
  8718. { "time": 2.5, "angle": -0.94 },
  8719. { "time": 3, "angle": 0 },
  8720. { "time": 3.5, "angle": -0.94 },
  8721. { "time": 4, "angle": 0 },
  8722. { "time": 4.5, "angle": -0.94 },
  8723. { "time": 5, "angle": 0 },
  8724. { "time": 5.5, "angle": -0.94 },
  8725. { "time": 6, "angle": 0 }
  8726. ],
  8727. "translate": [
  8728. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8729. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8730. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8731. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8732. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8733. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8734. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8735. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8736. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8737. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8738. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8739. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8740. { "time": 6, "x": 0, "y": 0 }
  8741. ],
  8742. "scale": [
  8743. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8744. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8745. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8746. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8747. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8748. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8749. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8750. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8751. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8752. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8753. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8754. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8755. { "time": 6, "x": 1, "y": 1 }
  8756. ]
  8757. },
  8758. "bone25": {
  8759. "rotate": [
  8760. { "time": 0, "angle": 0 },
  8761. { "time": 0.5, "angle": -5.8 },
  8762. { "time": 1, "angle": 0 },
  8763. { "time": 1.5, "angle": -5.8 },
  8764. { "time": 2, "angle": 0 },
  8765. { "time": 2.5, "angle": -5.8 },
  8766. { "time": 3, "angle": 0 },
  8767. { "time": 3.5, "angle": -5.8 },
  8768. { "time": 4, "angle": 0 },
  8769. { "time": 4.5, "angle": -5.8 },
  8770. { "time": 5, "angle": 0 },
  8771. { "time": 5.5, "angle": -5.8 },
  8772. { "time": 6, "angle": 0 }
  8773. ],
  8774. "translate": [
  8775. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8776. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8777. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8778. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8779. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8780. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8781. { "time": 6, "x": 0, "y": 0 }
  8782. ],
  8783. "scale": [
  8784. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8785. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8786. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8787. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8788. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8789. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8790. { "time": 6, "x": 1, "y": 1 }
  8791. ]
  8792. },
  8793. "bone26": {
  8794. "rotate": [
  8795. { "time": 0, "angle": 0 },
  8796. { "time": 0.5, "angle": -6.12 },
  8797. { "time": 1, "angle": 0 },
  8798. { "time": 1.5, "angle": -6.12 },
  8799. { "time": 2, "angle": 0 },
  8800. { "time": 2.5, "angle": -6.12 },
  8801. { "time": 3, "angle": 0 },
  8802. { "time": 3.5, "angle": -6.12 },
  8803. { "time": 4, "angle": 0 },
  8804. { "time": 4.5, "angle": -6.12 },
  8805. { "time": 5, "angle": 0 },
  8806. { "time": 5.5, "angle": -6.12 },
  8807. { "time": 6, "angle": 0 }
  8808. ],
  8809. "translate": [
  8810. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8811. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8812. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8813. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8814. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8815. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8816. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8817. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8818. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8819. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8820. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8821. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8822. { "time": 6, "x": 0, "y": 0 }
  8823. ],
  8824. "scale": [
  8825. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8826. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8827. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8828. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8829. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8830. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8831. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8832. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8833. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8834. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8835. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8836. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8837. { "time": 6, "x": 1, "y": 1 }
  8838. ]
  8839. },
  8840. "bone27": {
  8841. "rotate": [
  8842. { "time": 0, "angle": 0 },
  8843. { "time": 0.5, "angle": -0.7 },
  8844. { "time": 1, "angle": 0 },
  8845. { "time": 1.5, "angle": -0.7 },
  8846. { "time": 2, "angle": 0 },
  8847. { "time": 2.5, "angle": -0.7 },
  8848. { "time": 3, "angle": 0 },
  8849. { "time": 3.5, "angle": -0.7 },
  8850. { "time": 4, "angle": 0 },
  8851. { "time": 4.5, "angle": -0.7 },
  8852. { "time": 5, "angle": 0 },
  8853. { "time": 5.5, "angle": -0.7 },
  8854. { "time": 6, "angle": 0 }
  8855. ],
  8856. "translate": [
  8857. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8858. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8859. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8860. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8861. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8862. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8863. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8864. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8865. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8866. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8867. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8868. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8869. { "time": 6, "x": 0, "y": 0 }
  8870. ],
  8871. "scale": [
  8872. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8873. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8874. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8875. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8876. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8877. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8878. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8879. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8880. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8881. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8882. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8883. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8884. { "time": 6, "x": 1, "y": 1 }
  8885. ]
  8886. },
  8887. "bone28": {
  8888. "rotate": [
  8889. { "time": 0, "angle": 0, "curve": "stepped" },
  8890. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8891. { "time": 1, "angle": 0, "curve": "stepped" },
  8892. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8893. { "time": 2, "angle": 0, "curve": "stepped" },
  8894. { "time": 2.5, "angle": 0, "curve": "stepped" },
  8895. { "time": 3, "angle": 0, "curve": "stepped" },
  8896. { "time": 3.5, "angle": 0, "curve": "stepped" },
  8897. { "time": 4, "angle": 0, "curve": "stepped" },
  8898. { "time": 4.5, "angle": 0, "curve": "stepped" },
  8899. { "time": 5, "angle": 0, "curve": "stepped" },
  8900. { "time": 5.5, "angle": 0, "curve": "stepped" },
  8901. { "time": 6, "angle": 0 }
  8902. ],
  8903. "translate": [
  8904. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8905. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8906. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8907. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8908. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8909. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8910. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8911. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8912. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  8913. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  8914. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  8915. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  8916. { "time": 6, "x": 0, "y": 0 }
  8917. ],
  8918. "scale": [
  8919. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8920. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8921. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8922. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8923. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  8924. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  8925. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  8926. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  8927. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  8928. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  8929. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  8930. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  8931. { "time": 6, "x": 1, "y": 1 }
  8932. ]
  8933. },
  8934. "bone29": {
  8935. "rotate": [
  8936. { "time": 0, "angle": 0, "curve": "stepped" },
  8937. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8938. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8939. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8940. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8941. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8942. { "time": 1, "angle": 0, "curve": "stepped" },
  8943. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8944. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8945. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8946. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8947. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8948. { "time": 2, "angle": 0, "curve": "stepped" },
  8949. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  8950. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  8951. { "time": 2.5, "angle": 0, "curve": "stepped" },
  8952. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  8953. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  8954. { "time": 3, "angle": 0, "curve": "stepped" },
  8955. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  8956. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  8957. { "time": 3.5, "angle": 0, "curve": "stepped" },
  8958. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  8959. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  8960. { "time": 4, "angle": 0, "curve": "stepped" },
  8961. { "time": 4.1667, "angle": 0, "curve": "stepped" },
  8962. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  8963. { "time": 4.5, "angle": 0, "curve": "stepped" },
  8964. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  8965. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  8966. { "time": 5, "angle": 0, "curve": "stepped" },
  8967. { "time": 5.1667, "angle": 0, "curve": "stepped" },
  8968. { "time": 5.3333, "angle": 0, "curve": "stepped" },
  8969. { "time": 5.5, "angle": 0, "curve": "stepped" },
  8970. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  8971. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  8972. { "time": 6, "angle": 0 }
  8973. ],
  8974. "translate": [
  8975. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8976. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8977. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8978. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8979. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8980. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8981. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8982. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8983. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8984. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8985. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8986. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8987. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  8988. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  8989. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  8990. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  8991. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  8992. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  8993. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  8994. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  8995. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  8996. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  8997. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  8998. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  8999. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9000. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  9001. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  9002. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9003. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  9004. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  9005. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9006. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  9007. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  9008. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9009. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  9010. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  9011. { "time": 6, "x": 0, "y": 0 }
  9012. ],
  9013. "scale": [
  9014. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9015. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  9016. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  9017. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9018. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  9019. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  9020. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9021. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  9022. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  9023. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9024. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  9025. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  9026. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9027. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  9028. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  9029. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9030. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  9031. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  9032. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9033. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  9034. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  9035. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9036. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  9037. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  9038. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9039. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  9040. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  9041. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9042. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  9043. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  9044. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9045. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  9046. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  9047. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9048. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  9049. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  9050. { "time": 6, "x": 1, "y": 1 }
  9051. ]
  9052. },
  9053. "bone30": {
  9054. "rotate": [
  9055. { "time": 0, "angle": 0 },
  9056. { "time": 0.5, "angle": 11.83 },
  9057. { "time": 1, "angle": 0 },
  9058. { "time": 1.5, "angle": 11.83 },
  9059. { "time": 2, "angle": 0 },
  9060. { "time": 2.5, "angle": 11.83 },
  9061. { "time": 3, "angle": 0 },
  9062. { "time": 3.5, "angle": 11.83 },
  9063. { "time": 4, "angle": 0 },
  9064. { "time": 4.5, "angle": 11.83 },
  9065. { "time": 5, "angle": 0 },
  9066. { "time": 5.5, "angle": 11.83 },
  9067. { "time": 6, "angle": 0 }
  9068. ],
  9069. "translate": [
  9070. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9071. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9072. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9073. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9074. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9075. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9076. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9077. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9078. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9079. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9080. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9081. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9082. { "time": 6, "x": 0, "y": 0 }
  9083. ],
  9084. "scale": [
  9085. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9086. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9087. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9088. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9089. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9090. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9091. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9092. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9093. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9094. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9095. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9096. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9097. { "time": 6, "x": 1, "y": 1 }
  9098. ]
  9099. },
  9100. "bone31": {
  9101. "rotate": [
  9102. { "time": 0, "angle": 0 },
  9103. { "time": 0.5, "angle": 24.7 },
  9104. { "time": 1, "angle": 0 },
  9105. { "time": 1.5, "angle": 24.7 },
  9106. { "time": 2, "angle": 0 },
  9107. { "time": 2.5, "angle": 24.7 },
  9108. { "time": 3, "angle": 0 },
  9109. { "time": 3.5, "angle": 24.7 },
  9110. { "time": 4, "angle": 0 },
  9111. { "time": 4.5, "angle": 24.7 },
  9112. { "time": 5, "angle": 0 },
  9113. { "time": 5.5, "angle": 24.7 },
  9114. { "time": 6, "angle": 0 }
  9115. ],
  9116. "translate": [
  9117. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9118. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9119. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9120. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9121. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9122. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9123. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9124. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9125. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9126. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9127. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9128. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9129. { "time": 6, "x": 0, "y": 0 }
  9130. ],
  9131. "scale": [
  9132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9133. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9134. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9135. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9136. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9137. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9138. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9139. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9140. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9141. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9142. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9143. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9144. { "time": 6, "x": 1, "y": 1 }
  9145. ]
  9146. },
  9147. "bone32": {
  9148. "rotate": [
  9149. { "time": 0, "angle": 0, "curve": "stepped" },
  9150. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  9151. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  9152. { "time": 0.5, "angle": 0, "curve": "stepped" },
  9153. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  9154. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  9155. { "time": 1, "angle": 0, "curve": "stepped" },
  9156. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  9157. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  9158. { "time": 1.5, "angle": 0, "curve": "stepped" },
  9159. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  9160. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  9161. { "time": 2, "angle": 0, "curve": "stepped" },
  9162. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  9163. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  9164. { "time": 2.5, "angle": 0, "curve": "stepped" },
  9165. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  9166. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  9167. { "time": 3, "angle": 0, "curve": "stepped" },
  9168. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  9169. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  9170. { "time": 3.5, "angle": 0, "curve": "stepped" },
  9171. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  9172. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  9173. { "time": 4, "angle": 0, "curve": "stepped" },
  9174. { "time": 4.1667, "angle": 0, "curve": "stepped" },
  9175. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  9176. { "time": 4.5, "angle": 0, "curve": "stepped" },
  9177. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  9178. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  9179. { "time": 5, "angle": 0, "curve": "stepped" },
  9180. { "time": 5.1667, "angle": 0, "curve": "stepped" },
  9181. { "time": 5.3333, "angle": 0, "curve": "stepped" },
  9182. { "time": 5.5, "angle": 0, "curve": "stepped" },
  9183. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  9184. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  9185. { "time": 6, "angle": 0 }
  9186. ],
  9187. "translate": [
  9188. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9189. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  9190. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  9191. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9192. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  9193. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  9194. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9195. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  9196. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  9197. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9198. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  9199. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  9200. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9201. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  9202. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  9203. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9204. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  9205. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  9206. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9207. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  9208. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  9209. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9210. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  9211. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  9212. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9213. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  9214. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  9215. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9216. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  9217. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  9218. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9219. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  9220. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  9221. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9222. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  9223. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  9224. { "time": 6, "x": 0, "y": 0 }
  9225. ],
  9226. "scale": [
  9227. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9228. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  9229. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  9230. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9231. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  9232. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  9233. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9234. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  9235. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  9236. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9237. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  9238. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  9239. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9240. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  9241. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  9242. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9243. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  9244. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  9245. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9246. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  9247. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  9248. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9249. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  9250. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  9251. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9252. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  9253. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  9254. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9255. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  9256. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  9257. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9258. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  9259. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  9260. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9261. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  9262. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  9263. { "time": 6, "x": 1, "y": 1 }
  9264. ]
  9265. },
  9266. "bone33": {
  9267. "rotate": [
  9268. { "time": 0, "angle": 0 },
  9269. { "time": 0.5, "angle": 8.7 },
  9270. { "time": 1, "angle": 0 },
  9271. { "time": 1.5, "angle": 8.7 },
  9272. { "time": 2, "angle": 0 },
  9273. { "time": 2.5, "angle": 8.7 },
  9274. { "time": 3, "angle": 0 },
  9275. { "time": 3.5, "angle": 8.7 },
  9276. { "time": 4, "angle": 0 },
  9277. { "time": 4.5, "angle": 8.7 },
  9278. { "time": 5, "angle": 0 },
  9279. { "time": 5.5, "angle": 8.7 },
  9280. { "time": 6, "angle": 0 }
  9281. ],
  9282. "translate": [
  9283. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9284. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9285. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9286. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9287. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9288. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9289. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9290. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9291. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9292. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9293. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9294. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9295. { "time": 6, "x": 0, "y": 0 }
  9296. ],
  9297. "scale": [
  9298. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9299. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9300. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9301. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9302. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9303. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9304. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9305. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9306. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9307. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9308. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9309. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9310. { "time": 6, "x": 1, "y": 1 }
  9311. ]
  9312. },
  9313. "bone34": {
  9314. "rotate": [
  9315. { "time": 0, "angle": 0 },
  9316. { "time": 0.5, "angle": 8.7 },
  9317. { "time": 1, "angle": 0 },
  9318. { "time": 1.5, "angle": 8.7 },
  9319. { "time": 2, "angle": 0 },
  9320. { "time": 2.5, "angle": 8.7 },
  9321. { "time": 3, "angle": 0 },
  9322. { "time": 3.5, "angle": 8.7 },
  9323. { "time": 4, "angle": 0 },
  9324. { "time": 4.5, "angle": 8.7 },
  9325. { "time": 5, "angle": 0 },
  9326. { "time": 5.5, "angle": 8.7 },
  9327. { "time": 6, "angle": 0 }
  9328. ],
  9329. "translate": [
  9330. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9331. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9332. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9333. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9334. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9335. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9336. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9337. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9338. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9339. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9340. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9341. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9342. { "time": 6, "x": 0, "y": 0 }
  9343. ],
  9344. "scale": [
  9345. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9346. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9347. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9348. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9349. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9350. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9351. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9352. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9353. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9354. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9355. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9356. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9357. { "time": 6, "x": 1, "y": 1 }
  9358. ]
  9359. },
  9360. "bone35": {
  9361. "rotate": [
  9362. { "time": 0, "angle": 0 },
  9363. { "time": 0.5, "angle": 8.7 },
  9364. { "time": 1, "angle": 0 },
  9365. { "time": 1.5, "angle": 8.7 },
  9366. { "time": 2, "angle": 0 },
  9367. { "time": 2.5, "angle": 8.7 },
  9368. { "time": 3, "angle": 0 },
  9369. { "time": 3.5, "angle": 8.7 },
  9370. { "time": 4, "angle": 0 },
  9371. { "time": 4.5, "angle": 8.7 },
  9372. { "time": 5, "angle": 0 },
  9373. { "time": 5.5, "angle": 8.7 },
  9374. { "time": 6, "angle": 0 }
  9375. ],
  9376. "translate": [
  9377. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9378. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9379. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9380. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9381. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9382. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9383. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9384. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9385. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9386. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9387. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9388. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9389. { "time": 6, "x": 0, "y": 0 }
  9390. ],
  9391. "scale": [
  9392. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9393. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9394. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9395. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9396. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9397. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9398. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9399. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9400. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9401. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9402. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9403. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9404. { "time": 6, "x": 1, "y": 1 }
  9405. ]
  9406. },
  9407. "bone36": {
  9408. "rotate": [
  9409. { "time": 0, "angle": 0 },
  9410. { "time": 0.5, "angle": -3 },
  9411. { "time": 1, "angle": 0 },
  9412. { "time": 1.5, "angle": -3 },
  9413. { "time": 2, "angle": 0 },
  9414. { "time": 2.5, "angle": -3 },
  9415. { "time": 3, "angle": 0 },
  9416. { "time": 3.5, "angle": -3 },
  9417. { "time": 4, "angle": 0 },
  9418. { "time": 4.5, "angle": -3 },
  9419. { "time": 5, "angle": 0 },
  9420. { "time": 5.5, "angle": -3 },
  9421. { "time": 6, "angle": 0 }
  9422. ],
  9423. "translate": [
  9424. { "time": 0, "x": 0, "y": 0 },
  9425. { "time": 0.5, "x": 0.74, "y": 0.4 },
  9426. { "time": 1, "x": 0, "y": 0 },
  9427. { "time": 1.5, "x": 0.74, "y": 0.4 },
  9428. { "time": 2, "x": 0, "y": 0 },
  9429. { "time": 2.5, "x": 0.74, "y": 0.4 },
  9430. { "time": 3, "x": 0, "y": 0 },
  9431. { "time": 3.5, "x": 0.74, "y": 0.4 },
  9432. { "time": 4, "x": 0, "y": 0 },
  9433. { "time": 4.5, "x": 0.74, "y": 0.4 },
  9434. { "time": 5, "x": 0, "y": 0 },
  9435. { "time": 5.5, "x": 0.74, "y": 0.4 },
  9436. { "time": 6, "x": 0, "y": 0 }
  9437. ],
  9438. "scale": [
  9439. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9441. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9442. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9443. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9444. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9445. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9446. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9447. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9448. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9449. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9450. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9451. { "time": 6, "x": 1, "y": 1 }
  9452. ]
  9453. },
  9454. "bone37": {
  9455. "rotate": [
  9456. { "time": 0, "angle": 0 },
  9457. { "time": 0.5, "angle": -7.26 },
  9458. { "time": 1, "angle": 0 },
  9459. { "time": 1.5, "angle": -7.26 },
  9460. { "time": 2, "angle": 0 },
  9461. { "time": 2.5, "angle": -7.26 },
  9462. { "time": 3, "angle": 0 },
  9463. { "time": 3.5, "angle": -7.26 },
  9464. { "time": 4, "angle": 0 },
  9465. { "time": 4.5, "angle": -7.26 },
  9466. { "time": 5, "angle": 0 },
  9467. { "time": 5.5, "angle": -7.26 },
  9468. { "time": 6, "angle": 0 }
  9469. ],
  9470. "translate": [
  9471. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9472. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9473. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9474. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9475. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9476. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9477. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9478. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9479. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9480. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9481. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9482. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9483. { "time": 6, "x": 0, "y": 0 }
  9484. ],
  9485. "scale": [
  9486. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9487. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9488. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9489. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9490. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9491. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9492. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9493. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9494. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9495. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9496. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9497. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9498. { "time": 6, "x": 1, "y": 1 }
  9499. ]
  9500. },
  9501. "bone38": {
  9502. "rotate": [
  9503. { "time": 0, "angle": 0 },
  9504. { "time": 0.5, "angle": 1.23 },
  9505. { "time": 1, "angle": 0 },
  9506. { "time": 1.5, "angle": 1.23 },
  9507. { "time": 2, "angle": 0 },
  9508. { "time": 2.5, "angle": 1.23 },
  9509. { "time": 3, "angle": 0 },
  9510. { "time": 3.5, "angle": 1.23 },
  9511. { "time": 4, "angle": 0 },
  9512. { "time": 4.5, "angle": 1.23 },
  9513. { "time": 5, "angle": 0 },
  9514. { "time": 5.5, "angle": 1.23 },
  9515. { "time": 6, "angle": 0 }
  9516. ],
  9517. "translate": [
  9518. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9519. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9520. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9521. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9522. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9523. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9524. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9525. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9526. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9527. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9528. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9529. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9530. { "time": 6, "x": 0, "y": 0 }
  9531. ],
  9532. "scale": [
  9533. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9534. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9535. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9536. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9537. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9538. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9539. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9540. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9541. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9542. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9543. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9544. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9545. { "time": 6, "x": 1, "y": 1 }
  9546. ]
  9547. },
  9548. "bone39": {
  9549. "rotate": [
  9550. { "time": 0, "angle": 0 },
  9551. { "time": 0.5, "angle": -7.26 },
  9552. { "time": 1, "angle": 0 },
  9553. { "time": 1.5, "angle": -7.26 },
  9554. { "time": 2, "angle": 0 },
  9555. { "time": 2.5, "angle": -7.26 },
  9556. { "time": 3, "angle": 0 },
  9557. { "time": 3.5, "angle": -7.26 },
  9558. { "time": 4, "angle": 0 },
  9559. { "time": 4.5, "angle": -7.26 },
  9560. { "time": 5, "angle": 0 },
  9561. { "time": 5.5, "angle": -7.26 },
  9562. { "time": 6, "angle": 0 }
  9563. ],
  9564. "translate": [
  9565. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9566. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9567. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9568. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9569. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9570. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9571. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9572. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9573. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9574. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9575. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9576. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9577. { "time": 6, "x": 0, "y": 0 }
  9578. ],
  9579. "scale": [
  9580. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9581. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9582. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9583. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9584. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9585. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9586. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9587. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9588. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9589. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9590. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9591. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9592. { "time": 6, "x": 1, "y": 1 }
  9593. ]
  9594. },
  9595. "bone40": {
  9596. "rotate": [
  9597. { "time": 0, "angle": 0 },
  9598. { "time": 0.5, "angle": -7.26 },
  9599. { "time": 1, "angle": 0 },
  9600. { "time": 1.5, "angle": -7.26 },
  9601. { "time": 2, "angle": 0 },
  9602. { "time": 2.5, "angle": -7.26 },
  9603. { "time": 3, "angle": 0 },
  9604. { "time": 3.5, "angle": -7.26 },
  9605. { "time": 4, "angle": 0 },
  9606. { "time": 4.5, "angle": -7.26 },
  9607. { "time": 5, "angle": 0 },
  9608. { "time": 5.5, "angle": -7.26 },
  9609. { "time": 6, "angle": 0 }
  9610. ],
  9611. "translate": [
  9612. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9613. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9614. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9615. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9616. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9617. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9618. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9619. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9620. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9621. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9622. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9623. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9624. { "time": 6, "x": 0, "y": 0 }
  9625. ],
  9626. "scale": [
  9627. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9628. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9629. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9630. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9631. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9632. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9633. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9634. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9635. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9636. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9637. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9638. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9639. { "time": 6, "x": 1, "y": 1 }
  9640. ]
  9641. },
  9642. "bone41": {
  9643. "rotate": [
  9644. { "time": 0, "angle": 0 },
  9645. { "time": 0.5, "angle": 10.05 },
  9646. { "time": 1, "angle": 0 },
  9647. { "time": 1.5, "angle": 10.05 },
  9648. { "time": 2, "angle": 0 },
  9649. { "time": 2.5, "angle": 10.05 },
  9650. { "time": 3, "angle": 0 },
  9651. { "time": 3.5, "angle": 10.05 },
  9652. { "time": 4, "angle": 0 },
  9653. { "time": 4.5, "angle": 10.05 },
  9654. { "time": 5, "angle": 0 },
  9655. { "time": 5.5, "angle": 10.05 },
  9656. { "time": 6, "angle": 0 }
  9657. ],
  9658. "translate": [
  9659. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9660. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9661. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9662. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9663. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9664. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9665. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9666. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9667. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9668. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9669. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9670. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9671. { "time": 6, "x": 0, "y": 0 }
  9672. ],
  9673. "scale": [
  9674. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9675. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9676. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9677. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9678. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9679. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9680. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9681. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9682. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9683. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9684. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9685. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9686. { "time": 6, "x": 1, "y": 1 }
  9687. ]
  9688. },
  9689. "bone42": {
  9690. "rotate": [
  9691. { "time": 0, "angle": 0 },
  9692. { "time": 0.5, "angle": -3.01 },
  9693. { "time": 1, "angle": 0 },
  9694. { "time": 1.5, "angle": -3.01 },
  9695. { "time": 2, "angle": 0 },
  9696. { "time": 2.5, "angle": -3.01 },
  9697. { "time": 3, "angle": 0 },
  9698. { "time": 3.5, "angle": -3.01 },
  9699. { "time": 4, "angle": 0 },
  9700. { "time": 4.5, "angle": -3.01 },
  9701. { "time": 5, "angle": 0 },
  9702. { "time": 5.5, "angle": -3.01 },
  9703. { "time": 6, "angle": 0 }
  9704. ],
  9705. "translate": [
  9706. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9707. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9708. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9709. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9710. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9711. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9712. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9713. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9714. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9715. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9716. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9717. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9718. { "time": 6, "x": 0, "y": 0 }
  9719. ],
  9720. "scale": [
  9721. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9722. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9723. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9724. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9725. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9726. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9727. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9728. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9729. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9730. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9731. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9732. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9733. { "time": 6, "x": 1, "y": 1 }
  9734. ]
  9735. },
  9736. "bone43": {
  9737. "rotate": [
  9738. { "time": 0, "angle": 0 },
  9739. { "time": 0.5, "angle": -3.01 },
  9740. { "time": 1, "angle": 0 },
  9741. { "time": 1.5, "angle": -3.01 },
  9742. { "time": 2, "angle": 0 },
  9743. { "time": 2.5, "angle": -3.01 },
  9744. { "time": 3, "angle": 0 },
  9745. { "time": 3.5, "angle": -3.01 },
  9746. { "time": 4, "angle": 0 },
  9747. { "time": 4.5, "angle": -3.01 },
  9748. { "time": 5, "angle": 0 },
  9749. { "time": 5.5, "angle": -3.01 },
  9750. { "time": 6, "angle": 0 }
  9751. ],
  9752. "translate": [
  9753. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9754. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9755. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9756. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9757. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9758. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9759. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9760. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9761. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9762. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9763. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9764. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9765. { "time": 6, "x": 0, "y": 0 }
  9766. ],
  9767. "scale": [
  9768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9769. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9770. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9771. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9772. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9773. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9774. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9775. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9776. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9777. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9778. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9779. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9780. { "time": 6, "x": 1, "y": 1 }
  9781. ]
  9782. },
  9783. "bone44": {
  9784. "rotate": [
  9785. { "time": 0, "angle": 0 },
  9786. { "time": 0.5, "angle": -3.01 },
  9787. { "time": 1, "angle": 0 },
  9788. { "time": 1.5, "angle": -3.01 },
  9789. { "time": 2, "angle": 0 },
  9790. { "time": 2.5, "angle": -3.01 },
  9791. { "time": 3, "angle": 0 },
  9792. { "time": 3.5, "angle": -3.01 },
  9793. { "time": 4, "angle": 0 },
  9794. { "time": 4.5, "angle": -3.01 },
  9795. { "time": 5, "angle": 0 },
  9796. { "time": 5.5, "angle": -3.01 },
  9797. { "time": 6, "angle": 0 }
  9798. ],
  9799. "translate": [
  9800. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9801. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9802. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9803. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9804. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9805. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9806. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9807. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9808. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9809. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9810. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9811. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9812. { "time": 6, "x": 0, "y": 0 }
  9813. ],
  9814. "scale": [
  9815. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9816. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9817. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9818. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9819. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9820. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9821. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9822. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9823. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9824. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9825. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9826. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9827. { "time": 6, "x": 1, "y": 1 }
  9828. ]
  9829. },
  9830. "bone45": {
  9831. "rotate": [
  9832. { "time": 0, "angle": 0, "curve": "stepped" },
  9833. { "time": 0.5, "angle": 0, "curve": "stepped" },
  9834. { "time": 1, "angle": 0, "curve": "stepped" },
  9835. { "time": 1.5, "angle": 0, "curve": "stepped" },
  9836. { "time": 2, "angle": 0, "curve": "stepped" },
  9837. { "time": 2.5, "angle": 0, "curve": "stepped" },
  9838. { "time": 3, "angle": 0, "curve": "stepped" },
  9839. { "time": 3.5, "angle": 0, "curve": "stepped" },
  9840. { "time": 4, "angle": 0, "curve": "stepped" },
  9841. { "time": 4.5, "angle": 0, "curve": "stepped" },
  9842. { "time": 5, "angle": 0, "curve": "stepped" },
  9843. { "time": 5.5, "angle": 0, "curve": "stepped" },
  9844. { "time": 6, "angle": 0 }
  9845. ],
  9846. "translate": [
  9847. { "time": 0, "x": 0, "y": 0 },
  9848. { "time": 0.5, "x": 0.37, "y": 0.02 },
  9849. { "time": 1, "x": 0, "y": 0 },
  9850. { "time": 1.5, "x": 0.37, "y": 0.02 },
  9851. { "time": 2, "x": 0, "y": 0 },
  9852. { "time": 2.5, "x": 0.37, "y": 0.02 },
  9853. { "time": 3, "x": 0, "y": 0 },
  9854. { "time": 3.5, "x": 0.37, "y": 0.02 },
  9855. { "time": 4, "x": 0, "y": 0 },
  9856. { "time": 4.5, "x": 0.37, "y": 0.02 },
  9857. { "time": 5, "x": 0, "y": 0 },
  9858. { "time": 5.5, "x": 0.37, "y": 0.02 },
  9859. { "time": 6, "x": 0, "y": 0 }
  9860. ],
  9861. "scale": [
  9862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9863. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9864. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9865. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9866. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9867. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9868. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9869. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9870. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9871. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9872. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9873. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9874. { "time": 6, "x": 1, "y": 1 }
  9875. ]
  9876. },
  9877. "bone46": {
  9878. "rotate": [
  9879. { "time": 0, "angle": 0 },
  9880. { "time": 0.5, "angle": -2.75 },
  9881. { "time": 1, "angle": 0 },
  9882. { "time": 1.5, "angle": -2.75 },
  9883. { "time": 2, "angle": 0 },
  9884. { "time": 2.5, "angle": -2.75 },
  9885. { "time": 3, "angle": 0 },
  9886. { "time": 3.5, "angle": -2.75 },
  9887. { "time": 4, "angle": 0 },
  9888. { "time": 4.5, "angle": -2.75 },
  9889. { "time": 5, "angle": 0 },
  9890. { "time": 5.5, "angle": -2.75 },
  9891. { "time": 6, "angle": 0 }
  9892. ],
  9893. "translate": [
  9894. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9895. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9896. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9897. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9898. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9899. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9900. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9901. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9902. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9903. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9904. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9905. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9906. { "time": 6, "x": 0, "y": 0 }
  9907. ],
  9908. "scale": [
  9909. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9910. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9911. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9912. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9913. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9914. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9915. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9916. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9917. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9918. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9919. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9920. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9921. { "time": 6, "x": 1, "y": 1 }
  9922. ]
  9923. },
  9924. "bone47": {
  9925. "rotate": [
  9926. { "time": 0, "angle": 0 },
  9927. { "time": 0.5, "angle": -0.26 },
  9928. { "time": 1, "angle": 0 },
  9929. { "time": 1.5, "angle": -0.26 },
  9930. { "time": 2, "angle": 0 },
  9931. { "time": 2.5, "angle": -0.26 },
  9932. { "time": 3, "angle": 0 },
  9933. { "time": 3.5, "angle": -0.26 },
  9934. { "time": 4, "angle": 0 },
  9935. { "time": 4.5, "angle": -0.26 },
  9936. { "time": 5, "angle": 0 },
  9937. { "time": 5.5, "angle": -0.26 },
  9938. { "time": 6, "angle": 0 }
  9939. ],
  9940. "translate": [
  9941. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9942. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9943. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9944. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9945. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9946. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9947. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9948. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9949. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9950. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9951. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9952. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  9953. { "time": 6, "x": 0, "y": 0 }
  9954. ],
  9955. "scale": [
  9956. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  9957. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  9958. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  9959. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  9960. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  9961. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  9962. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  9963. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  9964. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  9965. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  9966. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  9967. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  9968. { "time": 6, "x": 1, "y": 1 }
  9969. ]
  9970. },
  9971. "bone48": {
  9972. "rotate": [
  9973. { "time": 0, "angle": 0 },
  9974. { "time": 0.5, "angle": -0.16 },
  9975. { "time": 1, "angle": 0 },
  9976. { "time": 1.5, "angle": -0.26 },
  9977. { "time": 2, "angle": 0 },
  9978. { "time": 2.5, "angle": -0.26 },
  9979. { "time": 3, "angle": 0 },
  9980. { "time": 3.5, "angle": -0.26 },
  9981. { "time": 4, "angle": 0 },
  9982. { "time": 4.5, "angle": -0.26 },
  9983. { "time": 5, "angle": 0 },
  9984. { "time": 5.5, "angle": -0.26 },
  9985. { "time": 6, "angle": 0 }
  9986. ],
  9987. "translate": [
  9988. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  9989. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  9990. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  9991. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  9992. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  9993. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  9994. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  9995. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  9996. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  9997. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  9998. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  9999. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  10000. { "time": 6, "x": 0, "y": 0 }
  10001. ],
  10002. "scale": [
  10003. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10004. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10005. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10006. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10007. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10008. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  10009. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10010. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  10011. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10012. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10013. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10014. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  10015. { "time": 6, "x": 1, "y": 1 }
  10016. ]
  10017. },
  10018. "bone49": {
  10019. "rotate": [
  10020. { "time": 0, "angle": 0 },
  10021. { "time": 0.5, "angle": -0.26 },
  10022. { "time": 1, "angle": 0 },
  10023. { "time": 1.5, "angle": -0.26 },
  10024. { "time": 2, "angle": 0 },
  10025. { "time": 2.5, "angle": -0.26 },
  10026. { "time": 3, "angle": 0 },
  10027. { "time": 3.5, "angle": -0.26 },
  10028. { "time": 4, "angle": 0 },
  10029. { "time": 4.5, "angle": -0.26 },
  10030. { "time": 5, "angle": 0 },
  10031. { "time": 5.5, "angle": -0.26 },
  10032. { "time": 6, "angle": 0 }
  10033. ],
  10034. "translate": [
  10035. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10036. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10037. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10038. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10039. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10040. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  10041. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10042. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  10043. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10044. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10045. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10046. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  10047. { "time": 6, "x": 0, "y": 0 }
  10048. ],
  10049. "scale": [
  10050. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10051. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10052. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10053. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10054. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10055. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  10056. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10057. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  10058. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10059. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10060. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10061. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  10062. { "time": 6, "x": 1, "y": 1 }
  10063. ]
  10064. },
  10065. "bone50": {
  10066. "rotate": [
  10067. { "time": 0, "angle": 0, "curve": "stepped" },
  10068. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  10069. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  10070. { "time": 0.5, "angle": 0, "curve": "stepped" },
  10071. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  10072. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  10073. { "time": 1, "angle": 0, "curve": "stepped" },
  10074. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  10075. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  10076. { "time": 1.5, "angle": 0, "curve": "stepped" },
  10077. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  10078. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  10079. { "time": 2, "angle": 0, "curve": "stepped" },
  10080. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  10081. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  10082. { "time": 2.5, "angle": 0, "curve": "stepped" },
  10083. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  10084. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  10085. { "time": 3, "angle": 0, "curve": "stepped" },
  10086. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  10087. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  10088. { "time": 3.5, "angle": 0, "curve": "stepped" },
  10089. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  10090. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  10091. { "time": 4, "angle": 0, "curve": "stepped" },
  10092. { "time": 4.1667, "angle": 0, "curve": "stepped" },
  10093. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  10094. { "time": 4.5, "angle": 0, "curve": "stepped" },
  10095. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  10096. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  10097. { "time": 5, "angle": 0, "curve": "stepped" },
  10098. { "time": 5.1667, "angle": 0, "curve": "stepped" },
  10099. { "time": 5.3333, "angle": 0, "curve": "stepped" },
  10100. { "time": 5.5, "angle": 0, "curve": "stepped" },
  10101. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  10102. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  10103. { "time": 6, "angle": 0 }
  10104. ],
  10105. "translate": [
  10106. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10107. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  10108. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  10109. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10110. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10111. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  10112. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10113. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  10114. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10115. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10116. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  10117. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  10118. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10119. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  10120. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  10121. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  10122. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  10123. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  10124. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10125. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  10126. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  10127. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  10128. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  10129. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  10130. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10131. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  10132. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  10133. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10134. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  10135. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  10136. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10137. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  10138. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  10139. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  10140. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  10141. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  10142. { "time": 6, "x": 0, "y": 0 }
  10143. ],
  10144. "scale": [
  10145. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10146. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  10147. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  10148. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10149. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10150. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  10151. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10152. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  10153. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10154. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10155. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  10156. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  10157. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10158. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  10159. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  10160. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  10161. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  10162. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  10163. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10164. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  10165. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  10166. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  10167. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  10168. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  10169. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10170. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  10171. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  10172. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10173. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  10174. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  10175. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10176. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  10177. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  10178. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  10179. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  10180. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  10181. { "time": 6, "x": 1, "y": 1 }
  10182. ]
  10183. },
  10184. "bone51": {
  10185. "rotate": [
  10186. { "time": 0, "angle": 0 },
  10187. { "time": 0.5, "angle": 9.97 },
  10188. { "time": 1, "angle": 0 },
  10189. { "time": 1.5, "angle": 9.97 },
  10190. { "time": 2, "angle": 0 },
  10191. { "time": 2.5, "angle": 9.97 },
  10192. { "time": 3, "angle": 0 },
  10193. { "time": 3.5, "angle": 9.97 },
  10194. { "time": 4, "angle": 0 },
  10195. { "time": 4.5, "angle": 9.97 },
  10196. { "time": 5, "angle": 0 },
  10197. { "time": 5.5, "angle": 9.97 },
  10198. { "time": 6, "angle": 0 }
  10199. ],
  10200. "translate": [
  10201. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10202. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10203. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10204. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10205. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10206. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  10207. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10208. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  10209. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10210. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10211. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10212. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  10213. { "time": 6, "x": 0, "y": 0 }
  10214. ],
  10215. "scale": [
  10216. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10217. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10218. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10219. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10220. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10221. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  10222. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10223. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  10224. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10225. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10226. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10227. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  10228. { "time": 6, "x": 1, "y": 1 }
  10229. ]
  10230. },
  10231. "bone52": {
  10232. "rotate": [
  10233. { "time": 0, "angle": 0 },
  10234. { "time": 0.5, "angle": 9.97 },
  10235. { "time": 1, "angle": 0 },
  10236. { "time": 1.5, "angle": 9.97 },
  10237. { "time": 2, "angle": 0 },
  10238. { "time": 2.5, "angle": 9.97 },
  10239. { "time": 3, "angle": 0 },
  10240. { "time": 3.5, "angle": 9.97 },
  10241. { "time": 4, "angle": 0 },
  10242. { "time": 4.5, "angle": 9.97 },
  10243. { "time": 5, "angle": 0 },
  10244. { "time": 5.5, "angle": 9.97 },
  10245. { "time": 6, "angle": 0 }
  10246. ],
  10247. "translate": [
  10248. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10249. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10250. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10251. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10252. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10253. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  10254. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10255. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  10256. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10257. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10258. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10259. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  10260. { "time": 6, "x": 0, "y": 0 }
  10261. ],
  10262. "scale": [
  10263. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10264. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10265. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10266. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10267. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10268. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  10269. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10270. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  10271. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10272. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10273. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10274. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  10275. { "time": 6, "x": 1, "y": 1 }
  10276. ]
  10277. },
  10278. "bone53": {
  10279. "rotate": [
  10280. { "time": 0, "angle": 0 },
  10281. { "time": 0.5, "angle": 9.97 },
  10282. { "time": 1, "angle": 0 },
  10283. { "time": 1.5, "angle": 9.97 },
  10284. { "time": 2, "angle": 0 },
  10285. { "time": 2.5, "angle": 9.97 },
  10286. { "time": 3, "angle": 0 },
  10287. { "time": 3.5, "angle": 9.97 },
  10288. { "time": 4, "angle": 0 },
  10289. { "time": 4.5, "angle": 9.97 },
  10290. { "time": 5, "angle": 0 },
  10291. { "time": 5.5, "angle": 9.97 },
  10292. { "time": 6, "angle": 0 }
  10293. ],
  10294. "translate": [
  10295. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10296. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10297. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10298. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10299. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10300. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  10301. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10302. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  10303. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10304. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10305. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10306. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  10307. { "time": 6, "x": 0, "y": 0 }
  10308. ],
  10309. "scale": [
  10310. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10311. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10312. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10313. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10314. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10315. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  10316. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10317. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  10318. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10319. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10320. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10321. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  10322. { "time": 6, "x": 1, "y": 1 }
  10323. ]
  10324. },
  10325. "bone54": {
  10326. "rotate": [
  10327. { "time": 0, "angle": 0, "curve": "stepped" },
  10328. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  10329. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  10330. { "time": 0.5, "angle": 0, "curve": "stepped" },
  10331. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  10332. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  10333. { "time": 1, "angle": 0, "curve": "stepped" },
  10334. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  10335. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  10336. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  10337. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  10338. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  10339. { "time": 2, "angle": 0, "curve": "stepped" },
  10340. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  10341. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  10342. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  10343. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  10344. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  10345. { "time": 3, "angle": 0, "curve": "stepped" },
  10346. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  10347. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  10348. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  10349. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  10350. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  10351. { "time": 4, "angle": 0, "curve": "stepped" },
  10352. { "time": 4.0667, "angle": 0, "curve": "stepped" },
  10353. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  10354. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  10355. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  10356. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  10357. { "time": 5, "angle": 0, "curve": "stepped" },
  10358. { "time": 5.0667, "angle": 0, "curve": "stepped" },
  10359. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  10360. { "time": 5.2333, "angle": 0, "curve": "stepped" },
  10361. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  10362. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  10363. { "time": 6, "angle": 0 }
  10364. ],
  10365. "translate": [
  10366. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10367. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  10368. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  10369. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10370. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10371. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  10372. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10373. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  10374. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  10375. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10376. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  10377. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  10378. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10379. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  10380. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  10381. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  10382. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  10383. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  10384. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10385. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  10386. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  10387. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  10388. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  10389. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  10390. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10391. { "time": 4.0667, "x": 0, "y": 0, "curve": "stepped" },
  10392. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  10393. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  10394. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  10395. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  10396. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10397. { "time": 5.0667, "x": 0, "y": 0, "curve": "stepped" },
  10398. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  10399. { "time": 5.2333, "x": 0, "y": 0, "curve": "stepped" },
  10400. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  10401. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  10402. { "time": 6, "x": 0, "y": 0 }
  10403. ],
  10404. "scale": [
  10405. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10406. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  10407. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  10408. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10409. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10410. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  10411. { "time": 1, "x": 1, "y": 1 },
  10412. { "time": 1.0667, "x": 0.644, "y": 1, "curve": "stepped" },
  10413. { "time": 1.1333, "x": 0.644, "y": 1 },
  10414. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10415. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  10416. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  10417. { "time": 2, "x": 1, "y": 1 },
  10418. { "time": 2.0667, "x": 0.644, "y": 1, "curve": "stepped" },
  10419. { "time": 2.1333, "x": 0.644, "y": 1 },
  10420. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  10421. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  10422. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  10423. { "time": 3, "x": 1, "y": 1 },
  10424. { "time": 3.0667, "x": 0.644, "y": 1, "curve": "stepped" },
  10425. { "time": 3.1333, "x": 0.644, "y": 1 },
  10426. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  10427. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  10428. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  10429. { "time": 4, "x": 1, "y": 1 },
  10430. { "time": 4.0667, "x": 0.644, "y": 1, "curve": "stepped" },
  10431. { "time": 4.1333, "x": 0.644, "y": 1 },
  10432. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  10433. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  10434. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  10435. { "time": 5, "x": 1, "y": 1 },
  10436. { "time": 5.0667, "x": 0.644, "y": 1, "curve": "stepped" },
  10437. { "time": 5.1333, "x": 0.644, "y": 1 },
  10438. { "time": 5.2333, "x": 1, "y": 1, "curve": "stepped" },
  10439. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  10440. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  10441. { "time": 6, "x": 1, "y": 1 }
  10442. ]
  10443. },
  10444. "bone55": {
  10445. "rotate": [
  10446. { "time": 0, "angle": 0, "curve": "stepped" },
  10447. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  10448. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  10449. { "time": 0.5, "angle": 0, "curve": "stepped" },
  10450. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  10451. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  10452. { "time": 1, "angle": 0, "curve": "stepped" },
  10453. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  10454. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  10455. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  10456. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  10457. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  10458. { "time": 2, "angle": 0, "curve": "stepped" },
  10459. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  10460. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  10461. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  10462. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  10463. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  10464. { "time": 3, "angle": 0, "curve": "stepped" },
  10465. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  10466. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  10467. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  10468. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  10469. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  10470. { "time": 4, "angle": 0, "curve": "stepped" },
  10471. { "time": 4.0667, "angle": 0, "curve": "stepped" },
  10472. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  10473. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  10474. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  10475. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  10476. { "time": 5, "angle": 0, "curve": "stepped" },
  10477. { "time": 5.0667, "angle": 0, "curve": "stepped" },
  10478. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  10479. { "time": 5.2333, "angle": 0, "curve": "stepped" },
  10480. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  10481. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  10482. { "time": 6, "angle": 0 }
  10483. ],
  10484. "translate": [
  10485. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10486. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  10487. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  10488. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10489. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10490. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  10491. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10492. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  10493. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  10494. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10495. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  10496. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  10497. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10498. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  10499. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  10500. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  10501. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  10502. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  10503. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10504. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  10505. { "time": 3.1333, "x": 0, "y": 0, "curve": "stepped" },
  10506. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  10507. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  10508. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  10509. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10510. { "time": 4.0667, "x": 0, "y": 0, "curve": "stepped" },
  10511. { "time": 4.1333, "x": 0, "y": 0, "curve": "stepped" },
  10512. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  10513. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  10514. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  10515. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10516. { "time": 5.0667, "x": 0, "y": 0, "curve": "stepped" },
  10517. { "time": 5.1333, "x": 0, "y": 0, "curve": "stepped" },
  10518. { "time": 5.2333, "x": 0, "y": 0, "curve": "stepped" },
  10519. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  10520. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  10521. { "time": 6, "x": 0, "y": 0 }
  10522. ],
  10523. "scale": [
  10524. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10525. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  10526. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  10527. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10528. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10529. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  10530. { "time": 1, "x": 1, "y": 1 },
  10531. { "time": 1.0667, "x": 0.622, "y": 1, "curve": "stepped" },
  10532. { "time": 1.1333, "x": 0.622, "y": 1 },
  10533. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10534. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  10535. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  10536. { "time": 2, "x": 1, "y": 1 },
  10537. { "time": 2.0667, "x": 0.622, "y": 1, "curve": "stepped" },
  10538. { "time": 2.1333, "x": 0.622, "y": 1 },
  10539. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  10540. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  10541. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  10542. { "time": 3, "x": 1, "y": 1 },
  10543. { "time": 3.0667, "x": 0.622, "y": 1, "curve": "stepped" },
  10544. { "time": 3.1333, "x": 0.622, "y": 1 },
  10545. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  10546. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  10547. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  10548. { "time": 4, "x": 1, "y": 1 },
  10549. { "time": 4.0667, "x": 0.622, "y": 1, "curve": "stepped" },
  10550. { "time": 4.1333, "x": 0.622, "y": 1 },
  10551. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  10552. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  10553. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  10554. { "time": 5, "x": 1, "y": 1 },
  10555. { "time": 5.0667, "x": 0.622, "y": 1, "curve": "stepped" },
  10556. { "time": 5.1333, "x": 0.622, "y": 1 },
  10557. { "time": 5.2333, "x": 1, "y": 1, "curve": "stepped" },
  10558. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  10559. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  10560. { "time": 6, "x": 1, "y": 1 }
  10561. ]
  10562. },
  10563. "bone56": {
  10564. "rotate": [
  10565. { "time": 0, "angle": 0, "curve": "stepped" },
  10566. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  10567. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  10568. { "time": 0.5, "angle": 0, "curve": "stepped" },
  10569. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  10570. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  10571. { "time": 1, "angle": 0, "curve": "stepped" },
  10572. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  10573. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  10574. { "time": 1.5, "angle": 0, "curve": "stepped" },
  10575. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  10576. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  10577. { "time": 2, "angle": 0, "curve": "stepped" },
  10578. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  10579. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  10580. { "time": 2.5, "angle": 0, "curve": "stepped" },
  10581. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  10582. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  10583. { "time": 3, "angle": 0, "curve": "stepped" },
  10584. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  10585. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  10586. { "time": 3.5, "angle": 0, "curve": "stepped" },
  10587. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  10588. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  10589. { "time": 4, "angle": 0, "curve": "stepped" },
  10590. { "time": 4.1667, "angle": 0, "curve": "stepped" },
  10591. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  10592. { "time": 4.5, "angle": 0, "curve": "stepped" },
  10593. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  10594. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  10595. { "time": 5, "angle": 0, "curve": "stepped" },
  10596. { "time": 5.1667, "angle": 0, "curve": "stepped" },
  10597. { "time": 5.3333, "angle": 0, "curve": "stepped" },
  10598. { "time": 5.5, "angle": 0, "curve": "stepped" },
  10599. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  10600. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  10601. { "time": 6, "angle": 0 }
  10602. ],
  10603. "translate": [
  10604. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10605. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  10606. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  10607. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10608. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10609. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  10610. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10611. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  10612. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10613. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10614. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  10615. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  10616. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10617. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  10618. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  10619. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  10620. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  10621. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  10622. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10623. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  10624. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  10625. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  10626. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  10627. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  10628. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10629. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  10630. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  10631. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10632. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  10633. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  10634. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10635. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  10636. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  10637. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  10638. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  10639. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  10640. { "time": 6, "x": 0, "y": 0 }
  10641. ],
  10642. "scale": [
  10643. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10644. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  10645. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  10646. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10647. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10648. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  10649. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10650. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  10651. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10652. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10653. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  10654. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  10655. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10656. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  10657. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  10658. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  10659. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  10660. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  10661. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10662. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  10663. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  10664. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  10665. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  10666. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  10667. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10668. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  10669. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  10670. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10671. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  10672. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  10673. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10674. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  10675. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  10676. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  10677. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  10678. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  10679. { "time": 6, "x": 1, "y": 1 }
  10680. ]
  10681. },
  10682. "bone57": {
  10683. "rotate": [
  10684. { "time": 0, "angle": 0, "curve": "stepped" },
  10685. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  10686. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  10687. { "time": 0.5, "angle": 0, "curve": "stepped" },
  10688. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  10689. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  10690. { "time": 1, "angle": 0, "curve": "stepped" },
  10691. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  10692. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  10693. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  10694. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  10695. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  10696. { "time": 2, "angle": 0, "curve": "stepped" },
  10697. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  10698. { "time": 2.1333, "angle": 0, "curve": "stepped" },
  10699. { "time": 2.2333, "angle": 0, "curve": "stepped" },
  10700. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  10701. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  10702. { "time": 3, "angle": 0, "curve": "stepped" },
  10703. { "time": 3.0667, "angle": 0, "curve": "stepped" },
  10704. { "time": 3.1333, "angle": 0, "curve": "stepped" },
  10705. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  10706. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  10707. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  10708. { "time": 4, "angle": 0, "curve": "stepped" },
  10709. { "time": 4.0667, "angle": 0, "curve": "stepped" },
  10710. { "time": 4.1333, "angle": 0, "curve": "stepped" },
  10711. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  10712. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  10713. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  10714. { "time": 5, "angle": 0, "curve": "stepped" },
  10715. { "time": 5.0667, "angle": 0, "curve": "stepped" },
  10716. { "time": 5.1333, "angle": 0, "curve": "stepped" },
  10717. { "time": 5.2333, "angle": 0, "curve": "stepped" },
  10718. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  10719. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  10720. { "time": 6, "angle": 0 }
  10721. ],
  10722. "translate": [
  10723. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10724. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  10725. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  10726. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10727. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10728. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  10729. { "time": 1, "x": 0, "y": 0 },
  10730. { "time": 1.0667, "x": -1.13, "y": -0.08, "curve": "stepped" },
  10731. { "time": 1.1333, "x": -1.13, "y": -0.08 },
  10732. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  10733. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  10734. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  10735. { "time": 2, "x": 0, "y": 0 },
  10736. { "time": 2.0667, "x": -1.13, "y": -0.08, "curve": "stepped" },
  10737. { "time": 2.1333, "x": -1.13, "y": -0.08 },
  10738. { "time": 2.2333, "x": 0, "y": 0, "curve": "stepped" },
  10739. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  10740. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  10741. { "time": 3, "x": 0, "y": 0 },
  10742. { "time": 3.0667, "x": -1.13, "y": -0.08, "curve": "stepped" },
  10743. { "time": 3.1333, "x": -1.13, "y": -0.08 },
  10744. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  10745. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  10746. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  10747. { "time": 4, "x": 0, "y": 0 },
  10748. { "time": 4.0667, "x": -1.13, "y": -0.08, "curve": "stepped" },
  10749. { "time": 4.1333, "x": -1.13, "y": -0.08 },
  10750. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  10751. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  10752. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  10753. { "time": 5, "x": 0, "y": 0 },
  10754. { "time": 5.0667, "x": -1.13, "y": -0.08, "curve": "stepped" },
  10755. { "time": 5.1333, "x": -1.13, "y": -0.08 },
  10756. { "time": 5.2333, "x": 0, "y": 0, "curve": "stepped" },
  10757. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  10758. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  10759. { "time": 6, "x": 0, "y": 0 }
  10760. ],
  10761. "scale": [
  10762. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10763. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  10764. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  10765. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10766. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10767. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  10768. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10769. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  10770. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  10771. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  10772. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  10773. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  10774. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10775. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  10776. { "time": 2.1333, "x": 1, "y": 1, "curve": "stepped" },
  10777. { "time": 2.2333, "x": 1, "y": 1, "curve": "stepped" },
  10778. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  10779. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  10780. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10781. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  10782. { "time": 3.1333, "x": 1, "y": 1, "curve": "stepped" },
  10783. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  10784. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  10785. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  10786. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10787. { "time": 4.0667, "x": 1, "y": 1, "curve": "stepped" },
  10788. { "time": 4.1333, "x": 1, "y": 1, "curve": "stepped" },
  10789. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  10790. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  10791. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  10792. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10793. { "time": 5.0667, "x": 1, "y": 1, "curve": "stepped" },
  10794. { "time": 5.1333, "x": 1, "y": 1, "curve": "stepped" },
  10795. { "time": 5.2333, "x": 1, "y": 1, "curve": "stepped" },
  10796. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  10797. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  10798. { "time": 6, "x": 1, "y": 1 }
  10799. ]
  10800. },
  10801. "bone58": {
  10802. "rotate": [
  10803. { "time": 0, "angle": 0, "curve": "stepped" },
  10804. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  10805. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  10806. { "time": 0.5, "angle": 0, "curve": "stepped" },
  10807. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  10808. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  10809. { "time": 1, "angle": 0, "curve": "stepped" },
  10810. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  10811. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  10812. { "time": 1.5, "angle": 0, "curve": "stepped" },
  10813. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  10814. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  10815. { "time": 2, "angle": 0, "curve": "stepped" },
  10816. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  10817. { "time": 2.3333, "angle": 0, "curve": "stepped" },
  10818. { "time": 2.5, "angle": 0, "curve": "stepped" },
  10819. { "time": 2.6667, "angle": 0, "curve": "stepped" },
  10820. { "time": 2.8333, "angle": 0, "curve": "stepped" },
  10821. { "time": 3, "angle": 0, "curve": "stepped" },
  10822. { "time": 3.1667, "angle": 0, "curve": "stepped" },
  10823. { "time": 3.3333, "angle": 0, "curve": "stepped" },
  10824. { "time": 3.5, "angle": 0, "curve": "stepped" },
  10825. { "time": 3.6667, "angle": 0, "curve": "stepped" },
  10826. { "time": 3.8333, "angle": 0, "curve": "stepped" },
  10827. { "time": 4, "angle": 0, "curve": "stepped" },
  10828. { "time": 4.1667, "angle": 0, "curve": "stepped" },
  10829. { "time": 4.3333, "angle": 0, "curve": "stepped" },
  10830. { "time": 4.5, "angle": 0, "curve": "stepped" },
  10831. { "time": 4.6667, "angle": 0, "curve": "stepped" },
  10832. { "time": 4.8333, "angle": 0, "curve": "stepped" },
  10833. { "time": 5, "angle": 0, "curve": "stepped" },
  10834. { "time": 5.1667, "angle": 0, "curve": "stepped" },
  10835. { "time": 5.3333, "angle": 0, "curve": "stepped" },
  10836. { "time": 5.5, "angle": 0, "curve": "stepped" },
  10837. { "time": 5.6667, "angle": 0, "curve": "stepped" },
  10838. { "time": 5.8333, "angle": 0, "curve": "stepped" },
  10839. { "time": 6, "angle": 0 }
  10840. ],
  10841. "translate": [
  10842. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  10843. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  10844. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  10845. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  10846. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  10847. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  10848. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  10849. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  10850. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  10851. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  10852. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  10853. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  10854. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  10855. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  10856. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  10857. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  10858. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  10859. { "time": 2.8333, "x": 0, "y": 0, "curve": "stepped" },
  10860. { "time": 3, "x": 0, "y": 0, "curve": "stepped" },
  10861. { "time": 3.1667, "x": 0, "y": 0, "curve": "stepped" },
  10862. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  10863. { "time": 3.5, "x": 0, "y": 0, "curve": "stepped" },
  10864. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  10865. { "time": 3.8333, "x": 0, "y": 0, "curve": "stepped" },
  10866. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10867. { "time": 4.1667, "x": 0, "y": 0, "curve": "stepped" },
  10868. { "time": 4.3333, "x": 0, "y": 0, "curve": "stepped" },
  10869. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10870. { "time": 4.6667, "x": 0, "y": 0, "curve": "stepped" },
  10871. { "time": 4.8333, "x": 0, "y": 0, "curve": "stepped" },
  10872. { "time": 5, "x": 0, "y": 0, "curve": "stepped" },
  10873. { "time": 5.1667, "x": 0, "y": 0, "curve": "stepped" },
  10874. { "time": 5.3333, "x": 0, "y": 0, "curve": "stepped" },
  10875. { "time": 5.5, "x": 0, "y": 0, "curve": "stepped" },
  10876. { "time": 5.6667, "x": 0, "y": 0, "curve": "stepped" },
  10877. { "time": 5.8333, "x": 0, "y": 0, "curve": "stepped" },
  10878. { "time": 6, "x": 0, "y": 0 }
  10879. ],
  10880. "scale": [
  10881. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10882. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  10883. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  10884. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  10885. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  10886. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  10887. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10888. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  10889. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10890. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  10891. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  10892. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  10893. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  10894. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  10895. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  10896. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  10897. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  10898. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  10899. { "time": 3, "x": 1, "y": 1, "curve": "stepped" },
  10900. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  10901. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  10902. { "time": 3.5, "x": 1, "y": 1, "curve": "stepped" },
  10903. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  10904. { "time": 3.8333, "x": 1, "y": 1, "curve": "stepped" },
  10905. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10906. { "time": 4.1667, "x": 1, "y": 1, "curve": "stepped" },
  10907. { "time": 4.3333, "x": 1, "y": 1, "curve": "stepped" },
  10908. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10909. { "time": 4.6667, "x": 1, "y": 1, "curve": "stepped" },
  10910. { "time": 4.8333, "x": 1, "y": 1, "curve": "stepped" },
  10911. { "time": 5, "x": 1, "y": 1, "curve": "stepped" },
  10912. { "time": 5.1667, "x": 1, "y": 1, "curve": "stepped" },
  10913. { "time": 5.3333, "x": 1, "y": 1, "curve": "stepped" },
  10914. { "time": 5.5, "x": 1, "y": 1, "curve": "stepped" },
  10915. { "time": 5.6667, "x": 1, "y": 1, "curve": "stepped" },
  10916. { "time": 5.8333, "x": 1, "y": 1, "curve": "stepped" },
  10917. { "time": 6, "x": 1, "y": 1 }
  10918. ]
  10919. },
  10920. "bone61": {
  10921. "rotate": [
  10922. { "time": 0, "angle": 0, "curve": "stepped" },
  10923. { "time": 1.3333, "angle": 0 },
  10924. { "time": 2.0667, "angle": 1.2, "curve": "stepped" },
  10925. { "time": 3.1667, "angle": 1.2 },
  10926. { "time": 3.2, "angle": 0 },
  10927. { "time": 3.9333, "angle": 1.2 },
  10928. { "time": 4, "angle": 0, "curve": "stepped" },
  10929. { "time": 4.5, "angle": 0, "curve": "stepped" },
  10930. { "time": 5, "angle": 0 }
  10931. ],
  10932. "translate": [
  10933. { "time": 0, "x": 43.69, "y": -37.66, "curve": "stepped" },
  10934. { "time": 1.3333, "x": 43.69, "y": -37.66 },
  10935. { "time": 1.6667, "x": 13.96, "y": 6.14 },
  10936. { "time": 2.0667, "x": 16.68, "y": 67.27, "curve": "stepped" },
  10937. { "time": 3.1667, "x": 16.68, "y": 67.27 },
  10938. { "time": 3.2, "x": 43.69, "y": -37.66 },
  10939. { "time": 3.5333, "x": 13.96, "y": 6.14 },
  10940. { "time": 3.9333, "x": -24.36, "y": 34.1 },
  10941. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10942. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10943. { "time": 5, "x": 0, "y": 0 }
  10944. ],
  10945. "scale": [
  10946. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10947. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  10948. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  10949. { "time": 3.1667, "x": 1, "y": 1, "curve": "stepped" },
  10950. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  10951. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  10952. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10953. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10954. { "time": 5, "x": 1, "y": 1 }
  10955. ],
  10956. "shear": [
  10957. { "time": 2.0667, "x": 1.2, "y": 0, "curve": "stepped" },
  10958. { "time": 3.1667, "x": 1.2, "y": 0, "curve": "stepped" },
  10959. { "time": 3.9333, "x": 1.2, "y": 0 }
  10960. ]
  10961. },
  10962. "bone60": {
  10963. "rotate": [
  10964. { "time": 0, "angle": 0, "curve": "stepped" },
  10965. { "time": 1, "angle": 0 },
  10966. { "time": 1.8333, "angle": 1.2, "curve": "stepped" },
  10967. { "time": 2.6667, "angle": 1.2 },
  10968. { "time": 2.7333, "angle": 0 },
  10969. { "time": 3.5667, "angle": 1.2 },
  10970. { "time": 4, "angle": 0, "curve": "stepped" },
  10971. { "time": 4.5, "angle": 0, "curve": "stepped" },
  10972. { "time": 5, "angle": 0 }
  10973. ],
  10974. "translate": [
  10975. { "time": 0, "x": -48.26, "y": -6.24, "curve": "stepped" },
  10976. { "time": 1, "x": -48.26, "y": -6.24 },
  10977. { "time": 1.3667, "x": 12.54, "y": -6.97 },
  10978. { "time": 1.8333, "x": 35.3, "y": 12.57, "curve": "stepped" },
  10979. { "time": 2.6667, "x": 35.3, "y": 12.57 },
  10980. { "time": 2.7333, "x": -48.26, "y": -6.24 },
  10981. { "time": 3.1, "x": 12.54, "y": -6.97 },
  10982. { "time": 3.5667, "x": 35.3, "y": 12.57 },
  10983. { "time": 4, "x": 0, "y": 0, "curve": "stepped" },
  10984. { "time": 4.5, "x": 0, "y": 0, "curve": "stepped" },
  10985. { "time": 5, "x": 0, "y": 0 }
  10986. ],
  10987. "scale": [
  10988. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  10989. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  10990. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  10991. { "time": 2.6667, "x": 1, "y": 1, "curve": "stepped" },
  10992. { "time": 2.7333, "x": 1, "y": 1, "curve": "stepped" },
  10993. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  10994. { "time": 4, "x": 1, "y": 1, "curve": "stepped" },
  10995. { "time": 4.5, "x": 1, "y": 1, "curve": "stepped" },
  10996. { "time": 5, "x": 1, "y": 1 }
  10997. ],
  10998. "shear": [
  10999. { "time": 1.8333, "x": 1.2, "y": 0, "curve": "stepped" },
  11000. { "time": 2.6667, "x": 1.2, "y": 0, "curve": "stepped" },
  11001. { "time": 3.5667, "x": 1.2, "y": 0 }
  11002. ]
  11003. },
  11004. "bone59": {
  11005. "rotate": [
  11006. { "time": 0, "angle": 0, "curve": "stepped" },
  11007. { "time": 1.1667, "angle": 0 },
  11008. { "time": 1.8667, "angle": 1.2, "curve": "stepped" },
  11009. { "time": 2.0333, "angle": 1.2 },
  11010. { "time": 2.0667, "angle": 0 },
  11011. { "time": 2.7667, "angle": 1.2, "curve": "stepped" },
  11012. { "time": 2.8333, "angle": 1.2 },
  11013. { "time": 2.8667, "angle": 0 },
  11014. { "time": 3.5667, "angle": 1.2 }
  11015. ],
  11016. "translate": [
  11017. { "time": 0, "x": 25.65, "y": 5.4, "curve": "stepped" },
  11018. { "time": 1.1667, "x": 25.65, "y": 5.4 },
  11019. { "time": 1.4667, "x": -2.17, "y": 0.87 },
  11020. { "time": 1.8667, "x": -31.28, "y": 7.84, "curve": "stepped" },
  11021. { "time": 2.0333, "x": -31.28, "y": 7.84 },
  11022. { "time": 2.0667, "x": 25.65, "y": 5.4 },
  11023. { "time": 2.3667, "x": -2.17, "y": 0.87 },
  11024. { "time": 2.7667, "x": -26.97, "y": 32.94, "curve": "stepped" },
  11025. { "time": 2.8333, "x": -26.97, "y": 32.94 },
  11026. { "time": 2.8667, "x": 25.65, "y": 5.4 },
  11027. { "time": 3.1667, "x": -2.17, "y": 0.87 },
  11028. { "time": 3.5667, "x": -26.97, "y": 32.94 }
  11029. ],
  11030. "scale": [
  11031. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11032. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  11033. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  11034. { "time": 2.0333, "x": 1, "y": 1, "curve": "stepped" },
  11035. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  11036. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  11037. { "time": 2.8333, "x": 1, "y": 1, "curve": "stepped" },
  11038. { "time": 2.8667, "x": 1, "y": 1, "curve": "stepped" },
  11039. { "time": 3.5667, "x": 1, "y": 1 }
  11040. ],
  11041. "shear": [
  11042. { "time": 1.8667, "x": 1.2, "y": 0, "curve": "stepped" },
  11043. { "time": 2.0333, "x": 1.2, "y": 0, "curve": "stepped" },
  11044. { "time": 2.7667, "x": 1.2, "y": 0, "curve": "stepped" },
  11045. { "time": 2.8333, "x": 1.2, "y": 0, "curve": "stepped" },
  11046. { "time": 3.5667, "x": 1.2, "y": 0 }
  11047. ]
  11048. },
  11049. "bone62": {
  11050. "rotate": [
  11051. { "time": 0, "angle": 0, "curve": "stepped" },
  11052. { "time": 0.8, "angle": 0 },
  11053. { "time": 1.5, "angle": 1.2, "curve": "stepped" },
  11054. { "time": 1.6333, "angle": 1.2 },
  11055. { "time": 1.6667, "angle": 0 },
  11056. { "time": 2.3667, "angle": 1.2 },
  11057. { "time": 2.5, "angle": 0 },
  11058. { "time": 3.2, "angle": 1.2, "curve": "stepped" },
  11059. { "time": 3.3333, "angle": 1.2 },
  11060. { "time": 3.3667, "angle": 0 },
  11061. { "time": 4.0667, "angle": 1.2 }
  11062. ],
  11063. "translate": [
  11064. { "time": 0, "x": -41.86, "y": -54.54, "curve": "stepped" },
  11065. { "time": 0.8, "x": -41.86, "y": -54.54 },
  11066. { "time": 1.1, "x": -10.3, "y": -41.18 },
  11067. { "time": 1.5, "x": 15.78, "y": 1.24, "curve": "stepped" },
  11068. { "time": 1.6333, "x": 15.78, "y": 1.24 },
  11069. { "time": 1.6667, "x": -41.86, "y": -54.54 },
  11070. { "time": 1.9667, "x": -10.3, "y": -41.18 },
  11071. { "time": 2.3667, "x": 15.78, "y": 1.24 },
  11072. { "time": 2.5, "x": -41.86, "y": -54.54 },
  11073. { "time": 2.8, "x": -10.3, "y": -41.18 },
  11074. { "time": 3.2, "x": 15.78, "y": 1.24, "curve": "stepped" },
  11075. { "time": 3.3333, "x": 15.78, "y": 1.24 },
  11076. { "time": 3.3667, "x": -41.86, "y": -54.54 },
  11077. { "time": 3.6667, "x": -10.3, "y": -41.18 },
  11078. { "time": 4.0667, "x": 15.78, "y": 1.24 }
  11079. ],
  11080. "scale": [
  11081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  11082. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  11083. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  11084. { "time": 1.6333, "x": 1, "y": 1, "curve": "stepped" },
  11085. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  11086. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  11087. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  11088. { "time": 3.2, "x": 1, "y": 1, "curve": "stepped" },
  11089. { "time": 3.3333, "x": 1, "y": 1, "curve": "stepped" },
  11090. { "time": 3.3667, "x": 1, "y": 1, "curve": "stepped" },
  11091. { "time": 4.0667, "x": 1, "y": 1 }
  11092. ],
  11093. "shear": [
  11094. { "time": 1.5, "x": 1.2, "y": 0, "curve": "stepped" },
  11095. { "time": 1.6333, "x": 1.2, "y": 0, "curve": "stepped" },
  11096. { "time": 2.3667, "x": 1.2, "y": 0, "curve": "stepped" },
  11097. { "time": 3.2, "x": 1.2, "y": 0, "curve": "stepped" },
  11098. { "time": 3.3333, "x": 1.2, "y": 0, "curve": "stepped" },
  11099. { "time": 4.0667, "x": 1.2, "y": 0 }
  11100. ]
  11101. }
  11102. },
  11103. "deform": {
  11104. "default": {
  11105. "kudang": {
  11106. "kudang": [
  11107. {
  11108. "time": 0,
  11109. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  11110. },
  11111. {
  11112. "time": 0.1667,
  11113. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  11114. },
  11115. {
  11116. "time": 0.2333,
  11117. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  11118. },
  11119. {
  11120. "time": 0.2667,
  11121. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  11122. },
  11123. {
  11124. "time": 0.3333,
  11125. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  11126. },
  11127. {
  11128. "time": 0.5,
  11129. "offset": 2,
  11130. "vertices": [ -1.71885, -1.6606 ]
  11131. },
  11132. {
  11133. "time": 0.6667,
  11134. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  11135. },
  11136. {
  11137. "time": 0.7333,
  11138. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  11139. },
  11140. {
  11141. "time": 0.8333,
  11142. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  11143. },
  11144. {
  11145. "time": 1,
  11146. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  11147. },
  11148. {
  11149. "time": 1.1667,
  11150. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  11151. },
  11152. {
  11153. "time": 1.2333,
  11154. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  11155. },
  11156. {
  11157. "time": 1.2667,
  11158. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  11159. },
  11160. {
  11161. "time": 1.3333,
  11162. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  11163. },
  11164. {
  11165. "time": 1.5,
  11166. "offset": 2,
  11167. "vertices": [ -1.71885, -1.6606 ]
  11168. },
  11169. {
  11170. "time": 1.6667,
  11171. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  11172. },
  11173. {
  11174. "time": 1.7333,
  11175. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  11176. },
  11177. {
  11178. "time": 1.8333,
  11179. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  11180. },
  11181. {
  11182. "time": 2,
  11183. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  11184. },
  11185. {
  11186. "time": 2.1667,
  11187. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  11188. },
  11189. {
  11190. "time": 2.2333,
  11191. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  11192. },
  11193. {
  11194. "time": 2.2667,
  11195. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  11196. },
  11197. {
  11198. "time": 2.3333,
  11199. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  11200. },
  11201. {
  11202. "time": 2.5,
  11203. "offset": 2,
  11204. "vertices": [ -1.71885, -1.6606 ]
  11205. },
  11206. {
  11207. "time": 2.6667,
  11208. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  11209. },
  11210. {
  11211. "time": 2.7333,
  11212. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  11213. },
  11214. {
  11215. "time": 2.8333,
  11216. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  11217. },
  11218. {
  11219. "time": 3,
  11220. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  11221. },
  11222. {
  11223. "time": 3.1667,
  11224. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  11225. },
  11226. {
  11227. "time": 3.2333,
  11228. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  11229. },
  11230. {
  11231. "time": 3.2667,
  11232. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  11233. },
  11234. {
  11235. "time": 3.3333,
  11236. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  11237. },
  11238. {
  11239. "time": 3.5,
  11240. "offset": 2,
  11241. "vertices": [ -1.71885, -1.6606 ]
  11242. },
  11243. {
  11244. "time": 3.6667,
  11245. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  11246. },
  11247. {
  11248. "time": 3.7333,
  11249. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  11250. },
  11251. {
  11252. "time": 3.8333,
  11253. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  11254. },
  11255. {
  11256. "time": 4,
  11257. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  11258. },
  11259. {
  11260. "time": 4.1667,
  11261. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  11262. },
  11263. {
  11264. "time": 4.2333,
  11265. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  11266. },
  11267. {
  11268. "time": 4.2667,
  11269. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  11270. },
  11271. {
  11272. "time": 4.3333,
  11273. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  11274. },
  11275. {
  11276. "time": 4.5,
  11277. "offset": 2,
  11278. "vertices": [ -1.71885, -1.6606 ]
  11279. },
  11280. {
  11281. "time": 4.6667,
  11282. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  11283. },
  11284. {
  11285. "time": 4.7333,
  11286. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  11287. },
  11288. {
  11289. "time": 4.8333,
  11290. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  11291. },
  11292. {
  11293. "time": 5,
  11294. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  11295. },
  11296. {
  11297. "time": 5.1667,
  11298. "vertices": [ 5.9503, -7.51568, 1.76419, 1.21478 ]
  11299. },
  11300. {
  11301. "time": 5.2333,
  11302. "vertices": [ 4.5606, -10.49275, 3.30686, 5.73996, -0.21459, -0.20733 ]
  11303. },
  11304. {
  11305. "time": 5.2667,
  11306. "vertices": [ 7.73289, -13.72822, 4.06324, 8.46178, -0.14306, -0.13822 ]
  11307. },
  11308. {
  11309. "time": 5.3333,
  11310. "vertices": [ 2.53544, -6.40815, 1.76513, 3.09755 ]
  11311. },
  11312. {
  11313. "time": 5.5,
  11314. "offset": 2,
  11315. "vertices": [ -1.71885, -1.6606 ]
  11316. },
  11317. {
  11318. "time": 5.6667,
  11319. "vertices": [ 0.88818, -5.33608, 0.05552, 3.21951 ]
  11320. },
  11321. {
  11322. "time": 5.7333,
  11323. "vertices": [ 4.5606, -10.49275, 3.97616, 7.8387, -0.21459, -0.20733 ]
  11324. },
  11325. {
  11326. "time": 5.8333,
  11327. "vertices": [ 1.9525, -4.51428, 2.16846, 3.95323 ]
  11328. },
  11329. {
  11330. "time": 6,
  11331. "vertices": [ 3.27743, 3.30397, 0.6444, -3.23157 ]
  11332. }
  11333. ]
  11334. },
  11335. "shenti": {
  11336. "shenti": [
  11337. { "time": 0 },
  11338. {
  11339. "time": 0.5,
  11340. "offset": 16,
  11341. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  11342. },
  11343. { "time": 1 },
  11344. {
  11345. "time": 1.5,
  11346. "offset": 16,
  11347. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  11348. },
  11349. { "time": 2 },
  11350. {
  11351. "time": 2.5,
  11352. "offset": 16,
  11353. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  11354. },
  11355. { "time": 3 },
  11356. {
  11357. "time": 3.5,
  11358. "offset": 16,
  11359. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  11360. },
  11361. { "time": 4 },
  11362. {
  11363. "time": 4.5,
  11364. "offset": 16,
  11365. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  11366. },
  11367. { "time": 5 },
  11368. {
  11369. "time": 5.5,
  11370. "offset": 16,
  11371. "vertices": [ 0.04251, 2.46364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11994, 2.46108, 0, 0, 0, 0, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108, 0.04251, 2.46364, -0.11994, 2.46108 ]
  11372. },
  11373. { "time": 6 }
  11374. ]
  11375. },
  11376. "toufa1": {
  11377. "toufa1": [
  11378. { "time": 0 },
  11379. {
  11380. "time": 0.5,
  11381. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  11382. },
  11383. { "time": 1 },
  11384. {
  11385. "time": 1.5,
  11386. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  11387. },
  11388. { "time": 2 },
  11389. {
  11390. "time": 2.5,
  11391. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  11392. },
  11393. { "time": 3 },
  11394. {
  11395. "time": 3.5,
  11396. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  11397. },
  11398. { "time": 4 },
  11399. {
  11400. "time": 4.5,
  11401. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  11402. },
  11403. { "time": 5 },
  11404. {
  11405. "time": 5.5,
  11406. "vertices": [ -0.25856, 0.39493, -2.28716, 0.47765, -1.17045, 0.92638 ]
  11407. },
  11408. { "time": 6 }
  11409. ]
  11410. },
  11411. "toufa9": {
  11412. "toufa9": [
  11413. {
  11414. "time": 0,
  11415. "vertices": [ 0.03189, 1.8477, 0.03189, 1.8477, 0.03189, 1.8477, 0.03189, 1.8477 ]
  11416. }
  11417. ]
  11418. },
  11419. "toufa10": {
  11420. "toufa10": [
  11421. { "time": 0 },
  11422. {
  11423. "time": 0.5,
  11424. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  11425. },
  11426. { "time": 1 },
  11427. {
  11428. "time": 1.5,
  11429. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  11430. },
  11431. { "time": 2 },
  11432. {
  11433. "time": 2.5,
  11434. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  11435. },
  11436. { "time": 3 },
  11437. {
  11438. "time": 3.5,
  11439. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  11440. },
  11441. { "time": 4 },
  11442. {
  11443. "time": 4.5,
  11444. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  11445. },
  11446. { "time": 5 },
  11447. {
  11448. "time": 5.5,
  11449. "vertices": [ -1.1545, -2.92455, -3.31151, 0.05716, -0.58358, -1.83022 ]
  11450. },
  11451. { "time": 6 }
  11452. ]
  11453. },
  11454. "waitaoyou": {
  11455. "waitaoyou": [
  11456. {
  11457. "time": 0,
  11458. "offset": 38,
  11459. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  11460. },
  11461. { "time": 0.5 },
  11462. {
  11463. "time": 1,
  11464. "offset": 38,
  11465. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  11466. },
  11467. { "time": 1.5 },
  11468. {
  11469. "time": 2,
  11470. "offset": 38,
  11471. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  11472. },
  11473. { "time": 2.5 },
  11474. {
  11475. "time": 3,
  11476. "offset": 38,
  11477. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  11478. },
  11479. { "time": 3.5 },
  11480. {
  11481. "time": 4,
  11482. "offset": 38,
  11483. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  11484. },
  11485. { "time": 4.5 },
  11486. {
  11487. "time": 5,
  11488. "offset": 38,
  11489. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  11490. },
  11491. { "time": 5.5 },
  11492. {
  11493. "time": 6,
  11494. "offset": 38,
  11495. "vertices": [ -0.23657, -1.60315, -0.47552, -1.54919, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.14518, -1.614, 0, 0, 0, 0, -0.14518, -1.614, -0.23657, -1.60315, -0.23976, -1.62472, -0.23657, -1.60315, -0.23657, -1.60315, -0.23657, -1.60315, -0.47552, -1.54919 ]
  11496. }
  11497. ]
  11498. },
  11499. "waitaozuo": {
  11500. "waitaozuo": [
  11501. { "time": 0 },
  11502. {
  11503. "time": 0.5,
  11504. "offset": 32,
  11505. "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  11506. },
  11507. { "time": 1 },
  11508. {
  11509. "time": 1.5,
  11510. "offset": 32,
  11511. "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  11512. },
  11513. { "time": 2 },
  11514. {
  11515. "time": 2.5,
  11516. "offset": 32,
  11517. "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  11518. },
  11519. { "time": 3 },
  11520. {
  11521. "time": 3.5,
  11522. "offset": 32,
  11523. "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  11524. },
  11525. { "time": 4 },
  11526. {
  11527. "time": 4.5,
  11528. "offset": 32,
  11529. "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  11530. },
  11531. { "time": 5 },
  11532. {
  11533. "time": 5.5,
  11534. "offset": 32,
  11535. "vertices": [ 0.87132, -1.27842, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.22148, -1.53115, 0, 0, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842, 0.22148, -1.53115, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.29169, -1.51933, 0.87132, -1.27842 ]
  11536. },
  11537. { "time": 6 }
  11538. ]
  11539. },
  11540. "youshou": {
  11541. "youshou": [
  11542. {
  11543. "time": 0,
  11544. "offset": 84,
  11545. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
  11546. "curve": "stepped"
  11547. },
  11548. {
  11549. "time": 1,
  11550. "offset": 84,
  11551. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
  11552. "curve": "stepped"
  11553. },
  11554. {
  11555. "time": 2,
  11556. "offset": 84,
  11557. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
  11558. "curve": "stepped"
  11559. },
  11560. {
  11561. "time": 3,
  11562. "offset": 84,
  11563. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
  11564. "curve": "stepped"
  11565. },
  11566. {
  11567. "time": 4,
  11568. "offset": 84,
  11569. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
  11570. "curve": "stepped"
  11571. },
  11572. {
  11573. "time": 5,
  11574. "offset": 84,
  11575. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ],
  11576. "curve": "stepped"
  11577. },
  11578. {
  11579. "time": 6,
  11580. "offset": 84,
  11581. "vertices": [ -8.83308, 1.97919, -8.7867, -2.17582, -8.56146, 1.20059, -8.19582, -2.75098, -2.65692, 0.76857, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -7.78561, 1.11165 ]
  11582. }
  11583. ]
  11584. },
  11585. "youtui": {
  11586. "youtui": [
  11587. { "time": 0 },
  11588. {
  11589. "time": 0.5,
  11590. "offset": 80,
  11591. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  11592. },
  11593. { "time": 1 },
  11594. {
  11595. "time": 1.5,
  11596. "offset": 80,
  11597. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  11598. },
  11599. { "time": 2 },
  11600. {
  11601. "time": 2.5,
  11602. "offset": 80,
  11603. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  11604. },
  11605. { "time": 3 },
  11606. {
  11607. "time": 3.5,
  11608. "offset": 80,
  11609. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  11610. },
  11611. { "time": 4 },
  11612. {
  11613. "time": 4.5,
  11614. "offset": 80,
  11615. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  11616. },
  11617. { "time": 5 },
  11618. {
  11619. "time": 5.5,
  11620. "offset": 80,
  11621. "vertices": [ -3.95592, 0.81099, -5.15561, 1.53258, -5.06942, 1.79726, -2.96264, -4.4891 ]
  11622. },
  11623. { "time": 6 }
  11624. ]
  11625. },
  11626. "zuotui": {
  11627. "zuotui": [
  11628. {
  11629. "time": 0,
  11630. "offset": 58,
  11631. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  11632. "curve": "stepped"
  11633. },
  11634. {
  11635. "time": 1,
  11636. "offset": 58,
  11637. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  11638. "curve": "stepped"
  11639. },
  11640. {
  11641. "time": 2,
  11642. "offset": 58,
  11643. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  11644. "curve": "stepped"
  11645. },
  11646. {
  11647. "time": 3,
  11648. "offset": 58,
  11649. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  11650. "curve": "stepped"
  11651. },
  11652. {
  11653. "time": 4,
  11654. "offset": 58,
  11655. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  11656. "curve": "stepped"
  11657. },
  11658. {
  11659. "time": 5,
  11660. "offset": 58,
  11661. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ],
  11662. "curve": "stepped"
  11663. },
  11664. {
  11665. "time": 6,
  11666. "offset": 58,
  11667. "vertices": [ -2.72456, -0.57366, -6.79876, -1.09673 ]
  11668. }
  11669. ]
  11670. }
  11671. }
  11672. }
  11673. }
  11674. }
  11675. }