42104.json 357 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489
  1. {
  2. "skeleton": { "hash": "kRjxLcwY71OdrWanws1EmdOW1Yw", "spine": "3.6.53", "width": 110, "height": 192, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": -1.19, "y": -0.68 },
  6. { "name": "bone2", "parent": "bone", "y": 56.28 },
  7. { "name": "bone3", "parent": "bone2", "length": 15.54, "rotation": 89.05, "x": 0.2, "y": 1.28 },
  8. { "name": "bone4", "parent": "bone3", "length": 15.03, "rotation": 2.93, "x": 15.54 },
  9. { "name": "bone5", "parent": "bone4", "length": 12.95, "rotation": -1.97, "x": 15.03 },
  10. { "name": "bone6", "parent": "bone5", "length": 22.79, "rotation": 140.44, "x": 12.19, "y": 5.94, "color": "2f78fbff" },
  11. { "name": "bone7", "parent": "bone6", "length": 20.79, "rotation": 0.9, "x": 22.79, "color": "2f78fbff" },
  12. { "name": "bone8", "parent": "bone7", "length": 12.89, "rotation": -0.93, "x": 23.83, "y": -0.75, "color": "2f78fbff" },
  13. { "name": "bone9", "parent": "bone5", "length": 25, "rotation": -154.07, "x": 12.96, "y": -20.99 },
  14. { "name": "bone10", "parent": "bone9", "length": 25, "rotation": 3.56, "x": 26.15, "y": 0.19 },
  15. { "name": "bone11", "parent": "bone10", "length": 10.59, "rotation": -1.54, "x": 25.4, "y": 0.13 },
  16. { "name": "bone12", "parent": "bone5", "length": 15.88, "rotation": 176.55, "x": 6.5, "y": 8.72 },
  17. { "name": "bone13", "parent": "bone12", "length": 10.34, "rotation": -0.79, "x": 15.88 },
  18. { "name": "bone14", "parent": "bone13", "length": 10.63, "rotation": -13.55, "x": 10.34 },
  19. { "name": "bone15", "parent": "bone5", "length": 14.52, "rotation": -179.25, "x": 6.5, "y": -11.14 },
  20. { "name": "bone16", "parent": "bone15", "length": 10.62, "rotation": 7.52, "x": 14.52 },
  21. { "name": "bone17", "parent": "bone16", "length": 10.94, "rotation": 16.5, "x": 10.62 },
  22. { "name": "bone18", "parent": "bone5", "x": 11.69, "y": -1.3 },
  23. { "name": "bone19", "parent": "bone5", "length": 42.66, "rotation": 2.19, "x": 15.9, "y": -0.71 },
  24. { "name": "bone20", "parent": "bone19", "length": 12.28, "rotation": -1.5, "x": 18.81, "y": 15.57 },
  25. { "name": "bone21", "parent": "bone19", "length": 12.14, "rotation": -3.58, "x": 17.75, "y": -8.23 },
  26. { "name": "bone22", "parent": "bone19", "length": 5.94, "rotation": 2.1, "x": 18.5, "y": 3.59 },
  27. { "name": "bone23", "parent": "bone19", "length": 5.93, "rotation": 0.68, "x": 29.5, "y": 4.5 },
  28. { "name": "bone24", "parent": "bone19", "length": 6.57, "rotation": 146.63, "x": 53.84, "y": 25.34 },
  29. { "name": "bone25", "parent": "bone24", "length": 6.01, "rotation": 21.26, "x": 6.57 },
  30. { "name": "bone26", "parent": "bone25", "length": 7.13, "rotation": 14.69, "x": 6.01 },
  31. { "name": "bone27", "parent": "bone19", "length": 8.17, "rotation": -127.6, "x": 55.53, "y": -8.05 },
  32. { "name": "bone28", "parent": "bone27", "length": 7.75, "rotation": -30.95, "x": 8.17 },
  33. { "name": "bone29", "parent": "bone28", "length": 8.44, "rotation": -21.62, "x": 7.75 },
  34. { "name": "bone30", "parent": "bone19", "length": 7.84, "rotation": 29.7, "x": 53.39, "y": 17.96 },
  35. { "name": "bone31", "parent": "bone30", "length": 7.17, "rotation": -10.09, "x": 7.84 },
  36. { "name": "bone32", "parent": "bone19", "length": 12.84, "rotation": 18.76, "x": 52.55, "y": 11.62 },
  37. { "name": "bone33", "parent": "bone32", "length": 11.1, "rotation": -11.73, "x": 12.84 },
  38. { "name": "bone34", "parent": "bone33", "length": 7.87, "rotation": -25.6, "x": 11.1 },
  39. { "name": "bone35", "parent": "bone19", "length": 12.83, "rotation": 5.1, "x": 52.06, "y": 6.45 },
  40. { "name": "bone36", "parent": "bone35", "length": 12.96, "rotation": -13.85, "x": 12.83 },
  41. { "name": "bone37", "parent": "bone36", "length": 10.45, "rotation": -30.96, "x": 12.98, "y": -0.15 },
  42. { "name": "bone38", "parent": "bone19", "length": 15.36, "rotation": -34.19, "x": 52.55, "y": -0.08 },
  43. { "name": "bone39", "parent": "bone38", "length": 12.17, "rotation": -16.94, "x": 15.36 },
  44. { "name": "bone40", "parent": "bone39", "length": 13.86, "rotation": -24.94, "x": 12.17 },
  45. { "name": "bone41", "parent": "bone19", "length": 11.23, "rotation": -73.75, "x": 58.07, "y": -18.36 },
  46. { "name": "bone42", "parent": "bone41", "length": 8.71, "rotation": -8.65, "x": 11.23 },
  47. { "name": "bone43", "parent": "bone42", "length": 6.41, "rotation": -16.41, "x": 8.86, "y": -0.03 },
  48. { "name": "bone44", "parent": "bone19", "length": 5.85, "rotation": -108.33, "x": 51.45, "y": -21.07 },
  49. { "name": "bone45", "parent": "bone44", "length": 5.43, "rotation": -1.3, "x": 6.1, "y": 0.22 },
  50. { "name": "bone46", "parent": "bone45", "length": 4.56, "rotation": -18.31, "x": 5.43 },
  51. { "name": "bone47", "parent": "bone19", "length": 7.16, "rotation": -110.25, "x": 52.97, "y": -31.79 },
  52. { "name": "bone48", "parent": "bone47", "length": 5.16, "rotation": -9.24, "x": 7.16 },
  53. { "name": "bone49", "parent": "bone48", "length": 4.3, "rotation": 0.73, "x": 5.16 },
  54. { "name": "bone50", "parent": "bone2", "length": 9.63, "rotation": 90, "x": 1.47, "y": -11.55 },
  55. { "name": "bone51", "parent": "bone2", "length": 15.75, "rotation": -90, "x": -6.41, "y": -13.05 },
  56. { "name": "bone52", "parent": "bone51", "length": 14.25, "rotation": 1.01, "x": 15.75 },
  57. { "name": "bone53", "parent": "bone52", "length": 12.57, "rotation": -73.65, "x": 18.36, "y": -1.2 },
  58. { "name": "bone54", "parent": "bone2", "length": 15.97, "rotation": -83.71, "x": 13.97, "y": -12.8, "color": "2f78fbff" },
  59. { "name": "bone55", "parent": "bone54", "length": 16.57, "rotation": -1.1, "x": 15.97, "color": "2f78fbff" },
  60. { "name": "bone56", "parent": "bone55", "length": 12.86, "rotation": -79.4, "x": 18.64, "y": -0.69, "color": "2f78fbff" },
  61. { "name": "bone57", "parent": "bone2", "length": 6, "rotation": -70.1, "x": -4.91, "y": 2.09 },
  62. { "name": "bone58", "parent": "bone57", "length": 8, "rotation": -0.67, "x": 6.02, "y": 0.6 },
  63. { "name": "bone59", "parent": "bone58", "length": 6.62, "rotation": 3.25, "x": 9.39, "y": 0.9 },
  64. { "name": "bone60", "parent": "bone57", "length": 8, "rotation": 16.29, "x": 9.76, "y": 13.44 },
  65. { "name": "bone61", "parent": "bone60", "length": 6, "rotation": -1.86, "x": 8.31, "y": 0.1 },
  66. { "name": "bone62", "parent": "bone61", "length": 6, "rotation": 1.43, "x": 6.43, "y": 0.2 },
  67. { "name": "bone63", "parent": "bone19", "length": 4.64, "rotation": -2.19, "x": 4.8, "y": 2.54 }
  68. ],
  69. "slots": [
  70. { "name": "zuoshou", "bone": "bone6", "attachment": "zuoshou" },
  71. { "name": "houba", "bone": "bone57", "color": "9b9b9bff", "attachment": "houba" },
  72. { "name": "zuotui", "bone": "bone51", "attachment": "zuotui" },
  73. { "name": "youtui", "bone": "bone54", "attachment": "youtui" },
  74. { "name": "kudang", "bone": "bone50", "attachment": "kudang" },
  75. { "name": "shenti", "bone": "bone3", "attachment": "shenti" },
  76. { "name": "youwaitao", "bone": "bone15", "attachment": "youwaitao" },
  77. { "name": "zuowaitao", "bone": "bone12", "attachment": "zuowaitao" },
  78. { "name": "lingjie", "bone": "bone18", "attachment": "lingjie" },
  79. { "name": "youshou", "bone": "bone9", "attachment": "youshou" },
  80. { "name": "lian", "bone": "bone19", "attachment": "lian" },
  81. { "name": "zuiba", "bone": "bone63", "attachment": "zuiba" },
  82. { "name": "yaoya", "bone": "bone63" },
  83. { "name": "zuoyan1", "bone": "bone20", "attachment": "zuoyan1" },
  84. { "name": "youyan1", "bone": "bone21", "attachment": "youyan1" },
  85. { "name": "zuoyan2", "bone": "bone20" },
  86. { "name": "youyan2", "bone": "bone21" },
  87. { "name": "biyan", "bone": "bone22" },
  88. { "name": "meimao1", "bone": "bone23", "attachment": "meimao1" },
  89. { "name": "meimao2", "bone": "bone23" },
  90. { "name": "toufa10", "bone": "bone19", "attachment": "toufa10" },
  91. { "name": "toufa9", "bone": "bone47", "attachment": "toufa9" },
  92. { "name": "toufa8", "bone": "bone44", "attachment": "toufa8" },
  93. { "name": "toufa7", "bone": "bone41", "attachment": "toufa7" },
  94. { "name": "toufa6", "bone": "bone38", "attachment": "toufa6" },
  95. { "name": "toufa5", "bone": "bone30", "attachment": "toufa5" },
  96. { "name": "toufa4", "bone": "bone32", "attachment": "toufa4" },
  97. { "name": "toufa3", "bone": "bone35", "attachment": "toufa3" },
  98. { "name": "toufa2", "bone": "bone27", "attachment": "toufa2" },
  99. { "name": "toufa1", "bone": "bone24", "attachment": "toufa1" }
  100. ],
  101. "skins": {
  102. "default": {
  103. "biyan": {
  104. "biyan": { "x": 1.73, "y": -1.13, "rotation": -94.29, "width": 45, "height": 9 }
  105. },
  106. "houba": {
  107. "houba": {
  108. "type": "mesh",
  109. "uvs": [ 0.91888, 0.26999, 0.93646, 0.36555, 0.95472, 0.46474, 0.97127, 0.55468, 0.98786, 0.64483, 1, 0.71082, 1, 0.78641, 1, 0.8655, 1, 1, 0.91687, 1, 0.84376, 0.93739, 0.80227, 0.90186, 0.74703, 0.85455, 0.70979, 0.82266, 0.63329, 0.71771, 0.55597, 0.61164, 0.50827, 0.54619, 0.47697, 0.50325, 0.50044, 0.62321, 0.52368, 0.74195, 0.53781, 0.81417, 0.54906, 0.87168, 0.57416, 1, 0.5207, 1, 0.39401, 1, 0.35869, 0.94336, 0.31323, 0.87045, 0.25055, 0.76992, 0.16511, 0.63288, 0, 0.36807, 1.0E-5, 0.03758, 0.40764, 0.01996, 0.86919, 0, 0.27397, 0.44346, 0.38367, 0.69362, 0.70275, 0.52986, 0.81344, 0.70041, 0.48869, 0.92843, 0.43368, 0.80543, 0.46143, 0.86748, 0.32825, 0.56723, 0.65866, 0.45368, 0.7578, 0.61468, 0.88522, 0.81568, 0.96189, 0.93879, 0.91985, 0.8713, 0.85306, 0.76404 ],
  110. "triangles": [ 36, 42, 3, 4, 36, 3, 46, 36, 4, 5, 46, 4, 43, 46, 5, 6, 43, 5, 13, 36, 46, 12, 46, 43, 45, 43, 6, 7, 45, 6, 11, 12, 43, 11, 43, 45, 10, 11, 45, 44, 45, 7, 10, 45, 44, 9, 10, 44, 44, 7, 8, 9, 44, 8, 41, 0, 1, 2, 35, 1, 42, 35, 2, 3, 42, 2, 14, 35, 42, 14, 42, 36, 13, 14, 36, 12, 13, 46, 41, 31, 32, 41, 32, 0, 17, 33, 31, 35, 41, 1, 41, 17, 31, 16, 17, 41, 15, 16, 41, 35, 15, 41, 14, 15, 35, 34, 18, 19, 38, 34, 19, 38, 19, 20, 39, 38, 20, 26, 27, 38, 26, 38, 39, 39, 20, 21, 37, 39, 21, 25, 26, 39, 25, 39, 37, 24, 25, 37, 22, 23, 37, 24, 37, 23, 22, 37, 21, 40, 33, 17, 40, 17, 18, 28, 33, 40, 34, 40, 18, 27, 28, 40, 27, 40, 34, 27, 34, 38, 33, 30, 31, 29, 30, 33, 28, 29, 33 ],
  111. "vertices": [ 3, 60, 10.29, 11.88, 0.08224, 61, 1.6, 11.84, 0.63114, 62, -4.54, 11.76, 0.28662, 3, 60, 12.71, 10.48, 0.02261, 61, 4.05, 10.52, 0.53935, 62, -2.12, 10.37, 0.43804, 3, 60, 15.21, 9.02, 9.6E-4, 61, 6.6, 9.15, 0.34884, 62, 0.4, 8.94, 0.6502, 2, 61, 8.92, 7.9, 0.15166, 62, 2.68, 7.63, 0.84834, 2, 61, 11.23, 6.65, 0.0297, 62, 4.96, 6.33, 0.9703, 2, 61, 12.93, 5.74, 0.00244, 62, 6.64, 5.37, 0.99756, 1, 62, 8.1, 3.85, 1, 1, 62, 9.63, 2.25, 1, 1, 62, 12.24, -0.47, 1, 2, 61, 16.04, -2.62, 8.5E-4, 62, 9.54, -3.06, 0.99915, 2, 61, 12.48, -3.72, 0.07488, 62, 5.95, -4.07, 0.92512, 3, 60, 18.63, -4.58, 0.00438, 61, 10.46, -4.34, 0.24584, 62, 3.91, -4.65, 0.74978, 3, 60, 15.91, -5.33, 0.04807, 61, 7.77, -5.17, 0.62875, 62, 1.2, -5.41, 0.32318, 3, 60, 14.08, -5.83, 0.12285, 61, 5.95, -5.73, 0.77479, 62, -0.63, -5.92, 0.10236, 4, 58, 14.5, 9.88, 6.8E-4, 59, 5.61, 8.67, 0.00137, 60, 9.56, -6.06, 0.56452, 61, 1.44, -6.11, 0.43343, 4, 58, 10.2, 8.33, 0.03887, 59, 1.22, 7.37, 0.02249, 60, 4.99, -6.28, 0.91968, 61, -3.12, -6.49, 0.01896, 3, 58, 7.54, 7.37, 0.14599, 59, -1.48, 6.56, 0.07381, 60, 2.17, -6.43, 0.78019, 3, 58, 5.8, 6.75, 0.33275, 59, -3.26, 6.04, 0.20381, 60, 0.32, -6.52, 0.46344, 3, 58, 9.24, 6, 0.1295, 59, 0.14, 5.1, 0.78237, 60, 3.39, -8.24, 0.08813, 2, 59, 3.5, 4.17, 0.99123, 60, 6.44, -9.94, 0.00877, 2, 59, 5.54, 3.6, 0.99943, 60, 8.29, -10.97, 5.7E-4, 1, 59, 7.17, 3.15, 1, 1, 59, 10.8, 2.14, 1, 1, 59, 9.49, 0.13, 1, 2, 58, 16.04, -3.39, 0.0651, 59, 6.39, -4.66, 0.9349, 3, 57, 19.84, -3.54, 8.8E-4, 58, 13.87, -3.98, 0.18154, 59, 4.19, -5.13, 0.81758, 3, 57, 17.04, -4.28, 0.02282, 58, 11.08, -4.75, 0.51602, 59, 1.37, -5.74, 0.46116, 3, 57, 13.19, -5.29, 0.1898, 58, 7.24, -5.8, 0.77018, 59, -2.53, -6.58, 0.04002, 2, 57, 7.93, -6.67, 0.78136, 58, 2, -7.24, 0.21864, 1, 57, -2.22, -9.33, 1, 1, 57, -10.2, -4.65, 1, 4, 57, -1.36, 11.42, 0.24905, 58, -7.5, 10.74, 0.24057, 60, -11.24, 1.18, 0.50899, 61, -19.58, 0.45, 0.0014, 3, 60, 3.48, 15.84, 0.2749, 61, -5.34, 15.58, 0.60756, 62, -11.39, 15.67, 0.11754, 2, 57, 5.83, 0.24, 0.63322, 58, -0.18, -0.36, 0.36678, 3, 58, 8.35, 0.46, 0.71769, 59, -1.06, -0.39, 0.2807, 60, 0.93, -13.28, 0.00162, 3, 59, 2.89, 14.16, 1.0E-5, 60, 8.22, -0.09, 0.42432, 61, -0.09, -0.18, 0.57567, 2, 60, 15.12, -0.14, 7.6E-4, 62, 0.37, -0.23, 0.99924, 1, 59, 7.02, 0.01, 1, 2, 58, 12.19, 0.86, 0.00609, 59, 2.79, -0.2, 0.99391, 2, 58, 14.31, 1.09, 4.3E-4, 59, 4.92, -0.1, 0.99957, 3, 58, 4.04, 0.04, 0.99884, 59, -5.39, -0.56, 6.1E-4, 60, -3.32, -12.42, 5.5E-4, 3, 60, 5.31, 0.1, 0.99103, 61, -3, -0.09, 0.00857, 62, -9.44, -0.06, 3.9E-4, 2, 60, 11.65, -0.11, 0.00193, 61, 3.34, -0.1, 0.99807, 2, 61, 11.37, 0.01, 0.00502, 62, 4.94, -0.32, 0.99498, 1, 62, 9.81, -0.42, 1, 2, 61, 13.58, 0.02, 6.6E-4, 62, 7.14, -0.37, 0.99934, 3, 60, 17.64, -0.21, 1.0E-4, 61, 9.33, 0, 0.01335, 62, 2.89, -0.28, 0.98654 ],
  112. "hull": 33,
  113. "edges": [ 60, 66, 58, 60, 46, 48, 44, 46, 16, 18, 60, 62, 62, 64, 54, 68, 34, 36, 68, 36, 46, 74, 48, 74, 42, 44, 74, 42, 52, 54, 68, 76, 52, 76, 36, 38, 76, 38, 48, 50, 50, 52, 74, 78, 78, 76, 50, 78, 38, 40, 40, 42, 78, 40, 54, 56, 56, 58, 66, 80, 80, 68, 56, 80, 80, 34, 30, 70, 70, 2, 30, 32, 32, 34, 62, 82, 82, 70, 32, 82, 2, 0, 0, 64, 82, 0, 26, 72, 72, 6, 26, 28, 28, 30, 70, 84, 84, 72, 28, 84, 2, 4, 4, 6, 84, 4, 22, 86, 86, 10, 16, 88, 18, 88, 14, 16, 88, 14, 18, 20, 20, 22, 86, 90, 90, 88, 20, 90, 10, 12, 12, 14, 90, 12, 22, 24, 24, 26, 72, 92, 92, 86, 24, 92, 6, 8, 8, 10, 92, 8 ],
  114. "width": 45,
  115. "height": 28
  116. }
  117. },
  118. "kudang": {
  119. "kudang": {
  120. "type": "mesh",
  121. "uvs": [ 1, 0.54538, 1, 1, 0, 1, 0, 0.53228, 0, 0, 1, 0 ],
  122. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  123. "vertices": [ 5.04, -21.38, -4.05, -21.38, -4.05, 14.62, 5.31, 14.62, 15.95, 14.62, 15.95, -21.38 ],
  124. "hull": 6,
  125. "edges": [ 2, 4, 8, 10, 2, 0, 0, 10, 4, 6, 6, 8 ],
  126. "width": 36,
  127. "height": 20
  128. }
  129. },
  130. "lian": {
  131. "lian": {
  132. "type": "mesh",
  133. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  134. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  135. "vertices": [ -3.99, -43.08, -1.28, 27.87, 75.67, 24.93, 72.96, -46.02 ],
  136. "hull": 4,
  137. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  138. "width": 71,
  139. "height": 77
  140. }
  141. },
  142. "lingjie": {
  143. "lingjie": {
  144. "type": "mesh",
  145. "uvs": [ 1, 1, 0.48516, 1, 0, 1, 0, 0, 0.48111, 0, 1, 0 ],
  146. "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
  147. "vertices": [ -8.13, -11.61, -8.13, 0.75, -8.13, 12.39, 5.87, 12.39, 5.87, 0.84, 5.87, -11.61 ],
  148. "hull": 6,
  149. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  150. "width": 24,
  151. "height": 14
  152. }
  153. },
  154. "meimao1": {
  155. "meimao1": { "x": 3.29, "y": -1.49, "rotation": -92.86, "width": 47, "height": 8 }
  156. },
  157. "meimao2": {
  158. "meimao2": { "x": 4.81, "y": -1.07, "rotation": -92.86, "width": 42, "height": 11 }
  159. },
  160. "shenti": {
  161. "shenti": {
  162. "type": "mesh",
  163. "uvs": [ 1, 0.18102, 1, 0.21902, 1, 0.25892, 1, 0.48515, 1, 0.52251, 1, 0.55576, 1, 0.72961, 1, 0.78471, 1, 0.84836, 1, 1, 0.4196, 1, 0, 1, 0, 0.84646, 0, 0.78661, 0, 0.72866, 0, 0.55291, 0, 0.50636, 0, 0.46351, 0, 0.24718, 0, 0.21237, 0, 0.17342, 0, 0, 0.43946, 0, 1, 0, 0.40769, 0.47054, 0.41166, 0.72768, 0.42213, 0.25664, 0.42455, 0.22089, 0.42735, 0.17938, 0.40836, 0.514, 0.40898, 0.5539, 0.41318, 0.77995, 0.41512, 0.8464 ],
  164. "triangles": [ 10, 8, 9, 11, 32, 10, 10, 32, 8, 11, 12, 32, 32, 7, 8, 12, 31, 32, 12, 13, 31, 32, 31, 7, 13, 25, 31, 13, 14, 25, 31, 6, 7, 31, 25, 6, 25, 5, 6, 14, 30, 25, 14, 15, 30, 25, 30, 5, 30, 4, 5, 15, 29, 30, 30, 29, 4, 15, 16, 29, 29, 3, 4, 16, 24, 29, 29, 24, 3, 16, 17, 24, 24, 17, 18, 24, 26, 3, 26, 2, 3, 26, 24, 18, 26, 27, 2, 27, 1, 2, 27, 26, 19, 26, 18, 19, 27, 28, 1, 28, 27, 20, 28, 0, 1, 27, 19, 20, 28, 22, 0, 22, 23, 0, 22, 28, 21, 28, 20, 21 ],
  165. "vertices": [ 3, 5, 16.7, -20.91, 0.95215, 4, 31, -21.48, 0.04754, 3, 47.6, -19.86, 3.2E-4, 3, 5, 14.42, -20.91, 0.92282, 4, 28.72, -21.4, 0.07558, 3, 45.32, -19.9, 0.0016, 3, 5, 12.02, -20.91, 0.88029, 4, 26.33, -21.31, 0.11488, 3, 42.92, -19.94, 0.00482, 3, 5, -1.55, -20.91, 0.40077, 4, 12.76, -20.85, 0.46909, 3, 29.35, -20.17, 0.13014, 3, 5, -3.79, -20.91, 0.31109, 4, 10.52, -20.77, 0.50623, 3, 27.11, -20.2, 0.18269, 3, 5, -5.79, -20.91, 0.23948, 4, 8.53, -20.7, 0.5208, 3, 25.11, -20.24, 0.23972, 3, 5, -16.22, -20.91, 0.03075, 4, -1.9, -20.34, 0.31912, 3, 14.68, -20.41, 0.65013, 3, 5, -19.53, -20.91, 0.01075, 4, -5.2, -20.23, 0.21483, 3, 11.38, -20.47, 0.77443, 3, 5, -23.34, -20.91, 0.00169, 4, -9.02, -20.1, 0.11491, 3, 7.56, -20.53, 0.8834, 2, 4, -18.11, -19.78, 0.01735, 3, -1.54, -20.68, 0.98265, 2, 4, -17.41, 0.52, 1.0E-4, 3, -1.88, -0.37, 0.9999, 2, 4, -16.91, 15.2, 0.09073, 3, -2.12, 14.31, 0.90927, 2, 4, -7.7, 14.88, 0.2951, 3, 7.09, 14.47, 0.7049, 2, 4, -4.11, 14.76, 0.47799, 3, 10.68, 14.53, 0.52201, 3, 5, -16.16, 14.09, 0.00133, 4, -0.64, 14.64, 0.67432, 3, 14.16, 14.58, 0.32435, 3, 5, -5.62, 14.09, 0.16297, 4, 9.9, 14.27, 0.8274, 3, 24.7, 14.76, 0.00963, 3, 5, -2.82, 14.09, 0.2899, 4, 12.69, 14.18, 0.70944, 3, 27.49, 14.81, 6.6E-4, 2, 5, -0.25, 14.09, 0.43629, 4, 15.26, 14.09, 0.56371, 2, 5, 12.73, 14.09, 0.96374, 4, 28.23, 13.64, 0.03626, 2, 5, 14.82, 14.09, 0.984, 4, 30.32, 13.57, 0.016, 2, 5, 17.15, 14.09, 0.99531, 4, 32.66, 13.49, 0.00469, 1, 5, 27.56, 14.09, 1, 1, 5, 27.56, -1.29, 1, 2, 5, 27.56, -20.91, 0.9997, 4, 41.85, -21.85, 3.0E-4, 3, 5, -0.68, -0.18, 0.05605, 4, 14.35, -0.16, 0.94391, 3, 29.88, 0.58, 4.0E-5, 1, 3, 14.46, 0.18, 1, 1, 5, 12.16, -0.69, 1, 1, 5, 14.3, -0.77, 1, 1, 5, 16.79, -0.87, 1, 2, 4, 11.74, -0.09, 0.99989, 3, 27.27, 0.51, 1.1E-4, 3, 5, -5.68, -0.23, 5.0E-5, 4, 9.35, -0.03, 0.99981, 3, 24.88, 0.45, 1.4E-4, 2, 4, -4.21, 0.29, 6.4E-4, 3, 11.32, 0.07, 0.99936, 1, 3, 7.34, -0.06, 1 ],
  166. "hull": 24,
  167. "edges": [ 42, 44, 44, 46, 18, 20, 20, 22, 34, 48, 48, 6, 34, 36, 52, 48, 36, 52, 6, 4, 52, 4, 36, 38, 54, 52, 38, 54, 4, 2, 54, 2, 38, 40, 40, 42, 44, 56, 56, 54, 40, 56, 2, 0, 0, 46, 56, 0, 32, 34, 48, 58, 32, 58, 6, 8, 58, 8, 30, 32, 50, 60, 60, 58, 30, 60, 8, 10, 60, 10, 28, 30, 28, 50, 10, 12, 50, 12, 26, 28, 62, 50, 26, 62, 12, 14, 62, 14, 22, 24, 24, 26, 20, 64, 64, 62, 24, 64, 14, 16, 16, 18, 64, 16 ],
  168. "width": 35,
  169. "height": 60
  170. }
  171. },
  172. "toufa1": {
  173. "toufa1": {
  174. "type": "mesh",
  175. "uvs": [ 1, 0.20865, 1, 0.37323, 0.79338, 0.37234, 0.64561, 0.37162, 0.51629, 0.37115, 0.48801, 0.45475, 0.45265, 0.54198, 0.44613, 0.62984, 0.43203, 0.73907, 0.41998, 0.87843, 0.40947, 1, 0.31856, 1, 0.22083, 1, 0.13543, 0.88007, 0.03864, 0.72323, 1.0E-5, 0.54614, 1.0E-5, 0.39615, 0.06003, 0.20365, 0.20038, 0.01667, 0.47538, 1.0E-5, 0.64128, 0, 0.30492, 0.35865, 0.27538, 0.58573, 0.40142, 0.21633, 0.29013, 0.47238, 0.28831, 0.70978, 0.305, 0.86992 ],
  176. "triangles": [ 10, 11, 9, 12, 26, 11, 11, 26, 9, 12, 13, 26, 13, 25, 26, 13, 14, 25, 9, 26, 8, 26, 25, 8, 8, 25, 7, 14, 22, 25, 25, 22, 7, 14, 15, 22, 7, 22, 6, 22, 24, 6, 22, 15, 24, 15, 16, 24, 6, 24, 5, 24, 21, 5, 24, 16, 21, 5, 21, 4, 16, 17, 21, 2, 0, 1, 0, 2, 20, 20, 2, 3, 21, 23, 4, 3, 4, 23, 19, 20, 3, 19, 3, 23, 21, 17, 23, 17, 18, 23, 23, 18, 19 ],
  177. "vertices": [ 1, 24, -4.13, 11.04, 1, 1, 24, -0.75, 13.08, 1, 2, 24, 1.58, 9.18, 0.99985, 25, -1.32, 10.37, 1.5E-4, 2, 24, 3.25, 6.39, 0.9769, 25, -0.78, 7.16, 0.0231, 3, 24, 4.72, 3.95, 0.75749, 25, -0.3, 4.36, 0.2414, 26, -5, 5.82, 0.00111, 3, 24, 6.75, 4.46, 0.29104, 25, 1.79, 4.09, 0.67313, 26, -3.05, 5.03, 0.03583, 3, 24, 8.95, 4.88, 0.04232, 25, 3.98, 3.69, 0.71195, 26, -1.03, 4.08, 0.24573, 3, 24, 10.83, 5.85, 5.7E-4, 25, 6.08, 3.91, 0.30924, 26, 1.06, 3.76, 0.69019, 2, 25, 8.72, 4.06, 0.01976, 26, 3.65, 3.24, 0.98024, 1, 26, 6.96, 2.69, 1, 1, 26, 9.85, 2.22, 1, 1, 26, 9.68, 0.23, 1, 1, 26, 9.5, -1.91, 1, 1, 26, 6.48, -3.55, 1, 2, 25, 9.84, -4.54, 0.11839, 26, 2.55, -5.36, 0.88161, 3, 24, 14.19, -3.59, 0.00667, 25, 5.8, -6.11, 0.64678, 26, -1.75, -5.85, 0.34655, 3, 24, 11.11, -5.45, 0.13657, 25, 2.25, -6.73, 0.80521, 26, -5.34, -5.55, 0.05822, 2, 24, 6.47, -6.71, 0.6567, 25, -2.53, -6.22, 0.3433, 2, 24, 1.04, -6.4, 0.9883, 25, -7.48, -3.95, 0.0117, 1, 24, -2.44, -1.43, 1, 1, 24, -4.33, 1.69, 1, 2, 24, 6.87, -0.18, 0.12347, 25, 0.21, -0.27, 0.87653, 2, 25, 5.69, 0.03, 0.96808, 26, -0.3, 0.11, 0.03192, 1, 24, 2.85, -0.13, 1, 1, 25, 2.95, -0.12, 1, 2, 25, 8.57, 0.82, 2.8E-4, 26, 2.69, 0.14, 0.99972, 1, 26, 6.55, 0.19, 1 ],
  178. "hull": 21,
  179. "edges": [ 20, 22, 36, 38, 22, 24, 38, 40, 2, 0, 40, 0, 6, 8, 38, 6, 2, 4, 4, 6, 40, 4, 38, 46, 46, 42, 36, 46, 46, 8, 42, 48, 48, 44, 32, 48, 48, 12, 32, 34, 34, 36, 34, 42, 8, 10, 10, 12, 42, 10, 28, 30, 30, 32, 30, 44, 12, 14, 44, 14, 50, 44, 28, 50, 14, 16, 50, 16, 24, 26, 26, 28, 22, 52, 52, 50, 26, 52, 16, 18, 18, 20, 52, 18 ],
  180. "width": 22,
  181. "height": 24
  182. }
  183. },
  184. "toufa10": {
  185. "toufa10": {
  186. "type": "mesh",
  187. "uvs": [ 1, 0.37709, 1, 0.83182, 0.87012, 0.86304, 0.73277, 0.9961, 0.7246, 1, 0.65592, 0.58787, 0.11633, 0.59958, 0.07545, 0.79279, 0, 0.81035, 0, 0.26976, 0.21934, 0, 0.76548, 0 ],
  188. "triangles": [ 5, 10, 11, 5, 11, 0, 6, 9, 10, 5, 6, 10, 6, 8, 9, 7, 8, 6, 5, 0, 1, 2, 5, 1, 3, 5, 2, 4, 5, 3 ],
  189. "vertices": [ 57.59, -45.43, 29.42, -44.36, 27.85, -34.68, 19.99, -24.21, 19.78, -23.59, 45.5, -19.49, 46.3, 20.44, 34.45, 23.92, 33.57, 29.54, 67.06, 28.26, 83.16, 11.4, 81.61, -28.98 ],
  190. "hull": 12,
  191. "edges": [ 16, 14, 14, 12, 12, 10, 10, 8, 6, 8, 6, 4, 4, 2, 2, 0, 0, 22, 20, 22, 16, 18, 20, 18 ],
  192. "width": 74,
  193. "height": 62
  194. }
  195. },
  196. "toufa2": {
  197. "toufa2": {
  198. "type": "mesh",
  199. "uvs": [ 0.92318, 0.20305, 0.99999, 0.39368, 0.99999, 0.57168, 0.99999, 0.69781, 1, 0.8583, 1, 1, 0.76619, 1, 0.65081, 1, 0.63072, 0.90121, 0.6102, 0.80027, 0.5963, 0.73191, 0.58125, 0.65792, 0.53354, 0.55358, 0.45411, 0.48615, 0.35573, 0.43952, 0.23169, 0.44064, 0, 0.47738, 0, 0, 0.43063, 1.0E-5, 0.60663, 1.0E-5, 0.85265, 0.07187, 0.35754, 0.16071, 0.62677, 0.30238, 0.74385, 0.56264, 0.48224, 0.22633, 0.69689, 0.41543, 0.75428, 0.76679, 0.74928, 0.66898, 0.76014, 0.88152 ],
  200. "triangles": [ 5, 28, 4, 7, 28, 6, 5, 6, 28, 7, 8, 28, 8, 9, 28, 9, 26, 28, 28, 26, 4, 26, 3, 4, 9, 10, 26, 10, 27, 26, 26, 27, 3, 10, 11, 27, 27, 2, 3, 11, 23, 27, 27, 23, 2, 11, 12, 23, 23, 1, 2, 12, 25, 23, 23, 25, 1, 12, 13, 25, 13, 22, 25, 25, 0, 1, 25, 22, 0, 13, 24, 22, 13, 14, 24, 16, 17, 15, 14, 15, 21, 14, 21, 24, 21, 15, 17, 24, 19, 22, 22, 20, 0, 22, 19, 20, 21, 18, 24, 24, 18, 19, 21, 17, 18 ],
  201. "vertices": [ 2, 27, 12.35, 7.28, 0.40386, 28, -0.16, 8.39, 0.59614, 3, 27, 17.29, 3.78, 0.03001, 28, 5.88, 7.93, 0.91225, 29, -4.66, 6.68, 0.05773, 2, 28, 10.77, 5.79, 0.44349, 29, 0.67, 6.5, 0.55651, 2, 28, 14.24, 4.27, 0.07933, 29, 4.45, 6.36, 0.92067, 2, 28, 18.65, 2.34, 3.0E-5, 29, 9.27, 6.19, 0.99997, 1, 29, 13.51, 6.04, 1, 1, 29, 13.3, -0.03, 1, 1, 29, 13.2, -3.03, 1, 1, 29, 10.22, -3.45, 1, 1, 29, 7.17, -3.87, 1, 2, 28, 10.97, -5.75, 0.00383, 29, 5.11, -4.16, 0.99617, 3, 27, 13.02, -8.99, 0.0027, 28, 8.78, -5.22, 0.09871, 29, 2.88, -4.48, 0.89859, 3, 27, 10.19, -7.16, 0.08765, 28, 5.41, -5.1, 0.52918, 29, -0.3, -5.61, 0.38318, 3, 27, 7.34, -6.71, 0.4064, 28, 2.73, -6.18, 0.50226, 29, -2.39, -7.6, 0.09134, 3, 27, 4.44, -7.05, 0.78167, 28, 0.43, -7.97, 0.20503, 29, -3.88, -10.11, 0.0133, 3, 27, 1.83, -8.95, 0.95153, 28, -0.84, -10.94, 0.04818, 29, -3.96, -13.33, 2.9E-4, 1, 27, -2.44, -13.34, 1, 1, 27, -10.74, -1.67, 1, 1, 27, -1.61, 4.82, 1, 2, 27, 2.12, 7.47, 0.99152, 28, -9.04, 3.29, 0.00848, 2, 27, 8.58, 9.42, 0.736, 28, -4.5, 8.29, 0.264, 1, 27, -0.37, -0.21, 1, 2, 27, 7.8, 0.39, 0.93712, 28, -0.52, 0.14, 0.06288, 3, 27, 14.8, -4.21, 1.0E-5, 28, 7.85, -0.2, 0.29458, 29, 0.17, -0.15, 0.70541, 1, 27, 3.41, 0.07, 1, 1, 28, 3.32, 0.45, 1, 1, 29, 6.3, -0.09, 1, 1, 29, 3.36, -0.12, 1, 1, 29, 9.74, -0.06, 1 ],
  202. "hull": 21,
  203. "edges": [ 34, 42, 10, 12, 32, 34, 32, 30, 12, 14, 30, 42, 34, 36, 42, 36, 24, 26, 26, 44, 44, 40, 26, 28, 28, 30, 42, 48, 48, 44, 28, 48, 36, 38, 38, 40, 48, 38, 44, 50, 50, 46, 24, 50, 2, 0, 0, 40, 50, 0, 22, 24, 22, 46, 46, 2, 18, 52, 52, 6, 18, 20, 20, 22, 46, 54, 54, 52, 20, 54, 2, 4, 4, 6, 54, 4, 14, 16, 16, 18, 12, 56, 56, 52, 16, 56, 6, 8, 8, 10, 56, 8 ],
  204. "width": 26,
  205. "height": 30
  206. }
  207. },
  208. "toufa3": {
  209. "toufa3": {
  210. "type": "mesh",
  211. "uvs": [ 1, 0.17011, 0.89736, 0.17807, 0.80559, 0.18518, 0.62367, 0.26832, 0.51938, 0.34099, 0.4597, 0.45643, 0.39937, 0.55272, 0.3393, 0.64857, 0.30021, 0.82788, 0.26268, 1, 0.1576, 1, 0, 1, 0, 0.7842, 0, 0.57134, 0, 0.43759, 1.0E-5, 0.29632, 0.07124, 0.13537, 0.21014, 0.01884, 0.38965, 0, 0.79642, 0, 1, 0, 0.12695, 0.58452, 0.15979, 0.34906, 0.32769, 0.07733, 0.22825, 0.21002, 0.14364, 0.46483, 0.14235, 0.79335 ],
  212. "triangles": [ 23, 17, 18, 1, 19, 20, 0, 1, 20, 2, 19, 1, 18, 19, 2, 24, 17, 23, 16, 17, 24, 3, 18, 2, 23, 18, 3, 4, 23, 3, 24, 23, 4, 5, 24, 4, 22, 24, 5, 22, 15, 16, 24, 22, 16, 14, 15, 22, 25, 14, 22, 6, 25, 22, 5, 6, 22, 13, 14, 25, 21, 13, 25, 7, 21, 25, 6, 7, 25, 12, 13, 21, 26, 21, 7, 12, 21, 26, 8, 26, 7, 11, 12, 26, 10, 26, 8, 11, 26, 10, 9, 10, 8 ],
  213. "vertices": [ 1, 37, 21.81, -21.88, 1, 1, 37, 19.22, -19.08, 1, 1, 37, 16.91, -16.57, 1, 2, 36, 14.63, -16.78, 0.0091, 37, 9.98, -13.41, 0.9909, 2, 36, 11.09, -13.3, 0.1212, 37, 5.15, -12.26, 0.8788, 2, 36, 5.9, -11.68, 0.47203, 37, -0.13, -13.53, 0.52797, 2, 36, 1.54, -9.93, 0.77598, 37, -4.78, -14.28, 0.22402, 2, 36, -2.81, -8.2, 0.94936, 37, -9.4, -15.03, 0.05064, 2, 36, -10.64, -7.64, 0.99996, 37, -16.4, -18.57, 4.0E-5, 1, 36, -18.15, -7.1, 1, 1, 36, -18.59, -3.24, 1, 1, 36, -19.26, 2.55, 1, 1, 36, -10.04, 3.61, 1, 1, 36, -0.95, 4.66, 1, 1, 36, 4.77, 5.31, 1, 1, 36, 10.8, 6.01, 1, 2, 36, 17.98, 4.18, 0.78385, 37, 2.06, 6.28, 0.21615, 2, 36, 23.54, -0.36, 0.09469, 37, 9.17, 5.26, 0.90531, 1, 37, 13.85, 0.48, 1, 1, 37, 23.02, -11.46, 1, 1, 37, 27.61, -17.43, 1, 2, 36, -0.97, -0.08, 0.99986, 37, -12, -7.12, 1.4E-4, 2, 36, 9.22, -0.13, 0.99046, 37, -3.23, -1.91, 0.00954, 2, 36, 21.54, -4.96, 0.00116, 37, 9.82, 0.27, 0.99884, 1, 37, 3.05, -0.28, 1, 2, 36, 4.21, -0.1, 0.99901, 37, -7.54, -4.47, 9.9E-4, 1, 36, -9.83, -1.67, 1 ],
  214. "hull": 21,
  215. "edges": [ 20, 22, 18, 20, 0, 40, 34, 36, 26, 42, 42, 14, 10, 44, 44, 30, 36, 46, 34, 46, 4, 6, 46, 6, 36, 4, 36, 38, 38, 40, 0, 2, 2, 4, 38, 2, 30, 32, 32, 34, 44, 48, 48, 46, 32, 48, 6, 8, 8, 10, 48, 8, 26, 28, 28, 30, 42, 50, 50, 44, 28, 50, 10, 12, 12, 14, 50, 12, 22, 24, 24, 26, 20, 52, 52, 42, 24, 52, 14, 16, 16, 18, 52, 16 ],
  216. "width": 37,
  217. "height": 43
  218. }
  219. },
  220. "toufa4": {
  221. "toufa4": {
  222. "type": "mesh",
  223. "uvs": [ 1, 0.06962, 0.84097, 0.18745, 0.66185, 0.32015, 0.66185, 0.4231, 0.66185, 0.56127, 0.75725, 0.65905, 0.84923, 0.75333, 0.92495, 0.83094, 1, 0.90787, 1, 1, 0.6902, 1, 0.56521, 0.93283, 0.40912, 0.84895, 0.2387, 0.75736, 0, 0.62908, 0, 0.45743, 0, 0.30885, 0.10631, 0.1032, 0.15966, 0, 0.52011, 0, 1, 0, 0.40266, 0.58764, 0.33241, 0.3032, 0.69268, 0.78785, 0.9144, 0.94091, 0.33954, 0.43987, 0.55642, 0.69379, 0.8042, 0.86483, 0.41487, 0.13353 ],
  224. "triangles": [ 22, 28, 2, 2, 28, 1, 16, 17, 22, 22, 17, 28, 28, 19, 1, 0, 1, 20, 17, 18, 28, 28, 18, 19, 1, 19, 20, 14, 15, 25, 3, 21, 25, 25, 16, 22, 25, 15, 16, 3, 25, 2, 2, 25, 22, 10, 24, 9, 24, 8, 9, 10, 27, 24, 10, 11, 27, 24, 7, 8, 24, 27, 7, 11, 23, 27, 11, 12, 23, 27, 6, 7, 27, 23, 6, 12, 26, 23, 12, 13, 26, 23, 5, 6, 23, 26, 5, 13, 21, 26, 13, 14, 21, 26, 4, 5, 26, 21, 4, 14, 25, 21, 4, 21, 3 ],
  225. "vertices": [ 2, 33, 18.36, -15.55, 9.0E-4, 34, 13.27, -10.88, 0.9991, 2, 33, 13.86, -11.59, 0.05767, 34, 7.51, -9.26, 0.94233, 3, 32, 20, -8.79, 3.7E-4, 33, 8.81, -7.15, 0.55352, 34, 1.02, -7.43, 0.4461, 3, 32, 15.87, -7.2, 0.0694, 33, 4.44, -6.44, 0.86898, 34, -3.22, -8.68, 0.06162, 2, 32, 10.32, -5.08, 0.75712, 33, -1.43, -5.49, 0.24288, 2, 32, 5.71, -5.36, 0.99735, 33, -5.88, -6.7, 0.00265, 1, 32, 1.27, -5.63, 1, 1, 32, -2.39, -5.85, 1, 1, 32, -6.02, -6.07, 1, 1, 32, -9.72, -4.65, 1, 1, 32, -7.5, 1.13, 1, 1, 32, -3.91, 2.44, 1, 1, 32, 0.58, 4.06, 1, 2, 32, 5.47, 5.84, 0.99307, 33, -8.4, 4.22, 0.00693, 2, 32, 12.33, 8.32, 0.62115, 33, -2.19, 8.05, 0.37885, 2, 32, 19.22, 5.69, 0.04565, 33, 5.1, 6.87, 0.95435, 2, 33, 11.4, 5.84, 0.72568, 34, -2.25, 5.4, 0.27432, 2, 33, 19.79, 2.33, 3.0E-5, 34, 6.84, 5.86, 0.99997, 1, 34, 11.4, 6.09, 1, 1, 34, 13.43, -0.83, 1, 1, 34, 16.14, -10.04, 1, 1, 32, 11.12, 0.17, 1, 2, 33, 10.58, -0.76, 0.75494, 34, -0.14, -0.91, 0.24506, 1, 32, 1, -2.17, 1, 1, 32, -6.73, -3.96, 1, 1, 33, 4.76, 0.04, 1, 1, 32, 5.75, -1.07, 1, 1, 32, -2.89, -3.07, 1, 2, 33, 17.52, -3.55, 0.00101, 34, 7.33, -0.43, 0.99899 ],
  226. "hull": 21,
  227. "edges": [ 38, 40, 36, 38, 18, 20, 0, 40, 16, 18, 28, 42, 42, 8, 24, 46, 46, 12, 18, 48, 16, 48, 48, 20, 4, 6, 6, 8, 42, 50, 50, 44, 6, 50, 28, 30, 30, 32, 50, 30, 8, 10, 10, 12, 42, 52, 52, 46, 10, 52, 24, 26, 26, 28, 52, 26, 20, 22, 22, 24, 46, 54, 54, 48, 22, 54, 12, 14, 14, 16, 54, 14, 32, 34, 34, 36, 38, 56, 56, 44, 34, 56, 0, 2, 2, 4, 56, 2, 32, 44, 44, 4 ],
  228. "width": 20,
  229. "height": 43
  230. }
  231. },
  232. "toufa5": {
  233. "toufa5": {
  234. "type": "mesh",
  235. "uvs": [ 0.4441, 0.13477, 0.48779, 0.19314, 0.54035, 0.26338, 0.61067, 0.35735, 0.68196, 0.45261, 0.76334, 0.56136, 0.82172, 0.63938, 0.90754, 0.75405, 1, 0.87761, 1, 1, 0.74298, 1, 0.51709, 0.91561, 0.25346, 0.81713, 0, 0.72244, 0, 0.56319, 0, 0.43457, 0, 0.29369, 0, 0.19365, 0, 0, 0.21946, 0, 0.34325, 0, 0.63467, 0.79186, 0.4232, 0.53461, 0.81283, 0.89336, 0.53795, 0.6742, 0.34271, 0.32341, 0.28185, 0.16372, 0.38459, 0.43331, 0.30804, 0.23242 ],
  236. "triangles": [ 26, 19, 20, 26, 20, 0, 17, 18, 19, 17, 19, 26, 28, 26, 0, 28, 0, 1, 16, 17, 26, 16, 26, 28, 25, 28, 1, 25, 1, 2, 27, 25, 2, 27, 2, 3, 25, 15, 16, 25, 16, 28, 22, 27, 3, 27, 14, 15, 27, 15, 25, 22, 14, 27, 22, 3, 4, 24, 22, 4, 24, 4, 5, 22, 13, 14, 21, 24, 5, 21, 5, 6, 23, 21, 6, 12, 13, 22, 12, 22, 24, 7, 23, 6, 23, 7, 8, 11, 12, 24, 11, 24, 21, 10, 21, 23, 11, 21, 10, 23, 8, 9, 10, 23, 9 ],
  237. "vertices": [ 1, 31, 8.17, -4.09, 1, 2, 30, 13.54, -5.42, 0.00117, 31, 6.56, -4.34, 0.99883, 2, 30, 11.58, -5.38, 0.03197, 31, 4.62, -4.64, 0.96803, 2, 30, 8.96, -5.32, 0.24789, 31, 2.03, -5.05, 0.75211, 2, 30, 6.31, -5.27, 0.67127, 31, -0.59, -5.45, 0.32873, 2, 30, 3.27, -5.2, 0.95427, 31, -3.59, -5.92, 0.04573, 2, 30, 1.1, -5.15, 0.99703, 31, -5.74, -6.25, 0.00297, 1, 30, -2.1, -5.08, 1, 1, 30, -5.55, -5.01, 1, 1, 30, -8.04, -3.46, 1, 1, 30, -5.46, 0.69, 1, 1, 30, -1.47, 3.26, 1, 2, 30, 3.18, 6.27, 0.92812, 31, -5.69, 5.35, 0.07188, 2, 30, 7.65, 9.16, 0.62536, 31, -1.79, 8.98, 0.37464, 2, 30, 10.9, 7.14, 0.35023, 31, 1.76, 7.56, 0.64977, 2, 30, 13.52, 5.51, 0.09323, 31, 4.62, 6.42, 0.90677, 2, 30, 16.39, 3.72, 0.00313, 31, 7.76, 5.16, 0.99687, 1, 31, 9.99, 4.27, 1, 1, 31, 14.31, 2.54, 1, 1, 31, 12.76, -1.33, 1, 1, 31, 11.88, -3.51, 1, 1, 30, -0.13, -0.2, 1, 1, 30, 7.23, -0.05, 1, 1, 30, -3.99, -1.79, 1, 2, 30, 3.24, -0.13, 0.99997, 31, -4.51, -0.94, 3.0E-5, 1, 31, 4.68, -0.62, 1, 1, 31, 8.67, -0.97, 1, 2, 30, 9.68, -0.71, 0.00563, 31, 1.94, -0.38, 0.99437, 1, 31, 6.95, -0.82, 1 ],
  238. "hull": 21,
  239. "edges": [ 36, 38, 38, 40, 18, 16, 18, 20, 18, 46, 46, 42, 20, 46, 20, 22, 22, 42, 22, 24, 24, 26, 42, 48, 48, 44, 24, 48, 48, 10, 10, 12, 12, 14, 14, 16, 26, 44, 10, 8, 44, 8, 30, 50, 50, 4, 34, 36, 38, 52, 34, 52, 0, 40, 52, 0, 26, 28, 28, 30, 44, 54, 54, 50, 28, 54, 4, 6, 6, 8, 54, 6, 30, 32, 32, 34, 50, 56, 56, 52, 32, 56, 0, 2, 2, 4, 56, 2, 42, 12, 46, 14 ],
  240. "width": 19,
  241. "height": 24
  242. }
  243. },
  244. "toufa6": {
  245. "toufa6": {
  246. "type": "mesh",
  247. "uvs": [ 0.99999, 0.42078, 0.87799, 0.44782, 0.75689, 0.47467, 0.67583, 0.52401, 0.55726, 0.59619, 0.43075, 0.6732, 0.31181, 0.79662, 0.22055, 0.8913, 0.1158, 1, 0, 1, 0, 0.70125, 0.05611, 0.5721, 0.13032, 0.40131, 0.19407, 0.25457, 0.32612, 0.09725, 0.5053, 0, 0.66555, 0.02061, 0.76561, 0.03348, 0.99999, 0.06363, 0.27421, 0.52215, 0.4848, 0.29557, 0.85909, 0.15831, 0.11713, 0.79589, 0.38209, 0.40607, 0.18375, 0.67978, 0.62386, 0.21579, 0.74663, 0.18579 ],
  248. "triangles": [ 2, 3, 25, 3, 20, 25, 25, 26, 2, 2, 26, 1, 26, 21, 1, 1, 21, 0, 0, 21, 18, 20, 15, 25, 25, 16, 26, 25, 15, 16, 26, 17, 21, 26, 16, 17, 21, 17, 18, 4, 5, 23, 3, 4, 20, 4, 23, 20, 12, 13, 23, 23, 13, 20, 13, 14, 20, 20, 14, 15, 7, 8, 22, 8, 9, 22, 9, 10, 22, 7, 22, 6, 22, 24, 6, 6, 24, 5, 22, 10, 24, 10, 11, 24, 24, 19, 5, 24, 11, 19, 5, 19, 23, 11, 12, 19, 19, 12, 23 ],
  249. "vertices": [ 2, 39, 24.77, -18.74, 9.0E-5, 40, 19.33, -11.68, 0.99991, 2, 39, 20.04, -15.99, 0.01825, 40, 13.89, -11.18, 0.98175, 3, 38, 26.18, -17.16, 4.0E-5, 39, 15.36, -13.26, 0.13683, 40, 8.48, -10.68, 0.86314, 3, 38, 22.7, -15.13, 0.00844, 39, 11.43, -12.33, 0.35527, 40, 4.54, -11.49, 0.63629, 3, 38, 17.61, -12.16, 0.11788, 39, 5.7, -10.98, 0.64209, 40, -1.24, -12.68, 0.24003, 3, 38, 12.18, -8.99, 0.56877, 39, -0.42, -9.53, 0.40277, 40, -7.4, -13.95, 0.02846, 2, 38, 5.43, -7.04, 0.9697, 39, -7.45, -9.63, 0.0303, 2, 38, 0.25, -5.54, 0.99996, 39, -12.84, -9.7, 4.0E-5, 1, 38, -5.69, -3.82, 1, 1, 38, -8.39, 0.5, 1, 1, 38, 1.23, 6.52, 1, 2, 38, 6.7, 7.02, 0.9998, 39, -10.33, 4.2, 2.0E-4, 2, 38, 13.94, 7.7, 0.72218, 39, -3.6, 6.95, 0.27782, 3, 38, 20.15, 8.27, 0.16332, 39, 2.17, 9.31, 0.83663, 40, -12.99, 4.23, 5.0E-5, 3, 38, 28.3, 6.51, 2.8E-4, 39, 10.48, 10, 0.82171, 40, -5.75, 8.36, 0.17801, 2, 39, 18.85, 7.61, 0.16577, 40, 2.85, 9.72, 0.83423, 2, 39, 23.66, 2.39, 7.4E-4, 40, 9.41, 7.01, 0.99926, 1, 40, 13.5, 5.32, 1, 1, 40, 23.09, 1.36, 1, 3, 38, 13.4, -0.11, 0.99646, 39, -1.84, -0.67, 0.00353, 40, -12.42, -6.52, 1.0E-5, 2, 39, 10.8, -0.27, 0.972, 40, -1.13, -0.82, 0.028, 1, 40, 16.14, -0.38, 1, 1, 38, 0.91, 0.24, 1, 3, 38, 19.65, -1.79, 0.00282, 39, 4.63, -0.47, 0.99533, 40, -6.64, -3.6, 0.00185, 1, 38, 6.21, 0.09, 1, 1, 40, 5.59, 0.39, 1, 2, 39, 22.23, -4.69, 2.0E-5, 40, 11.1, -0.01, 0.99998 ],
  250. "hull": 19,
  251. "edges": [ 16, 18, 0, 36, 18, 20, 26, 28, 28, 30, 36, 42, 18, 44, 20, 44, 14, 16, 44, 14, 10, 38, 24, 26, 38, 24, 38, 46, 46, 40, 26, 46, 8, 10, 46, 8, 20, 22, 22, 24, 38, 48, 48, 44, 22, 48, 10, 12, 12, 14, 48, 12, 28, 40, 4, 6, 6, 8, 40, 6, 40, 50, 4, 50, 50, 30, 34, 36, 34, 42, 42, 0, 30, 32, 32, 34, 42, 52, 52, 50, 32, 52, 0, 2, 2, 4, 52, 2 ],
  252. "width": 44,
  253. "height": 38
  254. }
  255. },
  256. "toufa7": {
  257. "toufa7": {
  258. "type": "mesh",
  259. "uvs": [ 1, 0.33477, 1, 0.71197, 0.8995, 0.65621, 0.81593, 0.66296, 0.73702, 0.66933, 0.62362, 0.69331, 0.51987, 0.71525, 0.41123, 0.79609, 0.32469, 0.86049, 0.18807, 0.96215, 0.1372, 1, 0, 1, 0, 0.72181, 0.07031, 0.61791, 0.17974, 0.45622, 0.24671, 0.35728, 0.32854, 0.23637, 0.43318, 0.13848, 0.52139, 0.05597, 0.64913, 0.02479, 0.75068, 0, 1, 0, 0.47583, 0.48893, 0.64742, 0.34461, 0.83268, 0.28229, 0.56233, 0.41618, 0.27855, 0.70082, 0.74655, 0.31127, 0.36891, 0.60377, 0.15119, 0.83761 ],
  260. "triangles": [ 2, 0, 1, 2, 24, 0, 24, 21, 0, 24, 20, 21, 27, 3, 4, 4, 23, 27, 3, 27, 2, 27, 24, 2, 23, 19, 27, 27, 20, 24, 27, 19, 20, 9, 10, 29, 10, 11, 29, 11, 12, 29, 9, 29, 8, 29, 26, 8, 8, 26, 7, 12, 13, 29, 29, 13, 26, 26, 28, 7, 7, 28, 6, 5, 6, 22, 28, 26, 14, 6, 28, 22, 4, 5, 25, 5, 22, 25, 4, 25, 23, 26, 13, 14, 14, 15, 28, 28, 15, 22, 25, 22, 16, 22, 15, 16, 16, 17, 25, 25, 17, 23, 17, 18, 23, 23, 18, 19 ],
  261. "vertices": [ 2, 42, 18.15, -3.12, 0.02169, 43, 9.79, -0.34, 0.97831, 2, 42, 16.55, -12.41, 0.30447, 43, 10.88, -9.71, 0.69553, 2, 42, 11.43, -10.12, 0.52232, 43, 5.33, -8.95, 0.47768, 3, 41, 16.68, -10.46, 0.01368, 42, 6.96, -9.52, 0.87291, 43, 0.86, -9.64, 0.1134, 3, 41, 12.59, -9.26, 0.15072, 42, 2.73, -8.95, 0.84667, 43, -3.35, -10.29, 0.00261, 2, 41, 6.59, -7.89, 0.69096, 42, -3.4, -8.5, 0.30904, 2, 41, 1.1, -6.64, 0.9711, 42, -9.02, -8.09, 0.0289, 1, 41, -5.1, -6.7, 1, 1, 41, -10.05, -6.75, 1, 1, 41, -17.85, -6.83, 1, 1, 41, -20.75, -6.86, 1, 1, 41, -27.78, -4.52, 1, 1, 41, -25.58, 2.08, 1, 1, 41, -21.16, 3.35, 1, 1, 41, -14.28, 5.31, 1, 1, 41, -10.06, 6.51, 1, 1, 41, -4.92, 7.99, 1, 1, 41, 1.22, 8.52, 1, 2, 41, 6.39, 8.97, 0.96194, 42, -6.14, 8.14, 0.03806, 2, 41, 13.18, 7.53, 0.43781, 42, 0.79, 7.74, 0.56219, 3, 41, 18.58, 6.38, 0.04733, 42, 6.3, 7.41, 0.83271, 43, -4.55, 6.42, 0.11996, 1, 43, 8.82, 7.97, 1, 2, 41, 0.63, -0.52, 0.99979, 42, -10.4, -2.11, 2.1E-4, 1, 41, 10.57, -0.03, 1, 1, 43, 0.66, -0.08, 1, 2, 41, 5.64, -0.27, 0.99763, 42, -5.49, -1.11, 0.00237, 1, 41, -11.15, -2.18, 1, 1, 42, 4.76, -0.22, 1, 1, 41, -5.75, -1.42, 1, 1, 41, -18.75, -3.25, 1 ],
  262. "hull": 22,
  263. "edges": [ 0, 42, 48, 0, 22, 24, 40, 42, 20, 22, 0, 2, 4, 2, 12, 44, 44, 32, 32, 34, 34, 36, 44, 50, 50, 46, 34, 50, 8, 10, 10, 12, 50, 10, 28, 52, 52, 16, 36, 46, 46, 8, 40, 48, 48, 4, 36, 38, 38, 40, 46, 54, 54, 48, 38, 54, 4, 6, 6, 8, 54, 6, 28, 30, 30, 32, 44, 56, 56, 52, 30, 56, 12, 14, 14, 16, 56, 14, 24, 26, 26, 28, 22, 58, 58, 52, 26, 58, 16, 18, 18, 20, 58, 18 ],
  264. "width": 54,
  265. "height": 25
  266. }
  267. },
  268. "toufa8": {
  269. "toufa8": {
  270. "type": "mesh",
  271. "uvs": [ 0.76037, 0.15504, 0.90754, 0.36923, 1, 0.56989, 1, 1, 0.86024, 1, 0.72776, 0.92342, 0.64309, 0.87447, 0.48779, 0.81875, 0.3335, 0.76339, 0.15566, 0.72679, 0.00201, 0.69518, 0.0043, 0.34773, 0, 0, 0.27975, 0, 0.47324, 0, 0.65384, 0, 0.38294, 0.43372, 0.65814, 0.55197, 0.54206, 0.5021, 0.77508, 0.70524, 0.89545, 0.86298, 0.21888, 0.39646 ],
  272. "triangles": [ 4, 20, 3, 20, 2, 3, 4, 5, 20, 20, 5, 19, 5, 6, 19, 19, 6, 17, 20, 19, 2, 6, 7, 17, 2, 19, 1, 19, 17, 1, 1, 17, 0, 7, 18, 17, 7, 8, 18, 15, 0, 18, 17, 18, 0, 15, 18, 14, 16, 14, 18, 8, 16, 18, 8, 9, 16, 9, 21, 16, 9, 10, 21, 10, 11, 21, 21, 13, 16, 16, 13, 14, 21, 11, 13, 11, 12, 13 ],
  273. "vertices": [ 2, 45, 6.14, 5.14, 0.64726, 46, -0.94, 5.1, 0.35274, 2, 45, 9.72, 3.57, 0.08158, 46, 2.95, 4.74, 0.91842, 2, 45, 12.2, 1.83, 1.2E-4, 46, 5.86, 3.86, 0.99988, 1, 46, 8.87, -0.33, 1, 1, 46, 6.61, -1.96, 1, 3, 44, 14.29, -3.82, 0.00247, 45, 8.28, -3.85, 0.02664, 46, 3.92, -2.76, 0.97089, 3, 44, 12.5, -3.72, 0.03025, 45, 6.49, -3.8, 0.17765, 46, 2.2, -3.27, 0.7921, 3, 44, 9.33, -3.94, 0.31184, 45, 3.33, -4.09, 0.48068, 46, -0.71, -4.55, 0.20748, 3, 44, 6.18, -4.16, 0.89302, 45, 0.18, -4.39, 0.09449, 46, -3.6, -5.81, 0.01249, 1, 44, 2.64, -4.73, 1, 1, 44, -0.41, -5.22, 1, 1, 44, -1.53, -1.2, 1, 2, 44, -2.77, 2.78, 0.99975, 45, -8.93, 2.35, 2.5E-4, 2, 44, 2.6, 4.34, 0.62872, 45, -3.59, 4.03, 0.37128, 3, 44, 6.32, 5.41, 0.0601, 45, 0.1, 5.19, 0.93922, 46, -6.69, 3.26, 6.9E-4, 2, 45, 3.55, 6.27, 0.92192, 46, -3.76, 5.37, 0.07808, 3, 44, 6.03, -0.09, 0.9104, 45, -0.06, -0.31, 0.08955, 46, -5.11, -2.02, 5.0E-5, 2, 45, 5.62, -0.02, 0.09964, 46, 0.18, 0.04, 0.90036, 3, 44, 9.32, 0.01, 0.00503, 45, 3.22, -0.14, 0.99112, 46, -2.05, -0.83, 0.00385, 3, 44, 14.47, -1.04, 3.0E-5, 45, 8.4, -1.07, 3.9E-4, 46, 3.16, -0.08, 0.99958, 1, 46, 6.22, -0.21, 1, 1, 44, 2.76, -0.57, 1 ],
  274. "hull": 16,
  275. "edges": [ 22, 24, 20, 22, 6, 8, 6, 4, 2, 4, 16, 32, 28, 30, 32, 28, 32, 36, 36, 34, 30, 36, 12, 14, 14, 16, 36, 14, 12, 34, 2, 0, 0, 30, 34, 0, 8, 10, 10, 12, 38, 34, 10, 38, 38, 2, 6, 40, 40, 38, 8, 40, 40, 4, 16, 18, 18, 20, 22, 42, 42, 32, 18, 42, 24, 26, 26, 28, 42, 26 ],
  276. "width": 20,
  277. "height": 12
  278. }
  279. },
  280. "toufa9": {
  281. "toufa9": {
  282. "type": "mesh",
  283. "uvs": [ 0.67828, 0.07595, 0.76422, 0.15198, 0.88952, 0.27284, 1, 0.51305, 1, 1, 0.84793, 1, 0.66816, 0.86797, 0.57322, 0.81046, 0.45575, 0.75197, 0.30474, 0.70488, 0.11251, 0.64587, 0, 0.61133, 0, 0.22434, 0, 0, 0.35539, 0, 0.54489, 2.0E-5, 0.53502, 0.47062, 0.76388, 0.65126, 0.38355, 0.40548, 0.22201, 0.32919, 0.6388, 0.55298, 0.90182, 0.85498 ],
  284. "triangles": [ 5, 21, 4, 21, 3, 4, 5, 6, 21, 21, 6, 17, 21, 17, 3, 3, 17, 2, 6, 7, 17, 7, 20, 17, 7, 8, 20, 2, 17, 20, 2, 20, 1, 20, 16, 1, 8, 16, 20, 8, 9, 16, 9, 18, 16, 9, 10, 18, 10, 19, 18, 10, 11, 19, 11, 12, 19, 16, 0, 1, 16, 18, 0, 19, 14, 18, 18, 15, 0, 18, 14, 15, 19, 12, 14, 12, 13, 14 ],
  285. "vertices": [ 3, 47, 7.84, 6.19, 0.52734, 48, -0.32, 6.22, 0.44598, 49, -5.4, 6.29, 0.02668, 3, 47, 9.97, 5.77, 0.25002, 48, 1.85, 6.14, 0.6302, 49, -3.24, 6.18, 0.11978, 3, 47, 13.12, 5.01, 0.03307, 48, 5.07, 5.9, 0.51454, 49, -0.01, 5.9, 0.45238, 2, 48, 8.78, 4.03, 0.07851, 49, 3.66, 3.98, 0.92149, 1, 49, 6.71, -2.11, 1, 2, 48, 8.93, -3.56, 0.01052, 49, 3.72, -3.61, 0.98948, 3, 47, 11.07, -4.42, 0.00775, 48, 4.57, -3.73, 0.61696, 49, -0.64, -3.73, 0.3753, 3, 47, 8.83, -4.3, 0.12507, 48, 2.34, -3.98, 0.81595, 49, -2.87, -3.94, 0.05899, 3, 47, 6.12, -4.32, 0.55872, 48, -0.33, -4.43, 0.44123, 49, -5.55, -4.36, 5.0E-5, 2, 47, 2.76, -4.73, 0.93219, 48, -3.58, -5.37, 0.06781, 2, 47, -1.52, -5.25, 0.99989, 48, -7.72, -6.58, 1.1E-4, 1, 47, -4.02, -5.56, 1, 1, 47, -5.7, -0.41, 1, 1, 47, -6.67, 2.58, 1, 2, 47, 0.76, 5, 0.99821, 48, -7.12, 3.91, 0.00179, 3, 47, 4.72, 6.29, 0.86078, 48, -3.42, 5.82, 0.13913, 49, -8.5, 5.93, 9.0E-5, 1, 47, 6.56, -0.04, 1, 2, 48, 5.05, -0.07, 0.70394, 49, -0.12, -0.07, 0.29606, 2, 47, 3.11, -0.2, 0.99853, 48, -3.97, -0.85, 0.00147, 1, 47, -0.6, -0.29, 1, 2, 47, 9.09, -0.43, 0.00163, 48, 1.97, -0.11, 0.99837, 1, 49, 3.87, -1.27, 1 ],
  286. "hull": 16,
  287. "edges": [ 24, 26, 8, 6, 4, 6, 22, 24, 8, 10, 12, 10, 16, 32, 0, 30, 32, 0, 36, 32, 30, 36, 16, 18, 36, 18, 18, 20, 20, 22, 24, 38, 38, 36, 20, 38, 26, 28, 28, 30, 38, 28, 4, 34, 34, 12, 12, 14, 14, 16, 32, 40, 40, 34, 14, 40, 0, 2, 2, 4, 40, 2, 8, 42, 42, 34, 6, 42, 42, 10 ],
  288. "width": 22,
  289. "height": 14
  290. }
  291. },
  292. "yaoya": {
  293. "yaoya": { "x": 3.46, "y": -2.43, "rotation": -90, "width": 15, "height": 7 }
  294. },
  295. "youshou": {
  296. "youshou": {
  297. "type": "mesh",
  298. "uvs": [ 0.60331, 0.3267, 0.62314, 0.34404, 0.66421, 0.37996, 0.9353, 0.61702, 0.96335, 0.6422, 0.98815, 0.66228, 1, 1, 0.65936, 1, 0.48671, 0.81276, 0.46556, 0.78981, 0.44492, 0.76743, 0.21441, 0.51743, 0.19699, 0.49854, 0.16038, 0.45883, 0, 0.28489, 0, 0, 0.22971, 0, 0.41125, 0.38901, 0.74105, 0.7326, 0.43819, 0.41708, 0.45997, 0.43977, 0.72552, 0.71642, 0.70182, 0.69173 ],
  299. "triangles": [ 7, 18, 6, 18, 5, 6, 7, 8, 18, 18, 4, 5, 8, 21, 18, 8, 9, 21, 9, 22, 21, 9, 10, 22, 10, 20, 22, 10, 11, 20, 18, 21, 4, 21, 3, 4, 21, 22, 3, 20, 2, 22, 22, 2, 3, 11, 19, 20, 11, 12, 19, 12, 17, 19, 20, 1, 2, 20, 19, 1, 19, 0, 1, 19, 17, 0, 12, 13, 17, 13, 14, 17, 0, 17, 16, 16, 17, 15, 17, 14, 15 ],
  300. "vertices": [ 2, 9, 24.64, 8.54, 0.29684, 10, -0.99, 8.43, 0.70316, 2, 9, 26.04, 8.72, 0.18078, 10, 0.42, 8.52, 0.81922, 3, 9, 28.93, 9.09, 0.0337, 10, 3.34, 8.71, 0.96628, 11, -22.29, 7.99, 2.0E-5, 2, 10, 22.57, 9.98, 0.3743, 11, -3.1, 9.77, 0.6257, 2, 10, 24.6, 10.09, 0.21988, 11, -1.07, 9.93, 0.78012, 2, 10, 26.27, 10.26, 0.1379, 11, 0.59, 10.15, 0.8621, 1, 11, 21.09, -0.21, 1, 2, 10, 39.94, -12.21, 0.01965, 11, 14.87, -11.94, 0.98035, 2, 10, 25.54, -11.8, 0.5931, 11, 0.46, -11.92, 0.4069, 2, 10, 23.78, -11.75, 0.71354, 11, -1.3, -11.92, 0.28646, 2, 10, 22.06, -11.71, 0.81387, 11, -3.02, -11.92, 0.18613, 2, 9, 29.67, -10.78, 0.30807, 10, 2.84, -11.16, 0.69193, 2, 9, 28.22, -10.83, 0.41898, 10, 1.38, -11.12, 0.58102, 2, 9, 25.16, -10.93, 0.67101, 10, -1.67, -11.03, 0.32899, 1, 9, 11.79, -11.38, 1, 1, 9, -5.63, -2.91, 1, 1, 9, -1.71, 5.15, 1, 2, 9, 25.17, -0.05, 0.92389, 10, -0.99, -0.18, 0.07611, 2, 10, 25.68, -0.49, 0.30592, 11, 0.3, -0.61, 0.69408, 2, 9, 27.35, 0.06, 0.00641, 10, 1.19, -0.2, 0.99359, 2, 9, 29.11, 0.15, 0.00103, 10, 2.95, -0.22, 0.99897, 1, 10, 24.43, -0.47, 1, 1, 10, 22.51, -0.45, 1 ],
  301. "hull": 17,
  302. "edges": [ 30, 32, 12, 10, 28, 30, 12, 14, 30, 34, 36, 12, 26, 28, 26, 34, 0, 32, 34, 0, 24, 26, 34, 38, 24, 38, 0, 2, 38, 2, 22, 24, 40, 38, 22, 40, 2, 4, 40, 4, 14, 16, 16, 36, 36, 10, 16, 18, 36, 42, 18, 42, 8, 10, 42, 8, 18, 20, 20, 22, 40, 44, 44, 42, 20, 44, 4, 6, 6, 8, 44, 6 ],
  303. "width": 39,
  304. "height": 68
  305. }
  306. },
  307. "youtui": {
  308. "youtui": {
  309. "type": "mesh",
  310. "uvs": [ 0.92904, 0.36419, 0.93573, 0.38752, 0.93989, 0.41323, 0.97692, 0.69566, 1, 0.72909, 1, 0.75774, 1, 1, 0, 1, 0, 0.83565, 0.42236, 0.76465, 0.41301, 0.72918, 0.40397, 0.69486, 0.35405, 0.44038, 0.33859, 0.40993, 0.32433, 0.38108, 0.18736, 0, 0.5169, 0, 0.89846, 1.0E-5, 0.61251, 0.39744, 0.66793, 0.8235, 0.61904, 0.42313, 0.60683, 0.37522, 0.65708, 0.76122, 0.653, 0.73006, 0.64801, 0.69193 ],
  311. "triangles": [ 7, 8, 9, 19, 7, 9, 19, 5, 6, 7, 19, 6, 11, 20, 24, 24, 2, 3, 10, 11, 24, 23, 24, 3, 10, 24, 23, 23, 3, 4, 4, 22, 23, 5, 22, 4, 9, 10, 23, 9, 23, 22, 19, 22, 5, 19, 9, 22, 11, 12, 20, 24, 20, 2, 20, 1, 2, 21, 16, 17, 21, 17, 0, 14, 15, 16, 14, 16, 21, 18, 21, 0, 18, 0, 1, 13, 14, 21, 13, 21, 18, 20, 18, 1, 12, 13, 18, 12, 18, 20 ],
  312. "vertices": [ 2, 54, 12.67, 8.7, 0.77427, 55, -3.46, 8.64, 0.22573, 2, 54, 13.83, 8.75, 0.68082, 55, -2.31, 8.71, 0.31918, 2, 54, 15.09, 8.72, 0.56688, 55, -1.05, 8.7, 0.43312, 2, 55, 12.82, 8.41, 0.95311, 56, -10.01, -4.04, 0.04689, 2, 55, 14.51, 8.86, 0.88892, 56, -10.14, -2.3, 0.11108, 2, 55, 15.91, 8.73, 0.81735, 56, -9.76, -0.95, 0.18265, 2, 55, 27.73, 7.65, 0.05111, 56, -6.53, 10.47, 0.94889, 1, 56, 18.49, 3.39, 1, 1, 56, 16.3, -4.35, 1, 2, 55, 14.89, -6.26, 0.40413, 56, 4.78, -4.71, 0.59587, 2, 55, 13.13, -6.34, 0.71538, 56, 4.54, -6.45, 0.28462, 2, 55, 11.44, -6.43, 0.86633, 56, 4.31, -8.13, 0.13367, 2, 54, 14.75, -6.57, 0.69847, 55, -1.1, -6.59, 0.30153, 2, 54, 13.22, -6.8, 0.8511, 55, -2.62, -6.85, 0.1489, 2, 54, 11.77, -7.02, 0.9346, 55, -4.06, -7.1, 0.0654, 1, 54, -7.18, -8.51, 1, 1, 54, -6.24, 0.01, 1, 1, 54, -5.15, 9.87, 1, 1, 54, 13.39, 0.34, 1, 2, 55, 18.34, -0.16, 0.12339, 56, -0.58, -0.2, 0.87661, 1, 54, 14.66, 0.37, 1, 2, 54, 12.29, 0.32, 0.99775, 55, -3.68, 0.24, 0.00225, 2, 55, 15.27, -0.17, 0.99019, 56, -1.13, -3.21, 0.00981, 2, 55, 13.74, -0.13, 0.99778, 56, -1.45, -4.71, 0.00222, 2, 55, 11.87, -0.09, 0.99902, 56, -1.83, -6.55, 9.8E-4 ],
  313. "hull": 18,
  314. "edges": [ 12, 14, 32, 34, 38, 14, 30, 32, 14, 16, 18, 16, 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, 38, 44, 18, 44, 10, 12, 44, 10, 18, 20, 46, 44, 20, 46, 8, 10, 46, 8, 20, 22, 22, 24, 40, 48, 48, 46, 22, 48, 4, 6, 6, 8, 48, 6 ],
  315. "width": 26,
  316. "height": 49
  317. }
  318. },
  319. "youwaitao": {
  320. "youwaitao": {
  321. "type": "mesh",
  322. "uvs": [ 0.33777, 0.09612, 1, 0.15453, 1, 0.38823, 1, 0.44943, 1, 0.50836, 1, 0.56843, 1, 0.61263, 1, 0.67836, 1, 0.73049, 1, 0.79963, 1, 0.89823, 1, 1, 0.72341, 1, 0, 1, 0, 0.92543, 0, 0.83023, 0, 0.74636, 0, 0.67156, 0, 0.59563, 0, 0.53896, 0, 0.47436, 0, 0.42449, 0, 0.36103, 0, 0.06633, 0.35714, 0.54693, 0.41349, 0.74133, 0.35471, 0.4903, 0.37705, 0.6156, 0.39587, 0.68053, 0.50397, 0.81684, 0.61072, 0.90595, 0.34968, 0.37338, 0.35219, 0.43156 ],
  323. "triangles": [ 12, 10, 11, 13, 30, 12, 12, 30, 10, 13, 14, 30, 14, 29, 30, 14, 15, 29, 10, 30, 9, 30, 29, 9, 15, 25, 29, 9, 29, 8, 29, 25, 8, 15, 16, 25, 16, 28, 25, 16, 17, 28, 8, 25, 7, 25, 28, 7, 17, 27, 28, 7, 28, 6, 28, 27, 6, 17, 18, 27, 18, 24, 27, 6, 27, 5, 27, 24, 5, 18, 19, 24, 24, 4, 5, 19, 26, 24, 24, 26, 4, 19, 20, 26, 26, 3, 4, 20, 32, 26, 26, 32, 3, 20, 21, 32, 32, 2, 3, 21, 31, 32, 32, 31, 2, 21, 22, 31, 31, 1, 2, 22, 0, 31, 31, 0, 1, 22, 23, 0 ],
  324. "vertices": [ 1, 15, -14.29, -0.27, 1, 2, 15, -10.59, 14.91, 1, 16, -22.94, 18.07, 0, 3, 15, 3.43, 14.72, 0.91344, 16, -9.06, 16.05, 0.0865, 17, -14.31, 20.98, 6.0E-5, 3, 15, 7.1, 14.68, 0.81303, 16, -5.43, 15.52, 0.18283, 17, -10.97, 19.44, 0.00414, 3, 15, 10.64, 14.63, 0.65757, 16, -1.93, 15.01, 0.31831, 17, -7.76, 17.96, 0.02411, 3, 15, 14.24, 14.58, 0.45416, 16, 1.64, 14.49, 0.46537, 17, -4.49, 16.45, 0.08047, 3, 15, 16.9, 14.55, 0.30399, 16, 4.26, 14.11, 0.53561, 17, -2.08, 15.33, 0.16039, 3, 15, 20.84, 14.5, 0.13199, 16, 8.17, 13.54, 0.50931, 17, 1.5, 13.68, 0.3587, 3, 15, 23.97, 14.45, 0.0527, 16, 11.26, 13.09, 0.38199, 17, 4.34, 12.37, 0.56531, 3, 15, 28.11, 14.4, 0.00846, 16, 15.37, 12.5, 0.17695, 17, 8.1, 10.63, 0.81459, 2, 16, 21.22, 11.64, 0.02155, 17, 13.47, 8.15, 0.97845, 1, 17, 19.02, 5.59, 1, 1, 17, 16.35, -0.18, 1, 2, 16, 23.95, -11.99, 0.00296, 17, 9.38, -15.29, 0.99704, 2, 16, 19.52, -11.35, 0.04376, 17, 5.32, -13.41, 0.95624, 2, 16, 13.87, -10.53, 0.28263, 17, 0.13, -11.02, 0.71737, 3, 15, 24.62, -8.56, 0.00172, 16, 8.89, -9.8, 0.68146, 17, -4.44, -8.91, 0.31681, 3, 15, 20.13, -8.5, 0.07342, 16, 4.45, -9.16, 0.86448, 17, -8.51, -7.03, 0.0621, 3, 15, 15.57, -8.44, 0.39997, 16, -0.06, -8.5, 0.59894, 17, -12.65, -5.12, 0.00108, 2, 15, 12.17, -8.39, 0.74083, 16, -3.42, -8.01, 0.25917, 2, 15, 8.3, -8.34, 0.95516, 16, -7.26, -7.46, 0.04484, 2, 15, 5.31, -8.3, 0.99649, 16, -10.22, -7.02, 0.00351, 1, 15, 1.5, -8.25, 1, 1, 15, -16.18, -8.02, 1, 1, 15, 12.76, -0.18, 1, 2, 16, 9.96, -0.35, 0.96905, 17, -0.73, -0.15, 0.03095, 1, 15, 9.36, -0.2, 1, 1, 16, 2.38, -0.09, 1, 1, 16, 6.29, -0.23, 1, 1, 17, 4.26, -0.16, 1, 1, 17, 10.14, -0.17, 1, 1, 15, 2.35, -0.22, 1, 1, 15, 5.84, -0.21, 1 ],
  325. "hull": 24,
  326. "edges": [ 2, 0, 0, 46, 22, 24, 24, 26, 38, 48, 48, 10, 38, 40, 52, 48, 40, 52, 8, 10, 52, 8, 36, 38, 48, 54, 36, 54, 10, 12, 54, 12, 34, 36, 50, 56, 56, 54, 34, 56, 12, 14, 56, 14, 32, 34, 32, 50, 14, 16, 50, 16, 30, 32, 58, 50, 30, 58, 16, 18, 58, 18, 26, 28, 28, 30, 24, 60, 60, 58, 28, 60, 18, 20, 20, 22, 60, 20, 44, 46, 0, 62, 44, 62, 2, 4, 62, 4, 40, 42, 42, 44, 52, 64, 64, 62, 42, 64, 4, 6, 6, 8, 64, 6 ],
  327. "width": 23,
  328. "height": 60
  329. }
  330. },
  331. "youyan1": {
  332. "youyan1": { "x": 4.68, "y": -3.04, "rotation": -88.6, "width": 21, "height": 16 }
  333. },
  334. "youyan2": {
  335. "youyan2": { "x": 5.69, "y": -3.52, "rotation": -88.6, "width": 22, "height": 18 }
  336. },
  337. "zuiba": {
  338. "zuiba": { "x": 2.46, "y": -1.93, "rotation": -90, "width": 14, "height": 11 }
  339. },
  340. "zuoshou": {
  341. "zuoshou": {
  342. "type": "mesh",
  343. "uvs": [ 1, 0.33943, 0.868, 0.47294, 0.83273, 0.50862, 0.8056, 0.53606, 0.5633, 0.78115, 0.52992, 0.81491, 0.50646, 0.83864, 0.34694, 1, 0, 1, 0, 0.77669, 0.20005, 0.60279, 0.23518, 0.57225, 0.25954, 0.55108, 0.52958, 0.31633, 0.56294, 0.28733, 0.59649, 0.25817, 0.89347, 0, 0.99999, 0.04869, 0.67268, 0.37663, 0.37226, 0.68564, 0.70633, 0.35094, 0.64205, 0.40785, 0.40079, 0.65373, 0.34362, 0.71026 ],
  344. "triangles": [ 8, 23, 7, 7, 23, 6, 23, 9, 10, 23, 8, 9, 23, 19, 6, 6, 19, 5, 19, 22, 5, 10, 11, 23, 23, 11, 19, 11, 12, 19, 19, 12, 22, 5, 22, 4, 4, 21, 3, 4, 22, 21, 22, 13, 21, 22, 12, 13, 21, 18, 3, 13, 14, 21, 3, 18, 2, 18, 20, 2, 2, 20, 1, 1, 20, 0, 21, 14, 18, 14, 15, 18, 18, 15, 20, 17, 20, 16, 17, 0, 20, 20, 15, 16 ],
  345. "vertices": [ 2, 6, 9.25, 11.34, 0.99846, 7, -13.36, 11.55, 0.00154, 2, 6, 20.21, 11.49, 0.70359, 7, -2.4, 11.53, 0.29641, 2, 6, 23.14, 11.53, 0.49141, 7, 0.53, 11.53, 0.50859, 2, 6, 25.39, 11.56, 0.32806, 7, 2.78, 11.52, 0.67194, 2, 7, 22.9, 11.48, 0.63004, 8, -1.13, 12.21, 0.36996, 2, 7, 25.67, 11.48, 0.4341, 8, 1.64, 12.25, 0.5659, 2, 7, 27.62, 11.47, 0.31012, 8, 3.59, 12.28, 0.68988, 2, 7, 40.87, 11.45, 0.00392, 8, 16.84, 12.47, 0.99608, 1, 8, 28.33, -1.44, 1, 1, 8, 17.32, -10.54, 1, 2, 7, 25.79, -10.4, 0.09016, 8, 2.11, -9.62, 0.90984, 2, 7, 23.12, -10.19, 0.24051, 8, -0.56, -9.46, 0.75949, 2, 7, 21.27, -10.05, 0.38511, 8, -2.41, -9.35, 0.61489, 2, 6, 23.69, -8.46, 0.37915, 7, 0.77, -8.47, 0.62085, 2, 6, 21.16, -8.3, 0.63409, 7, -1.76, -8.28, 0.36591, 2, 6, 18.61, -8.15, 0.84204, 7, -4.31, -8.08, 0.15796, 1, 6, -3.97, -6.76, 1, 1, 6, -5.09, -0.51, 1, 1, 6, 21.93, -0.26, 1, 2, 7, 24.34, -0.09, 0.03667, 8, 0.49, 0.66, 0.96333, 1, 6, 19.55, 0.04, 1, 1, 7, 1.69, -0.24, 1, 2, 7, 21.81, -0.21, 0.72924, 8, -2.03, 0.5, 0.27076, 2, 7, 26.5, -0.27, 0.01033, 8, 2.65, 0.52, 0.98967 ],
  346. "hull": 18,
  347. "edges": [ 32, 34, 16, 18, 0, 34, 14, 16, 28, 36, 36, 4, 28, 30, 30, 32, 34, 40, 40, 36, 30, 40, 0, 2, 2, 4, 40, 2, 26, 28, 36, 42, 26, 42, 4, 6, 42, 6, 22, 38, 38, 10, 22, 24, 24, 26, 38, 44, 44, 42, 24, 44, 6, 8, 8, 10, 44, 8, 18, 20, 20, 22, 16, 46, 46, 38, 20, 46, 10, 12, 12, 14, 46, 12 ],
  348. "width": 52,
  349. "height": 64
  350. }
  351. },
  352. "zuotui": {
  353. "zuotui": {
  354. "type": "mesh",
  355. "uvs": [ 1, 0.38846, 1, 0.42386, 1, 0.45454, 1, 0.70597, 1, 0.74255, 1, 0.76615, 1, 1, 0, 1, 0, 0.84771, 0.43714, 0.72771, 0.43682, 0.70123, 0.43652, 0.67644, 0.43376, 0.45101, 0.43335, 0.41798, 0.43296, 0.38608, 0.42824, 0, 0.7038, 0, 1, 0, 0.69937, 0.7517, 0.69966, 0.70245, 0.69951, 0.72722, 0.70112, 0.45458, 0.70132, 0.42036, 0.7015, 0.38964 ],
  356. "triangles": [ 7, 8, 9, 7, 9, 18, 7, 18, 6, 19, 10, 11, 21, 19, 11, 3, 19, 2, 20, 10, 19, 20, 19, 3, 9, 10, 20, 20, 3, 4, 18, 9, 20, 18, 20, 4, 18, 4, 5, 18, 5, 6, 14, 15, 16, 16, 17, 0, 23, 14, 16, 0, 23, 16, 13, 14, 23, 22, 13, 23, 22, 23, 0, 1, 22, 0, 12, 13, 22, 21, 22, 1, 21, 12, 22, 2, 21, 1, 11, 12, 21, 19, 21, 2 ],
  357. "vertices": [ 2, 51, 11.97, 8.26, 0.88616, 52, -3.63, 8.32, 0.11384, 2, 51, 13.74, 8.26, 0.76302, 52, -1.86, 8.29, 0.23698, 2, 51, 15.28, 8.26, 0.62148, 52, -0.33, 8.26, 0.37852, 3, 51, 27.85, 8.26, 4.7E-4, 52, 12.24, 8.04, 0.93008, 53, -10.59, -3.27, 0.06945, 2, 52, 14.07, 8.01, 0.83372, 53, -10.04, -1.52, 0.16628, 2, 52, 15.25, 7.99, 0.74385, 53, -9.69, -0.4, 0.25615, 2, 52, 26.94, 7.79, 0.02175, 53, -6.2, 10.76, 0.97825, 1, 53, 19.57, 2.71, 1, 1, 53, 17.3, -4.56, 1, 2, 52, 13.06, -7.17, 0.49777, 53, 4.24, -6.76, 0.50223, 2, 52, 11.74, -7.16, 0.69769, 53, 3.85, -8.03, 0.30231, 2, 52, 10.5, -7.14, 0.81768, 53, 3.49, -9.22, 0.18232, 2, 51, 15.1, -7.03, 0.60416, 52, -0.77, -7.02, 0.39584, 2, 51, 13.45, -7.04, 0.78262, 52, -2.43, -7, 0.21738, 2, 51, 11.85, -7.05, 0.90218, 52, -4.02, -6.98, 0.09782, 1, 51, -7.45, -7.18, 1, 1, 51, -7.45, 0.26, 1, 1, 51, -7.45, 8.26, 1, 2, 52, 14.38, -0.11, 0.98007, 53, -2.16, -3.51, 0.01993, 2, 52, 11.92, -0.06, 0.99897, 53, -2.9, -5.86, 0.00103, 2, 52, 13.16, -0.09, 0.99851, 53, -2.53, -4.67, 0.00149, 2, 51, 15.28, 0.19, 0.89274, 52, -0.47, 0.2, 0.10726, 2, 51, 13.57, 0.19, 0.99762, 52, -2.18, 0.23, 0.00238, 2, 51, 12.03, 0.2, 0.99975, 52, -3.72, 0.26, 2.5E-4 ],
  358. "hull": 18,
  359. "edges": [ 12, 14, 14, 16, 18, 16, 30, 32, 32, 34, 36, 14, 18, 36, 12, 10, 36, 10, 22, 38, 38, 6, 18, 20, 20, 22, 36, 40, 40, 38, 20, 40, 6, 8, 8, 10, 40, 8, 22, 24, 42, 38, 24, 42, 6, 4, 42, 4, 24, 26, 44, 42, 26, 44, 4, 2, 44, 2, 26, 28, 28, 30, 32, 46, 46, 44, 28, 46, 2, 0, 0, 34, 46, 0 ],
  360. "width": 27,
  361. "height": 50
  362. }
  363. },
  364. "zuowaitao": {
  365. "zuowaitao": {
  366. "type": "mesh",
  367. "uvs": [ 0.87513, 0.24713, 0.83919, 0.31825, 0.80222, 0.39142, 0.76387, 0.46731, 0.73586, 0.52275, 0.70664, 0.58057, 0.66383, 0.6653, 0.61922, 0.75358, 0.55215, 0.88631, 0.4947, 1, 0.10804, 1, 0, 1, 0, 0.85805, 0, 0.73922, 0, 0.65073, 0, 0.57395, 0, 0.52485, 0.02433, 0.46528, 0.05529, 0.38947, 0.08811, 0.30914, 0.114, 0.24575, 0.21437, 0, 0.51887, 0, 1, 0, 0.41737, 0.51336, 0.39804, 0.74974, 0.41271, 0.57035, 0.42635, 0.46794, 0.47024, 0.24596, 0.45815, 0.30713, 0.44188, 0.38942, 0.40518, 0.66237, 0.25271, 0.87515 ],
  368. "triangles": [ 10, 32, 9, 9, 32, 8, 32, 10, 12, 10, 11, 12, 32, 25, 8, 8, 25, 7, 25, 32, 13, 32, 12, 13, 25, 13, 14, 25, 31, 7, 7, 31, 6, 31, 25, 14, 31, 26, 6, 6, 26, 5, 26, 31, 15, 31, 14, 15, 26, 24, 5, 15, 16, 26, 5, 24, 4, 26, 16, 24, 16, 17, 24, 24, 27, 4, 4, 27, 3, 24, 17, 27, 17, 18, 27, 27, 30, 3, 27, 18, 30, 3, 30, 2, 30, 29, 2, 2, 29, 1, 18, 19, 30, 30, 19, 29, 29, 28, 1, 1, 28, 0, 19, 20, 29, 29, 20, 28, 28, 22, 0, 0, 22, 23, 20, 21, 28, 28, 21, 22 ],
  369. "vertices": [ 1, 12, -0.4, 7.37, 1, 1, 12, 3.4, 6.96, 1, 1, 12, 7.31, 6.52, 1, 2, 12, 11.37, 6.08, 0.96287, 13, -4.6, 6.01, 0.03713, 2, 12, 14.33, 5.75, 0.75288, 13, -1.63, 5.73, 0.24712, 2, 12, 17.42, 5.41, 0.30268, 13, 1.47, 5.43, 0.69732, 3, 12, 21.95, 4.91, 0.00511, 13, 6, 4.99, 0.98197, 14, -5.39, 3.84, 0.01292, 2, 13, 10.73, 4.54, 0.46808, 14, -0.69, 4.5, 0.53192, 1, 14, 6.38, 5.5, 1, 1, 14, 12.43, 6.36, 1, 1, 14, 14.56, -0.27, 1, 1, 14, 15.15, -2.12, 1, 2, 13, 17.07, -6.17, 0.00543, 14, 7.99, -4.42, 0.99457, 2, 13, 10.79, -6.63, 0.41779, 14, 1.99, -6.34, 0.58221, 3, 12, 21.9, -7.06, 0.03241, 13, 6.11, -6.98, 0.8591, 14, -2.48, -7.78, 0.10849, 3, 12, 17.84, -7.31, 0.27596, 13, 2.05, -7.28, 0.71892, 14, -6.35, -9.02, 0.00512, 2, 12, 15.24, -7.46, 0.55269, 13, -0.54, -7.47, 0.44731, 2, 12, 12.06, -7.22, 0.84824, 13, -3.72, -7.27, 0.15176, 2, 12, 8.02, -6.9, 0.99018, 13, -7.77, -7.01, 0.00983, 1, 12, 3.73, -6.57, 1, 1, 12, 0.35, -6.31, 1, 1, 12, -12.76, -5.29, 1, 1, 12, -13.09, 0.19, 1, 1, 12, -13.61, 8.83, 1, 2, 12, 14.18, 0, 0.99966, 13, -1.7, -0.03, 3.4E-4, 2, 13, 10.82, 0.55, 0.15254, 14, 0.33, 0.65, 0.84746, 2, 12, 17.2, 0.1, 9.1E-4, 13, 1.32, 0.11, 0.99909, 1, 12, 11.77, 0.01, 1, 1, 12, -0.02, 0.1, 1, 1, 12, 3.22, 0.07, 1, 1, 12, 7.6, 0.04, 1, 1, 13, 6.19, 0.34, 1, 1, 14, 7.46, 0.19, 1 ],
  370. "hull": 24,
  371. "edges": [ 42, 44, 44, 46, 18, 20, 20, 22, 32, 48, 48, 8, 30, 32, 48, 52, 30, 52, 8, 10, 52, 10, 32, 34, 54, 48, 34, 54, 8, 6, 54, 6, 40, 42, 44, 56, 40, 56, 0, 46, 56, 0, 38, 40, 58, 56, 38, 58, 0, 2, 58, 2, 34, 36, 36, 38, 54, 60, 60, 58, 36, 60, 2, 4, 4, 6, 60, 4, 26, 50, 50, 14, 26, 28, 28, 30, 50, 62, 62, 52, 28, 62, 10, 12, 12, 14, 62, 12, 22, 24, 24, 26, 20, 64, 64, 50, 24, 64, 14, 16, 16, 18, 64, 16 ],
  372. "width": 18,
  373. "height": 53
  374. }
  375. },
  376. "zuoyan1": {
  377. "zuoyan1": { "x": 4.46, "y": 0.46, "rotation": -90.69, "width": 18, "height": 16 }
  378. },
  379. "zuoyan2": {
  380. "zuoyan2": { "x": 4.46, "y": 0.46, "rotation": -90.69, "width": 20, "height": 16 }
  381. }
  382. }
  383. },
  384. "animations": {
  385. "stand1": {
  386. "slots": {
  387. "biyan": {
  388. "attachment": [
  389. { "time": 1.3333, "name": "biyan" },
  390. { "time": 1.4333, "name": null }
  391. ]
  392. },
  393. "youyan1": {
  394. "attachment": [
  395. { "time": 1.3333, "name": null },
  396. { "time": 1.4333, "name": "youyan1" }
  397. ]
  398. },
  399. "zuoyan1": {
  400. "attachment": [
  401. { "time": 1.3333, "name": null },
  402. { "time": 1.4333, "name": "zuoyan1" }
  403. ]
  404. }
  405. },
  406. "bones": {
  407. "bone2": {
  408. "rotate": [
  409. { "time": 0, "angle": 0, "curve": "stepped" },
  410. { "time": 0.6, "angle": 0, "curve": "stepped" },
  411. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  412. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  413. { "time": 2.3333, "angle": 0 }
  414. ],
  415. "translate": [
  416. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  417. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  418. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  419. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  420. { "time": 2.3333, "x": 0, "y": 0 }
  421. ]
  422. },
  423. "bone3": {
  424. "rotate": [
  425. { "time": 0, "angle": 0, "curve": "stepped" },
  426. { "time": 0.6, "angle": 0, "curve": "stepped" },
  427. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  428. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  429. { "time": 2.3333, "angle": 0 }
  430. ],
  431. "translate": [
  432. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  433. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  434. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  435. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  436. { "time": 2.3333, "x": 0, "y": 0 }
  437. ],
  438. "scale": [
  439. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  440. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  441. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  442. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  443. { "time": 2.3333, "x": 1, "y": 1 }
  444. ]
  445. },
  446. "bone4": {
  447. "rotate": [
  448. { "time": 0, "angle": 0, "curve": "stepped" },
  449. { "time": 0.6, "angle": 0, "curve": "stepped" },
  450. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  451. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  452. { "time": 2.3333, "angle": 0 }
  453. ],
  454. "translate": [
  455. {
  456. "time": 0,
  457. "x": 0,
  458. "y": 0,
  459. "curve": [ 0.25, 0, 0.75, 1 ]
  460. },
  461. {
  462. "time": 0.6,
  463. "x": 2.56,
  464. "y": 0.13,
  465. "curve": [ 0.25, 0, 0.75, 1 ]
  466. },
  467. {
  468. "time": 1.1667,
  469. "x": 0,
  470. "y": 0,
  471. "curve": [ 0.25, 0, 0.75, 1 ]
  472. },
  473. {
  474. "time": 1.7667,
  475. "x": 2.56,
  476. "y": 0.13,
  477. "curve": [ 0.25, 0, 0.75, 1 ]
  478. },
  479. { "time": 2.3333, "x": 0, "y": 0 }
  480. ],
  481. "scale": [
  482. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  483. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  484. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  485. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  486. { "time": 2.3333, "x": 1, "y": 1 }
  487. ]
  488. },
  489. "bone5": {
  490. "rotate": [
  491. { "time": 0, "angle": 0, "curve": "stepped" },
  492. { "time": 0.6, "angle": 0, "curve": "stepped" },
  493. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  494. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  495. { "time": 2.3333, "angle": 0 }
  496. ],
  497. "translate": [
  498. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  499. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  500. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  501. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  502. { "time": 2.3333, "x": 0, "y": 0 }
  503. ],
  504. "scale": [
  505. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  506. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  507. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  508. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  509. { "time": 2.3333, "x": 1, "y": 1 }
  510. ]
  511. },
  512. "bone6": {
  513. "rotate": [
  514. { "time": 0, "angle": 22.32 },
  515. { "time": 0.6, "angle": 15.36 },
  516. { "time": 1.1667, "angle": 22.32 },
  517. { "time": 1.7667, "angle": 15.36 },
  518. { "time": 2.3333, "angle": 22.32 }
  519. ],
  520. "translate": [
  521. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  522. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  523. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  524. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  525. { "time": 2.3333, "x": 0, "y": 0 }
  526. ],
  527. "scale": [
  528. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  529. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  530. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  531. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  532. { "time": 2.3333, "x": 1, "y": 1 }
  533. ]
  534. },
  535. "bone7": {
  536. "rotate": [
  537. { "time": 0, "angle": 4.55 },
  538. { "time": 0.6, "angle": 8.96 },
  539. { "time": 1.1667, "angle": 4.55 },
  540. { "time": 1.7667, "angle": 8.96 },
  541. { "time": 2.3333, "angle": 4.55 }
  542. ],
  543. "translate": [
  544. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  545. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  546. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  547. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  548. { "time": 2.3333, "x": 0, "y": 0 }
  549. ],
  550. "scale": [
  551. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  552. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  553. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  554. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  555. { "time": 2.3333, "x": 1, "y": 1 }
  556. ]
  557. },
  558. "bone8": {
  559. "rotate": [
  560. { "time": 0, "angle": 0, "curve": "stepped" },
  561. { "time": 0.6, "angle": 0, "curve": "stepped" },
  562. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  563. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  564. { "time": 2.3333, "angle": 0 }
  565. ],
  566. "translate": [
  567. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  568. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  569. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  570. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  571. { "time": 2.3333, "x": 0, "y": 0 }
  572. ],
  573. "scale": [
  574. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  575. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  576. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  577. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  578. { "time": 2.3333, "x": 1, "y": 1 }
  579. ]
  580. },
  581. "bone9": {
  582. "rotate": [
  583. { "time": 0, "angle": -14 },
  584. { "time": 0.6, "angle": -6.02 },
  585. { "time": 1.1667, "angle": -14 },
  586. { "time": 1.7667, "angle": -6.02 },
  587. { "time": 2.3333, "angle": -14 }
  588. ],
  589. "translate": [
  590. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  591. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  592. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  593. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  594. { "time": 2.3333, "x": 0, "y": 0 }
  595. ],
  596. "scale": [
  597. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  598. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  599. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  600. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  601. { "time": 2.3333, "x": 1, "y": 1 }
  602. ]
  603. },
  604. "bone10": {
  605. "rotate": [
  606. { "time": 0, "angle": 0 },
  607. { "time": 0.6, "angle": -13.26 },
  608. { "time": 1.1667, "angle": 0 },
  609. { "time": 1.7667, "angle": -13.26 },
  610. { "time": 2.3333, "angle": 0 }
  611. ],
  612. "translate": [
  613. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  614. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  615. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  616. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  617. { "time": 2.3333, "x": 0, "y": 0 }
  618. ],
  619. "scale": [
  620. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  621. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  622. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  623. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  624. { "time": 2.3333, "x": 1, "y": 1 }
  625. ]
  626. },
  627. "bone11": {
  628. "rotate": [
  629. { "time": 0, "angle": 0, "curve": "stepped" },
  630. { "time": 0.6, "angle": 0, "curve": "stepped" },
  631. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  632. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  633. { "time": 2.3333, "angle": 0 }
  634. ],
  635. "translate": [
  636. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  637. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  638. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  639. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  640. { "time": 2.3333, "x": 0, "y": 0 }
  641. ],
  642. "scale": [
  643. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  644. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  645. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  646. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  647. { "time": 2.3333, "x": 1, "y": 1 }
  648. ]
  649. },
  650. "bone12": {
  651. "rotate": [
  652. { "time": 0, "angle": 0 },
  653. { "time": 0.6, "angle": -7.71 },
  654. { "time": 1.1667, "angle": 0 },
  655. { "time": 1.7667, "angle": -7.71 },
  656. { "time": 2.3333, "angle": 0 }
  657. ],
  658. "translate": [
  659. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  660. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  661. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  662. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  663. { "time": 2.3333, "x": 0, "y": 0 }
  664. ],
  665. "scale": [
  666. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  667. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  668. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  669. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  670. { "time": 2.3333, "x": 1, "y": 1 }
  671. ]
  672. },
  673. "bone13": {
  674. "rotate": [
  675. { "time": 0, "angle": 0 },
  676. { "time": 0.6, "angle": -8.44 },
  677. { "time": 1.1667, "angle": 0 },
  678. { "time": 1.7667, "angle": -8.44 },
  679. { "time": 2.3333, "angle": 0 }
  680. ],
  681. "translate": [
  682. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  683. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  684. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  685. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  686. { "time": 2.3333, "x": 0, "y": 0 }
  687. ],
  688. "scale": [
  689. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  690. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  691. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  692. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  693. { "time": 2.3333, "x": 1, "y": 1 }
  694. ]
  695. },
  696. "bone14": {
  697. "rotate": [
  698. { "time": 0, "angle": 0, "curve": "stepped" },
  699. { "time": 0.6, "angle": 0, "curve": "stepped" },
  700. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  701. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  702. { "time": 2.3333, "angle": 0 }
  703. ],
  704. "translate": [
  705. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  706. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  707. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  708. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  709. { "time": 2.3333, "x": 0, "y": 0 }
  710. ],
  711. "scale": [
  712. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  713. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  714. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  715. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  716. { "time": 2.3333, "x": 1, "y": 1 }
  717. ]
  718. },
  719. "bone15": {
  720. "rotate": [
  721. { "time": 0, "angle": 0 },
  722. { "time": 0.6, "angle": 4.76 },
  723. { "time": 1.1667, "angle": 0 },
  724. { "time": 1.7667, "angle": 4.76 },
  725. { "time": 2.3333, "angle": 0 }
  726. ],
  727. "translate": [
  728. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  729. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  730. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  731. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  732. { "time": 2.3333, "x": 0, "y": 0 }
  733. ],
  734. "scale": [
  735. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  736. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  737. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  738. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  739. { "time": 2.3333, "x": 1, "y": 1 }
  740. ]
  741. },
  742. "bone16": {
  743. "rotate": [
  744. { "time": 0, "angle": 0 },
  745. { "time": 0.2667, "angle": 3.28 },
  746. { "time": 0.6, "angle": 8.93 },
  747. { "time": 1.1667, "angle": 0 },
  748. { "time": 1.4333, "angle": 3.28 },
  749. { "time": 1.7667, "angle": 8.93 },
  750. { "time": 2.3333, "angle": 0 }
  751. ],
  752. "translate": [
  753. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  754. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  755. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  756. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  757. { "time": 2.3333, "x": 0, "y": 0 }
  758. ],
  759. "scale": [
  760. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  761. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  762. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  763. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  764. { "time": 2.3333, "x": 1, "y": 1 }
  765. ]
  766. },
  767. "bone17": {
  768. "rotate": [
  769. { "time": 0, "angle": 0 },
  770. { "time": 0.2667, "angle": -0.51 },
  771. { "time": 0.6, "angle": 6.6 },
  772. { "time": 1.1667, "angle": 0 },
  773. { "time": 1.4333, "angle": -0.51 },
  774. { "time": 1.7667, "angle": 6.6 },
  775. { "time": 2.3333, "angle": 0 }
  776. ],
  777. "translate": [
  778. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  779. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  780. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  781. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  782. { "time": 2.3333, "x": 0, "y": 0 }
  783. ],
  784. "scale": [
  785. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  786. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  787. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  788. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  789. { "time": 2.3333, "x": 1, "y": 1 }
  790. ]
  791. },
  792. "bone18": {
  793. "rotate": [
  794. { "time": 0, "angle": 0, "curve": "stepped" },
  795. { "time": 0.6, "angle": 0, "curve": "stepped" },
  796. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  797. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  798. { "time": 2.3333, "angle": 0 }
  799. ],
  800. "translate": [
  801. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  802. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  803. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  804. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  805. { "time": 2.3333, "x": 0, "y": 0 }
  806. ],
  807. "scale": [
  808. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  809. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  810. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  811. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  812. { "time": 2.3333, "x": 1, "y": 1 }
  813. ]
  814. },
  815. "bone19": {
  816. "rotate": [
  817. { "time": 0, "angle": 0, "curve": "stepped" },
  818. { "time": 0.6, "angle": 0, "curve": "stepped" },
  819. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  820. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  821. { "time": 2.3333, "angle": 0 }
  822. ],
  823. "translate": [
  824. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  825. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  826. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  827. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  828. { "time": 2.3333, "x": 0, "y": 0 }
  829. ],
  830. "scale": [
  831. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  832. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  833. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  834. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  835. { "time": 2.3333, "x": 1, "y": 1 }
  836. ]
  837. },
  838. "bone20": {
  839. "rotate": [
  840. { "time": 0, "angle": 0, "curve": "stepped" },
  841. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  842. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  843. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  844. { "time": 1.6333, "angle": 0 }
  845. ],
  846. "translate": [
  847. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  848. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  849. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  850. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  851. { "time": 1.6333, "x": 0, "y": 0 }
  852. ],
  853. "scale": [
  854. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 1.1667, "x": 1, "y": 1 },
  856. { "time": 1.3333, "x": 0.505, "y": 1, "curve": "stepped" },
  857. { "time": 1.4333, "x": 0.505, "y": 1 },
  858. { "time": 1.6333, "x": 1, "y": 1 }
  859. ]
  860. },
  861. "bone21": {
  862. "rotate": [
  863. { "time": 0, "angle": 0, "curve": "stepped" },
  864. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  865. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  866. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  867. { "time": 1.6333, "angle": 0 }
  868. ],
  869. "translate": [
  870. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  871. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  872. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  873. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  874. { "time": 1.6333, "x": 0, "y": 0 }
  875. ],
  876. "scale": [
  877. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  878. { "time": 1.1667, "x": 1, "y": 1 },
  879. { "time": 1.3333, "x": 0.484, "y": 1, "curve": "stepped" },
  880. { "time": 1.4333, "x": 0.484, "y": 1 },
  881. { "time": 1.6333, "x": 1, "y": 1 }
  882. ]
  883. },
  884. "bone22": {
  885. "rotate": [
  886. { "time": 0, "angle": 0, "curve": "stepped" },
  887. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  888. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  889. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  890. { "time": 1.6333, "angle": 0 }
  891. ],
  892. "translate": [
  893. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  894. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  895. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  896. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  897. { "time": 1.6333, "x": 0, "y": 0 }
  898. ],
  899. "scale": [
  900. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  901. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  902. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  903. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  904. { "time": 1.6333, "x": 1, "y": 1 }
  905. ]
  906. },
  907. "bone23": {
  908. "rotate": [
  909. { "time": 0, "angle": 0, "curve": "stepped" },
  910. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  911. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  912. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  913. { "time": 1.6333, "angle": 0 }
  914. ],
  915. "translate": [
  916. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  917. { "time": 1.1667, "x": 0, "y": 0 },
  918. { "time": 1.3333, "x": -1.71, "y": -0.02, "curve": "stepped" },
  919. { "time": 1.4333, "x": -1.71, "y": -0.02 },
  920. { "time": 1.6333, "x": 0, "y": 0 }
  921. ],
  922. "scale": [
  923. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  924. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  925. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  926. { "time": 1.4333, "x": 1, "y": 1, "curve": "stepped" },
  927. { "time": 1.6333, "x": 1, "y": 1 }
  928. ]
  929. },
  930. "bone24": {
  931. "rotate": [
  932. { "time": 0, "angle": 0 },
  933. { "time": 0.6, "angle": -3.38 },
  934. { "time": 1.1667, "angle": 0 },
  935. { "time": 1.7667, "angle": -3.38 },
  936. { "time": 2.3333, "angle": 0 }
  937. ],
  938. "translate": [
  939. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  940. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  941. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  942. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  943. { "time": 2.3333, "x": 0, "y": 0 }
  944. ],
  945. "scale": [
  946. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  947. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  948. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  949. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  950. { "time": 2.3333, "x": 1, "y": 1 }
  951. ]
  952. },
  953. "bone25": {
  954. "rotate": [
  955. { "time": 0, "angle": 0 },
  956. { "time": 0.6, "angle": -3.38 },
  957. { "time": 1.1667, "angle": 0 },
  958. { "time": 1.7667, "angle": -3.38 },
  959. { "time": 2.3333, "angle": 0 }
  960. ],
  961. "translate": [
  962. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  963. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  964. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  965. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  966. { "time": 2.3333, "x": 0, "y": 0 }
  967. ],
  968. "scale": [
  969. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  970. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  971. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  972. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  973. { "time": 2.3333, "x": 1, "y": 1 }
  974. ]
  975. },
  976. "bone26": {
  977. "rotate": [
  978. { "time": 0, "angle": 0 },
  979. { "time": 0.6, "angle": -3.38 },
  980. { "time": 1.1667, "angle": 0 },
  981. { "time": 1.7667, "angle": -3.38 },
  982. { "time": 2.3333, "angle": 0 }
  983. ],
  984. "translate": [
  985. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  986. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  987. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 2.3333, "x": 0, "y": 0 }
  990. ],
  991. "scale": [
  992. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  993. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  994. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  995. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  996. { "time": 2.3333, "x": 1, "y": 1 }
  997. ]
  998. },
  999. "bone27": {
  1000. "rotate": [
  1001. { "time": 0, "angle": 0 },
  1002. { "time": 0.6, "angle": 3.97 },
  1003. { "time": 1.1667, "angle": 0 },
  1004. { "time": 1.7667, "angle": 3.97 },
  1005. { "time": 2.3333, "angle": 0 }
  1006. ],
  1007. "translate": [
  1008. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1009. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1010. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1011. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 2.3333, "x": 0, "y": 0 }
  1013. ],
  1014. "scale": [
  1015. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1016. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1017. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1018. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1019. { "time": 2.3333, "x": 1, "y": 1 }
  1020. ]
  1021. },
  1022. "bone28": {
  1023. "rotate": [
  1024. { "time": 0, "angle": 0 },
  1025. { "time": 0.6, "angle": 3.97 },
  1026. { "time": 1.1667, "angle": 0 },
  1027. { "time": 1.7667, "angle": 3.97 },
  1028. { "time": 2.3333, "angle": 0 }
  1029. ],
  1030. "translate": [
  1031. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1032. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1033. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1034. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1035. { "time": 2.3333, "x": 0, "y": 0 }
  1036. ],
  1037. "scale": [
  1038. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 2.3333, "x": 1, "y": 1 }
  1043. ]
  1044. },
  1045. "bone29": {
  1046. "rotate": [
  1047. { "time": 0, "angle": 0 },
  1048. { "time": 0.6, "angle": 3.97 },
  1049. { "time": 1.1667, "angle": 0 },
  1050. { "time": 1.7667, "angle": 3.97 },
  1051. { "time": 2.3333, "angle": 0 }
  1052. ],
  1053. "translate": [
  1054. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1055. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1056. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1057. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1058. { "time": 2.3333, "x": 0, "y": 0 }
  1059. ],
  1060. "scale": [
  1061. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1062. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1063. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1064. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1065. { "time": 2.3333, "x": 1, "y": 1 }
  1066. ]
  1067. },
  1068. "bone30": {
  1069. "rotate": [
  1070. { "time": 0, "angle": 0 },
  1071. { "time": 0.6, "angle": 19.71 },
  1072. { "time": 1.1667, "angle": 0 },
  1073. { "time": 1.7667, "angle": 19.71 },
  1074. { "time": 2.3333, "angle": 0 }
  1075. ],
  1076. "translate": [
  1077. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1080. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1081. { "time": 2.3333, "x": 0, "y": 0 }
  1082. ],
  1083. "scale": [
  1084. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1085. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1086. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1087. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1088. { "time": 2.3333, "x": 1, "y": 1 }
  1089. ]
  1090. },
  1091. "bone31": {
  1092. "rotate": [
  1093. { "time": 0, "angle": 0 },
  1094. { "time": 0.6, "angle": -6.19 },
  1095. { "time": 1.1667, "angle": 0 },
  1096. { "time": 1.7667, "angle": -6.19 },
  1097. { "time": 2.3333, "angle": 0 }
  1098. ],
  1099. "translate": [
  1100. { "time": 0, "x": 0, "y": 0 },
  1101. { "time": 0.6, "x": -0.29, "y": 0.08 },
  1102. { "time": 1.1667, "x": 0, "y": 0 },
  1103. { "time": 1.7667, "x": -0.29, "y": 0.08 },
  1104. { "time": 2.3333, "x": 0, "y": 0 }
  1105. ],
  1106. "scale": [
  1107. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1108. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1109. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1110. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1111. { "time": 2.3333, "x": 1, "y": 1 }
  1112. ]
  1113. },
  1114. "bone32": {
  1115. "rotate": [
  1116. { "time": 0, "angle": 0 },
  1117. { "time": 0.6, "angle": 2.78 },
  1118. { "time": 1.1667, "angle": 0 },
  1119. { "time": 1.7667, "angle": 2.78 },
  1120. { "time": 2.3333, "angle": 0 }
  1121. ],
  1122. "translate": [
  1123. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1124. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1125. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1126. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1127. { "time": 2.3333, "x": 0, "y": 0 }
  1128. ],
  1129. "scale": [
  1130. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1131. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1132. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 2.3333, "x": 1, "y": 1 }
  1135. ]
  1136. },
  1137. "bone33": {
  1138. "rotate": [
  1139. { "time": 0, "angle": 0 },
  1140. { "time": 0.6, "angle": 3.38 },
  1141. { "time": 1.1667, "angle": 0 },
  1142. { "time": 1.7667, "angle": 3.38 },
  1143. { "time": 2.3333, "angle": 0 }
  1144. ],
  1145. "translate": [
  1146. { "time": 0, "x": 0, "y": 0 },
  1147. { "time": 0.6, "x": -1.61, "y": 0.33 },
  1148. { "time": 1.1667, "x": 0, "y": 0 },
  1149. { "time": 1.7667, "x": -1.61, "y": 0.33 },
  1150. { "time": 2.3333, "x": 0, "y": 0 }
  1151. ],
  1152. "scale": [
  1153. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1154. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1155. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1156. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1157. { "time": 2.3333, "x": 1, "y": 1 }
  1158. ]
  1159. },
  1160. "bone34": {
  1161. "rotate": [
  1162. { "time": 0, "angle": 0, "curve": "stepped" },
  1163. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1164. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1165. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1166. { "time": 2.3333, "angle": 0 }
  1167. ],
  1168. "translate": [
  1169. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1170. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1171. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1172. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1173. { "time": 2.3333, "x": 0, "y": 0 }
  1174. ],
  1175. "scale": [
  1176. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1177. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1178. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1179. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1180. { "time": 2.3333, "x": 1, "y": 1 }
  1181. ]
  1182. },
  1183. "bone35": {
  1184. "rotate": [
  1185. { "time": 0, "angle": 0 },
  1186. { "time": 0.6, "angle": 1.61 },
  1187. { "time": 1.1667, "angle": 0 },
  1188. { "time": 1.7667, "angle": 1.61 },
  1189. { "time": 2.3333, "angle": 0 }
  1190. ],
  1191. "translate": [
  1192. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1193. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1194. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1195. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1196. { "time": 2.3333, "x": 0, "y": 0 }
  1197. ],
  1198. "scale": [
  1199. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1200. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1201. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1202. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1203. { "time": 2.3333, "x": 1, "y": 1 }
  1204. ]
  1205. },
  1206. "bone36": {
  1207. "rotate": [
  1208. { "time": 0, "angle": 0 },
  1209. { "time": 0.6, "angle": 0.38 },
  1210. { "time": 1.1667, "angle": 0 },
  1211. { "time": 1.7667, "angle": 0.38 },
  1212. { "time": 2.3333, "angle": 0 }
  1213. ],
  1214. "translate": [
  1215. { "time": 0, "x": 0, "y": 0 },
  1216. { "time": 0.6, "x": -0.21, "y": 0.05 },
  1217. { "time": 1.1667, "x": 0, "y": 0 },
  1218. { "time": 1.7667, "x": -0.21, "y": 0.05 },
  1219. { "time": 2.3333, "x": 0, "y": 0 }
  1220. ],
  1221. "scale": [
  1222. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1223. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1224. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1225. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1226. { "time": 2.3333, "x": 1, "y": 1 }
  1227. ]
  1228. },
  1229. "bone37": {
  1230. "rotate": [
  1231. { "time": 0, "angle": 0 },
  1232. { "time": 0.6, "angle": 6.36 },
  1233. { "time": 1.1667, "angle": 0 },
  1234. { "time": 1.7667, "angle": 6.36 },
  1235. { "time": 2.3333, "angle": 0 }
  1236. ],
  1237. "translate": [
  1238. { "time": 0, "x": 0, "y": 0 },
  1239. { "time": 0.6, "x": -0.56, "y": 0.34 },
  1240. { "time": 1.1667, "x": 0, "y": 0 },
  1241. { "time": 1.7667, "x": -0.56, "y": 0.34 },
  1242. { "time": 2.3333, "x": 0, "y": 0 }
  1243. ],
  1244. "scale": [
  1245. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1246. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1247. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1248. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1249. { "time": 2.3333, "x": 1, "y": 1 }
  1250. ]
  1251. },
  1252. "bone38": {
  1253. "rotate": [
  1254. { "time": 0, "angle": 0 },
  1255. { "time": 0.6, "angle": -1.93 },
  1256. { "time": 1.1667, "angle": 0 },
  1257. { "time": 1.7667, "angle": -1.93 },
  1258. { "time": 2.3333, "angle": 0 }
  1259. ],
  1260. "translate": [
  1261. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1264. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1265. { "time": 2.3333, "x": 0, "y": 0 }
  1266. ],
  1267. "scale": [
  1268. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1269. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1270. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1271. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1272. { "time": 2.3333, "x": 1, "y": 1 }
  1273. ]
  1274. },
  1275. "bone39": {
  1276. "rotate": [
  1277. { "time": 0, "angle": 0 },
  1278. { "time": 0.6, "angle": 11.55 },
  1279. { "time": 1.1667, "angle": 0 },
  1280. { "time": 1.7667, "angle": 11.55 },
  1281. { "time": 2.3333, "angle": 0 }
  1282. ],
  1283. "translate": [
  1284. { "time": 0, "x": 0, "y": 0 },
  1285. { "time": 0.6, "x": -0.68, "y": 0.02 },
  1286. { "time": 1.1667, "x": 0, "y": 0 },
  1287. { "time": 1.7667, "x": -0.68, "y": 0.02 },
  1288. { "time": 2.3333, "x": 0, "y": 0 }
  1289. ],
  1290. "scale": [
  1291. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1292. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 2.3333, "x": 1, "y": 1 }
  1296. ]
  1297. },
  1298. "bone40": {
  1299. "rotate": [
  1300. { "time": 0, "angle": 0 },
  1301. { "time": 0.6, "angle": 2.21 },
  1302. { "time": 1.1667, "angle": 0 },
  1303. { "time": 1.7667, "angle": 2.21 },
  1304. { "time": 2.3333, "angle": 0 }
  1305. ],
  1306. "translate": [
  1307. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1308. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1309. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1310. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1311. { "time": 2.3333, "x": 0, "y": 0 }
  1312. ],
  1313. "scale": [
  1314. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1315. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1316. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1317. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1318. { "time": 2.3333, "x": 1, "y": 1 }
  1319. ]
  1320. },
  1321. "bone41": {
  1322. "rotate": [
  1323. { "time": 0, "angle": 0 },
  1324. { "time": 0.6, "angle": -6.1 },
  1325. { "time": 1.1667, "angle": 0 },
  1326. { "time": 1.7667, "angle": -6.1 },
  1327. { "time": 2.3333, "angle": 0 }
  1328. ],
  1329. "translate": [
  1330. { "time": 0, "x": 0, "y": 0 },
  1331. { "time": 0.6, "x": -0.91, "y": 0.5 },
  1332. { "time": 1.1667, "x": 0, "y": 0 },
  1333. { "time": 1.7667, "x": -0.91, "y": 0.5 },
  1334. { "time": 2.3333, "x": 0, "y": 0 }
  1335. ],
  1336. "scale": [
  1337. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1338. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1339. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1340. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1341. { "time": 2.3333, "x": 1, "y": 1 }
  1342. ]
  1343. },
  1344. "bone42": {
  1345. "rotate": [
  1346. { "time": 0, "angle": 0 },
  1347. { "time": 0.6, "angle": -1.66 },
  1348. { "time": 1.1667, "angle": 0 },
  1349. { "time": 1.7667, "angle": -1.66 },
  1350. { "time": 2.3333, "angle": 0 }
  1351. ],
  1352. "translate": [
  1353. { "time": 0, "x": 0, "y": 0 },
  1354. { "time": 0.6, "x": 0.27, "y": -0.05 },
  1355. { "time": 1.1667, "x": 0, "y": 0 },
  1356. { "time": 1.7667, "x": 0.27, "y": -0.05 },
  1357. { "time": 2.3333, "x": 0, "y": 0 }
  1358. ],
  1359. "scale": [
  1360. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1361. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1362. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1363. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1364. { "time": 2.3333, "x": 1, "y": 1 }
  1365. ]
  1366. },
  1367. "bone43": {
  1368. "rotate": [
  1369. { "time": 0, "angle": 0 },
  1370. { "time": 0.6, "angle": 4.84 },
  1371. { "time": 1.1667, "angle": 0 },
  1372. { "time": 1.7667, "angle": 4.84 },
  1373. { "time": 2.3333, "angle": 0 }
  1374. ],
  1375. "translate": [
  1376. { "time": 0, "x": 0, "y": 0 },
  1377. { "time": 0.6, "x": 0.51, "y": -0.11 },
  1378. { "time": 1.1667, "x": 0, "y": 0 },
  1379. { "time": 1.7667, "x": 0.51, "y": -0.11 },
  1380. { "time": 2.3333, "x": 0, "y": 0 }
  1381. ],
  1382. "scale": [
  1383. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1384. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1385. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1386. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1387. { "time": 2.3333, "x": 1, "y": 1 }
  1388. ]
  1389. },
  1390. "bone44": {
  1391. "rotate": [
  1392. { "time": 0, "angle": 0 },
  1393. { "time": 0.6, "angle": -19.55 },
  1394. { "time": 1.1667, "angle": 0 },
  1395. { "time": 1.7667, "angle": -19.55 },
  1396. { "time": 2.3333, "angle": 0 }
  1397. ],
  1398. "translate": [
  1399. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1400. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1401. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1402. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1403. { "time": 2.3333, "x": 0, "y": 0 }
  1404. ],
  1405. "scale": [
  1406. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1407. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1408. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1409. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1410. { "time": 2.3333, "x": 1, "y": 1 }
  1411. ]
  1412. },
  1413. "bone45": {
  1414. "rotate": [
  1415. { "time": 0, "angle": 0 },
  1416. { "time": 0.6, "angle": -4.52 },
  1417. { "time": 1.1667, "angle": 0 },
  1418. { "time": 1.7667, "angle": -4.52 },
  1419. { "time": 2.3333, "angle": 0 }
  1420. ],
  1421. "translate": [
  1422. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1423. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1424. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1425. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1426. { "time": 2.3333, "x": 0, "y": 0 }
  1427. ],
  1428. "scale": [
  1429. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1430. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1431. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1432. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1433. { "time": 2.3333, "x": 1, "y": 1 }
  1434. ]
  1435. },
  1436. "bone46": {
  1437. "rotate": [
  1438. { "time": 0, "angle": 0 },
  1439. { "time": 0.6, "angle": -4.52 },
  1440. { "time": 1.1667, "angle": 0 },
  1441. { "time": 1.7667, "angle": -4.52 },
  1442. { "time": 2.3333, "angle": 0 }
  1443. ],
  1444. "translate": [
  1445. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1446. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1447. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1448. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1449. { "time": 2.3333, "x": 0, "y": 0 }
  1450. ],
  1451. "scale": [
  1452. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1453. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1454. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1455. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1456. { "time": 2.3333, "x": 1, "y": 1 }
  1457. ]
  1458. },
  1459. "bone47": {
  1460. "rotate": [
  1461. { "time": 0, "angle": 0 },
  1462. { "time": 0.6, "angle": -19.04 },
  1463. { "time": 1.1667, "angle": 0 },
  1464. { "time": 1.7667, "angle": -19.04 },
  1465. { "time": 2.3333, "angle": 0 }
  1466. ],
  1467. "translate": [
  1468. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1469. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1470. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1471. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1472. { "time": 2.3333, "x": 0, "y": 0 }
  1473. ],
  1474. "scale": [
  1475. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1476. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1477. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1478. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1479. { "time": 2.3333, "x": 1, "y": 1 }
  1480. ]
  1481. },
  1482. "bone48": {
  1483. "rotate": [
  1484. { "time": 0, "angle": 0 },
  1485. { "time": 0.6, "angle": -5.77 },
  1486. { "time": 1.1667, "angle": 0 },
  1487. { "time": 1.7667, "angle": -5.77 },
  1488. { "time": 2.3333, "angle": 0 }
  1489. ],
  1490. "translate": [
  1491. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1492. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1493. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1494. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1495. { "time": 2.3333, "x": 0, "y": 0 }
  1496. ],
  1497. "scale": [
  1498. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1499. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1500. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1501. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1502. { "time": 2.3333, "x": 1, "y": 1 }
  1503. ]
  1504. },
  1505. "bone49": {
  1506. "rotate": [
  1507. { "time": 0, "angle": 0 },
  1508. { "time": 0.6, "angle": -5.77 },
  1509. { "time": 1.1667, "angle": 0 },
  1510. { "time": 1.7667, "angle": -5.77 },
  1511. { "time": 2.3333, "angle": 0 }
  1512. ],
  1513. "translate": [
  1514. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1515. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1516. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1517. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1518. { "time": 2.3333, "x": 0, "y": 0 }
  1519. ],
  1520. "scale": [
  1521. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1522. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1523. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1524. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1525. { "time": 2.3333, "x": 1, "y": 1 }
  1526. ]
  1527. },
  1528. "bone50": {
  1529. "rotate": [
  1530. { "time": 0, "angle": 0, "curve": "stepped" },
  1531. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1532. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1533. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1534. { "time": 2.3333, "angle": 0 }
  1535. ],
  1536. "translate": [
  1537. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1538. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1539. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1540. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1541. { "time": 2.3333, "x": 0, "y": 0 }
  1542. ],
  1543. "scale": [
  1544. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1545. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1546. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1547. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1548. { "time": 2.3333, "x": 1, "y": 1 }
  1549. ]
  1550. },
  1551. "bone51": {
  1552. "rotate": [
  1553. { "time": 0, "angle": 0, "curve": "stepped" },
  1554. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1555. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1556. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1557. { "time": 2.3333, "angle": 0 }
  1558. ],
  1559. "translate": [
  1560. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1561. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1562. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1564. { "time": 2.3333, "x": 0, "y": 0 }
  1565. ],
  1566. "scale": [
  1567. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1568. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1569. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1570. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1571. { "time": 2.3333, "x": 1, "y": 1 }
  1572. ]
  1573. },
  1574. "bone54": {
  1575. "rotate": [
  1576. { "time": 0, "angle": 0, "curve": "stepped" },
  1577. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1578. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1579. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1580. { "time": 2.3333, "angle": 0 }
  1581. ],
  1582. "translate": [
  1583. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1584. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1585. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1586. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1587. { "time": 2.3333, "x": 0, "y": 0 }
  1588. ],
  1589. "scale": [
  1590. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1591. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1592. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1593. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1594. { "time": 2.3333, "x": 1, "y": 1 }
  1595. ]
  1596. },
  1597. "bone57": {
  1598. "rotate": [
  1599. { "time": 0, "angle": 0 },
  1600. { "time": 0.2, "angle": 5.34 },
  1601. { "time": 0.6, "angle": 5.97 },
  1602. { "time": 1.1667, "angle": 0 },
  1603. { "time": 1.3667, "angle": 5.34 },
  1604. { "time": 1.7667, "angle": 5.97 },
  1605. { "time": 2.3333, "angle": 0 }
  1606. ],
  1607. "translate": [
  1608. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1609. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1610. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1611. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1612. { "time": 2.3333, "x": 0, "y": 0 }
  1613. ],
  1614. "scale": [
  1615. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1616. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1617. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1618. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1619. { "time": 2.3333, "x": 1, "y": 1 }
  1620. ]
  1621. },
  1622. "bone58": {
  1623. "rotate": [
  1624. { "time": 0, "angle": 0 },
  1625. { "time": 0.2, "angle": 1.05 },
  1626. { "time": 0.6, "angle": 15.21 },
  1627. { "time": 1.1667, "angle": 0 },
  1628. { "time": 1.3667, "angle": 1.05 },
  1629. { "time": 1.7667, "angle": 15.21 },
  1630. { "time": 2.3333, "angle": 0 }
  1631. ],
  1632. "translate": [
  1633. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1634. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1635. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1636. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1637. { "time": 2.3333, "x": 0, "y": 0 }
  1638. ],
  1639. "scale": [
  1640. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1641. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1642. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1643. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1644. { "time": 2.3333, "x": 1, "y": 1 }
  1645. ]
  1646. },
  1647. "bone60": {
  1648. "rotate": [
  1649. { "time": 0, "angle": 0 },
  1650. { "time": 0.6, "angle": 3.61 },
  1651. { "time": 1.1667, "angle": 0 },
  1652. { "time": 1.7667, "angle": 3.61 },
  1653. { "time": 2.3333, "angle": 0 }
  1654. ],
  1655. "translate": [
  1656. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1657. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1658. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1659. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1660. { "time": 2.3333, "x": 0, "y": 0 }
  1661. ],
  1662. "scale": [
  1663. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1664. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1665. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1666. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1667. { "time": 2.3333, "x": 1, "y": 1 }
  1668. ]
  1669. },
  1670. "bone61": {
  1671. "rotate": [
  1672. { "time": 0, "angle": 0 },
  1673. { "time": 0.6, "angle": 3.61 },
  1674. { "time": 1.1667, "angle": 0 },
  1675. { "time": 1.7667, "angle": 3.61 },
  1676. { "time": 2.3333, "angle": 0 }
  1677. ],
  1678. "translate": [
  1679. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1680. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1681. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1682. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1683. { "time": 2.3333, "x": 0, "y": 0 }
  1684. ],
  1685. "scale": [
  1686. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1687. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1688. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1689. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1690. { "time": 2.3333, "x": 1, "y": 1 }
  1691. ]
  1692. },
  1693. "bone62": {
  1694. "rotate": [
  1695. { "time": 0, "angle": 0 },
  1696. { "time": 0.2, "angle": -11.81 },
  1697. { "time": 0.6, "angle": 3.61 },
  1698. { "time": 1.1667, "angle": 0 },
  1699. { "time": 1.3667, "angle": -11.81 },
  1700. { "time": 1.7667, "angle": 3.61 },
  1701. { "time": 2.3333, "angle": 0 }
  1702. ],
  1703. "translate": [
  1704. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1705. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1706. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1707. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1708. { "time": 2.3333, "x": 0, "y": 0 }
  1709. ],
  1710. "scale": [
  1711. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1712. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1713. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1714. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1715. { "time": 2.3333, "x": 1, "y": 1 }
  1716. ]
  1717. },
  1718. "bone63": {
  1719. "rotate": [
  1720. { "time": 0, "angle": 0, "curve": "stepped" },
  1721. { "time": 0.6, "angle": 0, "curve": "stepped" },
  1722. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  1723. { "time": 1.7667, "angle": 0, "curve": "stepped" },
  1724. { "time": 2.3333, "angle": 0 }
  1725. ],
  1726. "translate": [
  1727. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1728. { "time": 0.6, "x": 0, "y": 0, "curve": "stepped" },
  1729. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  1730. { "time": 1.7667, "x": 0, "y": 0, "curve": "stepped" },
  1731. { "time": 2.3333, "x": 0, "y": 0 }
  1732. ],
  1733. "scale": [
  1734. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1735. { "time": 0.6, "x": 1, "y": 1, "curve": "stepped" },
  1736. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  1737. { "time": 1.7667, "x": 1, "y": 1, "curve": "stepped" },
  1738. { "time": 2.3333, "x": 1, "y": 1 }
  1739. ]
  1740. },
  1741. "bone59": {
  1742. "rotate": [
  1743. { "time": 0, "angle": 0 },
  1744. { "time": 0.6, "angle": 15.21 },
  1745. { "time": 1.1333, "angle": 0 },
  1746. { "time": 1.7667, "angle": 15.21 },
  1747. { "time": 2.3333, "angle": 0 }
  1748. ],
  1749. "translate": [
  1750. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1751. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  1752. { "time": 2.3333, "x": 0, "y": 0 }
  1753. ],
  1754. "scale": [
  1755. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1756. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  1757. { "time": 2.3333, "x": 1, "y": 1 }
  1758. ]
  1759. },
  1760. "root": {
  1761. "scale": [
  1762. { "time": 0, "x": 0.65, "y": 0.65 }
  1763. ]
  1764. }
  1765. },
  1766. "deform": {
  1767. "default": {
  1768. "houba": {
  1769. "houba": [
  1770. {
  1771. "time": 0,
  1772. "offset": 136,
  1773. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ]
  1774. }
  1775. ]
  1776. },
  1777. "shenti": {
  1778. "shenti": [
  1779. { "time": 0 },
  1780. {
  1781. "time": 0.6,
  1782. "offset": 116,
  1783. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
  1784. },
  1785. { "time": 1.1667 },
  1786. {
  1787. "time": 1.7667,
  1788. "offset": 116,
  1789. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
  1790. },
  1791. { "time": 2.3333 }
  1792. ]
  1793. },
  1794. "youwaitao": {
  1795. "youwaitao": [
  1796. { "time": 0 },
  1797. {
  1798. "time": 0.6,
  1799. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
  1800. },
  1801. { "time": 1.1667 },
  1802. {
  1803. "time": 1.7667,
  1804. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
  1805. },
  1806. { "time": 2.3333 }
  1807. ]
  1808. },
  1809. "zuowaitao": {
  1810. "zuowaitao": [
  1811. { "time": 0 },
  1812. {
  1813. "time": 0.6,
  1814. "offset": 72,
  1815. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
  1816. },
  1817. { "time": 1.1667 },
  1818. {
  1819. "time": 1.7667,
  1820. "offset": 72,
  1821. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
  1822. },
  1823. { "time": 2.3333 }
  1824. ]
  1825. }
  1826. }
  1827. }
  1828. },
  1829. "stand2": {
  1830. "slots": {
  1831. "biyan": {
  1832. "attachment": [
  1833. { "time": 0.1667, "name": "biyan" },
  1834. { "time": 0.3, "name": null },
  1835. { "time": 2.1667, "name": "biyan" },
  1836. { "time": 2.3, "name": null }
  1837. ]
  1838. },
  1839. "meimao1": {
  1840. "attachment": [
  1841. { "time": 0.1667, "name": "meimao1" },
  1842. { "time": 2.1667, "name": "meimao1" }
  1843. ]
  1844. },
  1845. "meimao2": {
  1846. "attachment": [
  1847. { "time": 0.1667, "name": null },
  1848. { "time": 2.1667, "name": null }
  1849. ]
  1850. },
  1851. "yaoya": {
  1852. "attachment": [
  1853. { "time": 0, "name": null },
  1854. { "time": 0.1667, "name": "yaoya" }
  1855. ]
  1856. },
  1857. "youyan1": {
  1858. "attachment": [
  1859. { "time": 0.0667, "name": "youyan1" },
  1860. { "time": 0.1667, "name": null },
  1861. { "time": 0.3, "name": null },
  1862. { "time": 0.4667, "name": null },
  1863. { "time": 2.3, "name": "youyan1" }
  1864. ]
  1865. },
  1866. "youyan2": {
  1867. "attachment": [
  1868. { "time": 0.0667, "name": null },
  1869. { "time": 0.1667, "name": null },
  1870. { "time": 0.3, "name": "youyan2" },
  1871. { "time": 0.4667, "name": "youyan2" },
  1872. { "time": 2.1667, "name": null },
  1873. { "time": 2.3, "name": "youyan2" }
  1874. ]
  1875. },
  1876. "zuiba": {
  1877. "attachment": [
  1878. { "time": 0, "name": "zuiba" },
  1879. { "time": 0.1667, "name": null }
  1880. ]
  1881. },
  1882. "zuoyan1": {
  1883. "attachment": [
  1884. { "time": 0.0667, "name": "zuoyan1" },
  1885. { "time": 0.1667, "name": null },
  1886. { "time": 0.3, "name": null },
  1887. { "time": 0.4667, "name": null },
  1888. { "time": 2.3, "name": "zuoyan1" }
  1889. ]
  1890. },
  1891. "zuoyan2": {
  1892. "attachment": [
  1893. { "time": 0.0667, "name": null },
  1894. { "time": 0.1667, "name": null },
  1895. { "time": 0.3, "name": "zuoyan2" },
  1896. { "time": 0.4667, "name": "zuoyan2" },
  1897. { "time": 2.1667, "name": null },
  1898. { "time": 2.3, "name": null }
  1899. ]
  1900. }
  1901. },
  1902. "bones": {
  1903. "bone2": {
  1904. "rotate": [
  1905. { "time": 0, "angle": 0, "curve": "stepped" },
  1906. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1907. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  1908. { "time": 0.3667, "angle": 0, "curve": "stepped" },
  1909. { "time": 0.4333, "angle": 0, "curve": "stepped" },
  1910. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  1911. { "time": 2.4, "angle": 0 }
  1912. ],
  1913. "translate": [
  1914. { "time": 0, "x": 0, "y": 0 },
  1915. {
  1916. "time": 0.1667,
  1917. "x": 0,
  1918. "y": -4.01,
  1919. "curve": [ 0.25, 0, 0.75, 1 ]
  1920. },
  1921. {
  1922. "time": 0.2667,
  1923. "x": 0,
  1924. "y": 12.86,
  1925. "curve": [ 0.25, 0, 0.75, 1 ]
  1926. },
  1927. {
  1928. "time": 0.3667,
  1929. "x": 0,
  1930. "y": -5.19,
  1931. "curve": [ 0.25, 0, 0.75, 1 ]
  1932. },
  1933. { "time": 0.4333, "x": 0, "y": -3.38, "curve": "stepped" },
  1934. { "time": 2.0667, "x": 0, "y": -3.38 },
  1935. { "time": 2.4, "x": 0, "y": 0 }
  1936. ],
  1937. "scale": [
  1938. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1939. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1940. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  1941. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  1942. { "time": 0.4333, "x": 1, "y": 1, "curve": "stepped" },
  1943. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1944. { "time": 2.4, "x": 1, "y": 1 }
  1945. ]
  1946. },
  1947. "bone3": {
  1948. "rotate": [
  1949. { "time": 0, "angle": 0, "curve": "stepped" },
  1950. { "time": 0.1667, "angle": 0 },
  1951. { "time": 0.3, "angle": -4.02 },
  1952. { "time": 0.4667, "angle": -9.04, "curve": "stepped" },
  1953. { "time": 2.0667, "angle": -9.04 },
  1954. { "time": 2.4, "angle": 0 }
  1955. ],
  1956. "translate": [
  1957. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1958. { "time": 0.1667, "x": 0, "y": 0 },
  1959. { "time": 0.3, "x": 1.96, "y": -0.35 },
  1960. { "time": 0.4667, "x": 4.4, "y": -0.78, "curve": "stepped" },
  1961. { "time": 2.0667, "x": 4.4, "y": -0.78 },
  1962. { "time": 2.4, "x": 0, "y": 0 }
  1963. ],
  1964. "scale": [
  1965. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1966. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1967. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  1968. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  1969. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  1970. { "time": 2.4, "x": 1, "y": 1 }
  1971. ]
  1972. },
  1973. "bone4": {
  1974. "rotate": [
  1975. { "time": 0, "angle": 0, "curve": "stepped" },
  1976. { "time": 0.1667, "angle": 0 },
  1977. { "time": 0.3, "angle": 3.86 },
  1978. { "time": 0.4667, "angle": 8.68, "curve": "stepped" },
  1979. { "time": 2.0667, "angle": 8.68 },
  1980. { "time": 2.4, "angle": 0 }
  1981. ],
  1982. "translate": [
  1983. {
  1984. "time": 0,
  1985. "x": 0,
  1986. "y": 0,
  1987. "curve": [ 0.25, 0, 0.75, 1 ]
  1988. },
  1989. {
  1990. "time": 0.1667,
  1991. "x": -1.91,
  1992. "y": -0.1,
  1993. "curve": [ 0.254, 0, 0.621, 0.47 ]
  1994. },
  1995. {
  1996. "time": 0.3,
  1997. "x": -1.79,
  1998. "y": -0.37,
  1999. "curve": [ 0.369, 0.47, 0.753, 1 ]
  2000. },
  2001. { "time": 0.4667, "x": -1.64, "y": -0.73, "curve": "stepped" },
  2002. {
  2003. "time": 2.0667,
  2004. "x": -1.64,
  2005. "y": -0.73,
  2006. "curve": [ 0.25, 0, 0.75, 1 ]
  2007. },
  2008. { "time": 2.4, "x": 0, "y": 0 }
  2009. ],
  2010. "scale": [
  2011. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2012. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2013. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2014. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2015. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2016. { "time": 2.4, "x": 1, "y": 1 }
  2017. ]
  2018. },
  2019. "bone5": {
  2020. "rotate": [
  2021. { "time": 0, "angle": 0, "curve": "stepped" },
  2022. { "time": 0.1667, "angle": 0 },
  2023. { "time": 0.3, "angle": 1.85 },
  2024. { "time": 0.4667, "angle": 4.16, "curve": "stepped" },
  2025. { "time": 2.0667, "angle": 4.16 },
  2026. { "time": 2.4, "angle": 0 }
  2027. ],
  2028. "translate": [
  2029. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2030. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2031. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2032. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2033. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2034. { "time": 2.4, "x": 0, "y": 0 }
  2035. ],
  2036. "scale": [
  2037. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2038. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2039. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2040. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2041. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2042. { "time": 2.4, "x": 1, "y": 1 }
  2043. ]
  2044. },
  2045. "bone6": {
  2046. "rotate": [
  2047. { "time": 0, "angle": 22.32 },
  2048. { "time": 0.1667, "angle": 19.11 },
  2049. { "time": 0.3, "angle": -17.88 },
  2050. { "time": 0.4667, "angle": 0.43 },
  2051. { "time": 0.7333, "angle": 4.7 },
  2052. { "time": 1.0667, "angle": 0.43 },
  2053. { "time": 1.4, "angle": 4.7 },
  2054. { "time": 1.7333, "angle": 0.43 },
  2055. { "time": 2.0667, "angle": 4.7 },
  2056. { "time": 2.4, "angle": 22.32 }
  2057. ],
  2058. "translate": [
  2059. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2060. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2061. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2062. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2063. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2064. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2065. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2066. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2067. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2068. { "time": 2.4, "x": 0, "y": 0 }
  2069. ],
  2070. "scale": [
  2071. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2072. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2073. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2075. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2076. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2077. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2078. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2079. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2080. { "time": 2.4, "x": 1, "y": 1 }
  2081. ]
  2082. },
  2083. "bone7": {
  2084. "rotate": [
  2085. { "time": 0, "angle": 4.55 },
  2086. { "time": 0.1667, "angle": -11.77 },
  2087. { "time": 0.3, "angle": -41.3 },
  2088. { "time": 0.4667, "angle": -44.21 },
  2089. { "time": 0.7333, "angle": -54.38 },
  2090. { "time": 1.0667, "angle": -44.21 },
  2091. { "time": 1.4, "angle": -54.38 },
  2092. { "time": 1.7333, "angle": -44.21 },
  2093. { "time": 2.0667, "angle": -54.38 },
  2094. { "time": 2.4, "angle": 4.55 }
  2095. ],
  2096. "translate": [
  2097. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2098. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2099. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2103. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2104. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2105. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2106. { "time": 2.4, "x": 0, "y": 0 }
  2107. ],
  2108. "scale": [
  2109. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2110. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2111. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2112. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2113. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2114. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2115. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2116. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2117. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2118. { "time": 2.4, "x": 1, "y": 1 }
  2119. ]
  2120. },
  2121. "bone8": {
  2122. "rotate": [
  2123. { "time": 0, "angle": 0, "curve": "stepped" },
  2124. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2125. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2126. { "time": 0.4667, "angle": 0 },
  2127. { "time": 0.7333, "angle": -17.06 },
  2128. { "time": 1.0667, "angle": 0 },
  2129. { "time": 1.4, "angle": -17.06 },
  2130. { "time": 1.7333, "angle": 0 },
  2131. { "time": 2.0667, "angle": -17.06 },
  2132. { "time": 2.4, "angle": 0 }
  2133. ],
  2134. "translate": [
  2135. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2136. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2137. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2138. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2139. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2140. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2141. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2142. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2143. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2144. { "time": 2.4, "x": 0, "y": 0 }
  2145. ],
  2146. "scale": [
  2147. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2148. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2149. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2150. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2151. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2152. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2153. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2154. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2155. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2156. { "time": 2.4, "x": 1, "y": 1 }
  2157. ]
  2158. },
  2159. "bone9": {
  2160. "rotate": [
  2161. { "time": 0, "angle": -14 },
  2162. { "time": 0.1667, "angle": -23.03 },
  2163. { "time": 0.3, "angle": 317.58 },
  2164. { "time": 0.4667, "angle": 22.73 },
  2165. { "time": 0.7333, "angle": 20.43 },
  2166. { "time": 1.0667, "angle": 22.73 },
  2167. { "time": 1.4, "angle": 20.43 },
  2168. { "time": 1.7333, "angle": 22.73 },
  2169. { "time": 2.0667, "angle": 20.43 },
  2170. { "time": 2.4, "angle": -14 }
  2171. ],
  2172. "translate": [
  2173. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2174. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2175. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2176. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2177. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2178. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2179. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2180. { "time": 2.4, "x": 0, "y": 0 }
  2181. ],
  2182. "scale": [
  2183. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2184. { "time": 0.1667, "x": 1, "y": 1 },
  2185. { "time": 0.3, "x": 0.875, "y": 1 },
  2186. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2187. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2188. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2189. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2190. { "time": 2.4, "x": 1, "y": 1 }
  2191. ]
  2192. },
  2193. "bone10": {
  2194. "rotate": [
  2195. { "time": 0, "angle": 0 },
  2196. { "time": 0.1667, "angle": -41.63 },
  2197. {
  2198. "time": 0.3,
  2199. "angle": -76.97,
  2200. "curve": [ 0.25, 0, 0.75, 1 ]
  2201. },
  2202. { "time": 0.4667, "angle": -131.92 },
  2203. { "time": 0.7333, "angle": -133.84 },
  2204. { "time": 1.0667, "angle": -131.92 },
  2205. { "time": 1.4, "angle": -133.84 },
  2206. { "time": 1.7333, "angle": -131.92 },
  2207. { "time": 2.0667, "angle": -133.84 },
  2208. { "time": 2.4, "angle": 0 }
  2209. ],
  2210. "translate": [
  2211. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2212. { "time": 0.1667, "x": 0, "y": 0 },
  2213. {
  2214. "time": 0.3,
  2215. "x": -2.76,
  2216. "y": -0.82,
  2217. "curve": [ 0.25, 0, 0.75, 1 ]
  2218. },
  2219. { "time": 0.4667, "x": 0, "y": 0 },
  2220. { "time": 0.7333, "x": 0.37, "y": 0.44 },
  2221. { "time": 1.0667, "x": 0, "y": 0 },
  2222. { "time": 1.4, "x": 0.37, "y": 0.44 },
  2223. { "time": 1.7333, "x": 0, "y": 0 },
  2224. { "time": 2.0667, "x": 0.37, "y": 0.44 },
  2225. { "time": 2.4, "x": 0, "y": 0 }
  2226. ],
  2227. "scale": [
  2228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2229. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2230. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2231. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2232. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2233. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2234. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2235. { "time": 2.4, "x": 1, "y": 1 }
  2236. ]
  2237. },
  2238. "bone11": {
  2239. "rotate": [
  2240. { "time": 0, "angle": 0, "curve": "stepped" },
  2241. { "time": 0.1667, "angle": 0 },
  2242. { "time": 0.3, "angle": -0.41 },
  2243. { "time": 0.4667, "angle": -0.93, "curve": "stepped" },
  2244. { "time": 1.0667, "angle": -0.93, "curve": "stepped" },
  2245. { "time": 1.7333, "angle": -0.93, "curve": "stepped" },
  2246. { "time": 2.0667, "angle": -0.93 },
  2247. { "time": 2.4, "angle": 0 }
  2248. ],
  2249. "translate": [
  2250. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2251. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2252. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2253. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2254. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2255. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2256. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2257. { "time": 2.4, "x": 0, "y": 0 }
  2258. ],
  2259. "scale": [
  2260. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2262. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2263. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2264. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2265. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2266. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2267. { "time": 2.4, "x": 1, "y": 1 }
  2268. ]
  2269. },
  2270. "bone12": {
  2271. "rotate": [
  2272. { "time": 0, "angle": 0, "curve": "stepped" },
  2273. { "time": 0.1667, "angle": 0 },
  2274. { "time": 0.3, "angle": -4.29 },
  2275. { "time": 0.4667, "angle": -9.88 },
  2276. { "time": 0.7333, "angle": -16.48 },
  2277. { "time": 1, "angle": -9.88 },
  2278. { "time": 1.3, "angle": -16.48 },
  2279. { "time": 1.5667, "angle": -9.88 },
  2280. { "time": 1.8, "angle": -16.48 },
  2281. { "time": 2.0667, "angle": -9.88 },
  2282. { "time": 2.4, "angle": 0 }
  2283. ],
  2284. "translate": [
  2285. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2286. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2287. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2288. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2289. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2290. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2291. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2292. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2293. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2294. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2295. { "time": 2.4, "x": 0, "y": 0 }
  2296. ],
  2297. "scale": [
  2298. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2299. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2300. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2301. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2302. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2303. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2304. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2305. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2306. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2307. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2308. { "time": 2.4, "x": 1, "y": 1 }
  2309. ]
  2310. },
  2311. "bone13": {
  2312. "rotate": [
  2313. { "time": 0, "angle": 0, "curve": "stepped" },
  2314. { "time": 0.1667, "angle": 0 },
  2315. { "time": 0.3, "angle": -13.89 },
  2316. { "time": 0.4667, "angle": -6.65 },
  2317. { "time": 0.5667, "angle": 8.28 },
  2318. { "time": 0.7333, "angle": -2.95 },
  2319. { "time": 1, "angle": -6.65 },
  2320. { "time": 1.3, "angle": -2.95 },
  2321. { "time": 1.5667, "angle": -6.65 },
  2322. { "time": 1.8, "angle": -2.95 },
  2323. { "time": 2.0667, "angle": -6.65 },
  2324. { "time": 2.4, "angle": 0 }
  2325. ],
  2326. "translate": [
  2327. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2330. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2331. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2332. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2333. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2334. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2335. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2336. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2337. { "time": 2.4, "x": 0, "y": 0 }
  2338. ],
  2339. "scale": [
  2340. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2341. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2342. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2343. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2344. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2345. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2346. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2347. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2348. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2349. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2350. { "time": 2.4, "x": 1, "y": 1 }
  2351. ]
  2352. },
  2353. "bone14": {
  2354. "rotate": [
  2355. { "time": 0, "angle": 0, "curve": "stepped" },
  2356. { "time": 0.1667, "angle": 0 },
  2357. { "time": 0.3, "angle": -10.14 },
  2358. { "time": 0.4667, "angle": 0.03 },
  2359. { "time": 0.7333, "angle": -5.54 },
  2360. { "time": 1, "angle": 1.79 },
  2361. { "time": 1.3, "angle": -5.54 },
  2362. { "time": 1.5667, "angle": 1.79 },
  2363. { "time": 1.8, "angle": -5.54 },
  2364. { "time": 2.0667, "angle": 1.79 },
  2365. { "time": 2.4, "angle": 0 }
  2366. ],
  2367. "translate": [
  2368. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2369. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2370. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2371. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2372. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2373. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2374. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2375. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2376. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2377. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 2.4, "x": 0, "y": 0 }
  2379. ],
  2380. "scale": [
  2381. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2382. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2383. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2384. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2385. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2386. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2387. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2388. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2389. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2390. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2391. { "time": 2.4, "x": 1, "y": 1 }
  2392. ]
  2393. },
  2394. "bone15": {
  2395. "rotate": [
  2396. { "time": 0, "angle": 0, "curve": "stepped" },
  2397. { "time": 0.1667, "angle": 0 },
  2398. { "time": 0.3, "angle": 7.49 },
  2399. { "time": 0.4667, "angle": 2.54 },
  2400. { "time": 0.7333, "angle": 9.39 },
  2401. { "time": 1, "angle": 2.54 },
  2402. { "time": 1.3, "angle": 9.39 },
  2403. { "time": 1.5667, "angle": 2.54 },
  2404. { "time": 1.8, "angle": 9.39 },
  2405. { "time": 2.0667, "angle": 2.54 },
  2406. { "time": 2.4, "angle": 0 }
  2407. ],
  2408. "translate": [
  2409. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2410. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2411. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2412. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2413. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2414. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2415. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2416. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2417. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2418. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2419. { "time": 2.4, "x": 0, "y": 0 }
  2420. ],
  2421. "scale": [
  2422. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2423. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2424. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2425. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2426. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2427. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2428. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2429. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2430. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2431. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2432. { "time": 2.4, "x": 1, "y": 1 }
  2433. ]
  2434. },
  2435. "bone16": {
  2436. "rotate": [
  2437. { "time": 0, "angle": 0, "curve": "stepped" },
  2438. { "time": 0.1667, "angle": 0 },
  2439. { "time": 0.2333, "angle": 3.28 },
  2440. { "time": 0.3, "angle": 10.26 },
  2441. { "time": 0.4667, "angle": 6.7 },
  2442. { "time": 0.7333, "angle": 13.55 },
  2443. { "time": 1, "angle": 6.7 },
  2444. { "time": 1.3, "angle": 13.55 },
  2445. { "time": 1.5667, "angle": 6.7 },
  2446. { "time": 1.8, "angle": 13.55 },
  2447. { "time": 2.0667, "angle": 6.7 },
  2448. { "time": 2.4, "angle": 0 }
  2449. ],
  2450. "translate": [
  2451. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2452. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2453. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2454. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2455. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2456. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2457. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2458. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2459. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2460. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2461. { "time": 2.4, "x": 0, "y": 0 }
  2462. ],
  2463. "scale": [
  2464. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2465. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2466. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2467. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2468. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2469. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2470. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2471. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2472. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2473. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2474. { "time": 2.4, "x": 1, "y": 1 }
  2475. ]
  2476. },
  2477. "bone17": {
  2478. "rotate": [
  2479. { "time": 0, "angle": 0, "curve": "stepped" },
  2480. { "time": 0.1667, "angle": 0 },
  2481. { "time": 0.2333, "angle": -0.51 },
  2482. { "time": 0.3, "angle": 6.89 },
  2483. { "time": 0.4667, "angle": 4.38 },
  2484. { "time": 0.7333, "angle": 11.23 },
  2485. { "time": 1, "angle": 4.38 },
  2486. { "time": 1.3, "angle": 11.23 },
  2487. { "time": 1.5667, "angle": 4.38 },
  2488. { "time": 1.8, "angle": 11.23 },
  2489. { "time": 2.0667, "angle": 4.38 },
  2490. { "time": 2.4, "angle": 0 }
  2491. ],
  2492. "translate": [
  2493. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2494. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2495. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2496. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 2.4, "x": 0, "y": 0 }
  2504. ],
  2505. "scale": [
  2506. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2507. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2508. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2509. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2510. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2511. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  2512. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 1.8, "x": 1, "y": 1, "curve": "stepped" },
  2515. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 2.4, "x": 1, "y": 1 }
  2517. ]
  2518. },
  2519. "bone18": {
  2520. "rotate": [
  2521. { "time": 0, "angle": 0, "curve": "stepped" },
  2522. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2523. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2524. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2525. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2526. { "time": 2.4, "angle": 0 }
  2527. ],
  2528. "translate": [
  2529. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2530. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2531. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2532. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2533. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2534. { "time": 2.4, "x": 0, "y": 0 }
  2535. ],
  2536. "scale": [
  2537. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2538. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2539. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2540. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2541. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2542. { "time": 2.4, "x": 1, "y": 1 }
  2543. ]
  2544. },
  2545. "bone19": {
  2546. "rotate": [
  2547. { "time": 0, "angle": 0 },
  2548. { "time": 0.1667, "angle": 4.87 },
  2549. { "time": 0.3, "angle": -2.21 },
  2550. { "time": 0.4667, "angle": -3.14, "curve": "stepped" },
  2551. { "time": 2.0667, "angle": -3.14 },
  2552. { "time": 2.4, "angle": 0 }
  2553. ],
  2554. "translate": [
  2555. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2556. { "time": 0.1667, "x": 0, "y": 0 },
  2557. { "time": 0.3, "x": 0.04, "y": -1.06 },
  2558. { "time": 0.4667, "x": 0.09, "y": -2.38, "curve": "stepped" },
  2559. { "time": 2.0667, "x": 0.09, "y": -2.38 },
  2560. { "time": 2.4, "x": 0, "y": 0 }
  2561. ],
  2562. "scale": [
  2563. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2564. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2565. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2566. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2567. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2568. { "time": 2.4, "x": 1, "y": 1 }
  2569. ]
  2570. },
  2571. "bone20": {
  2572. "rotate": [
  2573. { "time": 0, "angle": 0, "curve": "stepped" },
  2574. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2575. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2576. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2577. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2578. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2579. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2580. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2581. { "time": 2.4, "angle": 0 }
  2582. ],
  2583. "translate": [
  2584. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2585. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  2586. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2587. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2588. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2589. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2590. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2591. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2592. { "time": 2.4, "x": 0, "y": 0 }
  2593. ],
  2594. "scale": [
  2595. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2596. { "time": 0.0667, "x": 1, "y": 1 },
  2597. { "time": 0.1667, "x": 0.501, "y": 1, "curve": "stepped" },
  2598. { "time": 0.3, "x": 0.501, "y": 1 },
  2599. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2600. { "time": 2.0667, "x": 1, "y": 1 },
  2601. { "time": 2.1667, "x": 0.501, "y": 1, "curve": "stepped" },
  2602. { "time": 2.3, "x": 0.501, "y": 1 },
  2603. { "time": 2.4, "x": 1, "y": 1 }
  2604. ]
  2605. },
  2606. "bone21": {
  2607. "rotate": [
  2608. { "time": 0, "angle": 0, "curve": "stepped" },
  2609. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2610. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2611. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2612. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2613. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2614. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2615. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2616. { "time": 2.4, "angle": 0 }
  2617. ],
  2618. "translate": [
  2619. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2620. { "time": 0.0667, "x": 0, "y": 0, "curve": "stepped" },
  2621. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2622. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2623. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2624. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2625. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2626. { "time": 2.3, "x": 0, "y": 0, "curve": "stepped" },
  2627. { "time": 2.4, "x": 0, "y": 0 }
  2628. ],
  2629. "scale": [
  2630. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2631. { "time": 0.0667, "x": 1, "y": 1 },
  2632. { "time": 0.1667, "x": 0.504, "y": 1, "curve": "stepped" },
  2633. { "time": 0.3, "x": 0.504, "y": 1 },
  2634. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2635. { "time": 2.0667, "x": 1, "y": 1 },
  2636. { "time": 2.1667, "x": 0.504, "y": 1, "curve": "stepped" },
  2637. { "time": 2.3, "x": 0.504, "y": 1 },
  2638. { "time": 2.4, "x": 1, "y": 1 }
  2639. ]
  2640. },
  2641. "bone22": {
  2642. "rotate": [
  2643. { "time": 0, "angle": 0, "curve": "stepped" },
  2644. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2645. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2646. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2647. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2648. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2649. { "time": 2.4, "angle": 0 }
  2650. ],
  2651. "translate": [
  2652. { "time": 0, "x": 0, "y": 0 },
  2653. { "time": 0.0667, "x": -1.58, "y": -0.06 }
  2654. ],
  2655. "scale": [
  2656. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2657. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  2658. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2659. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2660. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2661. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2662. { "time": 2.4, "x": 1, "y": 1 }
  2663. ]
  2664. },
  2665. "bone23": {
  2666. "rotate": [
  2667. { "time": 0, "angle": 0, "curve": "stepped" },
  2668. { "time": 0.0667, "angle": 0, "curve": "stepped" },
  2669. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2670. { "time": 0.3, "angle": 0, "curve": "stepped" },
  2671. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  2672. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  2673. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2674. { "time": 2.3, "angle": 0, "curve": "stepped" },
  2675. { "time": 2.4, "angle": 0 }
  2676. ],
  2677. "translate": [
  2678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2679. { "time": 0.0667, "x": 0, "y": 0 },
  2680. { "time": 0.1667, "x": -1.96, "y": -0.02, "curve": "stepped" },
  2681. { "time": 0.3, "x": -1.96, "y": -0.02 },
  2682. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2683. { "time": 2.0667, "x": 0, "y": 0 },
  2684. { "time": 2.1667, "x": -1.96, "y": -0.02, "curve": "stepped" },
  2685. { "time": 2.3, "x": -1.96, "y": -0.02 },
  2686. { "time": 2.4, "x": 0, "y": 0 }
  2687. ],
  2688. "scale": [
  2689. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2690. { "time": 0.0667, "x": 1, "y": 1, "curve": "stepped" },
  2691. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2692. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2693. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2694. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2695. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2696. { "time": 2.3, "x": 1, "y": 1, "curve": "stepped" },
  2697. { "time": 2.4, "x": 1, "y": 1 }
  2698. ]
  2699. },
  2700. "bone24": {
  2701. "rotate": [
  2702. { "time": 0, "angle": 0, "curve": "stepped" },
  2703. { "time": 0.1667, "angle": 0 },
  2704. { "time": 0.3, "angle": -1.5 },
  2705. { "time": 0.4667, "angle": 0 },
  2706. { "time": 0.7333, "angle": -3.38 },
  2707. { "time": 1.0667, "angle": 0 },
  2708. { "time": 1.4, "angle": -3.38 },
  2709. { "time": 1.7333, "angle": 0 },
  2710. { "time": 2.0667, "angle": -3.38 },
  2711. { "time": 2.4, "angle": 0 }
  2712. ],
  2713. "translate": [
  2714. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2715. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2716. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2717. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2718. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2719. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2720. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2721. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2722. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2723. { "time": 2.4, "x": 0, "y": 0 }
  2724. ],
  2725. "scale": [
  2726. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2727. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2728. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2729. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2730. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2731. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2732. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2733. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2734. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2735. { "time": 2.4, "x": 1, "y": 1 }
  2736. ]
  2737. },
  2738. "bone25": {
  2739. "rotate": [
  2740. { "time": 0, "angle": 0, "curve": "stepped" },
  2741. { "time": 0.1667, "angle": 0 },
  2742. { "time": 0.3, "angle": -1.5 },
  2743. { "time": 0.4667, "angle": 0 },
  2744. { "time": 0.7333, "angle": -3.38 },
  2745. { "time": 1.0667, "angle": 0 },
  2746. { "time": 1.4, "angle": -3.38 },
  2747. { "time": 1.7333, "angle": 0 },
  2748. { "time": 2.0667, "angle": -3.38 },
  2749. { "time": 2.4, "angle": 0 }
  2750. ],
  2751. "translate": [
  2752. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2753. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2754. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2755. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2756. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2757. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2758. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2759. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2760. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2761. { "time": 2.4, "x": 0, "y": 0 }
  2762. ],
  2763. "scale": [
  2764. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2765. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2766. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2767. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2768. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2769. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2770. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2771. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2772. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2773. { "time": 2.4, "x": 1, "y": 1 }
  2774. ]
  2775. },
  2776. "bone26": {
  2777. "rotate": [
  2778. { "time": 0, "angle": 0, "curve": "stepped" },
  2779. { "time": 0.1667, "angle": 0 },
  2780. { "time": 0.3, "angle": -1.5 },
  2781. { "time": 0.4667, "angle": 0 },
  2782. { "time": 0.7333, "angle": -3.38 },
  2783. { "time": 1.0667, "angle": 0 },
  2784. { "time": 1.4, "angle": -3.38 },
  2785. { "time": 1.7333, "angle": 0 },
  2786. { "time": 2.0667, "angle": -3.38 },
  2787. { "time": 2.4, "angle": 0 }
  2788. ],
  2789. "translate": [
  2790. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2793. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2794. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2795. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2796. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2797. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2798. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2799. { "time": 2.4, "x": 0, "y": 0 }
  2800. ],
  2801. "scale": [
  2802. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2803. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2804. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2805. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2806. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2807. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2810. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2811. { "time": 2.4, "x": 1, "y": 1 }
  2812. ]
  2813. },
  2814. "bone27": {
  2815. "rotate": [
  2816. { "time": 0, "angle": 0, "curve": "stepped" },
  2817. { "time": 0.1667, "angle": 0 },
  2818. { "time": 0.3, "angle": 1.77 },
  2819. { "time": 0.4667, "angle": 0 },
  2820. { "time": 0.7333, "angle": 3.97 },
  2821. { "time": 1.0667, "angle": 0 },
  2822. { "time": 1.4, "angle": 3.97 },
  2823. { "time": 1.7333, "angle": 0 },
  2824. { "time": 2.0667, "angle": 3.97 },
  2825. { "time": 2.4, "angle": 0 }
  2826. ],
  2827. "translate": [
  2828. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2829. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2830. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2831. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2832. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2833. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2834. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2835. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2836. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2837. { "time": 2.4, "x": 0, "y": 0 }
  2838. ],
  2839. "scale": [
  2840. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2841. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2842. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2843. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2844. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2845. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2846. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2847. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2848. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2849. { "time": 2.4, "x": 1, "y": 1 }
  2850. ]
  2851. },
  2852. "bone28": {
  2853. "rotate": [
  2854. { "time": 0, "angle": 0, "curve": "stepped" },
  2855. { "time": 0.1667, "angle": 0 },
  2856. { "time": 0.3, "angle": 1.77 },
  2857. { "time": 0.4667, "angle": 0 },
  2858. { "time": 0.7333, "angle": 3.97 },
  2859. { "time": 1.0667, "angle": 0 },
  2860. { "time": 1.4, "angle": 3.97 },
  2861. { "time": 1.7333, "angle": 0 },
  2862. { "time": 2.0667, "angle": 3.97 },
  2863. { "time": 2.4, "angle": 0 }
  2864. ],
  2865. "translate": [
  2866. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2867. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2868. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2869. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2870. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2871. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2872. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2873. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2874. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2875. { "time": 2.4, "x": 0, "y": 0 }
  2876. ],
  2877. "scale": [
  2878. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2879. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2880. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2881. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2882. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2883. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2884. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2885. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2886. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2887. { "time": 2.4, "x": 1, "y": 1 }
  2888. ]
  2889. },
  2890. "bone29": {
  2891. "rotate": [
  2892. { "time": 0, "angle": 0, "curve": "stepped" },
  2893. { "time": 0.1667, "angle": 0 },
  2894. { "time": 0.3, "angle": 1.77 },
  2895. { "time": 0.4667, "angle": 0 },
  2896. { "time": 0.7333, "angle": 3.97 },
  2897. { "time": 1.0667, "angle": 0 },
  2898. { "time": 1.4, "angle": 3.97 },
  2899. { "time": 1.7333, "angle": 0 },
  2900. { "time": 2.0667, "angle": 3.97 },
  2901. { "time": 2.4, "angle": 0 }
  2902. ],
  2903. "translate": [
  2904. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2905. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2906. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2907. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2908. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2909. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2910. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2911. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2912. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2913. { "time": 2.4, "x": 0, "y": 0 }
  2914. ],
  2915. "scale": [
  2916. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2917. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2918. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2919. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2920. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2921. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2922. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2923. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2924. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2925. { "time": 2.4, "x": 1, "y": 1 }
  2926. ]
  2927. },
  2928. "bone30": {
  2929. "rotate": [
  2930. { "time": 0, "angle": 0, "curve": "stepped" },
  2931. { "time": 0.1667, "angle": 0 },
  2932. { "time": 0.3, "angle": 8.76 },
  2933. { "time": 0.4667, "angle": 0 },
  2934. { "time": 0.7333, "angle": 19.71 },
  2935. { "time": 1.0667, "angle": 0 },
  2936. { "time": 1.4, "angle": 19.71 },
  2937. { "time": 1.7333, "angle": 0 },
  2938. { "time": 2.0667, "angle": 19.71 },
  2939. { "time": 2.4, "angle": 0 }
  2940. ],
  2941. "translate": [
  2942. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2943. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2944. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  2945. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  2946. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  2947. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2948. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  2949. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  2950. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  2951. { "time": 2.4, "x": 0, "y": 0 }
  2952. ],
  2953. "scale": [
  2954. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2955. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2956. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2957. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2958. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2959. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2960. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2961. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  2962. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  2963. { "time": 2.4, "x": 1, "y": 1 }
  2964. ]
  2965. },
  2966. "bone31": {
  2967. "rotate": [
  2968. { "time": 0, "angle": 0, "curve": "stepped" },
  2969. { "time": 0.1667, "angle": 0 },
  2970. { "time": 0.3, "angle": -2.75 },
  2971. { "time": 0.4667, "angle": 0 },
  2972. { "time": 0.7333, "angle": -6.19 },
  2973. { "time": 1.0667, "angle": 0 },
  2974. { "time": 1.4, "angle": -6.19 },
  2975. { "time": 1.7333, "angle": 0 },
  2976. { "time": 2.0667, "angle": -6.19 },
  2977. { "time": 2.4, "angle": 0 }
  2978. ],
  2979. "translate": [
  2980. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2981. { "time": 0.1667, "x": 0, "y": 0 },
  2982. { "time": 0.3, "x": -0.13, "y": 0.04 },
  2983. { "time": 0.4667, "x": 0, "y": 0 },
  2984. { "time": 0.7333, "x": -0.29, "y": 0.08 },
  2985. { "time": 1.0667, "x": 0, "y": 0 },
  2986. { "time": 1.4, "x": -0.29, "y": 0.08 },
  2987. { "time": 1.7333, "x": 0, "y": 0 },
  2988. { "time": 2.0667, "x": -0.29, "y": 0.08 },
  2989. { "time": 2.4, "x": 0, "y": 0 }
  2990. ],
  2991. "scale": [
  2992. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2993. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2994. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  2995. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  2996. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  2997. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2998. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  2999. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3000. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3001. { "time": 2.4, "x": 1, "y": 1 }
  3002. ]
  3003. },
  3004. "bone32": {
  3005. "rotate": [
  3006. { "time": 0, "angle": 0, "curve": "stepped" },
  3007. { "time": 0.1667, "angle": 0 },
  3008. { "time": 0.3, "angle": 1.24 },
  3009. { "time": 0.4667, "angle": 0 },
  3010. { "time": 0.7333, "angle": 2.78 },
  3011. { "time": 1.0667, "angle": 0 },
  3012. { "time": 1.4, "angle": 2.78 },
  3013. { "time": 1.7333, "angle": 0 },
  3014. { "time": 2.0667, "angle": 2.78 },
  3015. { "time": 2.4, "angle": 0 }
  3016. ],
  3017. "translate": [
  3018. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3019. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3020. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3021. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3022. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3023. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3024. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3025. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3026. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3027. { "time": 2.4, "x": 0, "y": 0 }
  3028. ],
  3029. "scale": [
  3030. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3031. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3032. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3033. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3034. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3035. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3036. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3037. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3038. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3039. { "time": 2.4, "x": 1, "y": 1 }
  3040. ]
  3041. },
  3042. "bone33": {
  3043. "rotate": [
  3044. { "time": 0, "angle": 0, "curve": "stepped" },
  3045. { "time": 0.1667, "angle": 0 },
  3046. { "time": 0.3, "angle": 1.5 },
  3047. { "time": 0.4667, "angle": 0 },
  3048. { "time": 0.7333, "angle": 3.38 },
  3049. { "time": 1.0667, "angle": 0 },
  3050. { "time": 1.4, "angle": 3.38 },
  3051. { "time": 1.7333, "angle": 0 },
  3052. { "time": 2.0667, "angle": 3.38 },
  3053. { "time": 2.4, "angle": 0 }
  3054. ],
  3055. "translate": [
  3056. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3057. { "time": 0.1667, "x": 0, "y": 0 },
  3058. { "time": 0.3, "x": -0.71, "y": 0.15 },
  3059. { "time": 0.4667, "x": 0, "y": 0 },
  3060. { "time": 0.7333, "x": -1.61, "y": 0.33 },
  3061. { "time": 1.0667, "x": 0, "y": 0 },
  3062. { "time": 1.4, "x": -1.61, "y": 0.33 },
  3063. { "time": 1.7333, "x": 0, "y": 0 },
  3064. { "time": 2.0667, "x": -1.61, "y": 0.33 },
  3065. { "time": 2.4, "x": 0, "y": 0 }
  3066. ],
  3067. "scale": [
  3068. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3069. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3070. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3071. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3072. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3073. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3074. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3075. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3076. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3077. { "time": 2.4, "x": 1, "y": 1 }
  3078. ]
  3079. },
  3080. "bone34": {
  3081. "rotate": [
  3082. { "time": 0, "angle": 0, "curve": "stepped" },
  3083. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3084. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3085. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3086. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  3087. { "time": 1.4, "angle": 0, "curve": "stepped" },
  3088. { "time": 1.7333, "angle": 0, "curve": "stepped" },
  3089. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  3090. { "time": 2.4, "angle": 0 }
  3091. ],
  3092. "translate": [
  3093. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3094. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3095. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3096. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3097. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3098. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3099. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3100. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3101. { "time": 2.4, "x": 0, "y": 0 }
  3102. ],
  3103. "scale": [
  3104. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3105. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3106. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3107. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3108. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3109. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3110. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3111. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3112. { "time": 2.4, "x": 1, "y": 1 }
  3113. ]
  3114. },
  3115. "bone35": {
  3116. "rotate": [
  3117. { "time": 0, "angle": 0, "curve": "stepped" },
  3118. { "time": 0.1667, "angle": 0 },
  3119. { "time": 0.3, "angle": 0.71 },
  3120. { "time": 0.4667, "angle": 0 },
  3121. { "time": 0.7333, "angle": 1.61 },
  3122. { "time": 1.0667, "angle": 0 },
  3123. { "time": 1.4, "angle": 1.61 },
  3124. { "time": 1.7333, "angle": 0 },
  3125. { "time": 2.0667, "angle": 1.61 },
  3126. { "time": 2.4, "angle": 0 }
  3127. ],
  3128. "translate": [
  3129. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3130. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3131. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3132. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3133. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3134. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3135. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3136. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3137. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3138. { "time": 2.4, "x": 0, "y": 0 }
  3139. ],
  3140. "scale": [
  3141. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3142. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3143. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3144. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3145. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3146. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3147. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3148. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3149. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3150. { "time": 2.4, "x": 1, "y": 1 }
  3151. ]
  3152. },
  3153. "bone36": {
  3154. "rotate": [
  3155. { "time": 0, "angle": 0, "curve": "stepped" },
  3156. { "time": 0.1667, "angle": 0 },
  3157. { "time": 0.3, "angle": 0.17 },
  3158. { "time": 0.4667, "angle": 0 },
  3159. { "time": 0.7333, "angle": 0.38 },
  3160. { "time": 1.0667, "angle": 0 },
  3161. { "time": 1.4, "angle": 0.38 },
  3162. { "time": 1.7333, "angle": 0 },
  3163. { "time": 2.0667, "angle": 0.38 },
  3164. { "time": 2.4, "angle": 0 }
  3165. ],
  3166. "translate": [
  3167. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3168. { "time": 0.1667, "x": 0, "y": 0 },
  3169. { "time": 0.3, "x": -0.09, "y": 0.02 },
  3170. { "time": 0.4667, "x": 0, "y": 0 },
  3171. { "time": 0.7333, "x": -0.21, "y": 0.05 },
  3172. { "time": 1.0667, "x": 0, "y": 0 },
  3173. { "time": 1.4, "x": -0.21, "y": 0.05 },
  3174. { "time": 1.7333, "x": 0, "y": 0 },
  3175. { "time": 2.0667, "x": -0.21, "y": 0.05 },
  3176. { "time": 2.4, "x": 0, "y": 0 }
  3177. ],
  3178. "scale": [
  3179. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3180. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3181. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3182. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3183. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3184. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3185. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3186. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3187. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3188. { "time": 2.4, "x": 1, "y": 1 }
  3189. ]
  3190. },
  3191. "bone37": {
  3192. "rotate": [
  3193. { "time": 0, "angle": 0, "curve": "stepped" },
  3194. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3195. { "time": 0.4667, "angle": 0 },
  3196. { "time": 0.7333, "angle": 6.36 },
  3197. { "time": 1.0667, "angle": 0 },
  3198. { "time": 1.4, "angle": 6.36 },
  3199. { "time": 1.7333, "angle": 0 },
  3200. { "time": 2.0667, "angle": 6.36 },
  3201. { "time": 2.4, "angle": 0 }
  3202. ],
  3203. "translate": [
  3204. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3205. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3206. { "time": 0.4667, "x": 0, "y": 0 },
  3207. { "time": 0.7333, "x": -0.56, "y": 0.34 },
  3208. { "time": 1.0667, "x": 0, "y": 0 },
  3209. { "time": 1.4, "x": -0.56, "y": 0.34 },
  3210. { "time": 1.7333, "x": 0, "y": 0 },
  3211. { "time": 2.0667, "x": -0.56, "y": 0.34 },
  3212. { "time": 2.4, "x": 0, "y": 0 }
  3213. ],
  3214. "scale": [
  3215. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3216. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3217. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3218. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3219. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3220. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3221. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 2.4, "x": 1, "y": 1 }
  3224. ]
  3225. },
  3226. "bone38": {
  3227. "rotate": [
  3228. { "time": 0, "angle": 0, "curve": "stepped" },
  3229. { "time": 0.1667, "angle": 0 },
  3230. { "time": 0.3, "angle": -0.86 },
  3231. { "time": 0.4667, "angle": 0 },
  3232. { "time": 0.7333, "angle": -1.93 },
  3233. { "time": 1.0667, "angle": 0 },
  3234. { "time": 1.4, "angle": -1.93 },
  3235. { "time": 1.7333, "angle": 0 },
  3236. { "time": 2.0667, "angle": -1.93 },
  3237. { "time": 2.4, "angle": 0 }
  3238. ],
  3239. "translate": [
  3240. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3241. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3242. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3243. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3244. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3245. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3246. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3247. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3248. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3249. { "time": 2.4, "x": 0, "y": 0 }
  3250. ],
  3251. "scale": [
  3252. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3253. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3254. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3255. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3256. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3257. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3258. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3259. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3260. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3261. { "time": 2.4, "x": 1, "y": 1 }
  3262. ]
  3263. },
  3264. "bone39": {
  3265. "rotate": [
  3266. { "time": 0, "angle": 0, "curve": "stepped" },
  3267. { "time": 0.1667, "angle": 0 },
  3268. { "time": 0.3, "angle": 5.13 },
  3269. { "time": 0.4667, "angle": 0 },
  3270. { "time": 0.7333, "angle": 11.55 },
  3271. { "time": 1.0667, "angle": 0 },
  3272. { "time": 1.4, "angle": 11.55 },
  3273. { "time": 1.7333, "angle": 0 },
  3274. { "time": 2.0667, "angle": 11.55 },
  3275. { "time": 2.4, "angle": 0 }
  3276. ],
  3277. "translate": [
  3278. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3279. { "time": 0.1667, "x": 0, "y": 0 },
  3280. { "time": 0.3, "x": -0.3, "y": 0.01 },
  3281. { "time": 0.4667, "x": 0, "y": 0 },
  3282. { "time": 0.7333, "x": -0.68, "y": 0.02 },
  3283. { "time": 1.0667, "x": 0, "y": 0 },
  3284. { "time": 1.4, "x": -0.68, "y": 0.02 },
  3285. { "time": 1.7333, "x": 0, "y": 0 },
  3286. { "time": 2.0667, "x": -0.68, "y": 0.02 },
  3287. { "time": 2.4, "x": 0, "y": 0 }
  3288. ],
  3289. "scale": [
  3290. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3291. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3292. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3293. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3294. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3295. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3296. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3297. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3298. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3299. { "time": 2.4, "x": 1, "y": 1 }
  3300. ]
  3301. },
  3302. "bone40": {
  3303. "rotate": [
  3304. { "time": 0, "angle": 0, "curve": "stepped" },
  3305. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3306. { "time": 0.4667, "angle": 0 },
  3307. { "time": 0.7333, "angle": 2.21 },
  3308. { "time": 1.0667, "angle": 0 },
  3309. { "time": 1.4, "angle": 2.21 },
  3310. { "time": 1.7333, "angle": 0 },
  3311. { "time": 2.0667, "angle": 2.21 },
  3312. { "time": 2.4, "angle": 0 }
  3313. ],
  3314. "translate": [
  3315. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3316. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3317. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3318. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3319. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3320. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3321. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3322. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3323. { "time": 2.4, "x": 0, "y": 0 }
  3324. ],
  3325. "scale": [
  3326. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3327. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3328. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3329. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3330. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3331. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3332. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3333. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3334. { "time": 2.4, "x": 1, "y": 1 }
  3335. ]
  3336. },
  3337. "bone41": {
  3338. "rotate": [
  3339. { "time": 0, "angle": 0, "curve": "stepped" },
  3340. { "time": 0.1667, "angle": 0 },
  3341. { "time": 0.3, "angle": -2.71 },
  3342. { "time": 0.4667, "angle": 0 },
  3343. { "time": 0.7333, "angle": -6.1 },
  3344. { "time": 1.0667, "angle": 0 },
  3345. { "time": 1.4, "angle": -6.1 },
  3346. { "time": 1.7333, "angle": 0 },
  3347. { "time": 2.0667, "angle": -6.1 },
  3348. { "time": 2.4, "angle": 0 }
  3349. ],
  3350. "translate": [
  3351. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3352. { "time": 0.1667, "x": 0, "y": 0 },
  3353. { "time": 0.3, "x": -0.4, "y": 0.22 },
  3354. { "time": 0.4667, "x": 0, "y": 0 },
  3355. { "time": 0.7333, "x": -0.91, "y": 0.5 },
  3356. { "time": 1.0667, "x": 0, "y": 0 },
  3357. { "time": 1.4, "x": -0.91, "y": 0.5 },
  3358. { "time": 1.7333, "x": 0, "y": 0 },
  3359. { "time": 2.0667, "x": -0.91, "y": 0.5 },
  3360. { "time": 2.4, "x": 0, "y": 0 }
  3361. ],
  3362. "scale": [
  3363. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3364. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3366. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3367. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3368. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3369. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3370. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3371. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3372. { "time": 2.4, "x": 1, "y": 1 }
  3373. ]
  3374. },
  3375. "bone42": {
  3376. "rotate": [
  3377. { "time": 0, "angle": 0, "curve": "stepped" },
  3378. { "time": 0.1667, "angle": 0 },
  3379. { "time": 0.3, "angle": -0.74 },
  3380. { "time": 0.4667, "angle": 0 },
  3381. { "time": 0.7333, "angle": -1.66 },
  3382. { "time": 1.0667, "angle": 0 },
  3383. { "time": 1.4, "angle": -1.66 },
  3384. { "time": 1.7333, "angle": 0 },
  3385. { "time": 2.0667, "angle": -1.66 },
  3386. { "time": 2.4, "angle": 0 }
  3387. ],
  3388. "translate": [
  3389. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3390. { "time": 0.1667, "x": 0, "y": 0 },
  3391. { "time": 0.3, "x": 0.12, "y": -0.02 },
  3392. { "time": 0.4667, "x": 0, "y": 0 },
  3393. { "time": 0.7333, "x": 0.27, "y": -0.05 },
  3394. { "time": 1.0667, "x": 0, "y": 0 },
  3395. { "time": 1.4, "x": 0.27, "y": -0.05 },
  3396. { "time": 1.7333, "x": 0, "y": 0 },
  3397. { "time": 2.0667, "x": 0.27, "y": -0.05 },
  3398. { "time": 2.4, "x": 0, "y": 0 }
  3399. ],
  3400. "scale": [
  3401. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3402. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3403. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3404. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3405. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3406. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3407. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3408. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3409. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 2.4, "x": 1, "y": 1 }
  3411. ]
  3412. },
  3413. "bone43": {
  3414. "rotate": [
  3415. { "time": 0, "angle": 0, "curve": "stepped" },
  3416. { "time": 0.1667, "angle": 0 },
  3417. { "time": 0.3, "angle": 2.15 },
  3418. { "time": 0.4667, "angle": 0 },
  3419. { "time": 0.7333, "angle": 4.84 },
  3420. { "time": 1.0667, "angle": 0 },
  3421. { "time": 1.4, "angle": 4.84 },
  3422. { "time": 1.7333, "angle": 0 },
  3423. { "time": 2.0667, "angle": 4.84 },
  3424. { "time": 2.4, "angle": 0 }
  3425. ],
  3426. "translate": [
  3427. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3428. { "time": 0.1667, "x": 0, "y": 0 },
  3429. { "time": 0.3, "x": 0.23, "y": -0.05 },
  3430. { "time": 0.4667, "x": 0, "y": 0 },
  3431. { "time": 0.7333, "x": 0.51, "y": -0.11 },
  3432. { "time": 1.0667, "x": 0, "y": 0 },
  3433. { "time": 1.4, "x": 0.51, "y": -0.11 },
  3434. { "time": 1.7333, "x": 0, "y": 0 },
  3435. { "time": 2.0667, "x": 0.51, "y": -0.11 },
  3436. { "time": 2.4, "x": 0, "y": 0 }
  3437. ],
  3438. "scale": [
  3439. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3440. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3441. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3442. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3443. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3444. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3445. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3446. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3447. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3448. { "time": 2.4, "x": 1, "y": 1 }
  3449. ]
  3450. },
  3451. "bone44": {
  3452. "rotate": [
  3453. { "time": 0, "angle": 0, "curve": "stepped" },
  3454. { "time": 0.1667, "angle": 0 },
  3455. { "time": 0.3, "angle": -8.69 },
  3456. { "time": 0.4667, "angle": 0 },
  3457. { "time": 0.7333, "angle": -19.55 },
  3458. { "time": 1.0667, "angle": 0 },
  3459. { "time": 1.4, "angle": -19.55 },
  3460. { "time": 1.7333, "angle": 0 },
  3461. { "time": 2.0667, "angle": -19.55 },
  3462. { "time": 2.4, "angle": 0 }
  3463. ],
  3464. "translate": [
  3465. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3466. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3467. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3468. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3469. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3470. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3471. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3472. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3473. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3474. { "time": 2.4, "x": 0, "y": 0 }
  3475. ],
  3476. "scale": [
  3477. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3478. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3479. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3480. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3481. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3482. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3483. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3484. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3485. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3486. { "time": 2.4, "x": 1, "y": 1 }
  3487. ]
  3488. },
  3489. "bone45": {
  3490. "rotate": [
  3491. { "time": 0, "angle": 0, "curve": "stepped" },
  3492. { "time": 0.1667, "angle": 0 },
  3493. { "time": 0.3, "angle": -2.01 },
  3494. { "time": 0.4667, "angle": 0 },
  3495. { "time": 0.7333, "angle": -4.52 },
  3496. { "time": 1.0667, "angle": 0 },
  3497. { "time": 1.4, "angle": -4.52 },
  3498. { "time": 1.7333, "angle": 0 },
  3499. { "time": 2.0667, "angle": -4.52 },
  3500. { "time": 2.4, "angle": 0 }
  3501. ],
  3502. "translate": [
  3503. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3504. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3505. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3506. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3507. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3508. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3509. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3510. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3511. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3512. { "time": 2.4, "x": 0, "y": 0 }
  3513. ],
  3514. "scale": [
  3515. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3516. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3517. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3518. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3519. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3520. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3521. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3522. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3523. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3524. { "time": 2.4, "x": 1, "y": 1 }
  3525. ]
  3526. },
  3527. "bone46": {
  3528. "rotate": [
  3529. { "time": 0, "angle": 0, "curve": "stepped" },
  3530. { "time": 0.1667, "angle": 0 },
  3531. { "time": 0.3, "angle": -2.01 },
  3532. { "time": 0.4667, "angle": 0 },
  3533. { "time": 0.7333, "angle": -4.52 },
  3534. { "time": 1.0667, "angle": 0 },
  3535. { "time": 1.4, "angle": -4.52 },
  3536. { "time": 1.7333, "angle": 0 },
  3537. { "time": 2.0667, "angle": -4.52 },
  3538. { "time": 2.4, "angle": 0 }
  3539. ],
  3540. "translate": [
  3541. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3542. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3543. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3544. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3545. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3546. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3547. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3548. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3549. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3550. { "time": 2.4, "x": 0, "y": 0 }
  3551. ],
  3552. "scale": [
  3553. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3554. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3555. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3556. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3557. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3558. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3559. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3560. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3561. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3562. { "time": 2.4, "x": 1, "y": 1 }
  3563. ]
  3564. },
  3565. "bone47": {
  3566. "rotate": [
  3567. { "time": 0, "angle": 0, "curve": "stepped" },
  3568. { "time": 0.1667, "angle": 0 },
  3569. { "time": 0.3, "angle": -8.46 },
  3570. { "time": 0.4667, "angle": 0 },
  3571. { "time": 0.7333, "angle": -19.04 },
  3572. { "time": 1.0667, "angle": 0 },
  3573. { "time": 1.4, "angle": -19.04 },
  3574. { "time": 1.7333, "angle": 0 },
  3575. { "time": 2.0667, "angle": -19.04 },
  3576. { "time": 2.4, "angle": 0 }
  3577. ],
  3578. "translate": [
  3579. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3580. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3581. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3582. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3583. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3584. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3585. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3586. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3587. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3588. { "time": 2.4, "x": 0, "y": 0 }
  3589. ],
  3590. "scale": [
  3591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3592. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3593. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3594. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3595. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3596. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3597. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3598. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3599. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 2.4, "x": 1, "y": 1 }
  3601. ]
  3602. },
  3603. "bone48": {
  3604. "rotate": [
  3605. { "time": 0, "angle": 0, "curve": "stepped" },
  3606. { "time": 0.1667, "angle": 0 },
  3607. { "time": 0.3, "angle": -2.57 },
  3608. { "time": 0.4667, "angle": 0 },
  3609. { "time": 0.7333, "angle": -5.77 },
  3610. { "time": 1.0667, "angle": 0 },
  3611. { "time": 1.4, "angle": -5.77 },
  3612. { "time": 1.7333, "angle": 0 },
  3613. { "time": 2.0667, "angle": -5.77 },
  3614. { "time": 2.4, "angle": 0 }
  3615. ],
  3616. "translate": [
  3617. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3621. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3622. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3623. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3624. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3625. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3626. { "time": 2.4, "x": 0, "y": 0 }
  3627. ],
  3628. "scale": [
  3629. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3630. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3631. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3632. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3633. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3634. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3635. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3636. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3637. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3638. { "time": 2.4, "x": 1, "y": 1 }
  3639. ]
  3640. },
  3641. "bone49": {
  3642. "rotate": [
  3643. { "time": 0, "angle": 0, "curve": "stepped" },
  3644. { "time": 0.1667, "angle": 0 },
  3645. { "time": 0.3, "angle": -2.57 },
  3646. { "time": 0.4667, "angle": 0 },
  3647. { "time": 0.7333, "angle": -5.77 },
  3648. { "time": 1.0667, "angle": 0 },
  3649. { "time": 1.4, "angle": -5.77 },
  3650. { "time": 1.7333, "angle": 0 },
  3651. { "time": 2.0667, "angle": -5.77 },
  3652. { "time": 2.4, "angle": 0 }
  3653. ],
  3654. "translate": [
  3655. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3656. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3657. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3658. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3659. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3660. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  3661. { "time": 1.4, "x": 0, "y": 0, "curve": "stepped" },
  3662. { "time": 1.7333, "x": 0, "y": 0, "curve": "stepped" },
  3663. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3664. { "time": 2.4, "x": 0, "y": 0 }
  3665. ],
  3666. "scale": [
  3667. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3668. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3669. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3670. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3672. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 1.4, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 1.7333, "x": 1, "y": 1, "curve": "stepped" },
  3675. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3676. { "time": 2.4, "x": 1, "y": 1 }
  3677. ]
  3678. },
  3679. "bone50": {
  3680. "rotate": [
  3681. { "time": 0, "angle": 0, "curve": "stepped" },
  3682. { "time": 0.1667, "angle": 0 },
  3683. { "time": 0.3, "angle": -3.07 },
  3684. { "time": 0.4667, "angle": -6.9, "curve": "stepped" },
  3685. { "time": 2.0667, "angle": -6.9 },
  3686. { "time": 2.4, "angle": 0 }
  3687. ],
  3688. "translate": [
  3689. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3690. { "time": 0.1667, "x": 0, "y": 0 },
  3691. { "time": 0.3, "x": 0.85, "y": 0 },
  3692. { "time": 0.4667, "x": 1.92, "y": 0, "curve": "stepped" },
  3693. { "time": 2.0667, "x": 1.92, "y": 0 },
  3694. { "time": 2.4, "x": 0, "y": 0 }
  3695. ],
  3696. "scale": [
  3697. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3698. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3699. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3700. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3701. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3702. { "time": 2.4, "x": 1, "y": 1 }
  3703. ]
  3704. },
  3705. "bone51": {
  3706. "rotate": [
  3707. { "time": 0, "angle": 0 },
  3708. { "time": 0.1667, "angle": -15.88 },
  3709. { "time": 0.3, "angle": -30.81 },
  3710. { "time": 0.3333, "angle": -35.69 },
  3711. { "time": 0.3667, "angle": -37.84 },
  3712. { "time": 0.4667, "angle": -21.74, "curve": "stepped" },
  3713. { "time": 2.0667, "angle": -21.74 },
  3714. { "time": 2.4, "angle": 0 }
  3715. ],
  3716. "translate": [
  3717. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 0.1667, "x": 0, "y": 0 },
  3719. { "time": 0.3, "x": 0.5, "y": 4.5 },
  3720. { "time": 0.3333, "x": 0.62, "y": 5.62 },
  3721. { "time": 0.4667, "x": 1.7, "y": 4.93, "curve": "stepped" },
  3722. { "time": 2.0667, "x": 1.7, "y": 4.93 },
  3723. { "time": 2.4, "x": 0, "y": 0 }
  3724. ],
  3725. "scale": [
  3726. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3727. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3728. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3729. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3730. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3731. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3732. { "time": 2.4, "x": 1, "y": 1 }
  3733. ]
  3734. },
  3735. "bone54": {
  3736. "rotate": [
  3737. { "time": 0, "angle": 0 },
  3738. { "time": 0.1667, "angle": 4.17 },
  3739. { "time": 0.3, "angle": -3.58 },
  3740. { "time": 0.3667, "angle": 1.66 },
  3741. { "time": 0.4, "angle": 11.27 },
  3742. { "time": 0.4667, "angle": 10.44, "curve": "stepped" },
  3743. { "time": 2.0667, "angle": 10.44 },
  3744. { "time": 2.4, "angle": 0 }
  3745. ],
  3746. "translate": [
  3747. { "time": 0, "x": 0, "y": 0 },
  3748. { "time": 0.1667, "x": 1.36, "y": 1.1 },
  3749. { "time": 0.3, "x": 0.47, "y": 1.15 },
  3750. { "time": 0.3667, "x": 0.43, "y": 3.48 },
  3751. { "time": 0.4, "x": 0.97, "y": 0.7 },
  3752. { "time": 0.4667, "x": 1.3, "y": 0.39, "curve": "stepped" },
  3753. { "time": 2.0667, "x": 1.3, "y": 0.39 },
  3754. { "time": 2.4, "x": 0, "y": 0 }
  3755. ],
  3756. "scale": [
  3757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3758. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3759. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3760. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  3761. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3762. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3763. { "time": 2.4, "x": 1, "y": 1 }
  3764. ]
  3765. },
  3766. "bone57": {
  3767. "rotate": [
  3768. { "time": 0, "angle": 0 },
  3769. { "time": 0.1667, "angle": 5.34 },
  3770. { "time": 0.3, "angle": 5.62 },
  3771. { "time": 0.4667, "angle": 5.97 },
  3772. { "time": 0.7333, "angle": 0 },
  3773. { "time": 0.9333, "angle": 5.34 },
  3774. { "time": 1.3333, "angle": 5.97 },
  3775. { "time": 1.9, "angle": 0, "curve": "stepped" },
  3776. { "time": 2.4, "angle": 0 }
  3777. ],
  3778. "translate": [
  3779. { "time": 0, "x": 0, "y": 0 },
  3780. { "time": 0.1667, "x": 1.73, "y": -6.26 },
  3781. { "time": 0.3, "x": 2.03, "y": -1.14 },
  3782. { "time": 0.4667, "x": 1.65, "y": -4.16, "curve": "stepped" },
  3783. { "time": 2.2333, "x": 1.65, "y": -4.16 },
  3784. { "time": 2.4, "x": 0, "y": 0 }
  3785. ],
  3786. "scale": [
  3787. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3788. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3789. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3790. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3791. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3792. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3793. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3794. { "time": 2.4, "x": 1, "y": 1 }
  3795. ]
  3796. },
  3797. "bone58": {
  3798. "rotate": [
  3799. { "time": 0, "angle": 0 },
  3800. { "time": 0.3, "angle": 23.8 },
  3801. { "time": 0.4667, "angle": 6.71 },
  3802. { "time": 0.7333, "angle": 0 },
  3803. { "time": 0.9333, "angle": 1.05 },
  3804. { "time": 1.3333, "angle": 15.21 },
  3805. { "time": 1.9, "angle": 0, "curve": "stepped" },
  3806. { "time": 2.4, "angle": 0 }
  3807. ],
  3808. "translate": [
  3809. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3810. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3811. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3812. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3813. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3814. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3815. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3816. { "time": 2.4, "x": 0, "y": 0 }
  3817. ],
  3818. "scale": [
  3819. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3820. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3821. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3822. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3823. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3824. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3825. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3826. { "time": 2.4, "x": 1, "y": 1 }
  3827. ]
  3828. },
  3829. "bone60": {
  3830. "rotate": [
  3831. { "time": 0, "angle": 0 },
  3832. { "time": 0.3, "angle": 17.03 },
  3833. { "time": 0.4667, "angle": 3.61 },
  3834. { "time": 0.7333, "angle": 25.6 },
  3835. { "time": 1.3333, "angle": 3.61 },
  3836. { "time": 1.7, "angle": 0 },
  3837. { "time": 2.0667, "angle": 7.76 },
  3838. { "time": 2.4, "angle": 0 }
  3839. ],
  3840. "translate": [
  3841. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3842. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3843. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3844. { "time": 0.4667, "x": 0, "y": 0 },
  3845. { "time": 0.7333, "x": -2.1, "y": 0.58 },
  3846. { "time": 1.3333, "x": 0, "y": 0 },
  3847. { "time": 1.7, "x": -2.42, "y": 0.12 },
  3848. { "time": 2.0667, "x": -2.31, "y": -2.29 },
  3849. { "time": 2.2333, "x": -4.79, "y": -0.33 },
  3850. { "time": 2.4, "x": 0, "y": 0 }
  3851. ],
  3852. "scale": [
  3853. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3855. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3856. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3857. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3858. { "time": 1.7, "x": 1, "y": 1, "curve": "stepped" },
  3859. { "time": 2.4, "x": 1, "y": 1 }
  3860. ]
  3861. },
  3862. "bone61": {
  3863. "rotate": [
  3864. { "time": 0, "angle": 0 },
  3865. { "time": 0.3, "angle": 17.03 },
  3866. { "time": 0.4667, "angle": -6.15 },
  3867. { "time": 0.7333, "angle": -7.03 },
  3868. { "time": 1.3333, "angle": 3.61 },
  3869. { "time": 1.9, "angle": 0 },
  3870. { "time": 2.0667, "angle": -8.9 },
  3871. { "time": 2.4, "angle": 0 }
  3872. ],
  3873. "translate": [
  3874. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3875. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3876. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3877. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3878. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3879. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3880. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3881. { "time": 2.4, "x": 0, "y": 0 }
  3882. ],
  3883. "scale": [
  3884. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3885. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3886. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3887. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3888. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3889. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3890. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3891. { "time": 2.4, "x": 1, "y": 1 }
  3892. ]
  3893. },
  3894. "bone62": {
  3895. "rotate": [
  3896. { "time": 0, "angle": 0 },
  3897. { "time": 0.1667, "angle": -11.81 },
  3898. { "time": 0.3, "angle": 9.97 },
  3899. { "time": 0.4667, "angle": -6.15 },
  3900. { "time": 0.7333, "angle": -7.03 },
  3901. { "time": 1.3333, "angle": 3.61 },
  3902. { "time": 1.9, "angle": 0, "curve": "stepped" },
  3903. { "time": 2.4, "angle": 0 }
  3904. ],
  3905. "translate": [
  3906. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3907. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3908. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3909. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3910. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3911. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  3912. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  3913. { "time": 2.4, "x": 0, "y": 0 }
  3914. ],
  3915. "scale": [
  3916. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3917. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3918. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3919. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3920. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3921. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  3922. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  3923. { "time": 2.4, "x": 1, "y": 1 }
  3924. ]
  3925. },
  3926. "bone63": {
  3927. "rotate": [
  3928. { "time": 0, "angle": 0, "curve": "stepped" },
  3929. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  3930. { "time": 0.3, "angle": 0, "curve": "stepped" },
  3931. { "time": 0.4667, "angle": 0, "curve": "stepped" },
  3932. { "time": 2.0667, "angle": 0, "curve": "stepped" },
  3933. { "time": 2.4, "angle": 0 }
  3934. ],
  3935. "translate": [
  3936. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3937. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3938. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3939. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3940. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  3941. { "time": 2.4, "x": 0, "y": 0 }
  3942. ],
  3943. "scale": [
  3944. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3945. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3946. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3947. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3948. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  3949. { "time": 2.4, "x": 1, "y": 1 }
  3950. ]
  3951. },
  3952. "bone59": {
  3953. "rotate": [
  3954. { "time": 0, "angle": 0 },
  3955. { "time": 0.3, "angle": 23.8 },
  3956. { "time": 0.4667, "angle": 6.71 },
  3957. { "time": 0.7333, "angle": 0 },
  3958. { "time": 1.3333, "angle": 15.21 },
  3959. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  3960. { "time": 2.4, "angle": 0 }
  3961. ],
  3962. "translate": [
  3963. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3964. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3965. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  3966. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  3967. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3968. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3969. { "time": 2.4, "x": 0, "y": 0 }
  3970. ],
  3971. "scale": [
  3972. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3973. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3974. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  3975. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  3976. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3977. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3978. { "time": 2.4, "x": 1, "y": 1 }
  3979. ]
  3980. },
  3981. "bone": {
  3982. "rotate": [
  3983. { "time": 0, "angle": 0 }
  3984. ],
  3985. "translate": [
  3986. { "time": 0, "x": 0, "y": 0 }
  3987. ]
  3988. },
  3989. "bone55": {
  3990. "rotate": [
  3991. { "time": 0, "angle": 0 },
  3992. { "time": 0.1667, "angle": -2.27 },
  3993. { "time": 0.3, "angle": 39.61 },
  3994. { "time": 0.3667, "angle": 31.88 },
  3995. { "time": 0.4, "angle": 7.85 },
  3996. { "time": 0.4667, "angle": 5.74, "curve": "stepped" },
  3997. { "time": 2.0667, "angle": 5.74 },
  3998. { "time": 2.4, "angle": 0 }
  3999. ],
  4000. "translate": [
  4001. { "time": 0, "x": 0, "y": 0 },
  4002. { "time": 0.1667, "x": -2.21, "y": -0.15 },
  4003. { "time": 0.3, "x": -1.01, "y": -0.05 },
  4004. { "time": 0.4, "x": -0.7, "y": 0.06 },
  4005. { "time": 0.4667, "x": -0.5, "y": 0.13, "curve": "stepped" },
  4006. { "time": 2.0667, "x": -0.5, "y": 0.13 },
  4007. { "time": 2.4, "x": 0, "y": 0 }
  4008. ],
  4009. "scale": [
  4010. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4011. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4012. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4013. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4014. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4015. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4016. { "time": 2.4, "x": 1, "y": 1 }
  4017. ]
  4018. },
  4019. "bone52": {
  4020. "rotate": [
  4021. { "time": 0, "angle": 0 },
  4022. { "time": 0.1667, "angle": 25.02 },
  4023. { "time": 0.3, "angle": 41.14 },
  4024. { "time": 0.3333, "angle": 47.88 },
  4025. { "time": 0.3667, "angle": 53.35 },
  4026. { "time": 0.4667, "angle": 16.95, "curve": "stepped" },
  4027. { "time": 2.0667, "angle": 16.95 },
  4028. { "time": 2.4, "angle": 0 }
  4029. ],
  4030. "translate": [
  4031. { "time": 0, "x": 0, "y": 0 },
  4032. { "time": 0.1667, "x": -3.11, "y": 0.65 },
  4033. { "time": 0.3, "x": 0.67, "y": -0.07 },
  4034. { "time": 0.4667, "x": 3.04, "y": -1.6, "curve": "stepped" },
  4035. { "time": 2.0667, "x": 3.04, "y": -1.6 },
  4036. { "time": 2.4, "x": 0, "y": 0 }
  4037. ],
  4038. "scale": [
  4039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4040. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4041. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4042. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4043. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4044. { "time": 2.4, "x": 1, "y": 1 }
  4045. ]
  4046. },
  4047. "bone53": {
  4048. "rotate": [
  4049. { "time": 0, "angle": 0, "curve": "stepped" },
  4050. { "time": 0.1667, "angle": 0 },
  4051. { "time": 0.3, "angle": -18.3 },
  4052. { "time": 0.3333, "angle": -22.88 },
  4053. { "time": 0.4667, "angle": 1.53, "curve": "stepped" },
  4054. { "time": 2.0667, "angle": 1.53 },
  4055. { "time": 2.4, "angle": 0 }
  4056. ],
  4057. "translate": [
  4058. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4059. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4060. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4061. { "time": 0.4667, "x": 0, "y": 0, "curve": "stepped" },
  4062. { "time": 2.0667, "x": 0, "y": 0, "curve": "stepped" },
  4063. { "time": 2.4, "x": 0, "y": 0 }
  4064. ],
  4065. "scale": [
  4066. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4067. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4068. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4069. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4070. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4071. { "time": 2.4, "x": 1, "y": 1 }
  4072. ]
  4073. },
  4074. "root": {
  4075. "rotate": [
  4076. { "time": 0, "angle": 0 }
  4077. ],
  4078. "translate": [
  4079. { "time": 0, "x": 0, "y": 0 }
  4080. ],
  4081. "scale": [
  4082. { "time": 0, "x": 0.65, "y": 0.65 }
  4083. ]
  4084. },
  4085. "bone56": {
  4086. "rotate": [
  4087. { "time": 0, "angle": 0, "curve": "stepped" },
  4088. { "time": 0.1667, "angle": 0 },
  4089. { "time": 0.3, "angle": -23.32 },
  4090. { "time": 0.4, "angle": -12.67 },
  4091. { "time": 0.4667, "angle": -16.29, "curve": "stepped" },
  4092. { "time": 2.0667, "angle": -16.29 },
  4093. { "time": 2.4, "angle": 0 }
  4094. ],
  4095. "translate": [
  4096. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4097. { "time": 0.1667, "x": 0, "y": 0 },
  4098. { "time": 0.3, "x": -0.75, "y": 0.2 },
  4099. { "time": 0.4, "x": -1.31, "y": 0.35 },
  4100. { "time": 0.4667, "x": -1.69, "y": 0.45, "curve": "stepped" },
  4101. { "time": 2.0667, "x": -1.69, "y": 0.45 },
  4102. { "time": 2.4, "x": 0, "y": 0 }
  4103. ],
  4104. "scale": [
  4105. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4107. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4108. { "time": 0.4, "x": 1, "y": 1, "curve": "stepped" },
  4109. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  4110. { "time": 2.0667, "x": 1, "y": 1, "curve": "stepped" },
  4111. { "time": 2.4, "x": 1, "y": 1 }
  4112. ]
  4113. }
  4114. },
  4115. "deform": {
  4116. "default": {
  4117. "houba": {
  4118. "houba": [
  4119. {
  4120. "time": 0,
  4121. "offset": 136,
  4122. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  4123. "curve": "stepped"
  4124. },
  4125. {
  4126. "time": 0.1667,
  4127. "offset": 136,
  4128. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  4129. "curve": "stepped"
  4130. },
  4131. {
  4132. "time": 0.7333,
  4133. "offset": 136,
  4134. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  4135. "curve": "stepped"
  4136. },
  4137. {
  4138. "time": 2.4,
  4139. "offset": 136,
  4140. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ]
  4141. }
  4142. ]
  4143. },
  4144. "shenti": {
  4145. "shenti": [
  4146. { "time": 0, "curve": "stepped" },
  4147. { "time": 0.1667 },
  4148. {
  4149. "time": 0.4667,
  4150. "offset": 116,
  4151. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ],
  4152. "curve": "stepped"
  4153. },
  4154. {
  4155. "time": 2.0667,
  4156. "offset": 116,
  4157. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
  4158. },
  4159. { "time": 2.4 }
  4160. ]
  4161. },
  4162. "youshou": {
  4163. "youshou": [
  4164. { "time": 0.1667 },
  4165. {
  4166. "time": 0.3,
  4167. "offset": 48,
  4168. "vertices": [ -2.28916, 1.01541, -1.62706, -1.90345, -5.71558, 0.83984, -2.43794, -5.23547, 0, 0, 0, 0, 0, 0, -0.4888, 2.76166, -2.78642, 0.32162, 0, 0, 0, 0, -0.252, -0.8925, 0.78307, -0.49501, 0.37855, -1.38491, 1.43509, -0.03139 ]
  4169. },
  4170. { "time": 0.4667 }
  4171. ]
  4172. },
  4173. "youwaitao": {
  4174. "youwaitao": [
  4175. { "time": 0, "curve": "stepped" },
  4176. { "time": 0.1667 },
  4177. {
  4178. "time": 0.4667,
  4179. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ],
  4180. "curve": "stepped"
  4181. },
  4182. {
  4183. "time": 1,
  4184. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ],
  4185. "curve": "stepped"
  4186. },
  4187. {
  4188. "time": 1.5667,
  4189. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ],
  4190. "curve": "stepped"
  4191. },
  4192. {
  4193. "time": 2.0667,
  4194. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
  4195. },
  4196. { "time": 2.4 }
  4197. ]
  4198. },
  4199. "zuowaitao": {
  4200. "zuowaitao": [
  4201. { "time": 0, "curve": "stepped" },
  4202. { "time": 0.1667 },
  4203. {
  4204. "time": 0.4667,
  4205. "offset": 72,
  4206. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ],
  4207. "curve": "stepped"
  4208. },
  4209. {
  4210. "time": 1,
  4211. "offset": 72,
  4212. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ],
  4213. "curve": "stepped"
  4214. },
  4215. {
  4216. "time": 1.5667,
  4217. "offset": 72,
  4218. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ],
  4219. "curve": "stepped"
  4220. },
  4221. {
  4222. "time": 2.0667,
  4223. "offset": 72,
  4224. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
  4225. },
  4226. { "time": 2.4 }
  4227. ]
  4228. }
  4229. }
  4230. }
  4231. },
  4232. "stand3": {
  4233. "slots": {
  4234. "biyan": {
  4235. "attachment": [
  4236. { "time": 0.1, "name": "biyan" },
  4237. { "time": 0.2, "name": null },
  4238. { "time": 0.8, "name": "biyan" },
  4239. { "time": 0.8667, "name": null }
  4240. ]
  4241. },
  4242. "meimao1": {
  4243. "attachment": [
  4244. { "time": 0.1, "name": "meimao1" },
  4245. { "time": 0.7, "name": "meimao1" }
  4246. ]
  4247. },
  4248. "meimao2": {
  4249. "attachment": [
  4250. { "time": 0.1, "name": null },
  4251. { "time": 0.7, "name": null }
  4252. ]
  4253. },
  4254. "yaoya": {
  4255. "attachment": [
  4256. { "time": 0, "name": null },
  4257. { "time": 0.1667, "name": "yaoya" },
  4258. { "time": 0.8667, "name": null },
  4259. { "time": 1.8333, "name": null }
  4260. ]
  4261. },
  4262. "youyan1": {
  4263. "attachment": [
  4264. { "time": 0, "name": "youyan1" },
  4265. { "time": 0.1, "name": null },
  4266. { "time": 0.2, "name": null },
  4267. { "time": 0.3, "name": null },
  4268. { "time": 0.7, "name": null },
  4269. { "time": 0.8667, "name": "youyan1" },
  4270. { "time": 1.8333, "name": "youyan1" }
  4271. ]
  4272. },
  4273. "youyan2": {
  4274. "attachment": [
  4275. { "time": 0, "name": null },
  4276. { "time": 0.1, "name": null },
  4277. { "time": 0.2, "name": "youyan2" },
  4278. { "time": 0.3, "name": "youyan2" },
  4279. { "time": 0.7, "name": "youyan2" },
  4280. { "time": 0.8, "name": null },
  4281. { "time": 0.8667, "name": null },
  4282. { "time": 1.8333, "name": null }
  4283. ]
  4284. },
  4285. "zuiba": {
  4286. "attachment": [
  4287. { "time": 0, "name": "zuiba" },
  4288. { "time": 0.1667, "name": null },
  4289. { "time": 0.8667, "name": "zuiba" },
  4290. { "time": 1.8333, "name": "zuiba" }
  4291. ]
  4292. },
  4293. "zuoyan1": {
  4294. "attachment": [
  4295. { "time": 0, "name": "zuoyan1" },
  4296. { "time": 0.1, "name": null },
  4297. { "time": 0.2, "name": null },
  4298. { "time": 0.3, "name": null },
  4299. { "time": 0.7, "name": null },
  4300. { "time": 0.8, "name": null },
  4301. { "time": 0.8667, "name": "zuoyan1" },
  4302. { "time": 1.8333, "name": "zuoyan1" }
  4303. ]
  4304. },
  4305. "zuoyan2": {
  4306. "attachment": [
  4307. { "time": 0, "name": null },
  4308. { "time": 0.1, "name": null },
  4309. { "time": 0.2, "name": "zuoyan2" },
  4310. { "time": 0.3, "name": "zuoyan2" },
  4311. { "time": 0.7, "name": "zuoyan2" },
  4312. { "time": 0.8, "name": null },
  4313. { "time": 0.8667, "name": null },
  4314. { "time": 1.8333, "name": null }
  4315. ]
  4316. }
  4317. },
  4318. "bones": {
  4319. "bone2": {
  4320. "rotate": [
  4321. { "time": 0, "angle": 0, "curve": "stepped" },
  4322. { "time": 0.1667, "angle": 0 },
  4323. { "time": 0.3, "angle": -20 },
  4324. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4325. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4326. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4327. { "time": 1.8333, "angle": 0 }
  4328. ],
  4329. "translate": [
  4330. { "time": 0, "x": 0, "y": 0 },
  4331. { "time": 0.1667, "x": 0, "y": -4.01 },
  4332. { "time": 0.3, "x": 0, "y": 12.86 },
  4333. { "time": 0.5333, "x": 0, "y": -7.98 },
  4334. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4335. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4336. { "time": 1.8333, "x": 0, "y": 0 }
  4337. ],
  4338. "scale": [
  4339. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4340. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4341. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4342. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4343. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4344. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4345. { "time": 1.8333, "x": 1, "y": 1 }
  4346. ]
  4347. },
  4348. "bone3": {
  4349. "rotate": [
  4350. { "time": 0, "angle": 0, "curve": "stepped" },
  4351. { "time": 0.1667, "angle": 0 },
  4352. { "time": 0.3, "angle": -4.02 },
  4353. { "time": 0.5333, "angle": -9.04 },
  4354. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4355. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4356. { "time": 1.8333, "angle": 0 }
  4357. ],
  4358. "translate": [
  4359. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4360. { "time": 0.1667, "x": 0, "y": 0 },
  4361. { "time": 0.3, "x": 1.96, "y": -0.35 },
  4362. { "time": 0.5333, "x": 4.4, "y": -0.78 },
  4363. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4364. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4365. { "time": 1.8333, "x": 0, "y": 0 }
  4366. ],
  4367. "scale": [
  4368. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4369. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4370. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4372. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4374. { "time": 1.8333, "x": 1, "y": 1 }
  4375. ]
  4376. },
  4377. "bone4": {
  4378. "rotate": [
  4379. { "time": 0, "angle": 0, "curve": "stepped" },
  4380. { "time": 0.1667, "angle": 0 },
  4381. { "time": 0.3, "angle": 26.03 },
  4382. { "time": 0.5333, "angle": 8.68 },
  4383. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4384. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4385. { "time": 1.8333, "angle": 0 }
  4386. ],
  4387. "translate": [
  4388. {
  4389. "time": 0,
  4390. "x": 0,
  4391. "y": 0,
  4392. "curve": [ 0.25, 0, 0.75, 1 ]
  4393. },
  4394. {
  4395. "time": 0.1667,
  4396. "x": -1.91,
  4397. "y": -0.1,
  4398. "curve": [ 0.254, 0, 0.621, 0.47 ]
  4399. },
  4400. {
  4401. "time": 0.3,
  4402. "x": -1.79,
  4403. "y": -0.37,
  4404. "curve": [ 0.369, 0.47, 0.753, 1 ]
  4405. },
  4406. {
  4407. "time": 0.5333,
  4408. "x": -1.64,
  4409. "y": -0.73,
  4410. "curve": [ 0.25, 0, 0.75, 1 ]
  4411. },
  4412. {
  4413. "time": 0.9667,
  4414. "x": 0,
  4415. "y": 0,
  4416. "curve": [ 0.25, 0, 0.75, 1 ]
  4417. },
  4418. {
  4419. "time": 1.3333,
  4420. "x": 2.56,
  4421. "y": 0.13,
  4422. "curve": [ 0.25, 0, 0.75, 1 ]
  4423. },
  4424. { "time": 1.8333, "x": 0, "y": 0 }
  4425. ],
  4426. "scale": [
  4427. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4428. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4429. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4430. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4431. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 1.8333, "x": 1, "y": 1 }
  4434. ]
  4435. },
  4436. "bone5": {
  4437. "rotate": [
  4438. { "time": 0, "angle": 0, "curve": "stepped" },
  4439. { "time": 0.1667, "angle": 0 },
  4440. { "time": 0.3, "angle": 1.85 },
  4441. { "time": 0.5333, "angle": 4.16 },
  4442. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4443. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4444. { "time": 1.8333, "angle": 0 }
  4445. ],
  4446. "translate": [
  4447. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4448. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4452. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4453. { "time": 1.8333, "x": 0, "y": 0 }
  4454. ],
  4455. "scale": [
  4456. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4457. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4458. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4459. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4460. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4461. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4462. { "time": 1.8333, "x": 1, "y": 1 }
  4463. ]
  4464. },
  4465. "bone6": {
  4466. "rotate": [
  4467. { "time": 0, "angle": 22.32 },
  4468. { "time": 0.1667, "angle": 6.94 },
  4469. { "time": 0.3, "angle": 38.4 },
  4470. { "time": 0.5333, "angle": 13.34 },
  4471. { "time": 0.9667, "angle": 22.32 },
  4472. { "time": 1.3333, "angle": 15.36 },
  4473. { "time": 1.8333, "angle": 22.32 }
  4474. ],
  4475. "translate": [
  4476. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4477. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4478. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4479. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4480. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4481. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4482. { "time": 1.8333, "x": 0, "y": 0 }
  4483. ],
  4484. "scale": [
  4485. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4486. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4487. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4488. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4489. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4490. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4491. { "time": 1.8333, "x": 1, "y": 1 }
  4492. ]
  4493. },
  4494. "bone7": {
  4495. "rotate": [
  4496. { "time": 0, "angle": 4.55 },
  4497. { "time": 0.1667, "angle": 8.56 },
  4498. { "time": 0.3, "angle": -41.01 },
  4499. { "time": 0.5333, "angle": -30.88 },
  4500. { "time": 0.9667, "angle": 4.55 },
  4501. { "time": 1.3333, "angle": 8.96 },
  4502. { "time": 1.8333, "angle": 4.55 }
  4503. ],
  4504. "translate": [
  4505. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4506. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4507. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4508. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4509. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4510. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4511. { "time": 1.8333, "x": 0, "y": 0 }
  4512. ],
  4513. "scale": [
  4514. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4515. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4516. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4517. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4518. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4519. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4520. { "time": 1.8333, "x": 1, "y": 1 }
  4521. ]
  4522. },
  4523. "bone8": {
  4524. "rotate": [
  4525. { "time": 0, "angle": 0, "curve": "stepped" },
  4526. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4527. { "time": 0.3, "angle": 0 },
  4528. { "time": 0.5333, "angle": -17.06 },
  4529. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4530. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4531. { "time": 1.8333, "angle": 0 }
  4532. ],
  4533. "translate": [
  4534. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4535. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4536. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4537. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4538. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4539. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4540. { "time": 1.8333, "x": 0, "y": 0 }
  4541. ],
  4542. "scale": [
  4543. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4544. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4545. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4546. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4547. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4548. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4549. { "time": 1.8333, "x": 1, "y": 1 }
  4550. ]
  4551. },
  4552. "bone9": {
  4553. "rotate": [
  4554. { "time": 0, "angle": -14 },
  4555. { "time": 0.1667, "angle": -17.25 },
  4556. { "time": 0.3, "angle": 308.32 },
  4557. { "time": 0.5333, "angle": 20.43 },
  4558. { "time": 0.9667, "angle": -14 },
  4559. { "time": 1.3333, "angle": -6.02 },
  4560. { "time": 1.8333, "angle": -14 }
  4561. ],
  4562. "translate": [
  4563. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4564. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4565. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4566. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4567. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4568. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4569. { "time": 1.8333, "x": 0, "y": 0 }
  4570. ],
  4571. "scale": [
  4572. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4573. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4574. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4575. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4576. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4577. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4578. { "time": 1.8333, "x": 1, "y": 1 }
  4579. ]
  4580. },
  4581. "bone10": {
  4582. "rotate": [
  4583. { "time": 0, "angle": 0 },
  4584. { "time": 0.1667, "angle": -35.53 },
  4585. { "time": 0.3, "angle": -54 },
  4586. { "time": 0.5333, "angle": -133.84 },
  4587. { "time": 0.9667, "angle": 0 },
  4588. { "time": 1.3333, "angle": -13.26 },
  4589. { "time": 1.8333, "angle": 0 }
  4590. ],
  4591. "translate": [
  4592. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4593. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4594. { "time": 0.3, "x": 0, "y": 0 },
  4595. { "time": 0.5333, "x": 5.26, "y": -3.71 },
  4596. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4597. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4598. { "time": 1.8333, "x": 0, "y": 0 }
  4599. ],
  4600. "scale": [
  4601. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4602. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4603. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4604. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4605. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4606. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4607. { "time": 1.8333, "x": 1, "y": 1 }
  4608. ]
  4609. },
  4610. "bone11": {
  4611. "rotate": [
  4612. { "time": 0, "angle": 0, "curve": "stepped" },
  4613. { "time": 0.1667, "angle": 0 },
  4614. { "time": 0.3, "angle": -0.41 },
  4615. { "time": 0.5333, "angle": -0.93 },
  4616. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4617. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4618. { "time": 1.8333, "angle": 0 }
  4619. ],
  4620. "translate": [
  4621. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4622. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4623. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4624. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4625. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4626. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4627. { "time": 1.8333, "x": 0, "y": 0 }
  4628. ],
  4629. "scale": [
  4630. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4631. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4632. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4633. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4634. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4635. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4636. { "time": 1.8333, "x": 1, "y": 1 }
  4637. ]
  4638. },
  4639. "bone12": {
  4640. "rotate": [
  4641. { "time": 0, "angle": 0, "curve": "stepped" },
  4642. { "time": 0.1667, "angle": 0 },
  4643. { "time": 0.3, "angle": -4.29 },
  4644. { "time": 0.5333, "angle": -9.88 },
  4645. { "time": 0.9667, "angle": 0 },
  4646. { "time": 1.3333, "angle": -7.71 },
  4647. { "time": 1.8333, "angle": 0 }
  4648. ],
  4649. "translate": [
  4650. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4651. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4652. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4653. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4654. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4655. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4656. { "time": 1.8333, "x": 0, "y": 0 }
  4657. ],
  4658. "scale": [
  4659. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4660. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4661. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4662. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4663. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4664. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4665. { "time": 1.8333, "x": 1, "y": 1 }
  4666. ]
  4667. },
  4668. "bone13": {
  4669. "rotate": [
  4670. { "time": 0, "angle": 0, "curve": "stepped" },
  4671. { "time": 0.1667, "angle": 0 },
  4672. { "time": 0.3, "angle": -13.89 },
  4673. { "time": 0.5333, "angle": -6.65 },
  4674. { "time": 0.9667, "angle": 0 },
  4675. { "time": 1.3333, "angle": -8.44 },
  4676. { "time": 1.8333, "angle": 0 }
  4677. ],
  4678. "translate": [
  4679. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4681. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4682. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4683. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4684. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4685. { "time": 1.8333, "x": 0, "y": 0 }
  4686. ],
  4687. "scale": [
  4688. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4689. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4690. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4691. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4692. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4693. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4694. { "time": 1.8333, "x": 1, "y": 1 }
  4695. ]
  4696. },
  4697. "bone14": {
  4698. "rotate": [
  4699. { "time": 0, "angle": 0, "curve": "stepped" },
  4700. { "time": 0.1667, "angle": 0 },
  4701. { "time": 0.3, "angle": -10.14 },
  4702. { "time": 0.5333, "angle": 1.79 },
  4703. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4704. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4705. { "time": 1.8333, "angle": 0 }
  4706. ],
  4707. "translate": [
  4708. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4709. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4710. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4711. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4712. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4713. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4714. { "time": 1.8333, "x": 0, "y": 0 }
  4715. ],
  4716. "scale": [
  4717. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4718. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4719. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4720. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4721. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4722. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4723. { "time": 1.8333, "x": 1, "y": 1 }
  4724. ]
  4725. },
  4726. "bone15": {
  4727. "rotate": [
  4728. { "time": 0, "angle": 0, "curve": "stepped" },
  4729. { "time": 0.1667, "angle": 0 },
  4730. { "time": 0.3, "angle": 7.49 },
  4731. { "time": 0.5333, "angle": 2.54 },
  4732. { "time": 0.9667, "angle": 0 },
  4733. { "time": 1.3333, "angle": 4.76 },
  4734. { "time": 1.8333, "angle": 0 }
  4735. ],
  4736. "translate": [
  4737. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4738. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4739. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4740. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4741. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4742. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4743. { "time": 1.8333, "x": 0, "y": 0 }
  4744. ],
  4745. "scale": [
  4746. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4747. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4748. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4749. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4750. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4752. { "time": 1.8333, "x": 1, "y": 1 }
  4753. ]
  4754. },
  4755. "bone16": {
  4756. "rotate": [
  4757. { "time": 0, "angle": 0, "curve": "stepped" },
  4758. { "time": 0.1667, "angle": 0 },
  4759. { "time": 0.2333, "angle": 3.28 },
  4760. { "time": 0.3, "angle": 10.26 },
  4761. { "time": 0.5333, "angle": 6.7 },
  4762. { "time": 0.9667, "angle": 0 },
  4763. { "time": 1.3333, "angle": 8.93 },
  4764. { "time": 1.8333, "angle": 0 }
  4765. ],
  4766. "translate": [
  4767. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4768. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4769. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4770. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4771. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4772. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4773. { "time": 1.8333, "x": 0, "y": 0 }
  4774. ],
  4775. "scale": [
  4776. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4777. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4778. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4779. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4780. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4781. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4782. { "time": 1.8333, "x": 1, "y": 1 }
  4783. ]
  4784. },
  4785. "bone17": {
  4786. "rotate": [
  4787. { "time": 0, "angle": 0, "curve": "stepped" },
  4788. { "time": 0.1667, "angle": 0 },
  4789. { "time": 0.2333, "angle": -0.51 },
  4790. { "time": 0.3, "angle": 6.89 },
  4791. { "time": 0.5333, "angle": 4.38 },
  4792. { "time": 0.9667, "angle": 0 },
  4793. { "time": 1.3333, "angle": 6.6 },
  4794. { "time": 1.8333, "angle": 0 }
  4795. ],
  4796. "translate": [
  4797. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4798. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4799. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4800. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4801. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4802. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4803. { "time": 1.8333, "x": 0, "y": 0 }
  4804. ],
  4805. "scale": [
  4806. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4807. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4808. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4809. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4810. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4811. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4812. { "time": 1.8333, "x": 1, "y": 1 }
  4813. ]
  4814. },
  4815. "bone18": {
  4816. "rotate": [
  4817. { "time": 0, "angle": 0, "curve": "stepped" },
  4818. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4819. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4820. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  4821. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4822. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4823. { "time": 1.8333, "angle": 0 }
  4824. ],
  4825. "translate": [
  4826. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4827. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4828. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4829. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  4830. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4831. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4832. { "time": 1.8333, "x": 0, "y": 0 }
  4833. ],
  4834. "scale": [
  4835. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4836. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4837. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4838. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4839. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4840. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4841. { "time": 1.8333, "x": 1, "y": 1 }
  4842. ]
  4843. },
  4844. "bone19": {
  4845. "rotate": [
  4846. { "time": 0, "angle": 0 },
  4847. { "time": 0.1667, "angle": 4.87 },
  4848. { "time": 0.3, "angle": -2.21 },
  4849. { "time": 0.5333, "angle": -3.14 },
  4850. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4851. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4852. { "time": 1.8333, "angle": 0 }
  4853. ],
  4854. "translate": [
  4855. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4856. { "time": 0.1667, "x": 0, "y": 0 },
  4857. { "time": 0.3, "x": 0.04, "y": -1.06 },
  4858. { "time": 0.5333, "x": 0.09, "y": -2.38 },
  4859. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4860. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4861. { "time": 1.8333, "x": 0, "y": 0 }
  4862. ],
  4863. "scale": [
  4864. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4865. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4866. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4867. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  4868. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4869. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4870. { "time": 1.8333, "x": 1, "y": 1 }
  4871. ]
  4872. },
  4873. "bone20": {
  4874. "rotate": [
  4875. { "time": 0, "angle": 0, "curve": "stepped" },
  4876. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4877. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4878. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4879. { "time": 0.7, "angle": 0, "curve": "stepped" },
  4880. { "time": 0.8, "angle": 0, "curve": "stepped" },
  4881. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4882. { "time": 1, "angle": 0, "curve": "stepped" },
  4883. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4884. { "time": 1.8333, "angle": 0 }
  4885. ],
  4886. "translate": [
  4887. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4888. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4889. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4890. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4891. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  4892. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  4893. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4894. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4895. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4896. { "time": 1.8333, "x": 0, "y": 0 }
  4897. ],
  4898. "scale": [
  4899. { "time": 0, "x": 1, "y": 1 },
  4900. { "time": 0.1, "x": 0.501, "y": 1, "curve": "stepped" },
  4901. { "time": 0.2, "x": 0.501, "y": 1 },
  4902. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4903. { "time": 0.7, "x": 1, "y": 1 },
  4904. { "time": 0.8, "x": 0.501, "y": 1, "curve": "stepped" },
  4905. { "time": 0.8667, "x": 0.501, "y": 1 },
  4906. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4907. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4908. { "time": 1.8333, "x": 1, "y": 1 }
  4909. ]
  4910. },
  4911. "bone21": {
  4912. "rotate": [
  4913. { "time": 0, "angle": 0, "curve": "stepped" },
  4914. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4915. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4916. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4917. { "time": 0.7, "angle": 0, "curve": "stepped" },
  4918. { "time": 0.8, "angle": 0, "curve": "stepped" },
  4919. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4920. { "time": 1, "angle": 0, "curve": "stepped" },
  4921. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4922. { "time": 1.8333, "angle": 0 }
  4923. ],
  4924. "translate": [
  4925. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4926. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4927. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4928. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  4929. { "time": 0.7, "x": 0, "y": 0, "curve": "stepped" },
  4930. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  4931. { "time": 0.8667, "x": 0, "y": 0, "curve": "stepped" },
  4932. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4933. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4934. { "time": 1.8333, "x": 0, "y": 0 }
  4935. ],
  4936. "scale": [
  4937. { "time": 0, "x": 1, "y": 1 },
  4938. { "time": 0.1, "x": 0.504, "y": 1, "curve": "stepped" },
  4939. { "time": 0.2, "x": 0.504, "y": 1 },
  4940. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4941. { "time": 0.7, "x": 1, "y": 1 },
  4942. { "time": 0.8, "x": 0.501, "y": 1 },
  4943. { "time": 0.8667, "x": 0.504, "y": 1 },
  4944. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4945. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4946. { "time": 1.8333, "x": 1, "y": 1 }
  4947. ]
  4948. },
  4949. "bone22": {
  4950. "rotate": [
  4951. { "time": 0, "angle": 0, "curve": "stepped" },
  4952. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4953. { "time": 1, "angle": 0, "curve": "stepped" },
  4954. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4955. { "time": 1.8333, "angle": 0 }
  4956. ],
  4957. "translate": [
  4958. { "time": 0, "x": -1.58, "y": -0.06, "curve": "stepped" },
  4959. { "time": 1.8333, "x": -1.58, "y": -0.06 }
  4960. ],
  4961. "scale": [
  4962. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4963. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4964. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4965. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4966. { "time": 1.8333, "x": 1, "y": 1 }
  4967. ]
  4968. },
  4969. "bone23": {
  4970. "rotate": [
  4971. { "time": 0, "angle": 0, "curve": "stepped" },
  4972. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4973. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4974. { "time": 0.3, "angle": 0, "curve": "stepped" },
  4975. { "time": 0.7, "angle": 0, "curve": "stepped" },
  4976. { "time": 0.8667, "angle": 0, "curve": "stepped" },
  4977. { "time": 1, "angle": 0, "curve": "stepped" },
  4978. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4979. { "time": 1.8333, "angle": 0 }
  4980. ],
  4981. "translate": [
  4982. { "time": 0, "x": 0, "y": 0 },
  4983. { "time": 0.1, "x": -1.96, "y": -0.02, "curve": "stepped" },
  4984. { "time": 0.2, "x": -1.96, "y": -0.02 },
  4985. { "time": 0.3, "x": 0, "y": 0 },
  4986. { "time": 0.7, "x": -1.96, "y": -0.02, "curve": "stepped" },
  4987. { "time": 0.8667, "x": -1.96, "y": -0.02 },
  4988. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4989. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4990. { "time": 1.8333, "x": 0, "y": 0 }
  4991. ],
  4992. "scale": [
  4993. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4994. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4995. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4996. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  4997. { "time": 0.7, "x": 1, "y": 1, "curve": "stepped" },
  4998. { "time": 0.8667, "x": 1, "y": 1, "curve": "stepped" },
  4999. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5000. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5001. { "time": 1.8333, "x": 1, "y": 1 }
  5002. ]
  5003. },
  5004. "bone24": {
  5005. "rotate": [
  5006. { "time": 0, "angle": 0 },
  5007. { "time": 0.1667, "angle": -3.38 },
  5008. { "time": 0.3333, "angle": 0 },
  5009. { "time": 0.5667, "angle": -3.38 },
  5010. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5011. { "time": 1, "angle": 0 },
  5012. { "time": 1.3333, "angle": -3.38 },
  5013. { "time": 1.8333, "angle": 0 }
  5014. ],
  5015. "translate": [
  5016. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5017. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5018. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5019. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5020. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5021. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5022. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5023. { "time": 1.8333, "x": 0, "y": 0 }
  5024. ],
  5025. "scale": [
  5026. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5027. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5028. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5029. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5030. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5031. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5032. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5033. { "time": 1.8333, "x": 1, "y": 1 }
  5034. ]
  5035. },
  5036. "bone25": {
  5037. "rotate": [
  5038. { "time": 0, "angle": 0 },
  5039. { "time": 0.1667, "angle": -3.38 },
  5040. { "time": 0.3333, "angle": 0 },
  5041. { "time": 0.5667, "angle": -3.38 },
  5042. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5043. { "time": 1, "angle": 0 },
  5044. { "time": 1.3333, "angle": -3.38 },
  5045. { "time": 1.8333, "angle": 0 }
  5046. ],
  5047. "translate": [
  5048. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5049. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5050. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5051. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5052. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5053. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5054. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5055. { "time": 1.8333, "x": 0, "y": 0 }
  5056. ],
  5057. "scale": [
  5058. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5059. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5060. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5061. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5062. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5063. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5064. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5065. { "time": 1.8333, "x": 1, "y": 1 }
  5066. ]
  5067. },
  5068. "bone26": {
  5069. "rotate": [
  5070. { "time": 0, "angle": 0 },
  5071. { "time": 0.1667, "angle": -3.38 },
  5072. { "time": 0.3333, "angle": 0 },
  5073. { "time": 0.5667, "angle": -3.38 },
  5074. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5075. { "time": 1, "angle": 0 },
  5076. { "time": 1.3333, "angle": -3.38 },
  5077. { "time": 1.8333, "angle": 0 }
  5078. ],
  5079. "translate": [
  5080. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5081. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5082. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5083. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5084. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5085. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5086. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5087. { "time": 1.8333, "x": 0, "y": 0 }
  5088. ],
  5089. "scale": [
  5090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5091. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5092. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5093. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5094. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5095. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5096. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5097. { "time": 1.8333, "x": 1, "y": 1 }
  5098. ]
  5099. },
  5100. "bone27": {
  5101. "rotate": [
  5102. { "time": 0, "angle": 0 },
  5103. { "time": 0.1667, "angle": 3.97 },
  5104. { "time": 0.3333, "angle": 0 },
  5105. { "time": 0.5667, "angle": 3.97 },
  5106. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5107. { "time": 1, "angle": 0 },
  5108. { "time": 1.3333, "angle": 3.97 },
  5109. { "time": 1.8333, "angle": 0 }
  5110. ],
  5111. "translate": [
  5112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5113. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5114. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5115. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5116. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5117. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5118. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5119. { "time": 1.8333, "x": 0, "y": 0 }
  5120. ],
  5121. "scale": [
  5122. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5123. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5124. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5125. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5126. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5127. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5128. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5129. { "time": 1.8333, "x": 1, "y": 1 }
  5130. ]
  5131. },
  5132. "bone28": {
  5133. "rotate": [
  5134. { "time": 0, "angle": 0 },
  5135. { "time": 0.1667, "angle": 3.97 },
  5136. { "time": 0.3333, "angle": 0 },
  5137. { "time": 0.5667, "angle": 3.97 },
  5138. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5139. { "time": 1, "angle": 0 },
  5140. { "time": 1.3333, "angle": 3.97 },
  5141. { "time": 1.8333, "angle": 0 }
  5142. ],
  5143. "translate": [
  5144. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5145. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5146. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5147. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5148. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5149. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5150. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5151. { "time": 1.8333, "x": 0, "y": 0 }
  5152. ],
  5153. "scale": [
  5154. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5155. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5156. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5157. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5158. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5159. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5160. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5161. { "time": 1.8333, "x": 1, "y": 1 }
  5162. ]
  5163. },
  5164. "bone29": {
  5165. "rotate": [
  5166. { "time": 0, "angle": 0 },
  5167. { "time": 0.1667, "angle": 3.97 },
  5168. { "time": 0.3333, "angle": 0 },
  5169. { "time": 0.5667, "angle": 3.97 },
  5170. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5171. { "time": 1, "angle": 0 },
  5172. { "time": 1.3333, "angle": 3.97 },
  5173. { "time": 1.8333, "angle": 0 }
  5174. ],
  5175. "translate": [
  5176. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5177. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5178. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5179. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5180. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5181. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5182. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5183. { "time": 1.8333, "x": 0, "y": 0 }
  5184. ],
  5185. "scale": [
  5186. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5189. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5190. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5191. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5192. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5193. { "time": 1.8333, "x": 1, "y": 1 }
  5194. ]
  5195. },
  5196. "bone30": {
  5197. "rotate": [
  5198. { "time": 0, "angle": 0 },
  5199. { "time": 0.1667, "angle": 19.71 },
  5200. { "time": 0.3333, "angle": 0 },
  5201. { "time": 0.5667, "angle": 19.71 },
  5202. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5203. { "time": 1, "angle": 0 },
  5204. { "time": 1.3333, "angle": 19.71 },
  5205. { "time": 1.8333, "angle": 0 }
  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.5667, "x": 0, "y": 0, "curve": "stepped" },
  5212. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5213. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5214. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5215. { "time": 1.8333, "x": 0, "y": 0 }
  5216. ],
  5217. "scale": [
  5218. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5219. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5220. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5221. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5222. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5223. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5224. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5225. { "time": 1.8333, "x": 1, "y": 1 }
  5226. ]
  5227. },
  5228. "bone31": {
  5229. "rotate": [
  5230. { "time": 0, "angle": 0 },
  5231. { "time": 0.1667, "angle": -6.19 },
  5232. { "time": 0.3333, "angle": 0 },
  5233. { "time": 0.5667, "angle": -6.19 },
  5234. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5235. { "time": 1, "angle": 0 },
  5236. { "time": 1.3333, "angle": -6.19 },
  5237. { "time": 1.8333, "angle": 0 }
  5238. ],
  5239. "translate": [
  5240. { "time": 0, "x": 0, "y": 0 },
  5241. { "time": 0.1667, "x": -0.29, "y": 0.08 },
  5242. { "time": 0.3333, "x": 0, "y": 0 },
  5243. { "time": 0.5667, "x": -0.29, "y": 0.08 },
  5244. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5245. { "time": 1, "x": 0, "y": 0 },
  5246. { "time": 1.3333, "x": -0.29, "y": 0.08 },
  5247. { "time": 1.8333, "x": 0, "y": 0 }
  5248. ],
  5249. "scale": [
  5250. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5251. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5252. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5253. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5254. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5255. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5256. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5257. { "time": 1.8333, "x": 1, "y": 1 }
  5258. ]
  5259. },
  5260. "bone32": {
  5261. "rotate": [
  5262. { "time": 0, "angle": 0 },
  5263. { "time": 0.1667, "angle": 2.78 },
  5264. { "time": 0.3333, "angle": 0 },
  5265. { "time": 0.5667, "angle": 2.78 },
  5266. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5267. { "time": 1, "angle": 0 },
  5268. { "time": 1.3333, "angle": 2.78 },
  5269. { "time": 1.8333, "angle": 0 }
  5270. ],
  5271. "translate": [
  5272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5273. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5274. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5275. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5276. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5277. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5278. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5279. { "time": 1.8333, "x": 0, "y": 0 }
  5280. ],
  5281. "scale": [
  5282. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5283. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5284. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5285. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5286. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5287. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5288. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5289. { "time": 1.8333, "x": 1, "y": 1 }
  5290. ]
  5291. },
  5292. "bone33": {
  5293. "rotate": [
  5294. { "time": 0, "angle": 0 },
  5295. { "time": 0.1667, "angle": 3.38 },
  5296. { "time": 0.3333, "angle": 0 },
  5297. { "time": 0.5667, "angle": 3.38 },
  5298. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5299. { "time": 1, "angle": 0 },
  5300. { "time": 1.3333, "angle": 3.38 },
  5301. { "time": 1.8333, "angle": 0 }
  5302. ],
  5303. "translate": [
  5304. { "time": 0, "x": 0, "y": 0 },
  5305. { "time": 0.1667, "x": -1.61, "y": 0.33 },
  5306. { "time": 0.3333, "x": 0, "y": 0 },
  5307. { "time": 0.5667, "x": -1.61, "y": 0.33 },
  5308. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5309. { "time": 1, "x": 0, "y": 0 },
  5310. { "time": 1.3333, "x": -1.61, "y": 0.33 },
  5311. { "time": 1.8333, "x": 0, "y": 0 }
  5312. ],
  5313. "scale": [
  5314. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5315. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5316. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5317. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5318. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5319. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5320. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5321. { "time": 1.8333, "x": 1, "y": 1 }
  5322. ]
  5323. },
  5324. "bone34": {
  5325. "rotate": [
  5326. { "time": 0, "angle": 0, "curve": "stepped" },
  5327. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5328. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5329. { "time": 0.5667, "angle": 0, "curve": "stepped" },
  5330. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5331. { "time": 1, "angle": 0, "curve": "stepped" },
  5332. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5333. { "time": 1.8333, "angle": 0 }
  5334. ],
  5335. "translate": [
  5336. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5337. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5338. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5339. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5340. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5341. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5342. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5343. { "time": 1.8333, "x": 0, "y": 0 }
  5344. ],
  5345. "scale": [
  5346. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5347. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5348. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5349. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5350. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5351. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5352. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5353. { "time": 1.8333, "x": 1, "y": 1 }
  5354. ]
  5355. },
  5356. "bone35": {
  5357. "rotate": [
  5358. { "time": 0, "angle": 0 },
  5359. { "time": 0.1667, "angle": 1.61 },
  5360. { "time": 0.3333, "angle": 0 },
  5361. { "time": 0.5667, "angle": 1.61 },
  5362. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5363. { "time": 1, "angle": 0 },
  5364. { "time": 1.3333, "angle": 1.61 },
  5365. { "time": 1.8333, "angle": 0 }
  5366. ],
  5367. "translate": [
  5368. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5369. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5370. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5371. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5372. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5373. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5374. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5375. { "time": 1.8333, "x": 0, "y": 0 }
  5376. ],
  5377. "scale": [
  5378. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5379. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5380. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5381. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5382. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5383. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5384. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5385. { "time": 1.8333, "x": 1, "y": 1 }
  5386. ]
  5387. },
  5388. "bone36": {
  5389. "rotate": [
  5390. { "time": 0, "angle": 0 },
  5391. { "time": 0.1667, "angle": 0.38 },
  5392. { "time": 0.3333, "angle": 0 },
  5393. { "time": 0.5667, "angle": 0.38 },
  5394. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5395. { "time": 1, "angle": 0 },
  5396. { "time": 1.3333, "angle": 0.38 },
  5397. { "time": 1.8333, "angle": 0 }
  5398. ],
  5399. "translate": [
  5400. { "time": 0, "x": 0, "y": 0 },
  5401. { "time": 0.1667, "x": -0.21, "y": 0.05 },
  5402. { "time": 0.3333, "x": 0, "y": 0 },
  5403. { "time": 0.5667, "x": -0.21, "y": 0.05 },
  5404. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5405. { "time": 1, "x": 0, "y": 0 },
  5406. { "time": 1.3333, "x": -0.21, "y": 0.05 },
  5407. { "time": 1.8333, "x": 0, "y": 0 }
  5408. ],
  5409. "scale": [
  5410. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5411. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5412. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5413. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5414. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5415. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5416. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5417. { "time": 1.8333, "x": 1, "y": 1 }
  5418. ]
  5419. },
  5420. "bone37": {
  5421. "rotate": [
  5422. { "time": 0, "angle": 0 },
  5423. { "time": 0.1667, "angle": 6.36 },
  5424. { "time": 0.3333, "angle": 0 },
  5425. { "time": 0.5667, "angle": 6.36 },
  5426. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5427. { "time": 1, "angle": 0 },
  5428. { "time": 1.3333, "angle": 6.36 },
  5429. { "time": 1.8333, "angle": 0 }
  5430. ],
  5431. "translate": [
  5432. { "time": 0, "x": 0, "y": 0 },
  5433. { "time": 0.1667, "x": -0.56, "y": 0.34 },
  5434. { "time": 0.3333, "x": 0, "y": 0 },
  5435. { "time": 0.5667, "x": -0.56, "y": 0.34 },
  5436. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5437. { "time": 1, "x": 0, "y": 0 },
  5438. { "time": 1.3333, "x": -0.56, "y": 0.34 },
  5439. { "time": 1.8333, "x": 0, "y": 0 }
  5440. ],
  5441. "scale": [
  5442. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5443. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5444. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5445. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5446. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5447. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5448. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5449. { "time": 1.8333, "x": 1, "y": 1 }
  5450. ]
  5451. },
  5452. "bone38": {
  5453. "rotate": [
  5454. { "time": 0, "angle": 0 },
  5455. { "time": 0.1667, "angle": -1.93 },
  5456. { "time": 0.3333, "angle": 0 },
  5457. { "time": 0.5667, "angle": -1.93 },
  5458. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5459. { "time": 1, "angle": 0 },
  5460. { "time": 1.3333, "angle": -1.93 },
  5461. { "time": 1.8333, "angle": 0 }
  5462. ],
  5463. "translate": [
  5464. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5465. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5466. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5467. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5468. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5469. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5470. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5471. { "time": 1.8333, "x": 0, "y": 0 }
  5472. ],
  5473. "scale": [
  5474. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5475. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5476. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5477. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5478. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5479. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5480. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5481. { "time": 1.8333, "x": 1, "y": 1 }
  5482. ]
  5483. },
  5484. "bone39": {
  5485. "rotate": [
  5486. { "time": 0, "angle": 0 },
  5487. { "time": 0.1667, "angle": 11.55 },
  5488. { "time": 0.3333, "angle": 0 },
  5489. { "time": 0.5667, "angle": 11.55 },
  5490. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5491. { "time": 1, "angle": 0 },
  5492. { "time": 1.3333, "angle": 11.55 },
  5493. { "time": 1.8333, "angle": 0 }
  5494. ],
  5495. "translate": [
  5496. { "time": 0, "x": 0, "y": 0 },
  5497. { "time": 0.1667, "x": -0.68, "y": 0.02 },
  5498. { "time": 0.3333, "x": 0, "y": 0 },
  5499. { "time": 0.5667, "x": -0.68, "y": 0.02 },
  5500. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5501. { "time": 1, "x": 0, "y": 0 },
  5502. { "time": 1.3333, "x": -0.68, "y": 0.02 },
  5503. { "time": 1.8333, "x": 0, "y": 0 }
  5504. ],
  5505. "scale": [
  5506. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5507. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5508. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5509. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5510. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5511. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5512. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5513. { "time": 1.8333, "x": 1, "y": 1 }
  5514. ]
  5515. },
  5516. "bone40": {
  5517. "rotate": [
  5518. { "time": 0, "angle": 0 },
  5519. { "time": 0.1667, "angle": 2.21 },
  5520. { "time": 0.3333, "angle": 0 },
  5521. { "time": 0.5667, "angle": 2.21 },
  5522. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5523. { "time": 1, "angle": 0 },
  5524. { "time": 1.3333, "angle": 2.21 },
  5525. { "time": 1.8333, "angle": 0 }
  5526. ],
  5527. "translate": [
  5528. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5529. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5530. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5531. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5532. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5533. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5534. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5535. { "time": 1.8333, "x": 0, "y": 0 }
  5536. ],
  5537. "scale": [
  5538. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5539. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5540. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5541. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5542. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5543. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5544. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5545. { "time": 1.8333, "x": 1, "y": 1 }
  5546. ]
  5547. },
  5548. "bone41": {
  5549. "rotate": [
  5550. { "time": 0, "angle": 0 },
  5551. { "time": 0.1667, "angle": -6.1 },
  5552. { "time": 0.3333, "angle": 0 },
  5553. { "time": 0.5667, "angle": -6.1 },
  5554. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5555. { "time": 1, "angle": 0 },
  5556. { "time": 1.3333, "angle": -6.1 },
  5557. { "time": 1.8333, "angle": 0 }
  5558. ],
  5559. "translate": [
  5560. { "time": 0, "x": 0, "y": 0 },
  5561. { "time": 0.1667, "x": -0.91, "y": 0.5 },
  5562. { "time": 0.3333, "x": 0, "y": 0 },
  5563. { "time": 0.5667, "x": -0.91, "y": 0.5 },
  5564. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5565. { "time": 1, "x": 0, "y": 0 },
  5566. { "time": 1.3333, "x": -0.91, "y": 0.5 },
  5567. { "time": 1.8333, "x": 0, "y": 0 }
  5568. ],
  5569. "scale": [
  5570. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5571. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5572. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5573. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5574. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5575. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5576. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5577. { "time": 1.8333, "x": 1, "y": 1 }
  5578. ]
  5579. },
  5580. "bone42": {
  5581. "rotate": [
  5582. { "time": 0, "angle": 0 },
  5583. { "time": 0.1667, "angle": -1.66 },
  5584. { "time": 0.3333, "angle": 0 },
  5585. { "time": 0.5667, "angle": -1.66 },
  5586. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5587. { "time": 1, "angle": 0 },
  5588. { "time": 1.3333, "angle": -1.66 },
  5589. { "time": 1.8333, "angle": 0 }
  5590. ],
  5591. "translate": [
  5592. { "time": 0, "x": 0, "y": 0 },
  5593. { "time": 0.1667, "x": 0.27, "y": -0.05 },
  5594. { "time": 0.3333, "x": 0, "y": 0 },
  5595. { "time": 0.5667, "x": 0.27, "y": -0.05 },
  5596. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5597. { "time": 1, "x": 0, "y": 0 },
  5598. { "time": 1.3333, "x": 0.27, "y": -0.05 },
  5599. { "time": 1.8333, "x": 0, "y": 0 }
  5600. ],
  5601. "scale": [
  5602. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5603. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5604. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5605. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5606. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5607. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5608. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5609. { "time": 1.8333, "x": 1, "y": 1 }
  5610. ]
  5611. },
  5612. "bone43": {
  5613. "rotate": [
  5614. { "time": 0, "angle": 0 },
  5615. { "time": 0.1667, "angle": 4.84 },
  5616. { "time": 0.3333, "angle": 0 },
  5617. { "time": 0.5667, "angle": 4.84 },
  5618. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5619. { "time": 1, "angle": 0 },
  5620. { "time": 1.3333, "angle": 4.84 },
  5621. { "time": 1.8333, "angle": 0 }
  5622. ],
  5623. "translate": [
  5624. { "time": 0, "x": 0, "y": 0 },
  5625. { "time": 0.1667, "x": 0.51, "y": -0.11 },
  5626. { "time": 0.3333, "x": 0, "y": 0 },
  5627. { "time": 0.5667, "x": 0.51, "y": -0.11 },
  5628. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5629. { "time": 1, "x": 0, "y": 0 },
  5630. { "time": 1.3333, "x": 0.51, "y": -0.11 },
  5631. { "time": 1.8333, "x": 0, "y": 0 }
  5632. ],
  5633. "scale": [
  5634. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5635. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5636. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5637. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5638. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5639. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5640. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5641. { "time": 1.8333, "x": 1, "y": 1 }
  5642. ]
  5643. },
  5644. "bone44": {
  5645. "rotate": [
  5646. { "time": 0, "angle": 0 },
  5647. { "time": 0.1667, "angle": -19.55 },
  5648. { "time": 0.3333, "angle": 0 },
  5649. { "time": 0.5667, "angle": -19.55 },
  5650. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5651. { "time": 1, "angle": 0 },
  5652. { "time": 1.3333, "angle": -19.55 },
  5653. { "time": 1.8333, "angle": 0 }
  5654. ],
  5655. "translate": [
  5656. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5657. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5658. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5659. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5660. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5661. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5662. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5663. { "time": 1.8333, "x": 0, "y": 0 }
  5664. ],
  5665. "scale": [
  5666. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5667. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5668. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5669. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5670. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5671. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5672. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5673. { "time": 1.8333, "x": 1, "y": 1 }
  5674. ]
  5675. },
  5676. "bone45": {
  5677. "rotate": [
  5678. { "time": 0, "angle": 0 },
  5679. { "time": 0.1667, "angle": -4.52 },
  5680. { "time": 0.3333, "angle": 0 },
  5681. { "time": 0.5667, "angle": -4.52 },
  5682. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5683. { "time": 1, "angle": 0 },
  5684. { "time": 1.3333, "angle": -4.52 },
  5685. { "time": 1.8333, "angle": 0 }
  5686. ],
  5687. "translate": [
  5688. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5689. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5690. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5691. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5692. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5693. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5694. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5695. { "time": 1.8333, "x": 0, "y": 0 }
  5696. ],
  5697. "scale": [
  5698. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5699. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5700. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5701. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5702. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5703. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5704. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5705. { "time": 1.8333, "x": 1, "y": 1 }
  5706. ]
  5707. },
  5708. "bone46": {
  5709. "rotate": [
  5710. { "time": 0, "angle": 0 },
  5711. { "time": 0.1667, "angle": -4.52 },
  5712. { "time": 0.3333, "angle": 0 },
  5713. { "time": 0.5667, "angle": -4.52 },
  5714. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5715. { "time": 1, "angle": 0 },
  5716. { "time": 1.3333, "angle": -4.52 },
  5717. { "time": 1.8333, "angle": 0 }
  5718. ],
  5719. "translate": [
  5720. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5721. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5722. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5723. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5724. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5725. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5726. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5727. { "time": 1.8333, "x": 0, "y": 0 }
  5728. ],
  5729. "scale": [
  5730. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5731. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5732. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5733. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5734. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5735. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5736. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5737. { "time": 1.8333, "x": 1, "y": 1 }
  5738. ]
  5739. },
  5740. "bone47": {
  5741. "rotate": [
  5742. { "time": 0, "angle": 0 },
  5743. { "time": 0.1667, "angle": -19.04 },
  5744. { "time": 0.3333, "angle": 0 },
  5745. { "time": 0.5667, "angle": -19.04 },
  5746. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5747. { "time": 1, "angle": 0 },
  5748. { "time": 1.3333, "angle": -19.04 },
  5749. { "time": 1.8333, "angle": 0 }
  5750. ],
  5751. "translate": [
  5752. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5753. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5754. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5755. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5756. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5757. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5758. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5759. { "time": 1.8333, "x": 0, "y": 0 }
  5760. ],
  5761. "scale": [
  5762. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5763. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5764. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5765. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5766. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5767. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5768. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5769. { "time": 1.8333, "x": 1, "y": 1 }
  5770. ]
  5771. },
  5772. "bone48": {
  5773. "rotate": [
  5774. { "time": 0, "angle": 0 },
  5775. { "time": 0.1667, "angle": -5.77 },
  5776. { "time": 0.3333, "angle": 0 },
  5777. { "time": 0.5667, "angle": -5.77 },
  5778. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5779. { "time": 1, "angle": 0 },
  5780. { "time": 1.3333, "angle": -5.77 },
  5781. { "time": 1.8333, "angle": 0 }
  5782. ],
  5783. "translate": [
  5784. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5785. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5786. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5787. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5788. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5789. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5790. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5791. { "time": 1.8333, "x": 0, "y": 0 }
  5792. ],
  5793. "scale": [
  5794. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5795. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5796. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5797. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5798. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5799. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5800. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5801. { "time": 1.8333, "x": 1, "y": 1 }
  5802. ]
  5803. },
  5804. "bone49": {
  5805. "rotate": [
  5806. { "time": 0, "angle": 0 },
  5807. { "time": 0.1667, "angle": -5.77 },
  5808. { "time": 0.3333, "angle": 0 },
  5809. { "time": 0.5667, "angle": -5.77 },
  5810. { "time": 0.8, "angle": 0, "curve": "stepped" },
  5811. { "time": 1, "angle": 0 },
  5812. { "time": 1.3333, "angle": -5.77 },
  5813. { "time": 1.8333, "angle": 0 }
  5814. ],
  5815. "translate": [
  5816. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5817. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5818. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5819. { "time": 0.5667, "x": 0, "y": 0, "curve": "stepped" },
  5820. { "time": 0.8, "x": 0, "y": 0, "curve": "stepped" },
  5821. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5822. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5823. { "time": 1.8333, "x": 0, "y": 0 }
  5824. ],
  5825. "scale": [
  5826. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5827. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5828. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5829. { "time": 0.5667, "x": 1, "y": 1, "curve": "stepped" },
  5830. { "time": 0.8, "x": 1, "y": 1, "curve": "stepped" },
  5831. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5832. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5833. { "time": 1.8333, "x": 1, "y": 1 }
  5834. ]
  5835. },
  5836. "bone50": {
  5837. "rotate": [
  5838. { "time": 0, "angle": 0, "curve": "stepped" },
  5839. { "time": 0.1667, "angle": 0 },
  5840. { "time": 0.3, "angle": -3.07 },
  5841. { "time": 0.5333, "angle": -6.9 },
  5842. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5843. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5844. { "time": 1.8333, "angle": 0 }
  5845. ],
  5846. "translate": [
  5847. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5848. { "time": 0.1667, "x": 0, "y": 0 },
  5849. { "time": 0.3, "x": 0.85, "y": 0 },
  5850. { "time": 0.5333, "x": 1.92, "y": 0 },
  5851. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5852. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5853. { "time": 1.8333, "x": 0, "y": 0 }
  5854. ],
  5855. "scale": [
  5856. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5857. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5858. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  5859. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5860. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5861. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5862. { "time": 1.8333, "x": 1, "y": 1 }
  5863. ]
  5864. },
  5865. "bone51": {
  5866. "rotate": [
  5867. { "time": 0, "angle": 0 },
  5868. { "time": 0.1667, "angle": -15.88 },
  5869. { "time": 0.2333, "angle": -63.24 },
  5870. { "time": 0.3, "angle": -80.42 },
  5871. { "time": 0.3667, "angle": -49.31 },
  5872. { "time": 0.5333, "angle": -56.8 },
  5873. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5874. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5875. { "time": 1.8333, "angle": 0 }
  5876. ],
  5877. "translate": [
  5878. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5879. { "time": 0.1667, "x": 0, "y": 0 },
  5880. { "time": 0.3, "x": 0.5, "y": 4.5 },
  5881. { "time": 0.3667, "x": 3.68, "y": 8.25 },
  5882. { "time": 0.5333, "x": 1.7, "y": 4.93 },
  5883. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5884. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5885. { "time": 1.8333, "x": 0, "y": 0 }
  5886. ],
  5887. "scale": [
  5888. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5889. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5890. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  5891. { "time": 0.3667, "x": 1, "y": 1, "curve": "stepped" },
  5892. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5893. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5894. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5895. { "time": 1.8333, "x": 1, "y": 1 }
  5896. ]
  5897. },
  5898. "bone54": {
  5899. "rotate": [
  5900. { "time": 0, "angle": 0 },
  5901. { "time": 0.1667, "angle": 4.17 },
  5902. { "time": 0.3, "angle": 15.85 },
  5903. { "time": 0.5333, "angle": 18.18 },
  5904. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5905. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5906. { "time": 1.8333, "angle": 0 }
  5907. ],
  5908. "translate": [
  5909. { "time": 0, "x": 0, "y": 0 },
  5910. { "time": 0.1667, "x": 1.36, "y": 1.1 },
  5911. { "time": 0.3, "x": 0.47, "y": 1.15 },
  5912. { "time": 0.5333, "x": 3.22, "y": 0.97 },
  5913. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5914. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5915. { "time": 1.8333, "x": 0, "y": 0 }
  5916. ],
  5917. "scale": [
  5918. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5919. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5920. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  5921. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5922. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5923. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5924. { "time": 1.8333, "x": 1, "y": 1 }
  5925. ]
  5926. },
  5927. "bone57": {
  5928. "rotate": [
  5929. { "time": 0, "angle": 0 },
  5930. { "time": 0.1667, "angle": 5.34 },
  5931. { "time": 0.3, "angle": 5.62 },
  5932. { "time": 0.5333, "angle": 5.97 },
  5933. { "time": 0.9667, "angle": 0 },
  5934. { "time": 1.3333, "angle": 5.97 },
  5935. { "time": 1.8333, "angle": 0 }
  5936. ],
  5937. "translate": [
  5938. { "time": 0, "x": 0, "y": 0 },
  5939. { "time": 0.1667, "x": 1.73, "y": -6.26 },
  5940. { "time": 0.3, "x": 2.03, "y": -1.14 },
  5941. { "time": 0.5333, "x": 1.65, "y": -4.16, "curve": "stepped" },
  5942. { "time": 0.7333, "x": 1.65, "y": -4.16 },
  5943. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5944. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5945. { "time": 1.8333, "x": 0, "y": 0 }
  5946. ],
  5947. "scale": [
  5948. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5949. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5950. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  5951. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5952. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5953. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5954. { "time": 1.8333, "x": 1, "y": 1 }
  5955. ]
  5956. },
  5957. "bone58": {
  5958. "rotate": [
  5959. { "time": 0, "angle": 0 },
  5960. { "time": 0.3, "angle": 23.8 },
  5961. { "time": 0.5333, "angle": 6.71 },
  5962. { "time": 0.9667, "angle": 0 },
  5963. { "time": 1.3333, "angle": 15.21 },
  5964. { "time": 1.8333, "angle": 0 }
  5965. ],
  5966. "translate": [
  5967. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5968. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5969. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  5970. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  5971. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5972. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5973. { "time": 1.8333, "x": 0, "y": 0 }
  5974. ],
  5975. "scale": [
  5976. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5977. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5978. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  5979. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  5980. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5981. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5982. { "time": 1.8333, "x": 1, "y": 1 }
  5983. ]
  5984. },
  5985. "bone60": {
  5986. "rotate": [
  5987. { "time": 0, "angle": 0 },
  5988. { "time": 0.3, "angle": 17.03 },
  5989. { "time": 0.5333, "angle": 7.76 },
  5990. { "time": 0.9667, "angle": 0 },
  5991. { "time": 1.3333, "angle": 3.61 },
  5992. { "time": 1.8333, "angle": 0 }
  5993. ],
  5994. "translate": [
  5995. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5996. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5997. { "time": 0.3, "x": 0, "y": 0 },
  5998. { "time": 0.5333, "x": -2.31, "y": -2.29 },
  5999. { "time": 0.7333, "x": -4.79, "y": -0.33 },
  6000. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6001. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6002. { "time": 1.8333, "x": 0, "y": 0 }
  6003. ],
  6004. "scale": [
  6005. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6006. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6007. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  6008. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6009. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6010. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6011. { "time": 1.8333, "x": 1, "y": 1 }
  6012. ]
  6013. },
  6014. "bone61": {
  6015. "rotate": [
  6016. { "time": 0, "angle": 0 },
  6017. { "time": 0.3, "angle": 17.03 },
  6018. { "time": 0.5333, "angle": -8.9 },
  6019. { "time": 0.9667, "angle": 0 },
  6020. { "time": 1.3333, "angle": 3.61 },
  6021. { "time": 1.8333, "angle": 0 }
  6022. ],
  6023. "translate": [
  6024. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6025. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6026. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6027. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  6028. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6029. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6030. { "time": 1.8333, "x": 0, "y": 0 }
  6031. ],
  6032. "scale": [
  6033. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6034. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6035. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  6036. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6037. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6038. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6039. { "time": 1.8333, "x": 1, "y": 1 }
  6040. ]
  6041. },
  6042. "bone62": {
  6043. "rotate": [
  6044. { "time": 0, "angle": 0 },
  6045. { "time": 0.1667, "angle": -11.81 },
  6046. { "time": 0.3, "angle": 9.97 },
  6047. { "time": 0.5333, "angle": -6.15 },
  6048. { "time": 0.9667, "angle": 0 },
  6049. { "time": 1.3333, "angle": 3.61 },
  6050. { "time": 1.8333, "angle": 0 }
  6051. ],
  6052. "translate": [
  6053. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6054. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6055. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6056. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  6057. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6058. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6059. { "time": 1.8333, "x": 0, "y": 0 }
  6060. ],
  6061. "scale": [
  6062. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6063. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6064. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  6065. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6066. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6067. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6068. { "time": 1.8333, "x": 1, "y": 1 }
  6069. ]
  6070. },
  6071. "bone63": {
  6072. "rotate": [
  6073. { "time": 0, "angle": 0, "curve": "stepped" },
  6074. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6075. { "time": 0.3, "angle": 0, "curve": "stepped" },
  6076. { "time": 0.5333, "angle": 0, "curve": "stepped" },
  6077. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  6078. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6079. { "time": 1.8333, "angle": 0 }
  6080. ],
  6081. "translate": [
  6082. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6083. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6084. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6085. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  6086. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6087. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6088. { "time": 1.8333, "x": 0, "y": 0 }
  6089. ],
  6090. "scale": [
  6091. { "time": 0, "x": 1, "y": 1 },
  6092. { "time": 0.1667, "x": 0.632, "y": 1, "curve": "stepped" },
  6093. { "time": 0.8667, "x": 0.632, "y": 1 },
  6094. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6095. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6096. { "time": 1.8333, "x": 1, "y": 1 }
  6097. ]
  6098. },
  6099. "bone59": {
  6100. "rotate": [
  6101. { "time": 0, "angle": 0 },
  6102. { "time": 0.3, "angle": 23.8 },
  6103. { "time": 0.5333, "angle": 6.71 },
  6104. { "time": 0.9667, "angle": 0 },
  6105. { "time": 1.3333, "angle": 15.21 },
  6106. { "time": 1.8333, "angle": 0 }
  6107. ],
  6108. "translate": [
  6109. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6110. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6111. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6112. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  6113. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6114. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6115. { "time": 1.8333, "x": 0, "y": 0 }
  6116. ],
  6117. "scale": [
  6118. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6119. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6120. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  6121. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6122. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6123. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6124. { "time": 1.8333, "x": 1, "y": 1 }
  6125. ]
  6126. },
  6127. "bone": {
  6128. "rotate": [
  6129. { "time": 0, "angle": 0 }
  6130. ],
  6131. "translate": [
  6132. { "time": 0, "x": 0, "y": 0 }
  6133. ]
  6134. },
  6135. "bone55": {
  6136. "rotate": [
  6137. { "time": 0, "angle": 0 },
  6138. { "time": 0.1667, "angle": -2.27 },
  6139. { "time": 0.3, "angle": 30.73 },
  6140. { "time": 0.5333, "angle": 12.48 },
  6141. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  6142. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6143. { "time": 1.8333, "angle": 0 }
  6144. ],
  6145. "translate": [
  6146. { "time": 0, "x": 0, "y": 0 },
  6147. { "time": 0.1667, "x": -2.21, "y": -0.15 },
  6148. { "time": 0.3, "x": -1.01, "y": -0.05 },
  6149. { "time": 0.5333, "x": -0.5, "y": 0.13 },
  6150. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6151. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6152. { "time": 1.8333, "x": 0, "y": 0 }
  6153. ],
  6154. "scale": [
  6155. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6156. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6157. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  6158. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6159. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6160. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6161. { "time": 1.8333, "x": 1, "y": 1 }
  6162. ]
  6163. },
  6164. "bone52": {
  6165. "rotate": [
  6166. { "time": 0, "angle": 0 },
  6167. { "time": 0.1667, "angle": 25.02 },
  6168. { "time": 0.2333, "angle": 44.65 },
  6169. { "time": 0.3, "angle": 11.49 },
  6170. { "time": 0.3667, "angle": 47.88 },
  6171. { "time": 0.4, "angle": 53.35 },
  6172. { "time": 0.5333, "angle": 74.54 },
  6173. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  6174. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6175. { "time": 1.8333, "angle": 0 }
  6176. ],
  6177. "translate": [
  6178. { "time": 0, "x": 0, "y": 0 },
  6179. { "time": 0.1667, "x": -3.11, "y": 0.65 },
  6180. { "time": 0.3, "x": 0.67, "y": -0.07 },
  6181. { "time": 0.5333, "x": 2.87, "y": 2.85 },
  6182. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6183. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6184. { "time": 1.8333, "x": 0, "y": 0 }
  6185. ],
  6186. "scale": [
  6187. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6188. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6189. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  6190. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6191. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6192. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6193. { "time": 1.8333, "x": 1, "y": 1 }
  6194. ]
  6195. },
  6196. "bone53": {
  6197. "rotate": [
  6198. { "time": 0, "angle": 0, "curve": "stepped" },
  6199. { "time": 0.1667, "angle": 0 },
  6200. { "time": 0.3, "angle": -18.3 },
  6201. { "time": 0.3667, "angle": -22.88 },
  6202. { "time": 0.5333, "angle": 1.53 },
  6203. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  6204. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6205. { "time": 1.8333, "angle": 0 }
  6206. ],
  6207. "translate": [
  6208. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6209. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6210. { "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
  6211. { "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
  6212. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6213. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6214. { "time": 1.8333, "x": 0, "y": 0 }
  6215. ],
  6216. "scale": [
  6217. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6218. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6219. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  6220. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6221. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6222. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6223. { "time": 1.8333, "x": 1, "y": 1 }
  6224. ]
  6225. },
  6226. "root": {
  6227. "rotate": [
  6228. { "time": 0, "angle": 0 }
  6229. ],
  6230. "translate": [
  6231. { "time": 0, "x": 0, "y": 0 }
  6232. ],
  6233. "scale": [
  6234. { "time": 0, "x": 0.65, "y": 0.65 }
  6235. ]
  6236. },
  6237. "bone56": {
  6238. "rotate": [
  6239. { "time": 0, "angle": 0, "curve": "stepped" },
  6240. { "time": 0.1667, "angle": 0 },
  6241. { "time": 0.3, "angle": -3.06 },
  6242. { "time": 0.4667, "angle": -12.67 },
  6243. { "time": 0.5333, "angle": -16.29 },
  6244. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  6245. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6246. { "time": 1.8333, "angle": 0 }
  6247. ],
  6248. "translate": [
  6249. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6250. { "time": 0.1667, "x": 0, "y": 0 },
  6251. { "time": 0.3, "x": -0.75, "y": 0.2 },
  6252. { "time": 0.4667, "x": -1.31, "y": 0.35 },
  6253. { "time": 0.5333, "x": -1.69, "y": 0.45 },
  6254. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6255. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6256. { "time": 1.8333, "x": 0, "y": 0 }
  6257. ],
  6258. "scale": [
  6259. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6260. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6261. { "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
  6262. { "time": 0.4667, "x": 1, "y": 1, "curve": "stepped" },
  6263. { "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
  6264. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6265. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6266. { "time": 1.8333, "x": 1, "y": 1 }
  6267. ]
  6268. }
  6269. },
  6270. "deform": {
  6271. "default": {
  6272. "houba": {
  6273. "houba": [
  6274. {
  6275. "time": 0,
  6276. "offset": 136,
  6277. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  6278. "curve": "stepped"
  6279. },
  6280. {
  6281. "time": 0.1667,
  6282. "offset": 136,
  6283. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  6284. "curve": "stepped"
  6285. },
  6286. {
  6287. "time": 0.9667,
  6288. "offset": 136,
  6289. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  6290. "curve": "stepped"
  6291. },
  6292. {
  6293. "time": 1.3333,
  6294. "offset": 136,
  6295. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ],
  6296. "curve": "stepped"
  6297. },
  6298. {
  6299. "time": 1.8333,
  6300. "offset": 136,
  6301. "vertices": [ 1.25874, 2.14915, 1.25874, 2.14915 ]
  6302. }
  6303. ]
  6304. },
  6305. "shenti": {
  6306. "shenti": [
  6307. { "time": 0, "curve": "stepped" },
  6308. { "time": 0.1667 },
  6309. {
  6310. "time": 0.5333,
  6311. "offset": 116,
  6312. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
  6313. },
  6314. { "time": 0.9667 },
  6315. {
  6316. "time": 1.3333,
  6317. "offset": 116,
  6318. "vertices": [ 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.73977, 0.029, 0, 0, 0, 0, 0, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.75498, 0, 1.75397, -0.06048, 1.75475, 0.02924, 1.739, -0.05996, 1.73977, 0.029, 1.73977, 0.029 ]
  6319. },
  6320. { "time": 1.8333 }
  6321. ]
  6322. },
  6323. "youwaitao": {
  6324. "youwaitao": [
  6325. { "time": 0, "curve": "stepped" },
  6326. { "time": 0.1667 },
  6327. {
  6328. "time": 0.5333,
  6329. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
  6330. },
  6331. { "time": 0.9667 },
  6332. {
  6333. "time": 1.3333,
  6334. "vertices": [ 0.68356, 0.99187, 0.01677, 1.27272, 0.37637, 1.2159 ]
  6335. },
  6336. { "time": 1.8333 }
  6337. ]
  6338. },
  6339. "zuotui": {
  6340. "zuotui": [
  6341. { "time": 0.1667 },
  6342. {
  6343. "time": 0.3,
  6344. "vertices": [ -8.47338, -1.5576, -8.60969, 0.31296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -5.57873, -0.14952, -8.47338, -1.5576 ]
  6345. },
  6346. { "time": 0.3667 }
  6347. ]
  6348. },
  6349. "zuowaitao": {
  6350. "zuowaitao": [
  6351. { "time": 0, "curve": "stepped" },
  6352. { "time": 0.1667 },
  6353. {
  6354. "time": 0.5333,
  6355. "offset": 72,
  6356. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
  6357. },
  6358. { "time": 0.9667 },
  6359. {
  6360. "time": 1.3333,
  6361. "offset": 72,
  6362. "vertices": [ 0.73062, -1.28698, 0.5237, -1.44703, 0.27149, -1.37753 ]
  6363. },
  6364. { "time": 1.8333 }
  6365. ]
  6366. }
  6367. }
  6368. }
  6369. },
  6370. "walk1": {
  6371. "slots": {
  6372. "biyan": {
  6373. "attachment": [
  6374. { "time": 1.1, "name": "biyan" },
  6375. { "time": 1.2333, "name": null }
  6376. ]
  6377. },
  6378. "youyan1": {
  6379. "attachment": [
  6380. { "time": 1.1, "name": null },
  6381. { "time": 1.2333, "name": "youyan1" }
  6382. ]
  6383. },
  6384. "zuoyan1": {
  6385. "attachment": [
  6386. { "time": 1.1, "name": null },
  6387. { "time": 1.2333, "name": "zuoyan1" }
  6388. ]
  6389. }
  6390. },
  6391. "bones": {
  6392. "bone2": {
  6393. "rotate": [
  6394. { "time": 0, "angle": 0, "curve": "stepped" },
  6395. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6396. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6397. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6398. { "time": 1, "angle": 0, "curve": "stepped" },
  6399. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6400. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6401. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6402. { "time": 2, "angle": 0 }
  6403. ],
  6404. "translate": [
  6405. { "time": 0, "x": 0, "y": 1.51 },
  6406. { "time": 0.1667, "x": 0, "y": 0 },
  6407. { "time": 0.5, "x": 0, "y": 1.51 },
  6408. { "time": 0.6667, "x": 0, "y": 0 },
  6409. { "time": 1, "x": 0, "y": 1.51 },
  6410. { "time": 1.1667, "x": 0, "y": 0 },
  6411. { "time": 1.5, "x": 0, "y": 1.51 },
  6412. { "time": 1.6667, "x": 0, "y": 0 },
  6413. { "time": 2, "x": 0, "y": 1.51 }
  6414. ]
  6415. },
  6416. "bone3": {
  6417. "rotate": [
  6418. { "time": 0, "angle": 0, "curve": "stepped" },
  6419. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6420. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6421. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6422. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6423. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6424. { "time": 1, "angle": 0, "curve": "stepped" },
  6425. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6426. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6427. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6428. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6429. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6430. { "time": 2, "angle": 0 }
  6431. ],
  6432. "translate": [
  6433. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6434. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6435. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6436. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6437. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6438. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6439. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6440. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6441. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6442. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6443. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6444. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6445. { "time": 2, "x": 0, "y": 0 }
  6446. ],
  6447. "scale": [
  6448. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6449. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6450. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6451. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6452. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6453. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6454. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6455. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6456. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6457. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6458. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6459. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6460. { "time": 2, "x": 1, "y": 1 }
  6461. ]
  6462. },
  6463. "bone4": {
  6464. "rotate": [
  6465. { "time": 0, "angle": -1.59 }
  6466. ],
  6467. "translate": [
  6468. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6469. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6470. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6471. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6472. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6473. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6474. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6475. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6476. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6477. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6478. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6479. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6480. { "time": 2, "x": 0, "y": 0 }
  6481. ],
  6482. "scale": [
  6483. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6484. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6485. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6486. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6487. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6488. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6489. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6490. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6491. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6492. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6493. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6494. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6495. { "time": 2, "x": 1, "y": 1 }
  6496. ]
  6497. },
  6498. "bone5": {
  6499. "rotate": [
  6500. { "time": 0, "angle": 0, "curve": "stepped" },
  6501. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6502. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6503. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6504. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6505. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6506. { "time": 1, "angle": 0, "curve": "stepped" },
  6507. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6508. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6509. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6510. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6511. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6512. { "time": 2, "angle": 0 }
  6513. ],
  6514. "translate": [
  6515. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6516. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6517. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6518. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6519. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6520. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6521. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6522. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6523. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6524. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6525. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6526. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6527. { "time": 2, "x": 0, "y": 0 }
  6528. ],
  6529. "scale": [
  6530. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6531. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6532. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6533. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6534. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6535. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6536. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6537. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6538. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6539. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6540. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6541. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6542. { "time": 2, "x": 1, "y": 1 }
  6543. ]
  6544. },
  6545. "bone6": {
  6546. "rotate": [
  6547. {
  6548. "time": 0,
  6549. "angle": 63.39,
  6550. "curve": [ 0.25, 0, 0.75, 1 ]
  6551. },
  6552. {
  6553. "time": 0.5,
  6554. "angle": 22.34,
  6555. "curve": [ 0.25, 0, 0.75, 1 ]
  6556. },
  6557. {
  6558. "time": 1,
  6559. "angle": 63.39,
  6560. "curve": [ 0.25, 0, 0.75, 1 ]
  6561. },
  6562. {
  6563. "time": 1.5,
  6564. "angle": 22.34,
  6565. "curve": [ 0.25, 0, 0.75, 1 ]
  6566. },
  6567. { "time": 2, "angle": 63.39 }
  6568. ],
  6569. "translate": [
  6570. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6571. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6572. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6573. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6574. { "time": 2, "x": 0, "y": 0 }
  6575. ],
  6576. "scale": [
  6577. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6578. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6579. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6580. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6581. { "time": 2, "x": 1, "y": 1 }
  6582. ]
  6583. },
  6584. "bone7": {
  6585. "rotate": [
  6586. {
  6587. "time": 0,
  6588. "angle": -31.44,
  6589. "curve": [ 0.25, 0, 0.75, 1 ]
  6590. },
  6591. {
  6592. "time": 0.5,
  6593. "angle": -9,
  6594. "curve": [ 0.25, 0, 0.75, 1 ]
  6595. },
  6596. {
  6597. "time": 1,
  6598. "angle": -31.44,
  6599. "curve": [ 0.25, 0, 0.75, 1 ]
  6600. },
  6601. {
  6602. "time": 1.5,
  6603. "angle": -9,
  6604. "curve": [ 0.25, 0, 0.75, 1 ]
  6605. },
  6606. { "time": 2, "angle": -31.44 }
  6607. ],
  6608. "translate": [
  6609. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6610. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6611. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6612. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6613. { "time": 2, "x": 0, "y": 0 }
  6614. ],
  6615. "scale": [
  6616. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6617. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6618. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6619. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6620. { "time": 2, "x": 1, "y": 1 }
  6621. ]
  6622. },
  6623. "bone8": {
  6624. "rotate": [
  6625. { "time": 0, "angle": -14.39, "curve": "stepped" },
  6626. { "time": 0.1667, "angle": -14.39, "curve": "stepped" },
  6627. { "time": 0.3333, "angle": -14.39, "curve": "stepped" },
  6628. { "time": 0.5, "angle": -14.39, "curve": "stepped" },
  6629. { "time": 0.6667, "angle": -14.39, "curve": "stepped" },
  6630. { "time": 0.8333, "angle": -14.39, "curve": "stepped" },
  6631. { "time": 1, "angle": -14.39, "curve": "stepped" },
  6632. { "time": 1.1667, "angle": -14.39, "curve": "stepped" },
  6633. { "time": 1.3333, "angle": -14.39, "curve": "stepped" },
  6634. { "time": 1.5, "angle": -14.39, "curve": "stepped" },
  6635. { "time": 1.6667, "angle": -14.39, "curve": "stepped" },
  6636. { "time": 1.8333, "angle": -14.39, "curve": "stepped" },
  6637. { "time": 2, "angle": -14.39 }
  6638. ],
  6639. "translate": [
  6640. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6641. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6642. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6643. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6644. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6645. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6646. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6647. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6648. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6649. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6650. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6651. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6652. { "time": 2, "x": 0, "y": 0 }
  6653. ],
  6654. "scale": [
  6655. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6656. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6657. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6658. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6659. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6660. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6661. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6662. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6663. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6664. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6665. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6666. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6667. { "time": 2, "x": 1, "y": 1 }
  6668. ]
  6669. },
  6670. "bone9": {
  6671. "rotate": [
  6672. {
  6673. "time": 0,
  6674. "angle": -48.98,
  6675. "curve": [ 0.25, 0, 0.75, 1 ]
  6676. },
  6677. {
  6678. "time": 0.5,
  6679. "angle": -7.48,
  6680. "curve": [ 0.25, 0, 0.75, 1 ]
  6681. },
  6682. {
  6683. "time": 1,
  6684. "angle": -48.98,
  6685. "curve": [ 0.25, 0, 0.75, 1 ]
  6686. },
  6687. {
  6688. "time": 1.5,
  6689. "angle": -7.48,
  6690. "curve": [ 0.25, 0, 0.75, 1 ]
  6691. },
  6692. { "time": 2, "angle": -48.98 }
  6693. ],
  6694. "translate": [
  6695. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6696. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6697. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6698. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6699. { "time": 2, "x": 0, "y": 0 }
  6700. ],
  6701. "scale": [
  6702. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6703. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6704. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6705. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6706. { "time": 2, "x": 1, "y": 1 }
  6707. ]
  6708. },
  6709. "bone10": {
  6710. "rotate": [
  6711. {
  6712. "time": 0,
  6713. "angle": -19.51,
  6714. "curve": [ 0.25, 0, 0.75, 1 ]
  6715. },
  6716. {
  6717. "time": 0.5,
  6718. "angle": -19.12,
  6719. "curve": [ 0.25, 0, 0.75, 1 ]
  6720. },
  6721. {
  6722. "time": 1,
  6723. "angle": -19.51,
  6724. "curve": [ 0.25, 0, 0.75, 1 ]
  6725. },
  6726. {
  6727. "time": 1.5,
  6728. "angle": -19.12,
  6729. "curve": [ 0.25, 0, 0.75, 1 ]
  6730. },
  6731. { "time": 2, "angle": -19.51 }
  6732. ],
  6733. "translate": [
  6734. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6735. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6736. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6737. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6738. { "time": 2, "x": 0, "y": 0 }
  6739. ],
  6740. "scale": [
  6741. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6742. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6743. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6744. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6745. { "time": 2, "x": 1, "y": 1 }
  6746. ]
  6747. },
  6748. "bone11": {
  6749. "rotate": [
  6750. { "time": 0, "angle": -9.05, "curve": "stepped" },
  6751. { "time": 0.1667, "angle": -9.05, "curve": "stepped" },
  6752. { "time": 0.3333, "angle": -9.05, "curve": "stepped" },
  6753. { "time": 0.5, "angle": -9.05, "curve": "stepped" },
  6754. { "time": 0.6667, "angle": -9.05, "curve": "stepped" },
  6755. { "time": 0.8333, "angle": -9.05, "curve": "stepped" },
  6756. { "time": 1, "angle": -9.05, "curve": "stepped" },
  6757. { "time": 1.1667, "angle": -9.05, "curve": "stepped" },
  6758. { "time": 1.3333, "angle": -9.05, "curve": "stepped" },
  6759. { "time": 1.5, "angle": -9.05, "curve": "stepped" },
  6760. { "time": 1.6667, "angle": -9.05, "curve": "stepped" },
  6761. { "time": 1.8333, "angle": -9.05, "curve": "stepped" },
  6762. { "time": 2, "angle": -9.05 }
  6763. ],
  6764. "translate": [
  6765. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6766. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6767. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6768. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6769. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6770. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6771. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6772. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6773. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6774. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6775. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6776. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6777. { "time": 2, "x": 0, "y": 0 }
  6778. ],
  6779. "scale": [
  6780. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6781. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6782. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6783. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6784. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6785. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6786. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6787. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6788. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6789. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6790. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6791. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6792. { "time": 2, "x": 1, "y": 1 }
  6793. ]
  6794. },
  6795. "bone12": {
  6796. "rotate": [
  6797. { "time": 0, "angle": 0 },
  6798. { "time": 0.5, "angle": -6.34 },
  6799. { "time": 1, "angle": 0 },
  6800. { "time": 1.5, "angle": -6.34 },
  6801. { "time": 2, "angle": 0 }
  6802. ],
  6803. "translate": [
  6804. { "time": 0, "x": -1.44, "y": -1.02 },
  6805. { "time": 0.5, "x": 0, "y": 0 },
  6806. { "time": 1, "x": -1.44, "y": -1.02 },
  6807. { "time": 1.5, "x": 0, "y": 0 },
  6808. { "time": 2, "x": -1.44, "y": -1.02 }
  6809. ],
  6810. "scale": [
  6811. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6812. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6813. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6814. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6815. { "time": 2, "x": 1, "y": 1 }
  6816. ]
  6817. },
  6818. "bone13": {
  6819. "rotate": [
  6820. { "time": 0, "angle": 0 },
  6821. { "time": 0.5, "angle": -6.34 },
  6822. { "time": 1, "angle": 0 },
  6823. { "time": 1.5, "angle": -6.34 },
  6824. { "time": 2, "angle": 0 }
  6825. ],
  6826. "translate": [
  6827. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6828. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6829. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6830. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6831. { "time": 2, "x": 0, "y": 0 }
  6832. ],
  6833. "scale": [
  6834. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6835. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6836. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6837. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6838. { "time": 2, "x": 1, "y": 1 }
  6839. ]
  6840. },
  6841. "bone14": {
  6842. "rotate": [
  6843. { "time": 0, "angle": 0 },
  6844. { "time": 0.5, "angle": -6.34 },
  6845. { "time": 1, "angle": 0 },
  6846. { "time": 1.5, "angle": -6.34 },
  6847. { "time": 2, "angle": 0 }
  6848. ],
  6849. "translate": [
  6850. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6851. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6852. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6853. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6854. { "time": 2, "x": 0, "y": 0 }
  6855. ],
  6856. "scale": [
  6857. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6858. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6859. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6860. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6861. { "time": 2, "x": 1, "y": 1 }
  6862. ]
  6863. },
  6864. "bone15": {
  6865. "rotate": [
  6866. { "time": 0, "angle": 0 },
  6867. { "time": 0.5, "angle": 11.95 },
  6868. { "time": 1, "angle": 0 },
  6869. { "time": 1.5, "angle": 11.95 },
  6870. { "time": 2, "angle": 0 }
  6871. ],
  6872. "translate": [
  6873. { "time": 0, "x": -0.04, "y": 3.02 },
  6874. { "time": 0.5, "x": 0.09, "y": -0.38 },
  6875. { "time": 1, "x": -0.04, "y": 3.02 },
  6876. { "time": 1.5, "x": 0.09, "y": -0.38 },
  6877. { "time": 2, "x": -0.04, "y": 3.02 }
  6878. ],
  6879. "scale": [
  6880. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6881. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6882. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6883. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6884. { "time": 2, "x": 1, "y": 1 }
  6885. ]
  6886. },
  6887. "bone16": {
  6888. "rotate": [
  6889. { "time": 0, "angle": 0 },
  6890. { "time": 0.5, "angle": 5.44 },
  6891. { "time": 1, "angle": 0 },
  6892. { "time": 1.5, "angle": 5.44 },
  6893. { "time": 2, "angle": 0 }
  6894. ],
  6895. "translate": [
  6896. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6897. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6898. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6899. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6900. { "time": 2, "x": 0, "y": 0 }
  6901. ],
  6902. "scale": [
  6903. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6904. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6905. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6906. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6907. { "time": 2, "x": 1, "y": 1 }
  6908. ]
  6909. },
  6910. "bone17": {
  6911. "rotate": [
  6912. { "time": 0, "angle": 0 },
  6913. { "time": 0.5, "angle": 5.44 },
  6914. { "time": 1, "angle": 0 },
  6915. { "time": 1.5, "angle": 5.44 },
  6916. { "time": 2, "angle": 0 }
  6917. ],
  6918. "translate": [
  6919. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6920. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6921. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6922. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6923. { "time": 2, "x": 0, "y": 0 }
  6924. ],
  6925. "scale": [
  6926. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6927. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6928. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6929. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6930. { "time": 2, "x": 1, "y": 1 }
  6931. ]
  6932. },
  6933. "bone18": {
  6934. "rotate": [
  6935. { "time": 0, "angle": 0, "curve": "stepped" },
  6936. { "time": 1, "angle": 0, "curve": "stepped" },
  6937. { "time": 2, "angle": 0 }
  6938. ],
  6939. "translate": [
  6940. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6941. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6942. { "time": 2, "x": 0, "y": 0 }
  6943. ],
  6944. "scale": [
  6945. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6946. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6947. { "time": 2, "x": 1, "y": 1 }
  6948. ]
  6949. },
  6950. "bone19": {
  6951. "rotate": [
  6952. { "time": 0, "angle": 0, "curve": "stepped" },
  6953. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6954. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6955. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6956. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6957. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  6958. { "time": 1, "angle": 0, "curve": "stepped" },
  6959. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  6960. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  6961. { "time": 1.5, "angle": 0, "curve": "stepped" },
  6962. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  6963. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  6964. { "time": 2, "angle": 0 }
  6965. ],
  6966. "translate": [
  6967. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6968. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6969. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6970. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6971. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6972. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6973. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6974. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  6975. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  6976. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  6977. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  6978. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  6979. { "time": 2, "x": 0, "y": 0 }
  6980. ],
  6981. "scale": [
  6982. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6983. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6984. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6985. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6986. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6987. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  6988. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  6989. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  6990. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  6991. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  6992. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  6993. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  6994. { "time": 2, "x": 1, "y": 1 }
  6995. ]
  6996. },
  6997. "bone20": {
  6998. "rotate": [
  6999. { "time": 0, "angle": 0, "curve": "stepped" },
  7000. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7001. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7002. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7003. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7004. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7005. { "time": 1, "angle": 0, "curve": "stepped" },
  7006. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7007. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  7008. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7009. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7010. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7011. { "time": 2, "angle": 0 }
  7012. ],
  7013. "translate": [
  7014. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7015. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7016. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7017. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7018. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7019. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7020. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7021. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  7022. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  7023. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7024. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7025. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7026. { "time": 2, "x": 0, "y": 0 }
  7027. ],
  7028. "scale": [
  7029. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7030. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7031. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7032. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7033. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7034. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7035. { "time": 1, "x": 1, "y": 1 },
  7036. { "time": 1.1, "x": 0.514, "y": 1, "curve": "stepped" },
  7037. { "time": 1.2333, "x": 0.514, "y": 1 },
  7038. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7039. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7040. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7041. { "time": 2, "x": 1, "y": 1 }
  7042. ]
  7043. },
  7044. "bone21": {
  7045. "rotate": [
  7046. { "time": 0, "angle": 0, "curve": "stepped" },
  7047. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7048. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7049. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7050. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7051. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7052. { "time": 1, "angle": 0, "curve": "stepped" },
  7053. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7054. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  7055. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7056. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7057. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7058. { "time": 2, "angle": 0 }
  7059. ],
  7060. "translate": [
  7061. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7062. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7063. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7064. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7065. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7066. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7067. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7068. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  7069. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  7070. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7071. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7072. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7073. { "time": 2, "x": 0, "y": 0 }
  7074. ],
  7075. "scale": [
  7076. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7077. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7078. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7079. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7080. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7081. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7082. { "time": 1, "x": 1, "y": 1 },
  7083. { "time": 1.1, "x": 0.591, "y": 1, "curve": "stepped" },
  7084. { "time": 1.2333, "x": 0.591, "y": 1 },
  7085. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7086. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7087. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7088. { "time": 2, "x": 1, "y": 1 }
  7089. ]
  7090. },
  7091. "bone22": {
  7092. "rotate": [
  7093. { "time": 0, "angle": 0, "curve": "stepped" },
  7094. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7095. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7096. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7097. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7098. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7099. { "time": 1, "angle": 0, "curve": "stepped" },
  7100. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7101. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  7102. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7103. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7104. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7105. { "time": 2, "angle": 0 }
  7106. ],
  7107. "translate": [
  7108. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7109. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7110. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7111. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7112. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7113. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7114. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7115. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  7116. { "time": 1.2333, "x": 0, "y": 0, "curve": "stepped" },
  7117. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7118. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7119. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7120. { "time": 2, "x": 0, "y": 0 }
  7121. ],
  7122. "scale": [
  7123. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7124. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7125. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7126. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7127. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7128. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7129. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7130. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  7131. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  7132. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7133. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7134. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7135. { "time": 2, "x": 1, "y": 1 }
  7136. ]
  7137. },
  7138. "bone23": {
  7139. "rotate": [
  7140. { "time": 0, "angle": 0, "curve": "stepped" },
  7141. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7142. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7143. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7144. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7145. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7146. { "time": 1, "angle": 0, "curve": "stepped" },
  7147. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7148. { "time": 1.2333, "angle": 0, "curve": "stepped" },
  7149. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7150. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7151. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7152. { "time": 2, "angle": 0 }
  7153. ],
  7154. "translate": [
  7155. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7156. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7157. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7158. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7159. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7160. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7161. { "time": 1, "x": 0, "y": 0 },
  7162. { "time": 1.1, "x": -0.84, "y": -0.01, "curve": "stepped" },
  7163. { "time": 1.2333, "x": -0.84, "y": -0.01 },
  7164. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7165. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7166. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7167. { "time": 2, "x": 0, "y": 0 }
  7168. ],
  7169. "scale": [
  7170. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7171. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7172. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7173. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7174. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7175. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7176. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7177. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  7178. { "time": 1.2333, "x": 1, "y": 1, "curve": "stepped" },
  7179. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7180. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7181. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7182. { "time": 2, "x": 1, "y": 1 }
  7183. ]
  7184. },
  7185. "bone24": {
  7186. "rotate": [
  7187. { "time": 0, "angle": 0 },
  7188. { "time": 0.5, "angle": -3.38 },
  7189. { "time": 1, "angle": 0 },
  7190. { "time": 1.5, "angle": -3.38 },
  7191. { "time": 2, "angle": 0 }
  7192. ],
  7193. "translate": [
  7194. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7195. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7196. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7197. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7198. { "time": 2, "x": 0, "y": 0 }
  7199. ],
  7200. "scale": [
  7201. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7202. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7203. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7204. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7205. { "time": 2, "x": 1, "y": 1 }
  7206. ]
  7207. },
  7208. "bone25": {
  7209. "rotate": [
  7210. { "time": 0, "angle": 0 },
  7211. { "time": 0.5, "angle": -3.38 },
  7212. { "time": 1, "angle": 0 },
  7213. { "time": 1.5, "angle": -3.38 },
  7214. { "time": 2, "angle": 0 }
  7215. ],
  7216. "translate": [
  7217. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7218. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7219. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7220. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7221. { "time": 2, "x": 0, "y": 0 }
  7222. ],
  7223. "scale": [
  7224. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7225. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7226. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7227. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7228. { "time": 2, "x": 1, "y": 1 }
  7229. ]
  7230. },
  7231. "bone26": {
  7232. "rotate": [
  7233. { "time": 0, "angle": 0 },
  7234. { "time": 0.5, "angle": -3.38 },
  7235. { "time": 1, "angle": 0 },
  7236. { "time": 1.5, "angle": -3.38 },
  7237. { "time": 2, "angle": 0 }
  7238. ],
  7239. "translate": [
  7240. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7241. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7242. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7243. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7244. { "time": 2, "x": 0, "y": 0 }
  7245. ],
  7246. "scale": [
  7247. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7248. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7249. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7250. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7251. { "time": 2, "x": 1, "y": 1 }
  7252. ]
  7253. },
  7254. "bone27": {
  7255. "rotate": [
  7256. { "time": 0, "angle": 0 },
  7257. { "time": 0.5, "angle": 3.97 },
  7258. { "time": 1, "angle": 0 },
  7259. { "time": 1.5, "angle": 3.97 },
  7260. { "time": 2, "angle": 0 }
  7261. ],
  7262. "translate": [
  7263. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7264. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7265. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7266. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7267. { "time": 2, "x": 0, "y": 0 }
  7268. ],
  7269. "scale": [
  7270. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7271. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7272. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7273. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7274. { "time": 2, "x": 1, "y": 1 }
  7275. ]
  7276. },
  7277. "bone28": {
  7278. "rotate": [
  7279. { "time": 0, "angle": 0 },
  7280. { "time": 0.5, "angle": 3.97 },
  7281. { "time": 1, "angle": 0 },
  7282. { "time": 1.5, "angle": 3.97 },
  7283. { "time": 2, "angle": 0 }
  7284. ],
  7285. "translate": [
  7286. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7287. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7288. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7289. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7290. { "time": 2, "x": 0, "y": 0 }
  7291. ],
  7292. "scale": [
  7293. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7294. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7295. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7296. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7297. { "time": 2, "x": 1, "y": 1 }
  7298. ]
  7299. },
  7300. "bone29": {
  7301. "rotate": [
  7302. { "time": 0, "angle": 0 },
  7303. { "time": 0.5, "angle": 3.97 },
  7304. { "time": 1, "angle": 0 },
  7305. { "time": 1.5, "angle": 3.97 },
  7306. { "time": 2, "angle": 0 }
  7307. ],
  7308. "translate": [
  7309. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7310. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7311. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7312. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7313. { "time": 2, "x": 0, "y": 0 }
  7314. ],
  7315. "scale": [
  7316. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7317. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7318. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7319. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7320. { "time": 2, "x": 1, "y": 1 }
  7321. ]
  7322. },
  7323. "bone30": {
  7324. "rotate": [
  7325. { "time": 0, "angle": 0 },
  7326. { "time": 0.5, "angle": 19.71 },
  7327. { "time": 1, "angle": 0 },
  7328. { "time": 1.5, "angle": 19.71 },
  7329. { "time": 2, "angle": 0 }
  7330. ],
  7331. "translate": [
  7332. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7333. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7334. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7335. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7336. { "time": 2, "x": 0, "y": 0 }
  7337. ],
  7338. "scale": [
  7339. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7340. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7341. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7342. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7343. { "time": 2, "x": 1, "y": 1 }
  7344. ]
  7345. },
  7346. "bone31": {
  7347. "rotate": [
  7348. { "time": 0, "angle": 0 },
  7349. { "time": 0.5, "angle": -6.19 },
  7350. { "time": 1, "angle": 0 },
  7351. { "time": 1.5, "angle": -6.19 },
  7352. { "time": 2, "angle": 0 }
  7353. ],
  7354. "translate": [
  7355. { "time": 0, "x": 0, "y": 0 },
  7356. { "time": 0.5, "x": -0.29, "y": 0.08 },
  7357. { "time": 1, "x": 0, "y": 0 },
  7358. { "time": 1.5, "x": -0.29, "y": 0.08 },
  7359. { "time": 2, "x": 0, "y": 0 }
  7360. ],
  7361. "scale": [
  7362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7363. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7364. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7365. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7366. { "time": 2, "x": 1, "y": 1 }
  7367. ]
  7368. },
  7369. "bone32": {
  7370. "rotate": [
  7371. { "time": 0, "angle": 0 },
  7372. { "time": 0.5, "angle": 2.78 },
  7373. { "time": 1, "angle": 0 },
  7374. { "time": 1.5, "angle": 2.78 },
  7375. { "time": 2, "angle": 0 }
  7376. ],
  7377. "translate": [
  7378. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7379. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7380. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7381. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7382. { "time": 2, "x": 0, "y": 0 }
  7383. ],
  7384. "scale": [
  7385. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7386. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7387. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7388. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7389. { "time": 2, "x": 1, "y": 1 }
  7390. ]
  7391. },
  7392. "bone33": {
  7393. "rotate": [
  7394. { "time": 0, "angle": -10.54 },
  7395. { "time": 0.5, "angle": 3.38 },
  7396. { "time": 1, "angle": -10.54 },
  7397. { "time": 1.5, "angle": 3.38 },
  7398. { "time": 2, "angle": -10.54 }
  7399. ],
  7400. "translate": [
  7401. { "time": 0, "x": 0, "y": 0 },
  7402. { "time": 0.5, "x": -1.61, "y": 0.33 },
  7403. { "time": 1, "x": 0, "y": 0 },
  7404. { "time": 1.5, "x": -1.61, "y": 0.33 },
  7405. { "time": 2, "x": 0, "y": 0 }
  7406. ],
  7407. "scale": [
  7408. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7409. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7410. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7411. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7412. { "time": 2, "x": 1, "y": 1 }
  7413. ]
  7414. },
  7415. "bone34": {
  7416. "rotate": [
  7417. { "time": 0, "angle": 0, "curve": "stepped" },
  7418. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7419. { "time": 1, "angle": 0, "curve": "stepped" },
  7420. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7421. { "time": 2, "angle": 0 }
  7422. ],
  7423. "translate": [
  7424. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7425. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7426. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7427. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7428. { "time": 2, "x": 0, "y": 0 }
  7429. ],
  7430. "scale": [
  7431. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7432. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7433. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7434. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7435. { "time": 2, "x": 1, "y": 1 }
  7436. ]
  7437. },
  7438. "bone35": {
  7439. "rotate": [
  7440. { "time": 0, "angle": 0 },
  7441. { "time": 0.5, "angle": 1.61 },
  7442. { "time": 1, "angle": 0 },
  7443. { "time": 1.5, "angle": 1.61 },
  7444. { "time": 2, "angle": 0 }
  7445. ],
  7446. "translate": [
  7447. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7448. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7449. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7450. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7451. { "time": 2, "x": 0, "y": 0 }
  7452. ],
  7453. "scale": [
  7454. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7455. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7456. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7457. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7458. { "time": 2, "x": 1, "y": 1 }
  7459. ]
  7460. },
  7461. "bone36": {
  7462. "rotate": [
  7463. { "time": 0, "angle": -6.52 },
  7464. { "time": 0.5, "angle": 0.38 },
  7465. { "time": 1, "angle": -6.52 },
  7466. { "time": 1.5, "angle": 0.38 },
  7467. { "time": 2, "angle": -6.52 }
  7468. ],
  7469. "translate": [
  7470. { "time": 0, "x": 0, "y": 0 },
  7471. { "time": 0.5, "x": -0.21, "y": 0.05 },
  7472. { "time": 1, "x": 0, "y": 0 },
  7473. { "time": 1.5, "x": -0.21, "y": 0.05 },
  7474. { "time": 2, "x": 0, "y": 0 }
  7475. ],
  7476. "scale": [
  7477. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7478. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7479. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7480. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7481. { "time": 2, "x": 1, "y": 1 }
  7482. ]
  7483. },
  7484. "bone37": {
  7485. "rotate": [
  7486. { "time": 0, "angle": 0 },
  7487. { "time": 0.5, "angle": 6.36 },
  7488. { "time": 1, "angle": 0 },
  7489. { "time": 1.5, "angle": 6.36 },
  7490. { "time": 2, "angle": 0 }
  7491. ],
  7492. "translate": [
  7493. { "time": 0, "x": 0, "y": 0 },
  7494. { "time": 0.5, "x": -0.56, "y": 0.34 },
  7495. { "time": 1, "x": 0, "y": 0 },
  7496. { "time": 1.5, "x": -0.56, "y": 0.34 },
  7497. { "time": 2, "x": 0, "y": 0 }
  7498. ],
  7499. "scale": [
  7500. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7501. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7502. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7503. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7504. { "time": 2, "x": 1, "y": 1 }
  7505. ]
  7506. },
  7507. "bone38": {
  7508. "rotate": [
  7509. { "time": 0, "angle": 0 },
  7510. { "time": 0.5, "angle": -1.93 },
  7511. { "time": 1, "angle": 0 },
  7512. { "time": 1.5, "angle": -1.93 },
  7513. { "time": 2, "angle": 0 }
  7514. ],
  7515. "translate": [
  7516. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7517. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7518. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7519. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7520. { "time": 2, "x": 0, "y": 0 }
  7521. ],
  7522. "scale": [
  7523. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7524. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7525. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7526. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7527. { "time": 2, "x": 1, "y": 1 }
  7528. ]
  7529. },
  7530. "bone39": {
  7531. "rotate": [
  7532. { "time": 0, "angle": -10.65 },
  7533. { "time": 0.5, "angle": 11.55 },
  7534. { "time": 1, "angle": -10.65 },
  7535. { "time": 1.5, "angle": 11.55 },
  7536. { "time": 2, "angle": -10.65 }
  7537. ],
  7538. "translate": [
  7539. { "time": 0, "x": 0, "y": 0 },
  7540. { "time": 0.5, "x": -0.68, "y": 0.02 },
  7541. { "time": 1, "x": 0, "y": 0 },
  7542. { "time": 1.5, "x": -0.68, "y": 0.02 },
  7543. { "time": 2, "x": 0, "y": 0 }
  7544. ],
  7545. "scale": [
  7546. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7547. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7548. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7549. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7550. { "time": 2, "x": 1, "y": 1 }
  7551. ]
  7552. },
  7553. "bone40": {
  7554. "rotate": [
  7555. { "time": 0, "angle": 0 },
  7556. { "time": 0.5, "angle": 2.21 },
  7557. { "time": 1, "angle": 0 },
  7558. { "time": 1.5, "angle": 2.21 },
  7559. { "time": 2, "angle": 0 }
  7560. ],
  7561. "translate": [
  7562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7563. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7564. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7565. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7566. { "time": 2, "x": 0, "y": 0 }
  7567. ],
  7568. "scale": [
  7569. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7570. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7571. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7572. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7573. { "time": 2, "x": 1, "y": 1 }
  7574. ]
  7575. },
  7576. "bone41": {
  7577. "rotate": [
  7578. { "time": 0, "angle": 0 },
  7579. { "time": 0.5, "angle": -6.1 },
  7580. { "time": 1, "angle": 0 },
  7581. { "time": 1.5, "angle": -6.1 },
  7582. { "time": 2, "angle": 0 }
  7583. ],
  7584. "translate": [
  7585. { "time": 0, "x": 0, "y": 0 },
  7586. { "time": 0.5, "x": -0.91, "y": 0.5 },
  7587. { "time": 1, "x": 0, "y": 0 },
  7588. { "time": 1.5, "x": -0.91, "y": 0.5 },
  7589. { "time": 2, "x": 0, "y": 0 }
  7590. ],
  7591. "scale": [
  7592. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7593. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7594. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7595. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7596. { "time": 2, "x": 1, "y": 1 }
  7597. ]
  7598. },
  7599. "bone42": {
  7600. "rotate": [
  7601. { "time": 0, "angle": 0 },
  7602. { "time": 0.5, "angle": -1.66 },
  7603. { "time": 1, "angle": 0 },
  7604. { "time": 1.5, "angle": -1.66 },
  7605. { "time": 2, "angle": 0 }
  7606. ],
  7607. "translate": [
  7608. { "time": 0, "x": 0, "y": 0 },
  7609. { "time": 0.5, "x": 0.27, "y": -0.05 },
  7610. { "time": 1, "x": 0, "y": 0 },
  7611. { "time": 1.5, "x": 0.27, "y": -0.05 },
  7612. { "time": 2, "x": 0, "y": 0 }
  7613. ],
  7614. "scale": [
  7615. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7616. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7617. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7618. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7619. { "time": 2, "x": 1, "y": 1 }
  7620. ]
  7621. },
  7622. "bone43": {
  7623. "rotate": [
  7624. { "time": 0, "angle": 0 },
  7625. { "time": 0.5, "angle": 4.84 },
  7626. { "time": 1, "angle": 0 },
  7627. { "time": 1.5, "angle": 4.84 },
  7628. { "time": 2, "angle": 0 }
  7629. ],
  7630. "translate": [
  7631. { "time": 0, "x": 0, "y": 0 },
  7632. { "time": 0.5, "x": 0.51, "y": -0.11 },
  7633. { "time": 1, "x": 0, "y": 0 },
  7634. { "time": 1.5, "x": 0.51, "y": -0.11 },
  7635. { "time": 2, "x": 0, "y": 0 }
  7636. ],
  7637. "scale": [
  7638. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7639. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7640. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7641. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7642. { "time": 2, "x": 1, "y": 1 }
  7643. ]
  7644. },
  7645. "bone44": {
  7646. "rotate": [
  7647. { "time": 0, "angle": 0 },
  7648. { "time": 0.5, "angle": -19.55 },
  7649. { "time": 1, "angle": 0 },
  7650. { "time": 1.5, "angle": -19.55 },
  7651. { "time": 2, "angle": 0 }
  7652. ],
  7653. "translate": [
  7654. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7655. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7656. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7657. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7658. { "time": 2, "x": 0, "y": 0 }
  7659. ],
  7660. "scale": [
  7661. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7662. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7663. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7664. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7665. { "time": 2, "x": 1, "y": 1 }
  7666. ]
  7667. },
  7668. "bone45": {
  7669. "rotate": [
  7670. { "time": 0, "angle": 0 },
  7671. { "time": 0.5, "angle": -4.52 },
  7672. { "time": 1, "angle": 0 },
  7673. { "time": 1.5, "angle": -4.52 },
  7674. { "time": 2, "angle": 0 }
  7675. ],
  7676. "translate": [
  7677. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7678. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7679. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7680. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7681. { "time": 2, "x": 0, "y": 0 }
  7682. ],
  7683. "scale": [
  7684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7685. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7686. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7687. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7688. { "time": 2, "x": 1, "y": 1 }
  7689. ]
  7690. },
  7691. "bone46": {
  7692. "rotate": [
  7693. { "time": 0, "angle": 0 },
  7694. { "time": 0.5, "angle": -4.52 },
  7695. { "time": 1, "angle": 0 },
  7696. { "time": 1.5, "angle": -4.52 },
  7697. { "time": 2, "angle": 0 }
  7698. ],
  7699. "translate": [
  7700. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7701. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7702. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7703. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7704. { "time": 2, "x": 0, "y": 0 }
  7705. ],
  7706. "scale": [
  7707. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7708. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7709. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7710. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7711. { "time": 2, "x": 1, "y": 1 }
  7712. ]
  7713. },
  7714. "bone47": {
  7715. "rotate": [
  7716. { "time": 0, "angle": 0 },
  7717. { "time": 0.5, "angle": -19.04 },
  7718. { "time": 1, "angle": 0 },
  7719. { "time": 1.5, "angle": -19.04 },
  7720. { "time": 2, "angle": 0 }
  7721. ],
  7722. "translate": [
  7723. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7724. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7725. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7726. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7727. { "time": 2, "x": 0, "y": 0 }
  7728. ],
  7729. "scale": [
  7730. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7731. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7732. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7733. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7734. { "time": 2, "x": 1, "y": 1 }
  7735. ]
  7736. },
  7737. "bone48": {
  7738. "rotate": [
  7739. { "time": 0, "angle": 0 },
  7740. { "time": 0.5, "angle": -5.77 },
  7741. { "time": 1, "angle": 0 },
  7742. { "time": 1.5, "angle": -5.77 },
  7743. { "time": 2, "angle": 0 }
  7744. ],
  7745. "translate": [
  7746. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7747. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7748. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7749. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7750. { "time": 2, "x": 0, "y": 0 }
  7751. ],
  7752. "scale": [
  7753. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7754. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7755. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7756. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7757. { "time": 2, "x": 1, "y": 1 }
  7758. ]
  7759. },
  7760. "bone49": {
  7761. "rotate": [
  7762. { "time": 0, "angle": 0 },
  7763. { "time": 0.5, "angle": -5.77 },
  7764. { "time": 1, "angle": 0 },
  7765. { "time": 1.5, "angle": -5.77 },
  7766. { "time": 2, "angle": 0 }
  7767. ],
  7768. "translate": [
  7769. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7770. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7771. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7772. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7773. { "time": 2, "x": 0, "y": 0 }
  7774. ],
  7775. "scale": [
  7776. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7777. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7778. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7779. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7780. { "time": 2, "x": 1, "y": 1 }
  7781. ]
  7782. },
  7783. "bone50": {
  7784. "rotate": [
  7785. { "time": 0, "angle": 0, "curve": "stepped" },
  7786. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7787. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7788. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7789. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7790. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7791. { "time": 1, "angle": 0, "curve": "stepped" },
  7792. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7793. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7794. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7795. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7796. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7797. { "time": 2, "angle": 0 }
  7798. ],
  7799. "translate": [
  7800. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7801. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7802. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7803. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7804. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7805. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7806. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7807. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7808. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7809. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7810. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7811. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7812. { "time": 2, "x": 0, "y": 0 }
  7813. ],
  7814. "scale": [
  7815. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7816. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7817. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7818. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7819. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7820. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7821. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7822. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7823. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7824. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7825. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7826. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7827. { "time": 2, "x": 1, "y": 1 }
  7828. ]
  7829. },
  7830. "bone51": {
  7831. "rotate": [
  7832. { "time": 0, "angle": -13.57 },
  7833. { "time": 0.1667, "angle": -3.06 },
  7834. { "time": 0.3333, "angle": 4.99 },
  7835. { "time": 0.5, "angle": 27.27 },
  7836. { "time": 0.6667, "angle": 13.66 },
  7837. { "time": 0.8333, "angle": 0.04 },
  7838. { "time": 1, "angle": -13.57 },
  7839. { "time": 1.1667, "angle": -3.06 },
  7840. { "time": 1.3333, "angle": 4.99 },
  7841. { "time": 1.5, "angle": 27.27 },
  7842. { "time": 1.6667, "angle": 13.66 },
  7843. { "time": 1.8333, "angle": 0.04 },
  7844. { "time": 2, "angle": -13.57 }
  7845. ],
  7846. "translate": [
  7847. { "time": 0, "x": 0, "y": 0 },
  7848. { "time": 0.1667, "x": 4.53, "y": -0.19 },
  7849. { "time": 0.3333, "x": 14.27, "y": -0.68 },
  7850. { "time": 0.5, "x": 19.77, "y": 0.43 },
  7851. { "time": 0.6667, "x": 11.97, "y": 1.56 },
  7852. { "time": 0.8333, "x": 2.78, "y": 1.44 },
  7853. { "time": 1, "x": 0, "y": 0 },
  7854. { "time": 1.1667, "x": 4.53, "y": -0.19 },
  7855. { "time": 1.3333, "x": 14.27, "y": -0.68 },
  7856. { "time": 1.5, "x": 19.77, "y": 0.43 },
  7857. { "time": 1.6667, "x": 11.97, "y": 1.56 },
  7858. { "time": 1.8333, "x": 2.78, "y": 1.44 },
  7859. { "time": 2, "x": 0, "y": 0 }
  7860. ],
  7861. "scale": [
  7862. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7863. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7864. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7865. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7866. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7867. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7868. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7869. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7870. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7871. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7872. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7873. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7874. { "time": 2, "x": 1, "y": 1 }
  7875. ]
  7876. },
  7877. "bone54": {
  7878. "rotate": [
  7879. { "time": 0, "angle": 21.47 },
  7880. { "time": 0.1667, "angle": 12 },
  7881. { "time": 0.3333, "angle": -10.75 },
  7882. { "time": 0.5, "angle": -25.93 },
  7883. { "time": 0.6667, "angle": -6.72 },
  7884. { "time": 0.8333, "angle": 7.37 },
  7885. { "time": 1, "angle": 21.47 },
  7886. { "time": 1.1667, "angle": 12 },
  7887. { "time": 1.3333, "angle": -10.75 },
  7888. { "time": 1.5, "angle": -25.93 },
  7889. { "time": 1.6667, "angle": -6.72 },
  7890. { "time": 1.8333, "angle": 7.37 },
  7891. { "time": 2, "angle": 21.47 }
  7892. ],
  7893. "translate": [
  7894. { "time": 0, "x": 0, "y": 0 },
  7895. { "time": 0.1667, "x": -10.1, "y": 1.93 },
  7896. { "time": 0.3333, "x": -16.08, "y": 2.45 },
  7897. { "time": 0.5, "x": -18.74, "y": -0.53 },
  7898. { "time": 0.6667, "x": -14.04, "y": -0.34 },
  7899. { "time": 0.8333, "x": -6.25, "y": -0.18 },
  7900. { "time": 1, "x": 0, "y": 0 },
  7901. { "time": 1.1667, "x": -10.1, "y": 1.93 },
  7902. { "time": 1.3333, "x": -16.08, "y": 2.45 },
  7903. { "time": 1.5, "x": -18.74, "y": -0.53 },
  7904. { "time": 1.6667, "x": -14.04, "y": -0.34 },
  7905. { "time": 1.8333, "x": -6.25, "y": -0.18 },
  7906. { "time": 2, "x": 0, "y": 0 }
  7907. ],
  7908. "scale": [
  7909. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7910. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7911. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7912. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7913. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7914. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7915. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7916. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7917. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7918. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7919. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7920. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7921. { "time": 2, "x": 1, "y": 1 }
  7922. ]
  7923. },
  7924. "bone57": {
  7925. "rotate": [
  7926. { "time": 0, "angle": 0 },
  7927. { "time": 0.5, "angle": 3.25 },
  7928. { "time": 1, "angle": 0 },
  7929. { "time": 1.5, "angle": 3.25 },
  7930. { "time": 2, "angle": 0 }
  7931. ],
  7932. "translate": [
  7933. { "time": 0, "x": -0.99, "y": -0.36 },
  7934. { "time": 0.5, "x": 3.8, "y": 1.07 },
  7935. { "time": 1, "x": -0.99, "y": -0.36 },
  7936. { "time": 1.5, "x": 3.8, "y": 1.07 },
  7937. { "time": 2, "x": -0.99, "y": -0.36 }
  7938. ],
  7939. "scale": [
  7940. { "time": 0, "x": 1, "y": 0.924 },
  7941. { "time": 0.5, "x": 1, "y": 1 },
  7942. { "time": 1, "x": 1, "y": 0.924 },
  7943. { "time": 1.5, "x": 1, "y": 1 },
  7944. { "time": 2, "x": 1, "y": 0.924 }
  7945. ]
  7946. },
  7947. "bone58": {
  7948. "rotate": [
  7949. { "time": 0, "angle": 2.05 },
  7950. { "time": 0.5, "angle": 22.29 },
  7951. { "time": 1, "angle": 2.05 },
  7952. { "time": 1.5, "angle": 22.29 },
  7953. { "time": 2, "angle": 2.05 }
  7954. ],
  7955. "translate": [
  7956. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7957. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7958. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7959. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7960. { "time": 2, "x": 0, "y": 0 }
  7961. ],
  7962. "scale": [
  7963. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7964. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7965. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7966. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7967. { "time": 2, "x": 1, "y": 1 }
  7968. ]
  7969. },
  7970. "bone60": {
  7971. "rotate": [
  7972. { "time": 0, "angle": 0 },
  7973. { "time": 0.5, "angle": -1 },
  7974. { "time": 1, "angle": 0 },
  7975. { "time": 1.5, "angle": -1 },
  7976. { "time": 2, "angle": 0 }
  7977. ],
  7978. "translate": [
  7979. { "time": 0, "x": 0, "y": 0 },
  7980. { "time": 0.5, "x": 2, "y": -1.06 },
  7981. { "time": 1, "x": 0, "y": 0 },
  7982. { "time": 1.5, "x": 2, "y": -1.06 },
  7983. { "time": 2, "x": 0, "y": 0 }
  7984. ],
  7985. "scale": [
  7986. { "time": 0, "x": 1, "y": 1 },
  7987. { "time": 0.1667, "x": 1, "y": 0.895 },
  7988. { "time": 0.5, "x": 1, "y": 1 },
  7989. { "time": 0.6667, "x": 1, "y": 0.895 },
  7990. { "time": 1, "x": 1, "y": 1 },
  7991. { "time": 1.1667, "x": 1, "y": 0.895 },
  7992. { "time": 1.5, "x": 1, "y": 1 },
  7993. { "time": 1.6667, "x": 1, "y": 0.895 },
  7994. { "time": 2, "x": 1, "y": 1 }
  7995. ]
  7996. },
  7997. "bone61": {
  7998. "rotate": [
  7999. { "time": 0, "angle": 0 },
  8000. { "time": 0.5, "angle": 18.14 },
  8001. { "time": 1, "angle": 0 },
  8002. { "time": 1.5, "angle": 18.14 },
  8003. { "time": 2, "angle": 0 }
  8004. ],
  8005. "translate": [
  8006. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8007. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8008. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8009. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8010. { "time": 2, "x": 0, "y": 0 }
  8011. ],
  8012. "scale": [
  8013. { "time": 0, "x": 1, "y": 1 },
  8014. { "time": 0.5, "x": 1.05, "y": 1 },
  8015. { "time": 1, "x": 1, "y": 1 },
  8016. { "time": 1.5, "x": 1.05, "y": 1 },
  8017. { "time": 2, "x": 1, "y": 1 }
  8018. ]
  8019. },
  8020. "bone62": {
  8021. "rotate": [
  8022. { "time": 0, "angle": 0 },
  8023. { "time": 0.5, "angle": 18.14 },
  8024. { "time": 1, "angle": 0 },
  8025. { "time": 1.5, "angle": 18.14 },
  8026. { "time": 2, "angle": 0 }
  8027. ],
  8028. "translate": [
  8029. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8030. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8031. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8032. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8033. { "time": 2, "x": 0, "y": 0 }
  8034. ],
  8035. "scale": [
  8036. { "time": 0, "x": 1, "y": 1 },
  8037. { "time": 0.5, "x": 1.05, "y": 1 },
  8038. { "time": 1, "x": 1, "y": 1 },
  8039. { "time": 1.5, "x": 1.05, "y": 1 },
  8040. { "time": 2, "x": 1, "y": 1 }
  8041. ]
  8042. },
  8043. "bone63": {
  8044. "rotate": [
  8045. { "time": 0, "angle": 0, "curve": "stepped" },
  8046. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8047. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8048. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8049. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8050. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8051. { "time": 1, "angle": 0, "curve": "stepped" },
  8052. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8053. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8054. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8055. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8056. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8057. { "time": 2, "angle": 0 }
  8058. ],
  8059. "translate": [
  8060. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8061. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8062. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8063. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8064. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8065. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8066. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8067. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8068. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8069. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8070. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8071. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8072. { "time": 2, "x": 0, "y": 0 }
  8073. ],
  8074. "scale": [
  8075. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8076. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8077. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8078. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8079. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8080. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8081. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8082. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8083. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8084. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8085. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8086. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8087. { "time": 2, "x": 1, "y": 1 }
  8088. ]
  8089. },
  8090. "root": {
  8091. "rotate": [
  8092. { "time": 0, "angle": 0 }
  8093. ],
  8094. "translate": [
  8095. { "time": 0, "x": 0, "y": 0 }
  8096. ],
  8097. "scale": [
  8098. { "time": 0, "x": 0.65, "y": 0.65 }
  8099. ]
  8100. },
  8101. "bone": {
  8102. "rotate": [
  8103. { "time": 0, "angle": 0 }
  8104. ],
  8105. "translate": [
  8106. { "time": 0, "x": 0, "y": 0 }
  8107. ]
  8108. },
  8109. "bone52": {
  8110. "rotate": [
  8111. { "time": 0, "angle": 0 },
  8112. { "time": 0.1667, "angle": 11.36 },
  8113. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8114. { "time": 0.5, "angle": 0 },
  8115. { "time": 0.6667, "angle": 30.77 },
  8116. { "time": 0.8333, "angle": 21.67 },
  8117. { "time": 1, "angle": 0 },
  8118. { "time": 1.1667, "angle": 11.36 },
  8119. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8120. { "time": 1.5, "angle": 0 },
  8121. { "time": 1.6667, "angle": 30.77 },
  8122. { "time": 1.8333, "angle": 21.67 },
  8123. { "time": 2, "angle": 0 }
  8124. ],
  8125. "translate": [
  8126. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8127. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8128. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8129. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8130. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8131. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8132. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8133. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8134. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8135. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8136. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8137. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8138. { "time": 2, "x": 0, "y": 0 }
  8139. ],
  8140. "scale": [
  8141. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8142. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8143. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8144. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8145. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8146. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8147. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8148. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8149. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8150. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8151. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8152. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8153. { "time": 2, "x": 1, "y": 1 }
  8154. ]
  8155. },
  8156. "bone53": {
  8157. "rotate": [
  8158. { "time": 0, "angle": -4.28 },
  8159. { "time": 0.1667, "angle": -2.97 },
  8160. { "time": 0.3333, "angle": -2.25 },
  8161. { "time": 0.5, "angle": 0 },
  8162. { "time": 0.6667, "angle": -10.49 },
  8163. { "time": 0.8333, "angle": 0 },
  8164. { "time": 1, "angle": -4.28 },
  8165. { "time": 1.1667, "angle": -2.97 },
  8166. { "time": 1.3333, "angle": -2.25 },
  8167. { "time": 1.5, "angle": 0 },
  8168. { "time": 1.6667, "angle": -10.49 },
  8169. { "time": 1.8333, "angle": 0 },
  8170. { "time": 2, "angle": -4.28 }
  8171. ],
  8172. "translate": [
  8173. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8174. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8175. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8176. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8177. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8178. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8179. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8180. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8181. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8182. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8183. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8184. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8185. { "time": 2, "x": 0, "y": 0 }
  8186. ],
  8187. "scale": [
  8188. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8189. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8190. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8191. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8192. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8193. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8194. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8195. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8196. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8197. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8198. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8199. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8200. { "time": 2, "x": 1, "y": 1 }
  8201. ]
  8202. },
  8203. "bone55": {
  8204. "rotate": [
  8205. { "time": 0, "angle": 0 },
  8206. { "time": 0.1667, "angle": 27.13 },
  8207. { "time": 0.3333, "angle": 29.96 },
  8208. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8209. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8210. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8211. { "time": 1, "angle": 0 },
  8212. { "time": 1.1667, "angle": 27.13 },
  8213. { "time": 1.3333, "angle": 29.96 },
  8214. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8215. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8216. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8217. { "time": 2, "angle": 0 }
  8218. ],
  8219. "translate": [
  8220. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8221. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8222. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8223. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8224. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8225. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8226. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8227. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8228. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8229. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8230. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8231. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8232. { "time": 2, "x": 0, "y": 0 }
  8233. ],
  8234. "scale": [
  8235. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8236. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8237. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8238. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8239. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8240. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8241. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8242. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8243. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8244. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8245. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8246. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8247. { "time": 2, "x": 1, "y": 1 }
  8248. ]
  8249. },
  8250. "bone56": {
  8251. "rotate": [
  8252. { "time": 0, "angle": 0, "curve": "stepped" },
  8253. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8254. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8255. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8256. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8257. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8258. { "time": 1, "angle": 0, "curve": "stepped" },
  8259. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8260. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8261. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8262. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8263. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8264. { "time": 2, "angle": 0 }
  8265. ],
  8266. "translate": [
  8267. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8268. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8269. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8270. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8271. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8272. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8273. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8274. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8275. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8276. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8277. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8278. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8279. { "time": 2, "x": 0, "y": 0 }
  8280. ],
  8281. "scale": [
  8282. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8283. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8284. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8285. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8286. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8287. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8288. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8289. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8290. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8291. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8292. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8293. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8294. { "time": 2, "x": 1, "y": 1 }
  8295. ]
  8296. },
  8297. "bone59": {
  8298. "rotate": [
  8299. { "time": 0, "angle": 0 },
  8300. { "time": 0.5, "angle": 22.29 },
  8301. { "time": 1, "angle": 0 },
  8302. { "time": 1.5, "angle": 22.29 },
  8303. { "time": 2, "angle": 0 }
  8304. ],
  8305. "translate": [
  8306. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8307. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8308. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8309. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8310. { "time": 2, "x": 0, "y": 0 }
  8311. ],
  8312. "scale": [
  8313. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8314. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8315. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8316. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8317. { "time": 2, "x": 1, "y": 1 }
  8318. ]
  8319. }
  8320. },
  8321. "deform": {
  8322. "default": {
  8323. "houba": {
  8324. "houba": [
  8325. {
  8326. "time": 0,
  8327. "offset": 136,
  8328. "vertices": [ 2.09681, 3.58011, 2.09681, 3.58011 ]
  8329. }
  8330. ]
  8331. },
  8332. "kudang": {
  8333. "kudang": [
  8334. { "time": 0 },
  8335. {
  8336. "time": 0.1667,
  8337. "vertices": [ -3.75499, 6.44196, -4.11608, 10.75137, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199, -0.26461, 1.9846 ]
  8338. },
  8339. {
  8340. "time": 0.2333,
  8341. "vertices": [ -2.7406, 5.23575, -2.38211, 12.79957, -0.52919, -8.87116, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
  8342. },
  8343. {
  8344. "time": 0.3333,
  8345. "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -0.5895, -4.38849, -1.63749, -3.79898, -0.3275, -0.87601, -0.393, 2.22699 ]
  8346. },
  8347. {
  8348. "time": 0.5,
  8349. "offset": 2,
  8350. "vertices": [ -1.04799, 1.57201, 0, -0.52923, -0.2646, -1.32306, 0, -1.36799 ]
  8351. },
  8352. {
  8353. "time": 0.6667,
  8354. "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -1.1085, -6.04647, -1.4645, -3.55399, -0.3275, -0.786, -0.393, 2.22699 ]
  8355. },
  8356. {
  8357. "time": 0.7333,
  8358. "vertices": [ -2.74056, 6.5588, -2.24982, 10.68265, 0, -7.41579, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
  8359. },
  8360. {
  8361. "time": 0.8333,
  8362. "vertices": [ -3.27499, 2.88197, -2.44532, 7.33599, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199 ]
  8363. },
  8364. { "time": 1 },
  8365. {
  8366. "time": 1.1667,
  8367. "vertices": [ -3.75499, 6.44196, -4.11608, 10.75137, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199, -0.26461, 1.9846 ]
  8368. },
  8369. {
  8370. "time": 1.2333,
  8371. "vertices": [ -2.7406, 5.23575, -2.38211, 12.79957, -0.52919, -8.87116, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
  8372. },
  8373. {
  8374. "time": 1.3333,
  8375. "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -0.5895, -4.38849, -1.63749, -3.79898, -0.3275, -0.87601, -0.393, 2.22699 ]
  8376. },
  8377. {
  8378. "time": 1.5,
  8379. "offset": 2,
  8380. "vertices": [ -1.04799, 1.57201, 0, -0.52923, -0.2646, -1.32306, 0, -1.36799 ]
  8381. },
  8382. {
  8383. "time": 1.6667,
  8384. "vertices": [ -1.5065, 3.14397, -1.09165, 7.205, -1.1085, -6.04647, -1.4645, -3.55399, -0.3275, -0.786, -0.393, 2.22699 ]
  8385. },
  8386. {
  8387. "time": 1.7333,
  8388. "vertices": [ -2.74056, 6.5588, -2.24982, 10.68265, 0, -7.41579, -1.83399, -6.00098, -0.524, -1.25759, -0.1572, 0.8908 ]
  8389. },
  8390. {
  8391. "time": 1.8333,
  8392. "vertices": [ -3.27499, 2.88197, -2.44532, 7.33599, 0.393, -5.109, -1.965, -3.14399, -0.655, -1.57199 ]
  8393. },
  8394. { "time": 2 }
  8395. ]
  8396. },
  8397. "shenti": {
  8398. "shenti": [
  8399. { "time": 0 },
  8400. {
  8401. "time": 0.5,
  8402. "offset": 58,
  8403. "vertices": [ 0.05843, 1.4268, -0.0238, 1.4278, 0, 0, 0, 0, -0.00494, -0.73229, 0.0122, -0.7322, -0.00494, -0.73229, 0.0122, -0.7322, 0.02032, -0.73202, -0.00494, -0.73229, 0.0122, -0.7322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0092, 1.42796, 0, 0, 0, 0, 1.28471, 0.76095, 1.31014, 0.71623, 1.22298, 0.78897, -0.0238, 1.4278, 0.0092, 1.42796, 0.0092, 1.42796, 0.0092, 1.42796, 1.32684, 1.12387, 1.21618, 1.1969, 1.28735, 1.16893, 1.32684, 1.12387, 1.21618, 1.1969, 0.05843, 1.4268, -0.0238, 1.4278, -0.0238, 1.4278 ]
  8404. },
  8405. { "time": 1 },
  8406. {
  8407. "time": 1.5,
  8408. "offset": 58,
  8409. "vertices": [ 0.05843, 1.4268, -0.0238, 1.4278, 0, 0, 0, 0, -0.0074, -1.09842, 0.0183, -1.09829, -0.0074, -1.09842, 0.0183, -1.09829, 0.03049, -1.09802, -0.0074, -1.09842, 0.0183, -1.09829, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0092, 1.42796, 0, 0, 0, 0, 1.27455, 1.12696, 1.31261, 1.08236, 1.21688, 1.15506, -0.0238, 1.4278, 0.0092, 1.42796, 0.0092, 1.42796, 0.0092, 1.42796, 1.32931, 1.49001, 1.21008, 1.56299, 1.27719, 1.53493, 1.32931, 1.49001, 1.21008, 1.56299, 0.05843, 1.4268, -0.0238, 1.4278, -0.0238, 1.4278 ]
  8410. },
  8411. { "time": 2 }
  8412. ]
  8413. },
  8414. "youshou": {
  8415. "youshou": [
  8416. {
  8417. "time": 0,
  8418. "offset": 58,
  8419. "vertices": [ 3.04257, -4.49463, 0.52781, -3.29185 ]
  8420. },
  8421. {
  8422. "time": 0.5,
  8423. "offset": 56,
  8424. "vertices": [ -4.55589, 1.64039, 0.18951, -2.52586, -3.28525, -0.27938 ]
  8425. },
  8426. {
  8427. "time": 1,
  8428. "offset": 56,
  8429. "vertices": [ -4.82079, -0.38274, 0.51251, -4.55801, 0.52781, -3.29185 ]
  8430. },
  8431. {
  8432. "time": 1.5,
  8433. "offset": 56,
  8434. "vertices": [ -4.55589, 1.64039, 0.18951, -2.52586, -3.28525, -0.27938 ]
  8435. },
  8436. {
  8437. "time": 2,
  8438. "offset": 58,
  8439. "vertices": [ 3.04257, -4.49463, 0.52781, -3.29185 ]
  8440. }
  8441. ]
  8442. },
  8443. "youtui": {
  8444. "youtui": [
  8445. {
  8446. "time": 0,
  8447. "offset": 56,
  8448. "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ],
  8449. "curve": "stepped"
  8450. },
  8451. {
  8452. "time": 1,
  8453. "offset": 56,
  8454. "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ],
  8455. "curve": "stepped"
  8456. },
  8457. {
  8458. "time": 2,
  8459. "offset": 56,
  8460. "vertices": [ -10.3145, -2.30119, -6.05282, -0.07814 ]
  8461. }
  8462. ]
  8463. },
  8464. "zuotui": {
  8465. "zuotui": [
  8466. {
  8467. "time": 0,
  8468. "offset": 60,
  8469. "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ],
  8470. "curve": "stepped"
  8471. },
  8472. {
  8473. "time": 1,
  8474. "offset": 60,
  8475. "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ],
  8476. "curve": "stepped"
  8477. },
  8478. {
  8479. "time": 2,
  8480. "offset": 60,
  8481. "vertices": [ -3.76515, -0.5964, -5.22754, 0.9269 ]
  8482. }
  8483. ]
  8484. }
  8485. }
  8486. }
  8487. }
  8488. }
  8489. }