60004.json 325 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729
  1. {
  2. "skeleton": { "hash": "mPWMVKXzZd0cZhzcd+Tq5KA5CKk", "spine": "3.6.53", "width": 477.96, "height": 210.84, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 1.69, "y": 52.11 },
  6. { "name": "bone2", "parent": "bone", "length": 16.31, "rotation": 90, "y": -0.23 },
  7. { "name": "bone3", "parent": "bone2", "length": 43.36, "rotation": -1.85, "x": 16.31 },
  8. { "name": "bone4", "parent": "bone3", "length": 7.93, "rotation": 0.16, "x": 43.36 },
  9. { "name": "bone5", "parent": "bone4", "length": 51.26, "rotation": 1.95, "x": 6.09, "y": -0.05 },
  10. { "name": "bone6", "parent": "bone5", "x": 42.68, "y": 4.54 },
  11. { "name": "bone7", "parent": "bone5", "x": 31.99, "y": 4.25 },
  12. { "name": "bone8", "parent": "bone5", "length": 8.19, "rotation": 2.08, "x": 29.88, "y": 17.29 },
  13. { "name": "bone9", "parent": "bone5", "length": 8.69, "rotation": 0.84, "x": 28.25, "y": -9.76 },
  14. { "name": "bone10", "parent": "bone5", "x": 9.44, "y": 4.35 },
  15. { "name": "bone11", "parent": "bone3", "length": 8.35, "rotation": -179.3, "x": 40.12, "y": 12.25, "color": "19c91dff" },
  16. { "name": "bone12", "parent": "bone11", "length": 11.54, "rotation": -2.17, "x": 8.35, "color": "19c91dff" },
  17. { "name": "bone13", "parent": "bone12", "length": 10.37, "rotation": 0.55, "x": 11.54, "color": "19c91dff" },
  18. { "name": "bone14", "parent": "bone13", "length": 12.21, "rotation": -0.37, "x": 10.37, "color": "19c91dff" },
  19. { "name": "bone15", "parent": "bone14", "length": 12.36, "rotation": 1.59, "x": 12.21, "color": "19c91dff" },
  20. { "name": "bone16", "parent": "bone3", "length": 5, "rotation": -178.15, "x": 41.79, "y": -8.08, "color": "cb22edff" },
  21. { "name": "bone17", "parent": "bone16", "length": 9.42, "rotation": 7.13, "x": 6.35, "color": "cb22edff" },
  22. { "name": "bone18", "parent": "bone17", "length": 8.88, "rotation": -2.81, "x": 10.42, "y": -0.12, "color": "cb22edff" },
  23. { "name": "bone19", "parent": "bone18", "length": 10.22, "rotation": 0.37, "x": 9.71, "y": -0.06, "color": "cb22edff" },
  24. { "name": "bone20", "parent": "bone19", "length": 10.21, "rotation": -0.93, "x": 10.55, "y": -0.03, "color": "cb22edff" },
  25. { "name": "bone21", "parent": "bone20", "length": 9.26, "rotation": 3.5, "x": 10.21, "color": "cb22edff" },
  26. { "name": "bone22", "parent": "bone3", "length": 22.1, "rotation": 148.88, "x": 37.36, "y": 15.17, "color": "dcdf19ff" },
  27. { "name": "bone23", "parent": "bone22", "length": 22.65, "rotation": -0.6, "x": 22.1, "color": "dcdf19ff" },
  28. { "name": "bone24", "parent": "bone23", "length": 13.9, "rotation": -5.09, "x": 22.65, "color": "dcdf19ff" },
  29. { "name": "bone25", "parent": "bone3", "length": 25.55, "rotation": -141.66, "x": 38.85, "y": -15.53, "color": "15b0dfff" },
  30. { "name": "bone26", "parent": "bone25", "length": 22.38, "rotation": 1.23, "x": 25.55, "color": "15b0dfff" },
  31. { "name": "bone27", "parent": "bone26", "length": 12.83, "rotation": -2.79, "x": 22.38, "color": "15b0dfff" },
  32. { "name": "bone28", "parent": "bone", "length": 11.69, "rotation": -89.18, "x": 0.24, "y": -1.23 },
  33. { "name": "bone29", "parent": "bone", "length": 21.44, "rotation": -94.47, "x": -12.95, "y": -4.4, "color": "ea4110ff" },
  34. { "name": "bone30", "parent": "bone29", "length": 20.22, "rotation": 2.1, "x": 21.44, "color": "ea4110ff" },
  35. { "name": "bone31", "parent": "bone30", "length": 12.56, "rotation": -73.78, "x": 20.22, "color": "ea4110ff" },
  36. { "name": "bone32", "parent": "bone", "length": 20.87, "rotation": -90, "x": 16.61, "y": -4.24, "color": "1b0999ff" },
  37. { "name": "bone33", "parent": "bone32", "length": 22.07, "rotation": 2.6, "x": 20.87, "color": "1b0999ff" },
  38. { "name": "bone34", "parent": "bone33", "length": 11.73, "rotation": -81.93, "x": 22.07, "color": "1b0999ff" },
  39. { "name": "bone35", "parent": "root", "x": 306.01, "y": 50.01 },
  40. { "name": "bone36", "parent": "bone35", "x": -80.35, "y": 13.72 },
  41. { "name": "bone37", "parent": "bone35", "x": -48.05, "y": 11.75 },
  42. { "name": "bone38", "parent": "bone35", "x": -20.86, "y": 14.9 },
  43. { "name": "bone39", "parent": "bone35", "x": 11.45, "y": 14.9 },
  44. { "name": "bone40", "parent": "bone35", "x": 41.39, "y": 16.08 },
  45. { "name": "bone41", "parent": "bone35", "x": 70.55, "y": 12.93 },
  46. { "name": "bone42", "parent": "bone35", "x": 100.1, "y": 12.93 },
  47. { "name": "bone43", "parent": "bone35", "x": -46.86, "y": -19.77 },
  48. { "name": "bone44", "parent": "bone35", "x": -14.56, "y": -20.56 },
  49. { "name": "bone45", "parent": "bone35", "x": 10.66, "y": -23.32 },
  50. { "name": "bone46", "parent": "bone35", "x": 33.12, "y": -22.13 },
  51. { "name": "bone47", "parent": "bone35", "x": 59.91, "y": -22.13 },
  52. { "name": "bone48", "parent": "bone3", "length": 23.94, "rotation": -135.18, "x": 42.56, "y": -92.89, "color": "cb0e56ff" },
  53. { "name": "bone49", "parent": "bone48", "length": 20.96, "rotation": -63.06, "x": 24.47, "y": -0.49, "color": "cb0e56ff" },
  54. { "name": "bone50", "parent": "bone49", "length": 8.58, "rotation": 2.17, "x": 20.96, "color": "cb0e56ff" },
  55. { "name": "bone51", "parent": "bone3", "length": 22.85, "rotation": 145.82, "x": 99.36, "y": -114.11, "color": "0e911aff" },
  56. { "name": "bone52", "parent": "bone51", "length": 21.63, "rotation": -103.92, "x": 22.85, "color": "0e911aff" },
  57. { "name": "bone53", "parent": "bone52", "length": 14.36, "rotation": -1.84, "x": 21.63, "color": "0e911aff" },
  58. { "name": "bone54", "parent": "bone", "length": 26.88, "rotation": -82.82, "x": 90.04, "y": -0.25, "color": "99881aff" },
  59. { "name": "bone55", "parent": "bone54", "length": 21.78, "rotation": -0.54, "x": 26.91, "y": 0.21, "color": "99881aff" },
  60. { "name": "bone56", "parent": "bone55", "length": 12.33, "rotation": 74.53, "x": 21.78, "color": "99881aff" },
  61. { "name": "bone57", "parent": "bone8", "x": 2.91, "y": 2.73 },
  62. { "name": "bone58", "parent": "bone9", "x": 4.33, "y": 1.98 }
  63. ],
  64. "slots": [
  65. { "name": "zuoshou1", "bone": "bone51", "attachment": "zuoshou1" },
  66. { "name": "zuoshou2", "bone": "bone52", "attachment": "zuoshou2" },
  67. { "name": "zuoshou", "bone": "bone22", "attachment": "zuoshou" },
  68. { "name": "zuojiao", "bone": "bone29", "attachment": "zuojiao" },
  69. { "name": "dang", "bone": "bone28", "attachment": "dang" },
  70. { "name": "youjiao", "bone": "bone32", "attachment": "youjiao" },
  71. { "name": "shangyi", "bone": "bone2", "attachment": "shangyi" },
  72. { "name": "waitaoyou", "bone": "bone16", "attachment": "waitaoyou" },
  73. { "name": "waitaozuo", "bone": "bone11", "attachment": "waitaozuo" },
  74. { "name": "lingzi", "bone": "bone3", "attachment": "lingzi" },
  75. { "name": "youshou", "bone": "bone25", "attachment": "youshou" },
  76. { "name": "toufa", "bone": "bone5", "attachment": "toufa" },
  77. { "name": "meimao", "bone": "bone6", "attachment": "meimao" },
  78. { "name": "biyan", "bone": "bone7" },
  79. { "name": "youjiao1", "bone": "bone54", "attachment": "youjiao1" },
  80. { "name": "youshou1", "bone": "bone48", "attachment": "youshou1" },
  81. { "name": "youshou2", "bone": "bone49", "attachment": "youshou2" },
  82. { "name": "zuiba1", "bone": "bone10", "attachment": "zuiba1" },
  83. { "name": "zuiba2", "bone": "bone10", "attachment": "zuiba2" },
  84. { "name": "zi_1", "bone": "bone36", "attachment": "zi_1" },
  85. { "name": "zi_10", "bone": "bone45", "attachment": "zi_10" },
  86. { "name": "zi_11", "bone": "bone46", "attachment": "zi_11" },
  87. { "name": "zi_12", "bone": "bone47", "attachment": "zi_12" },
  88. { "name": "zi_2", "bone": "bone37", "attachment": "zi_2" },
  89. { "name": "zi_3", "bone": "bone38", "attachment": "zi_3" },
  90. { "name": "zi_4", "bone": "bone39", "attachment": "zi_4" },
  91. { "name": "zi_5", "bone": "bone40", "attachment": "zi_5" },
  92. { "name": "zi_6", "bone": "bone41", "attachment": "zi_6" },
  93. { "name": "zi_7", "bone": "bone42", "attachment": "zi_7" },
  94. { "name": "zi_8", "bone": "bone43", "attachment": "zi_8" },
  95. { "name": "zi_9", "bone": "bone44", "attachment": "zi_9" },
  96. { "name": "yanbai zuo", "bone": "bone8", "attachment": "yanbai zuo" },
  97. { "name": "yanbaiyou", "bone": "bone9", "attachment": "yanbaiyou" },
  98. { "name": "yanzhu you", "bone": "bone58", "attachment": "yanzhu you" },
  99. { "name": "yanzhu zuo", "bone": "bone57", "attachment": "yanzhu zuo" },
  100. { "name": "gaoguang zuo", "bone": "bone57", "attachment": "gaoguang zuo" },
  101. { "name": "gaoguangyou", "bone": "bone58", "attachment": "gaoguangyou" }
  102. ],
  103. "skins": {
  104. "default": {
  105. "biyan": {
  106. "biyan": { "x": -0.76, "y": -0.46, "rotation": -90.26, "width": 42, "height": 8 }
  107. },
  108. "dang": {
  109. "dang": {
  110. "type": "mesh",
  111. "uvs": [ 1, 0.77273, 0.65451, 1, 0.34741, 1, 0, 0.5894, 0, 0, 0.35684, 0, 1, 0, 0.62757, 0.06507 ],
  112. "triangles": [ 7, 5, 6, 3, 4, 5, 7, 6, 0, 5, 7, 2, 5, 2, 3, 1, 2, 7, 0, 1, 7 ],
  113. "vertices": [ 11.99, 26.52, 15.84, 9.53, 15.62, -5.51, 7.99, -22.43, -2.62, -22.28, -2.37, -4.79, -1.92, 26.72, -1.01, 8.45 ],
  114. "hull": 7,
  115. "edges": [ 6, 8, 4, 6, 8, 10, 10, 12, 10, 4, 2, 4, 14, 2, 0, 12, 2, 0 ],
  116. "width": 48,
  117. "height": 18
  118. }
  119. },
  120. "gaoguang zuo": {
  121. "gaoguang zuo": { "x": -0.09, "y": 1.58, "rotation": -92.34, "width": 3, "height": 3 }
  122. },
  123. "gaoguangyou": {
  124. "gaoguangyou": { "x": 0.24, "y": 2.15, "rotation": -91.1, "width": 4, "height": 4 }
  125. },
  126. "lingzi": {
  127. "lingzi": {
  128. "type": "mesh",
  129. "uvs": [ 1, 1, 0.33072, 1, 0, 1, 0, 0, 0.32332, 0, 1, 0 ],
  130. "triangles": [ 2, 3, 4, 1, 4, 5, 2, 4, 1, 1, 5, 0 ],
  131. "vertices": [ 35.39, -11.79, 34.85, 4.93, 34.59, 13.19, 49.58, 13.68, 49.84, 5.6, 50.39, -11.31 ],
  132. "hull": 6,
  133. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4, 8, 2 ],
  134. "width": 25,
  135. "height": 15
  136. }
  137. },
  138. "meimao": {
  139. "meimao": { "x": 0.9, "y": -1.53, "rotation": -90.26, "width": 55, "height": 11 }
  140. },
  141. "shangyi": {
  142. "shangyi": {
  143. "type": "mesh",
  144. "uvs": [ 0.73241, 0.06448, 0.73241, 0.07596, 0.73241, 0.08699, 0.87324, 0.09141, 0.99661, 0.68863, 0.99999, 0.77993, 0.99999, 0.87241, 1, 1, 0.71067, 1, 0.43182, 1, 0.3519, 1, 0, 1, 0, 0.86648, 1.0E-5, 0.79296, 0.01474, 0.68837, 0.14804, 0.08552, 0.29308, 0.06933, 0.2947, 0.06171, 0.29656, 0.05294, 0.3078, 0, 0.48016, 0, 0.73241, 0, 0.45284, 0.68586, 0.48227, 0.07375, 0.44504, 0.78261, 0.44144, 0.85622, 0.4817, 0.054, 0.48202, 0.06509, 0.36003, 0.85812, 0.70359, 0.86382 ],
  145. "triangles": [ 26, 20, 21, 19, 20, 26, 18, 19, 26, 0, 26, 21, 27, 26, 0, 18, 26, 27, 17, 18, 27, 1, 23, 27, 17, 27, 23, 16, 17, 23, 0, 1, 27, 23, 1, 2, 22, 16, 23, 22, 23, 2, 15, 16, 22, 14, 15, 22, 2, 3, 4, 22, 2, 4, 24, 14, 22, 5, 22, 4, 5, 24, 22, 13, 14, 24, 24, 28, 13, 25, 28, 24, 29, 24, 5, 25, 24, 29, 12, 13, 28, 29, 5, 6, 10, 11, 12, 28, 10, 12, 9, 28, 25, 10, 28, 9, 8, 29, 6, 9, 25, 29, 8, 9, 29, 8, 6, 7 ],
  146. "vertices": [ 2, 3, 44.9, -12.37, 0.54107, 4, 1.51, -12.38, 0.45893, 2, 3, 44.1, -12.4, 0.60208, 4, 0.7, -12.4, 0.39792, 2, 3, 43.33, -12.42, 0.67294, 4, -0.07, -12.42, 0.32706, 2, 3, 43.24, -19.33, 0.85603, 4, -0.17, -19.33, 0.14397, 2, 2, 17.1, -26.76, 0.52061, 3, 1.65, -26.72, 0.47939, 2, 2, 10.71, -26.93, 0.70606, 3, -4.73, -27.09, 0.29394, 2, 2, 4.24, -26.93, 0.85211, 3, -11.2, -27.3, 0.14789, 2, 2, -4.7, -26.93, 0.93081, 3, -20.13, -27.59, 0.06919, 2, 2, -4.7, -12.75, 0.96604, 3, -20.58, -13.42, 0.03396, 1, 2, -4.7, 0.91, 1, 2, 2, -4.7, 4.83, 0.9977, 3, -21.15, 4.15, 0.0023, 2, 2, -4.7, 22.07, 0.98757, 3, -21.71, 21.38, 0.01243, 2, 2, 4.65, 22.07, 0.89725, 3, -12.36, 21.69, 0.10275, 2, 2, 9.8, 22.07, 0.76579, 3, -7.22, 21.85, 0.23421, 2, 2, 17.12, 21.35, 0.48898, 3, 0.12, 21.37, 0.51102, 2, 3, 42.51, 16.2, 0.89805, 4, -0.81, 16.2, 0.10195, 2, 3, 43.87, 9.13, 0.59605, 4, 0.54, 9.13, 0.40395, 2, 3, 44.41, 9.07, 0.5169, 4, 1.07, 9.07, 0.4831, 2, 3, 45.02, 9, 0.43296, 4, 1.69, 8.99, 0.56704, 2, 3, 48.74, 8.57, 0.17865, 4, 5.41, 8.55, 0.82135, 1, 4, 5.66, 0.11, 1, 2, 3, 49.41, -12.23, 0.36739, 4, 6.02, -12.25, 0.63261, 2, 2, 17.29, -0.12, 0.00763, 3, 0.99, -0.08, 0.99237, 2, 3, 43.86, -0.14, 0.22664, 4, 0.5, -0.15, 0.77336, 1, 2, 10.52, 0.27, 1, 1, 2, 5.37, 0.44, 1, 1, 4, 1.88, -0.08, 1, 1, 4, 1.1, -0.12, 1, 2, 2, 5.24, 4.43, 0.98105, 3, -11.21, 4.07, 0.01895, 2, 2, 4.84, -12.4, 0.93059, 3, -11.07, -12.77, 0.06941 ],
  147. "hull": 22,
  148. "edges": [ 30, 32, 4, 6, 6, 8, 44, 46, 38, 40, 40, 42, 48, 44, 26, 48, 8, 10, 48, 10, 8, 44, 26, 28, 28, 30, 44, 28, 22, 24, 24, 26, 18, 50, 50, 48, 10, 12, 12, 14, 32, 46, 46, 4, 36, 38, 40, 52, 36, 52, 0, 42, 52, 0, 32, 34, 34, 36, 46, 54, 54, 52, 34, 54, 0, 2, 2, 4, 54, 2, 24, 56, 56, 50, 18, 20, 20, 22, 56, 20, 12, 58, 58, 50, 14, 16, 16, 18, 58, 16 ],
  149. "width": 49,
  150. "height": 69
  151. }
  152. },
  153. "toufa": {
  154. "toufa": { "x": 44.04, "y": -5.5, "rotation": -90.26, "width": 76, "height": 96 }
  155. },
  156. "waitaoyou": {
  157. "waitaoyou": {
  158. "type": "mesh",
  159. "uvs": [ 0.76132, 0.16109, 0.80204, 0.26398, 0.82861, 0.33114, 0.8571, 0.40313, 0.88468, 0.47283, 0.92299, 0.56965, 0.95178, 0.64241, 0.97474, 0.70043, 0.99999, 0.79883, 1, 0.88948, 1, 1, 0.41787, 1, 0, 1, 0, 0.92864, 0, 0.83683, 0, 0.7585, 0, 0.66779, 0, 0.59461, 0, 0.50493, 0, 0.43055, 0, 0.35814, 0, 0.28109, 0, 0.186, 0, 0, 0.20454, 0, 0.69758, 0, 0.2429, 0.1798, 0.27836, 0.34602, 0.30945, 0.49174, 0.34452, 0.65616, 0.37867, 0.82778, 0.36096, 0.73817, 0.32886, 0.58273, 0.39842, 0.9088, 0.29339, 0.41646, 0.26342, 0.27601 ],
  160. "triangles": [ 22, 23, 24, 26, 25, 0, 26, 24, 25, 11, 9, 10, 12, 33, 11, 11, 33, 9, 12, 13, 33, 13, 30, 33, 13, 14, 30, 9, 33, 8, 33, 30, 8, 14, 31, 30, 30, 7, 8, 30, 31, 7, 14, 15, 31, 15, 29, 31, 15, 16, 29, 31, 6, 7, 31, 29, 6, 16, 32, 29, 16, 17, 32, 29, 5, 6, 29, 32, 5, 17, 28, 32, 17, 18, 28, 32, 4, 5, 32, 28, 4, 18, 34, 28, 28, 3, 4, 18, 19, 34, 28, 34, 3, 19, 27, 34, 19, 20, 27, 34, 2, 3, 34, 27, 2, 27, 1, 2, 20, 35, 27, 20, 21, 35, 27, 35, 1, 21, 26, 35, 21, 22, 26, 35, 0, 1, 35, 26, 0, 22, 24, 26 ],
  161. "vertices": [ 3, 17, 0.39, 14.12, 0.36729, 18, -10.72, 13.73, 0.06226, 16, 4.98, 14.06, 0.57045, 4, 17, 7.16, 14.38, 0.49032, 18, -3.97, 14.33, 0.287, 19, -13.58, 14.48, 0.0163, 16, 11.67, 15.16, 0.20638, 4, 17, 11.58, 14.55, 0.36358, 18, 0.44, 14.71, 0.48243, 19, -9.17, 14.84, 0.07579, 16, 16.04, 15.87, 0.07819, 5, 17, 16.32, 14.73, 0.18463, 18, 5.16, 15.13, 0.575, 19, -4.45, 15.22, 0.22076, 21, -24.49, 16.53, 3.7E-4, 16, 20.72, 16.64, 0.01924, 6, 17, 20.91, 14.91, 0.07126, 18, 9.74, 15.53, 0.49452, 19, 0.13, 15.59, 0.42235, 20, -10.68, 15.45, 0.00192, 21, -19.9, 16.69, 0.00762, 16, 25.25, 17.39, 0.00232, 5, 17, 27.28, 15.16, 0.01042, 18, 16.09, 16.09, 0.27317, 19, 6.49, 16.11, 0.61132, 20, -4.33, 16.07, 0.0457, 21, -13.53, 16.93, 0.05939, 5, 17, 32.07, 15.34, 7.0E-4, 18, 20.86, 16.51, 0.14186, 19, 11.26, 16.5, 0.57142, 20, 0.44, 16.53, 0.12144, 21, -8.74, 17.1, 0.16457, 4, 18, 24.67, 16.84, 0.07596, 19, 15.07, 16.81, 0.45468, 20, 4.24, 16.91, 0.16604, 21, -4.92, 17.24, 0.30332, 4, 18, 31.1, 17.04, 0.01997, 19, 21.5, 16.96, 0.23667, 20, 10.67, 17.17, 0.13481, 21, 1.51, 17.11, 0.60855, 4, 18, 36.98, 16.6, 0.00302, 19, 27.37, 16.48, 0.1004, 20, 16.55, 16.78, 0.04745, 21, 7.35, 16.36, 0.84913, 3, 19, 34.53, 15.9, 0.04222, 20, 23.72, 16.31, 5.4E-4, 21, 14.48, 15.46, 0.95724, 2, 19, 33.25, 0.23, 1.2E-4, 21, 12.5, -0.13, 0.99988, 1, 21, 11.07, -11.33, 1, 2, 20, 17.32, -10.33, 0.0361, 21, 6.47, -10.74, 0.9639, 2, 20, 11.37, -9.94, 0.33363, 21, 0.55, -9.99, 0.66637, 3, 19, 16.68, -9.73, 0.00926, 20, 6.29, -9.6, 0.7406, 21, -4.5, -9.34, 0.25014, 3, 19, 10.81, -9.25, 0.26006, 20, 0.4, -9.22, 0.71755, 21, -10.35, -8.6, 0.02239, 3, 19, 6.07, -8.86, 0.703, 20, -4.34, -8.91, 0.29696, 21, -15.07, -8, 4.0E-5, 4, 17, 20.01, -9.05, 0.00887, 18, 10.02, -8.45, 0.0962, 19, 0.26, -8.38, 0.85636, 20, -10.16, -8.52, 0.03858, 4, 17, 15.22, -8.45, 0.11788, 18, 5.2, -8.08, 0.43848, 19, -4.56, -7.99, 0.44258, 20, -14.98, -8.21, 0.00106, 3, 17, 10.55, -7.87, 0.48133, 18, 0.51, -7.73, 0.40623, 19, -9.25, -7.6, 0.11244, 4, 17, 5.58, -7.25, 0.90782, 18, -4.49, -7.35, 0.07393, 19, -14.24, -7.2, 0.01054, 16, 12.78, -6.5, 0.0077, 2, 17, -0.56, -6.48, 0.59683, 16, 6.6, -6.5, 0.40317, 1, 16, -5.49, -6.5, 1, 1, 16, -5.49, -0.98, 1, 2, 17, -10.22, 13.71, 0.03737, 16, -5.49, 12.34, 0.96263, 2, 17, -0.14, 0.08, 0.93816, 16, 6.2, 0.06, 0.06184, 2, 18, 0.29, -0.17, 0.99931, 19, -9.42, -0.05, 6.9E-4, 1, 19, 0.08, 0.01, 1, 3, 18, 20.52, 0.09, 2.2E-4, 20, 0.26, 0.12, 0.99965, 21, -9.92, 0.72, 1.3E-4, 3, 18, 31.71, 0.17, 1.0E-5, 19, 22.01, 0.09, 7.4E-4, 21, 1.26, 0.23, 0.99925, 4, 18, 25.87, 0.13, 1.2E-4, 19, 16.16, 0.09, 0.0027, 20, 5.61, 0.21, 0.99569, 21, -4.58, 0.49, 0.00149, 3, 18, 15.73, 0.03, 5.6E-4, 19, 6.02, 0.05, 0.99942, 21, -14.71, 0.91, 1.0E-5, 2, 19, 27.3, 0.19, 5.0E-5, 21, 6.55, 0.09, 0.99995, 3, 17, 15.29, -0.48, 7.3E-4, 18, 4.88, -0.11, 0.99634, 19, -4.83, -0.02, 0.00293, 2, 17, 6.13, -0.15, 0.99995, 19, -13.99, -0.08, 5.0E-5 ],
  162. "hull": 26,
  163. "edges": [ 46, 48, 48, 50, 20, 22, 22, 24, 44, 46, 52, 48, 44, 52, 0, 50, 52, 0, 40, 54, 54, 4, 36, 56, 56, 8, 32, 58, 58, 12, 16, 60, 28, 60, 28, 30, 30, 32, 58, 62, 62, 60, 30, 62, 12, 14, 14, 16, 62, 14, 32, 34, 34, 36, 56, 64, 64, 58, 34, 64, 8, 10, 10, 12, 64, 10, 24, 26, 26, 28, 22, 66, 66, 60, 26, 66, 16, 18, 18, 20, 66, 18, 36, 38, 38, 40, 54, 68, 68, 56, 38, 68, 4, 6, 6, 8, 68, 6, 40, 42, 42, 44, 52, 70, 70, 54, 42, 70, 0, 2, 2, 4, 70, 2 ],
  164. "width": 26,
  165. "height": 64
  166. }
  167. },
  168. "waitaozuo": {
  169. "waitaozuo": {
  170. "type": "mesh",
  171. "uvs": [ 0.97727, 0.21943, 0.97727, 0.30135, 0.97727, 0.38996, 0.97727, 0.49027, 0.97726, 0.61799, 0.97727, 0.71931, 0.97727, 0.82966, 0.97727, 0.92328, 0.97727, 1, 0.51803, 1, 0.02273, 1, 0.02273, 0.91492, 0.02273, 0.81795, 0.06949, 0.70997, 0.11874, 0.60384, 0.16458, 0.49042, 0.20289, 0.40196, 0.23785, 0.32126, 0.27382, 0.23819, 0.37698, 0, 0.64934, 0, 0.97727, 0, 0.54127, 0.82303, 0.52822, 0.92237, 0.55535, 0.71579, 0.5695, 0.60782, 0.59736, 0.39582, 0.58581, 0.4838, 0.62016, 0.22224, 0.60846, 0.31135 ],
  172. "triangles": [ 9, 23, 8, 23, 7, 8, 23, 9, 11, 9, 10, 11, 23, 22, 7, 22, 6, 7, 22, 23, 12, 23, 11, 12, 22, 24, 6, 12, 13, 22, 24, 5, 6, 22, 13, 24, 24, 25, 5, 25, 4, 5, 13, 14, 24, 24, 14, 25, 25, 27, 4, 14, 15, 25, 4, 27, 3, 25, 15, 27, 15, 16, 27, 27, 26, 3, 26, 2, 3, 27, 16, 26, 16, 17, 26, 26, 29, 2, 26, 17, 29, 29, 1, 2, 17, 18, 29, 29, 28, 1, 29, 18, 28, 28, 0, 1, 18, 19, 28, 28, 20, 0, 28, 19, 20, 20, 21, 0 ],
  173. "vertices": [ 3, 11, 8.39, 8.05, 0.4932, 12, -0.27, 8.04, 0.50395, 13, -11.73, 8.15, 0.00284, 3, 11, 13.63, 8.15, 0.07772, 12, 4.97, 8.34, 0.83071, 13, -6.5, 8.41, 0.09157, 4, 11, 19.3, 8.26, 1.6E-4, 12, 10.63, 8.67, 0.50214, 13, -0.83, 8.68, 0.49614, 14, -11.25, 8.61, 0.00156, 3, 12, 17.04, 9.04, 0.05801, 13, 5.58, 8.99, 0.8063, 14, -4.84, 8.96, 0.13569, 3, 13, 13.75, 9.39, 0.2087, 14, 3.32, 9.41, 0.76207, 15, -8.63, 9.65, 0.02923, 3, 13, 20.22, 9.7, 0.00851, 14, 9.79, 9.76, 0.667, 15, -2.14, 9.83, 0.32449, 2, 14, 16.85, 10.15, 0.51, 15, 4.92, 10.02, 0.49, 2, 14, 22.83, 10.48, 0.35, 15, 10.91, 10.18, 0.65, 1, 15, 15.81, 10.31, 1, 2, 14, 28.28, 0.66, 0, 15, 16.09, 0.21, 1, 2, 14, 28.88, -10.22, 0, 15, 16.38, -10.68, 1, 2, 14, 23.44, -10.52, 0.38, 15, 10.94, -10.83, 0.62, 2, 14, 17.25, -10.86, 0.54, 15, 4.73, -11, 0.46, 3, 13, 20.59, -10.28, 0.00886, 14, 10.29, -10.21, 0.63269, 15, -2.2, -10.15, 0.35845, 3, 13, 13.75, -9.52, 0.21086, 14, 3.45, -9.5, 0.76254, 15, -9.02, -9.26, 0.0266, 3, 12, 18.08, -8.8, 0.02702, 13, 6.45, -8.87, 0.76368, 14, -3.85, -8.89, 0.2093, 3, 12, 12.38, -8.29, 0.35894, 13, 0.76, -8.3, 0.62725, 14, -9.55, -8.36, 0.01381, 3, 11, 15.23, -8.09, 0.01382, 12, 7.18, -7.82, 0.84367, 13, -4.44, -7.78, 0.1425, 3, 11, 9.9, -7.4, 0.2681, 12, 1.83, -7.34, 0.72946, 13, -9.79, -7.25, 0.00244, 1, 11, -5.39, -5.44, 1, 1, 11, -5.51, 0.55, 1, 1, 11, -5.65, 7.76, 1, 2, 14, 16.95, 0.55, 6.8E-4, 15, 4.75, 0.42, 0.99932, 1, 15, 11.11, 0.3, 1, 2, 14, 10.08, 0.48, 0.9828, 15, -2.12, 0.54, 0.0172, 1, 14, 3.16, 0.41, 1, 2, 12, 11.49, 0.35, 0.53127, 13, -0.05, 0.35, 0.46873, 2, 12, 17.12, 0.42, 9.0E-5, 13, 5.58, 0.37, 0.99991, 2, 11, 8.73, 0.19, 0.23464, 12, 0.37, 0.21, 0.76536, 2, 12, 6.07, 0.28, 0.99887, 13, -5.46, 0.33, 0.00113 ],
  174. "hull": 22,
  175. "edges": [ 38, 40, 40, 42, 16, 18, 18, 20, 24, 44, 44, 12, 20, 22, 22, 24, 18, 46, 46, 44, 22, 46, 12, 14, 14, 16, 46, 14, 24, 26, 48, 44, 26, 48, 12, 10, 48, 10, 26, 28, 50, 48, 28, 50, 10, 8, 50, 8, 32, 52, 52, 4, 28, 30, 30, 32, 50, 54, 54, 52, 30, 54, 4, 6, 6, 8, 54, 6, 36, 38, 40, 56, 36, 56, 0, 42, 56, 0, 32, 34, 34, 36, 52, 58, 58, 56, 34, 58, 0, 2, 2, 4, 58, 2 ],
  176. "width": 22,
  177. "height": 64
  178. }
  179. },
  180. "yanbai zuo": {
  181. "yanbai zuo": { "x": 1.54, "y": -0.29, "rotation": -92.34, "width": 19, "height": 10 }
  182. },
  183. "yanbaiyou": {
  184. "yanbaiyou": { "x": 3.4, "y": -0.52, "rotation": -91.1, "width": 21, "height": 10 }
  185. },
  186. "yanzhu you": {
  187. "yanzhu you": { "x": 0.24, "y": -0.25, "rotation": -91.1, "width": 9, "height": 6 }
  188. },
  189. "yanzhu zuo": {
  190. "yanzhu zuo": { "x": 0.13, "y": 0.04, "rotation": -92.34, "width": 8, "height": 6 }
  191. },
  192. "youjiao": {
  193. "youjiao": {
  194. "type": "mesh",
  195. "uvs": [ 1, 0.47196, 1, 0.49963, 1, 0.51928, 1, 0.85906, 1, 0.87888, 1, 0.89548, 1, 1, 0.21315, 1, 0.20849, 0.96087, 0.19997, 0.88938, 0.38527, 0.84938, 0.3833, 0.83407, 0.38101, 0.81629, 0.3437, 0.52583, 0.34132, 0.50727, 0.33771, 0.4792, 0.27615, 0, 0.6995, 0, 1, 0, 0.75538, 0.88139, 0.75421, 0.86291, 0.75301, 0.844, 0.73118, 0.49966, 0.73241, 0.51904, 0.72947, 0.47271 ],
  196. "triangles": [ 20, 10, 11, 8, 9, 10, 8, 10, 19, 7, 8, 19, 23, 22, 1, 23, 1, 2, 13, 22, 23, 12, 13, 23, 21, 11, 12, 21, 23, 2, 21, 12, 23, 21, 2, 3, 20, 21, 3, 20, 11, 21, 20, 3, 4, 19, 20, 4, 10, 20, 19, 19, 4, 5, 19, 5, 6, 7, 19, 6, 24, 17, 18, 0, 24, 18, 15, 16, 17, 15, 17, 24, 22, 24, 0, 1, 22, 0, 14, 15, 24, 14, 24, 22, 13, 14, 22 ],
  197. "vertices": [ 2, 32, 19.12, 9.32, 0.67023, 33, -1.33, 9.39, 0.32977, 2, 32, 20.67, 9.32, 0.53136, 33, 0.22, 9.32, 0.46864, 2, 32, 21.77, 9.32, 0.42935, 33, 1.32, 9.27, 0.57065, 2, 33, 20.33, 8.41, 0.97547, 34, -8.57, -0.54, 0.02453, 2, 33, 21.44, 8.36, 0.94909, 34, -8.36, 0.55, 0.05091, 2, 33, 22.36, 8.31, 0.91897, 34, -8.19, 1.46, 0.08103, 2, 33, 28.21, 8.05, 0.7451, 34, -7.11, 7.21, 0.2549, 1, 34, 19.18, 2.26, 1, 1, 34, 18.93, 0.08, 1, 2, 33, 20.79, -18.84, 1.8E-4, 34, 18.48, -3.91, 0.99982, 2, 33, 18.84, -12.45, 0.1607, 34, 11.87, -4.95, 0.8393, 3, 32, 39.4, -11.65, 1.3E-4, 33, 17.98, -12.48, 0.25526, 34, 11.78, -5.8, 0.74461, 3, 32, 38.4, -11.72, 7.4E-4, 33, 16.98, -12.51, 0.34866, 34, 11.67, -6.79, 0.65061, 3, 32, 22.14, -12.99, 0.46888, 33, 0.67, -13.04, 0.51299, 34, 9.91, -23.01, 0.01813, 3, 32, 21.1, -13.07, 0.5351, 33, -0.37, -13.07, 0.45256, 34, 9.79, -24.05, 0.01234, 3, 32, 19.53, -13.2, 0.63271, 33, -1.95, -13.12, 0.36094, 34, 9.62, -25.62, 0.00636, 1, 32, -7.31, -15.29, 1, 1, 32, -7.31, -0.9, 1, 1, 32, -7.31, 9.32, 1, 1, 33, 21.2, 0.04, 1, 1, 33, 20.16, 0.05, 1, 1, 33, 19.1, 0.06, 1, 2, 32, 20.67, 0.18, 0.66521, 33, -0.19, 0.19, 0.33479, 1, 33, 0.89, 0.18, 1, 1, 32, 19.16, 0.12, 1 ],
  198. "hull": 19,
  199. "edges": [ 20, 18, 12, 14, 32, 34, 34, 36, 14, 16, 16, 18, 38, 16, 20, 38, 12, 10, 38, 10, 20, 22, 40, 38, 22, 40, 10, 8, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 28, 44, 44, 2, 24, 26, 26, 28, 42, 46, 46, 44, 26, 46, 2, 4, 4, 6, 46, 4, 28, 30, 30, 32, 34, 48, 48, 44, 30, 48, 2, 0, 0, 36, 48, 0 ],
  200. "width": 34,
  201. "height": 55
  202. }
  203. },
  204. "youjiao1": {
  205. "youjiao1": {
  206. "type": "mesh",
  207. "uvs": [ 0.73868, 0.46934, 0.74379, 0.49776, 0.74878, 0.52555, 0.80299, 0.82721, 0.81622, 0.84839, 0.84256, 0.85684, 1, 0.87115, 1, 0.94723, 1, 1, 0.19993, 1, 0.1781, 0.89772, 0.17353, 0.87628, 0.16837, 0.85988, 0.07501, 0.56298, 0.06651, 0.53594, 0.05721, 0.50636, 0, 0.32443, 0, 0, 0.27253, 0, 0.65436, 0, 0.47516, 0.86986, 0.4726, 0.84784, 0.48043, 0.88928, 0.39448, 0.51678, 0.4009, 0.54399, 0.38855, 0.49167 ],
  208. "triangles": [ 22, 4, 5, 5, 6, 7, 22, 5, 7, 22, 7, 8, 16, 17, 18, 25, 18, 19, 25, 19, 0, 16, 18, 25, 15, 16, 25, 23, 25, 0, 23, 0, 1, 14, 15, 25, 14, 25, 23, 13, 14, 23, 13, 23, 24, 24, 23, 1, 24, 1, 2, 21, 24, 2, 21, 2, 3, 12, 13, 24, 12, 24, 21, 20, 21, 3, 20, 3, 4, 11, 12, 21, 11, 21, 20, 22, 20, 4, 10, 11, 20, 10, 20, 22, 9, 10, 22, 9, 22, 8 ],
  209. "vertices": [ 2, 55, -1.66, 10.26, 0.62305, 54, 25.34, 10.49, 0.37695, 3, 55, -0.09, 10.23, 0.74185, 54, 26.91, 10.44, 0.25809, 56, 4.03, 23.8, 6.0E-5, 3, 55, 1.45, 10.21, 0.83883, 54, 28.45, 10.4, 0.16038, 56, 4.41, 22.32, 7.9E-4, 2, 55, 18.11, 9.9, 0.36175, 56, 8.57, 6.17, 0.63825, 2, 55, 19.32, 10.16, 0.20395, 56, 9.14, 5.08, 0.79605, 2, 55, 19.87, 10.89, 0.11305, 56, 9.99, 4.74, 0.88695, 2, 55, 21.2, 15.49, 0.00169, 56, 14.78, 4.69, 0.99831, 1, 56, 15.42, 0.55, 1, 1, 56, 15.86, -2.31, 1, 2, 55, 25.46, -9.17, 0.96211, 56, -7.86, -6, 0.03789, 3, 55, 19.8, -9.17, 0.99802, 54, 46.62, -9.15, 0.00172, 56, -9.36, -0.54, 2.7E-4, 2, 55, 18.61, -9.17, 0.99556, 54, 45.43, -9.13, 0.00444, 2, 55, 17.7, -9.22, 0.99199, 54, 44.52, -9.17, 0.00801, 2, 55, 1.15, -10.11, 0.20418, 54, 27.96, -9.91, 0.79582, 2, 55, -0.35, -10.19, 0.11194, 54, 26.46, -9.98, 0.88806, 2, 55, -2, -10.28, 0.04502, 54, 24.81, -10.05, 0.95498, 1, 54, 14.67, -10.51, 1, 1, 54, -3.04, -8.27, 1, 1, 54, -2.02, -0.16, 1, 1, 54, -0.58, 11.2, 1, 1, 55, 19.31, -0.14, 1, 2, 55, 18.09, -0.08, 1, 54, 45, -0.04, 0, 1, 55, 20.38, -0.11, 1, 2, 55, -0.26, -0.3, 0.01465, 54, 26.64, -0.09, 0.98535, 2, 55, 1.25, -0.28, 0.94404, 54, 28.15, -0.08, 0.05596, 1, 54, 25.25, -0.09, 1 ],
  210. "hull": 20,
  211. "edges": [ 32, 34, 16, 18, 34, 36, 36, 38, 12, 14, 14, 16, 22, 40, 40, 8, 22, 24, 42, 40, 24, 42, 8, 6, 42, 6, 18, 20, 20, 22, 14, 44, 44, 40, 20, 44, 8, 10, 10, 12, 44, 10, 28, 46, 46, 2, 24, 26, 26, 28, 42, 48, 48, 46, 26, 48, 2, 4, 4, 6, 48, 4, 28, 30, 30, 32, 36, 50, 50, 46, 30, 50, 2, 0, 0, 38, 50, 0 ],
  212. "width": 30,
  213. "height": 55
  214. }
  215. },
  216. "youshou": {
  217. "youshou": {
  218. "type": "mesh",
  219. "uvs": [ 0.57873, 0.30598, 0.59673, 0.3209, 0.61938, 0.33968, 0.88778, 0.56219, 0.90861, 0.57946, 0.94287, 0.60786, 1, 0.65522, 1, 1, 0.68118, 1, 0.55821, 0.86571, 0.52383, 0.82817, 0.50573, 0.8084, 0.27503, 0.55648, 0.25309, 0.53252, 0.23517, 0.51295, 0, 0.25614, 0, 0, 0.20964, 0, 0.73331, 0.6939, 0.7659, 0.73129, 0.71424, 0.67585, 0.44082, 0.41713, 0.41849, 0.396, 0.46298, 0.4381 ],
  220. "triangles": [ 19, 18, 4, 19, 4, 5, 9, 10, 18, 9, 18, 19, 8, 9, 19, 19, 5, 6, 19, 6, 7, 8, 19, 7, 21, 0, 1, 23, 21, 1, 23, 1, 2, 13, 22, 21, 12, 13, 21, 12, 21, 23, 20, 2, 3, 23, 2, 20, 18, 20, 3, 18, 3, 4, 11, 23, 20, 12, 23, 11, 10, 11, 20, 10, 20, 18, 22, 15, 16, 17, 22, 16, 0, 22, 17, 21, 22, 0, 14, 15, 22, 13, 14, 22 ],
  221. "vertices": [ 2, 25, 24.45, 9, 0.54317, 26, -0.91, 9.02, 0.45683, 2, 25, 25.69, 9.11, 0.42115, 26, 0.33, 9.11, 0.57885, 2, 25, 27.24, 9.26, 0.27947, 26, 1.89, 9.22, 0.72053, 2, 26, 20.35, 10.54, 0.7781, 27, -2.54, 10.43, 0.2219, 2, 26, 21.79, 10.65, 0.67768, 27, -1.11, 10.61, 0.32232, 2, 26, 24.15, 10.82, 0.49772, 27, 1.24, 10.89, 0.50228, 2, 26, 28.08, 11.1, 0.27501, 27, 5.15, 11.36, 0.72499, 1, 27, 22.67, -0.88, 1, 2, 26, 36.01, -13.58, 0.00258, 27, 14.28, -12.9, 0.99742, 2, 26, 25.96, -12.96, 0.21573, 27, 4.21, -12.77, 0.78427, 2, 26, 23.16, -12.79, 0.383, 27, 1.4, -12.74, 0.617, 2, 26, 21.68, -12.7, 0.48374, 27, -0.08, -12.72, 0.51626, 2, 25, 28.63, -11.47, 0.21536, 26, 2.83, -11.53, 0.78464, 2, 25, 26.83, -11.4, 0.32892, 26, 1.04, -11.42, 0.67108, 2, 25, 25.37, -11.34, 0.4349, 26, -0.43, -11.33, 0.5651, 1, 25, 6.13, -10.57, 1, 1, 25, -6.63, -1.12, 1, 1, 25, -0.9, 6.63, 1, 2, 26, 22.47, -0.07, 0.43674, 27, 0.09, -0.07, 0.56326, 1, 27, 2.85, -0.17, 1, 1, 26, 21.04, -0.08, 1, 2, 25, 26.22, -0.2, 0.07119, 26, 0.66, -0.21, 0.92881, 1, 25, 24.55, -0.25, 1, 2, 25, 27.87, -0.15, 0.00176, 26, 2.31, -0.2, 0.99824 ],
  222. "hull": 18,
  223. "edges": [ 32, 34, 14, 12, 30, 32, 14, 16, 20, 36, 36, 8, 8, 10, 10, 12, 14, 38, 38, 36, 10, 38, 16, 18, 18, 20, 38, 18, 20, 22, 40, 36, 22, 40, 8, 6, 40, 6, 26, 42, 42, 2, 26, 28, 28, 30, 32, 44, 44, 42, 28, 44, 2, 0, 0, 34, 44, 0, 22, 24, 24, 26, 40, 46, 46, 42, 24, 46, 2, 4, 4, 6, 46, 4 ],
  224. "width": 46,
  225. "height": 61
  226. }
  227. },
  228. "youshou1": {
  229. "youshou1": {
  230. "type": "mesh",
  231. "uvs": [ 1, 0.5322, 1, 1, 0.55099, 1, 0, 0.5144, 0, 0, 0.36179, 0 ],
  232. "triangles": [ 3, 4, 5, 3, 5, 0, 2, 3, 0, 2, 0, 1 ],
  233. "vertices": [ 23.23, 7.38, 33.15, -1.87, 25.5, -10.08, 5.81, -10.56, -5.11, -0.4, 1.06, 6.22 ],
  234. "hull": 6,
  235. "edges": [ 8, 10, 2, 0, 10, 0, 6, 8, 2, 4, 6, 4 ],
  236. "width": 25,
  237. "height": 29
  238. }
  239. },
  240. "youshou2": {
  241. "youshou2": {
  242. "type": "mesh",
  243. "uvs": [ 0.02415, 0.74075, 0.36728, 0.33215, 0.68812, 0.35662, 0.94061, 0.37588, 0.84225, 0.85174, 0.83712, 0.87658, 0.83249, 0.89896, 0.81161, 1, 0.20603, 1, 0, 1, 0.00173, 0.78965, 0.00192, 0.76723, 0.33861, 0.8117, 0.32188, 0.83546, 0.35542, 0.78981 ],
  244. "triangles": [ 8, 13, 7, 7, 13, 6, 13, 8, 10, 8, 9, 10, 10, 11, 13, 13, 12, 6, 6, 12, 5, 12, 14, 5, 5, 14, 4, 14, 2, 4, 4, 2, 3, 13, 11, 12, 11, 0, 12, 12, 0, 14, 14, 1, 2, 14, 0, 1 ],
  245. "vertices": [ 2, 49, 18.94, -8.38, 0.79552, 50, -2.33, -8.3, 0.20448, 1, 49, -6.53, -8.93, 1, 1, 49, -7.82, -1.2, 1, 1, 49, -8.83, 4.88, 1, 2, 49, 18.35, 12.31, 0.69897, 50, -2.14, 12.4, 0.30103, 2, 49, 19.77, 12.7, 0.61519, 50, -0.71, 12.73, 0.38481, 2, 49, 21.04, 13.05, 0.54123, 50, 0.58, 13.03, 0.45877, 2, 49, 26.81, 14.62, 0.35414, 50, 6.41, 14.39, 0.64586, 2, 49, 31.81, 0.97, 9.9E-4, 50, 10.88, 0.56, 0.99901, 1, 50, 12.4, -4.14, 1, 2, 49, 21.84, -7.89, 0.53499, 50, 0.58, -7.92, 0.46501, 2, 49, 20.59, -8.34, 0.66314, 50, -0.68, -8.33, 0.33686, 1, 49, 20.28, 0.15, 1, 1, 50, 0.79, 0.22, 1, 2, 49, 18.93, 0.08, 0.99971, 50, -2.02, 0.16, 2.9E-4 ],
  246. "hull": 12,
  247. "edges": [ 2, 4, 4, 6, 14, 16, 16, 18, 22, 24, 24, 10, 18, 20, 20, 22, 16, 26, 26, 24, 20, 26, 10, 12, 12, 14, 26, 12, 2, 0, 0, 22, 4, 28, 28, 24, 0, 28, 6, 8, 8, 10, 28, 8 ],
  248. "width": 24,
  249. "height": 59
  250. }
  251. },
  252. "zi_1": {
  253. "zi_1": { "x": -0.32, "y": 0.94, "width": 29, "height": 29 }
  254. },
  255. "zi_10": {
  256. "zi_10": { "x": 1.23, "y": -0.48, "width": 21, "height": 20 }
  257. },
  258. "zi_11": {
  259. "zi_11": { "x": 1.38, "y": -1.66, "width": 23, "height": 20 }
  260. },
  261. "zi_12": {
  262. "zi_12": { "x": 1.89, "y": -1.66, "width": 24, "height": 20 }
  263. },
  264. "zi_2": {
  265. "zi_2": { "x": -2.62, "y": 1.69, "width": 29, "height": 29 }
  266. },
  267. "zi_3": {
  268. "zi_3": { "x": 0.72, "y": -0.35, "width": 28, "height": 30 }
  269. },
  270. "zi_4": {
  271. "zi_4": { "x": -1.75, "y": -1.62, "width": 30, "height": 27 }
  272. },
  273. "zi_5": {
  274. "zi_5": { "x": -0.52, "y": -1.76, "width": 28, "height": 30 }
  275. },
  276. "zi_6": {
  277. "zi_6": { "x": 0.02, "y": 0.78, "width": 29, "height": 28 }
  278. },
  279. "zi_7": {
  280. "zi_7": { "x": 2.47, "y": 0.78, "width": 30, "height": 29 }
  281. },
  282. "zi_8": {
  283. "zi_8": { "x": -0.09, "y": 0.28, "width": 31, "height": 30 }
  284. },
  285. "zi_9": {
  286. "zi_9": { "x": -1.89, "y": -0.56, "width": 30, "height": 30 }
  287. },
  288. "zuiba1": {
  289. "zuiba1": { "x": -1.74, "y": -0.77, "rotation": -90.26, "width": 18, "height": 16 }
  290. },
  291. "zuiba2": {
  292. "zuiba2": { "x": -1.26, "y": 0.42, "rotation": -90.26, "width": 18, "height": 16 }
  293. },
  294. "zuojiao": {
  295. "zuojiao": {
  296. "type": "mesh",
  297. "uvs": [ 1, 0.23736, 0.94686, 0.53639, 0.94425, 0.55103, 0.94051, 0.57208, 0.89101, 0.85064, 0.88805, 0.86729, 0.88296, 0.89591, 0.86446, 1, 0, 1, 0, 0.96268, 0, 0.87968, 0.19688, 0.83647, 0.19953, 0.8156, 0.20136, 0.80117, 0.23451, 0.54008, 0.23699, 0.52053, 0.2391, 0.50392, 0.30308, 0, 0.65049, 0, 1, 0, 0.54049, 0.8625, 0.5436, 0.83806, 0.54534, 0.82448, 0.58224, 0.53513, 0.58429, 0.51902, 0.57934, 0.55784 ],
  298. "triangles": [ 9, 10, 11, 9, 11, 20, 8, 9, 20, 25, 15, 23, 14, 15, 25, 3, 23, 2, 25, 23, 3, 22, 14, 25, 13, 14, 22, 21, 13, 22, 12, 13, 21, 4, 25, 3, 22, 25, 4, 20, 12, 21, 11, 12, 20, 5, 22, 4, 21, 22, 5, 6, 21, 5, 20, 21, 6, 7, 20, 6, 8, 20, 7, 18, 19, 0, 24, 17, 18, 24, 18, 0, 16, 17, 24, 23, 16, 24, 15, 16, 23, 1, 24, 0, 2, 24, 1, 23, 24, 2 ],
  299. "vertices": [ 1, 29, 3.95, 11.22, 1, 2, 29, 20.77, 10.99, 0.60255, 30, -0.27, 11.01, 0.39745, 2, 29, 21.59, 10.98, 0.53765, 30, 0.55, 10.97, 0.46235, 2, 29, 22.78, 10.96, 0.44438, 30, 1.74, 10.91, 0.55562, 2, 30, 17.38, 10.12, 0.94701, 31, -10.51, 0.1, 0.05299, 2, 30, 18.32, 10.07, 0.91915, 31, -10.2, 0.98, 0.08085, 2, 30, 19.92, 9.99, 0.85926, 31, -9.67, 2.5, 0.14074, 2, 30, 25.77, 9.69, 0.66499, 31, -7.76, 8.03, 0.33501, 1, 31, 16.58, 2.03, 1, 1, 31, 16.08, 0, 1, 2, 30, 20.07, -15.63, 0.00218, 31, 14.97, -4.51, 0.99782, 2, 30, 17.42, -10.03, 0.21497, 31, 8.85, -5.49, 0.78503, 2, 30, 16.25, -10, 0.35739, 31, 8.49, -6.61, 0.64261, 2, 30, 15.44, -9.98, 0.44379, 31, 8.25, -7.38, 0.55621, 3, 29, 22.58, -9.59, 0.40432, 30, 0.79, -9.62, 0.59144, 31, 3.81, -21.35, 0.00424, 3, 29, 21.49, -9.6, 0.50394, 30, -0.31, -9.6, 0.49423, 31, 3.48, -22.39, 0.00182, 3, 29, 20.56, -9.61, 0.589, 30, -1.24, -9.58, 0.41028, 31, 3.2, -23.28, 7.2E-4, 1, 29, -7.72, -9.96, 1, 1, 29, -8.51, 0.08, 1, 1, 29, -9.3, 10.19, 1, 1, 30, 18.46, -0.01, 1, 1, 30, 17.09, 0.02, 1, 1, 30, 16.33, 0.04, 1, 2, 29, 21.52, 0.44, 0.43247, 30, 0.1, 0.44, 0.56753, 2, 29, 20.62, 0.43, 0.958, 30, -0.81, 0.46, 0.042, 1, 30, 1.37, 0.41, 1 ],
  300. "hull": 20,
  301. "edges": [ 0, 38, 14, 16, 22, 20, 34, 36, 36, 38, 16, 18, 18, 20, 40, 18, 22, 40, 12, 14, 40, 12, 22, 24, 42, 40, 24, 42, 10, 12, 42, 10, 24, 26, 44, 42, 26, 44, 8, 10, 44, 8, 30, 46, 46, 4, 30, 32, 32, 34, 36, 48, 48, 46, 32, 48, 0, 2, 2, 4, 48, 2, 26, 28, 28, 30, 44, 50, 50, 46, 28, 50, 4, 6, 6, 8, 50, 6 ],
  302. "width": 28,
  303. "height": 56
  304. }
  305. },
  306. "zuoshou": {
  307. "zuoshou": {
  308. "type": "mesh",
  309. "uvs": [ 1, 0.24482, 0.79538, 0.49621, 0.77352, 0.52306, 0.75204, 0.54946, 0.54026, 0.80964, 0.51871, 0.83611, 0.50205, 0.85658, 0.38531, 1, 0, 1, 0, 0.73459, 0.14033, 0.60625, 0.16206, 0.58638, 0.18708, 0.5635, 0.44137, 0.33096, 0.46652, 0.30796, 0.48709, 0.28914, 0.80327, 0, 1, 0, 0.63299, 0.38913, 0.35435, 0.72147, 0.61873, 0.40614, 0.60105, 0.42722, 0.333, 0.73825, 0.37498, 0.69687 ],
  310. "triangles": [ 22, 11, 19, 10, 11, 22, 6, 19, 5, 22, 19, 6, 22, 8, 9, 22, 9, 10, 7, 22, 6, 8, 22, 7, 21, 14, 20, 13, 14, 21, 3, 20, 2, 21, 20, 3, 23, 12, 13, 23, 13, 21, 19, 12, 23, 11, 12, 19, 4, 23, 21, 4, 21, 3, 5, 23, 4, 19, 23, 5, 18, 16, 17, 18, 15, 16, 17, 0, 18, 20, 15, 18, 14, 15, 20, 1, 18, 0, 2, 18, 1, 20, 18, 2 ],
  311. "vertices": [ 1, 22, 3.49, 11.66, 1, 2, 22, 21.51, 11.15, 0.52364, 23, -0.71, 11.14, 0.47636, 2, 22, 23.43, 11.09, 0.36994, 23, 1.22, 11.11, 0.63006, 2, 22, 25.32, 11.04, 0.23467, 23, 3.11, 11.07, 0.76533, 2, 23, 21.75, 10.74, 0.57916, 24, -1.84, 10.62, 0.42084, 2, 23, 23.65, 10.71, 0.42908, 24, 0.05, 10.75, 0.57092, 2, 23, 25.12, 10.68, 0.318, 24, 1.51, 10.86, 0.682, 2, 23, 35.4, 10.5, 0.00215, 24, 11.77, 11.59, 0.99785, 1, 24, 23.8, -3.46, 1, 2, 23, 33, -14.22, 0.04254, 24, 11.57, -13.24, 0.95746, 2, 23, 22.81, -12.56, 0.44601, 24, 1.28, -12.49, 0.55399, 2, 23, 21.24, -12.3, 0.5552, 24, -0.32, -12.38, 0.4448, 2, 23, 19.42, -12, 0.67865, 24, -2.15, -12.24, 0.32135, 2, 22, 22.96, -9.01, 0.35034, 23, 0.96, -9, 0.64966, 2, 22, 21.13, -8.69, 0.5256, 23, -0.87, -8.7, 0.4744, 2, 22, 19.64, -8.43, 0.66973, 23, -2.36, -8.46, 0.33027, 1, 22, -3.27, -4.45, 1, 1, 22, -8.62, 3.8, 1, 2, 22, 20.62, 0.9, 0.93767, 23, -1.48, 0.88, 0.06233, 2, 23, 22.56, 0.12, 0.55906, 24, -0.1, 0.11, 0.44094, 2, 22, 21.85, 0.85, 0.61699, 23, -0.25, 0.84, 0.38301, 2, 22, 23.38, 0.78, 0.01307, 23, 1.27, 0.8, 0.98693, 1, 24, 1.34, -0.1, 1, 2, 23, 20.78, 0.18, 0.99433, 24, -1.88, 0.01, 0.00567 ],
  312. "hull": 18,
  313. "edges": [ 0, 34, 14, 16, 32, 34, 16, 18, 34, 36, 36, 40, 28, 40, 40, 4, 0, 2, 2, 4, 2, 36, 28, 30, 30, 32, 36, 30, 26, 28, 42, 40, 26, 42, 4, 6, 42, 6, 22, 38, 38, 10, 18, 20, 20, 22, 16, 44, 44, 38, 20, 44, 10, 12, 12, 14, 44, 12, 22, 24, 24, 26, 38, 46, 46, 42, 24, 46, 6, 8, 8, 10, 46, 8 ],
  314. "width": 49,
  315. "height": 58
  316. }
  317. },
  318. "zuoshou1": {
  319. "zuoshou1": {
  320. "type": "mesh",
  321. "uvs": [ 1, 0.30852, 0.69096, 0.6704, 0.44296, 0.44264, 0.76941, 0, 1, 0 ],
  322. "triangles": [ 3, 4, 0, 2, 3, 0, 1, 2, 0 ],
  323. "vertices": [ 8.02, 9.24, 31.27, 7.42, 29.39, -8.97, 2.44, -8.79, -4.2, 0.35 ],
  324. "hull": 5,
  325. "edges": [ 6, 8, 6, 4, 4, 2, 0, 8, 2, 0 ],
  326. "width": 49,
  327. "height": 49
  328. }
  329. },
  330. "zuoshou2": {
  331. "zuoshou2": {
  332. "type": "mesh",
  333. "uvs": [ 0.47932, 0.16559, 0.49878, 0.18979, 0.52071, 0.21707, 0.79257, 0.55518, 0.62262, 0.67779, 0.47844, 0.7818, 0.12944, 0.46522, 0.10149, 0.43986, 0.07469, 0.41556, 0, 0.3478, 0, 0, 0.34617, 0, 0.29001, 0.31571, 0.31389, 0.3417, 0.26624, 0.28983 ],
  334. "triangles": [ 9, 10, 14, 14, 11, 0, 14, 10, 11, 6, 13, 5, 5, 13, 4, 13, 2, 4, 4, 2, 3, 6, 12, 13, 6, 7, 12, 7, 14, 12, 7, 8, 14, 8, 9, 14, 13, 1, 2, 13, 12, 1, 12, 0, 1, 12, 14, 0 ],
  335. "vertices": [ 2, 52, 20.87, -12.77, 0.64183, 53, -0.35, -12.79, 0.35817, 2, 52, 19.23, -12.54, 0.74027, 53, -2, -12.61, 0.25973, 2, 52, 17.39, -12.28, 0.83548, 53, -3.85, -12.41, 0.16452, 1, 52, -5.5, -9.02, 1, 1, 52, -6.02, 1.41, 1, 1, 52, -6.46, 10.26, 1, 2, 52, 17.7, 10.46, 0.89817, 53, -4.27, 10.33, 0.10183, 2, 52, 19.63, 10.48, 0.79242, 53, -2.33, 10.41, 0.20758, 2, 52, 21.49, 10.5, 0.65557, 53, -0.48, 10.49, 0.34443, 2, 52, 26.66, 10.54, 0.29955, 53, 4.69, 10.7, 0.70045, 1, 53, 20.54, -1.78, 1, 2, 52, 32.08, -14.37, 0.13497, 53, 10.9, -14.02, 0.86503, 2, 52, 19.69, -0.65, 0.98795, 53, -1.92, -0.71, 0.01205, 2, 52, 17.84, -0.5, 0.99914, 53, -3.77, -0.62, 8.6E-4, 2, 52, 21.53, -0.8, 0.68388, 53, -0.08, -0.8, 0.31612 ],
  336. "hull": 12,
  337. "edges": [ 20, 22, 18, 20, 6, 8, 8, 10, 14, 24, 24, 2, 10, 12, 12, 14, 8, 26, 26, 24, 12, 26, 2, 4, 4, 6, 26, 4, 14, 16, 16, 18, 20, 28, 28, 24, 16, 28, 2, 0, 0, 22, 28, 0 ],
  338. "width": 45,
  339. "height": 58
  340. }
  341. }
  342. }
  343. },
  344. "animations": {
  345. "stand1": {
  346. "slots": {
  347. "biyan": {
  348. "attachment": [
  349. { "time": 0.1, "name": "biyan" },
  350. { "time": 0.2, "name": null },
  351. { "time": 2.9, "name": "biyan" },
  352. { "time": 3.0333, "name": null }
  353. ]
  354. },
  355. "gaoguang zuo": {
  356. "attachment": [
  357. { "time": 0.1, "name": null },
  358. { "time": 0.2, "name": "gaoguang zuo" },
  359. { "time": 2.9, "name": null },
  360. { "time": 3.0333, "name": "gaoguang zuo" }
  361. ]
  362. },
  363. "gaoguangyou": {
  364. "attachment": [
  365. { "time": 0.1, "name": null },
  366. { "time": 0.2, "name": "gaoguangyou" },
  367. { "time": 2.9, "name": null },
  368. { "time": 3.0333, "name": "gaoguangyou" }
  369. ]
  370. },
  371. "yanbai zuo": {
  372. "attachment": [
  373. { "time": 0.1, "name": null },
  374. { "time": 0.2, "name": "yanbai zuo" },
  375. { "time": 2.9, "name": null },
  376. { "time": 3.0333, "name": "yanbai zuo" }
  377. ]
  378. },
  379. "yanbaiyou": {
  380. "attachment": [
  381. { "time": 0.1, "name": null },
  382. { "time": 0.2, "name": "yanbaiyou" },
  383. { "time": 2.9, "name": null },
  384. { "time": 3.0333, "name": "yanbaiyou" }
  385. ]
  386. },
  387. "yanzhu you": {
  388. "attachment": [
  389. { "time": 0.1, "name": null },
  390. { "time": 0.2, "name": "yanzhu you" },
  391. { "time": 2.9, "name": null },
  392. { "time": 3.0333, "name": "yanzhu you" }
  393. ]
  394. },
  395. "yanzhu zuo": {
  396. "attachment": [
  397. { "time": 0.1, "name": null },
  398. { "time": 0.2, "name": "yanzhu zuo" },
  399. { "time": 2.9, "name": null },
  400. { "time": 3.0333, "name": "yanzhu zuo" }
  401. ]
  402. },
  403. "youjiao": {
  404. "attachment": [
  405. { "time": 0, "name": null }
  406. ]
  407. },
  408. "youjiao1": {
  409. "attachment": [
  410. { "time": 0, "name": "youjiao1" }
  411. ]
  412. },
  413. "youshou": {
  414. "attachment": [
  415. { "time": 0.3333, "name": null }
  416. ]
  417. },
  418. "youshou1": {
  419. "attachment": [
  420. { "time": 0, "name": null },
  421. { "time": 0.3333, "name": "youshou1" }
  422. ]
  423. },
  424. "youshou2": {
  425. "attachment": [
  426. { "time": 0, "name": null },
  427. { "time": 0.3333, "name": "youshou2" }
  428. ]
  429. },
  430. "zi_1": {
  431. "color": [
  432. { "time": 0.1667, "color": "ffffff00" },
  433. { "time": 0.2667, "color": "ffffffff" }
  434. ],
  435. "attachment": [
  436. { "time": 0, "name": null },
  437. { "time": 0.1667, "name": "zi_1" }
  438. ]
  439. },
  440. "zi_2": {
  441. "color": [
  442. { "time": 0.5, "color": "ffffff00" },
  443. { "time": 0.6, "color": "ffffffff" }
  444. ],
  445. "attachment": [
  446. { "time": 0, "name": null },
  447. { "time": 0.5, "name": "zi_2" }
  448. ]
  449. },
  450. "zi_3": {
  451. "attachment": [
  452. { "time": 0, "name": null },
  453. { "time": 0.8333, "name": "zi_3" }
  454. ]
  455. },
  456. "zi_4": {
  457. "color": [
  458. { "time": 1.1, "color": "ffffff00" },
  459. { "time": 1.2, "color": "ffffffff" }
  460. ],
  461. "attachment": [
  462. { "time": 0, "name": null },
  463. { "time": 1.1, "name": "zi_4" }
  464. ]
  465. },
  466. "zi_5": {
  467. "color": [
  468. { "time": 1.3667, "color": "ffffff00" },
  469. { "time": 1.5, "color": "ffffffff" }
  470. ],
  471. "attachment": [
  472. { "time": 0, "name": null },
  473. { "time": 1.3667, "name": "zi_5" }
  474. ]
  475. },
  476. "zi_6": {
  477. "color": [
  478. { "time": 1.6333, "color": "ffffff00" },
  479. { "time": 1.7333, "color": "ffffffff" }
  480. ],
  481. "attachment": [
  482. { "time": 0, "name": null },
  483. { "time": 1.6333, "name": "zi_6" }
  484. ]
  485. },
  486. "zi_7": {
  487. "color": [
  488. { "time": 1.9667, "color": "ffffff00" },
  489. { "time": 2.0667, "color": "ffffffff" }
  490. ],
  491. "attachment": [
  492. { "time": 0, "name": null },
  493. { "time": 1.9667, "name": "zi_7" }
  494. ]
  495. },
  496. "zi_8": {
  497. "color": [
  498. { "time": 2.5, "color": "ffffff00" },
  499. { "time": 2.6, "color": "ffffffff" }
  500. ],
  501. "attachment": [
  502. { "time": 0, "name": null },
  503. { "time": 2.5, "name": "zi_8" }
  504. ]
  505. },
  506. "zi_9": {
  507. "color": [
  508. { "time": 2.8667, "color": "ffffff00" },
  509. { "time": 2.9667, "color": "ffffffff" }
  510. ],
  511. "attachment": [
  512. { "time": 0, "name": null },
  513. { "time": 2.8667, "name": "zi_9" }
  514. ]
  515. },
  516. "zi_10": {
  517. "color": [
  518. { "time": 3.3333, "color": "ffffff00" },
  519. { "time": 3.4333, "color": "ffffffff" }
  520. ],
  521. "attachment": [
  522. { "time": 0, "name": null },
  523. { "time": 3.3333, "name": "zi_10" }
  524. ]
  525. },
  526. "zi_11": {
  527. "color": [
  528. { "time": 3.8667, "color": "ffffff00" },
  529. { "time": 3.9667, "color": "ffffffff" }
  530. ],
  531. "attachment": [
  532. { "time": 0, "name": null },
  533. { "time": 3.8667, "name": "zi_11" }
  534. ]
  535. },
  536. "zi_12": {
  537. "color": [
  538. { "time": 4.3667, "color": "ffffff00" },
  539. { "time": 4.4667, "color": "ffffffff" }
  540. ],
  541. "attachment": [
  542. { "time": 0, "name": null },
  543. { "time": 4.3667, "name": "zi_12" }
  544. ]
  545. },
  546. "zuiba1": {
  547. "attachment": [
  548. { "time": 0, "name": "zuiba1" },
  549. { "time": 0.6, "name": "zuiba1" },
  550. { "time": 1.2, "name": "zuiba1" },
  551. { "time": 1.8667, "name": "zuiba1" },
  552. { "time": 2.4333, "name": "zuiba1" },
  553. { "time": 3.1, "name": "zuiba1" },
  554. { "time": 3.5667, "name": "zuiba1" },
  555. { "time": 4.1667, "name": "zuiba1" },
  556. { "time": 4.8333, "name": "zuiba1" }
  557. ]
  558. },
  559. "zuiba2": {
  560. "attachment": [
  561. { "time": 0, "name": null },
  562. { "time": 0.2333, "name": "zuiba2" },
  563. { "time": 0.6, "name": null },
  564. { "time": 0.8333, "name": "zuiba2" },
  565. { "time": 1.2, "name": null },
  566. { "time": 1.4333, "name": "zuiba2" },
  567. { "time": 1.8667, "name": null },
  568. { "time": 2.1, "name": "zuiba2" },
  569. { "time": 2.4333, "name": null },
  570. { "time": 2.8, "name": "zuiba2" },
  571. { "time": 3.1, "name": null },
  572. { "time": 3.2333, "name": "zuiba2" },
  573. { "time": 3.5667, "name": null },
  574. { "time": 3.8, "name": "zuiba2" },
  575. { "time": 4.1667, "name": null },
  576. { "time": 4.4, "name": "zuiba2" },
  577. { "time": 4.8333, "name": null }
  578. ]
  579. },
  580. "zuoshou": {
  581. "attachment": [
  582. { "time": 0.3333, "name": null }
  583. ]
  584. },
  585. "zuoshou1": {
  586. "attachment": [
  587. { "time": 0, "name": null },
  588. { "time": 0.3333, "name": "zuoshou1" }
  589. ]
  590. },
  591. "zuoshou2": {
  592. "attachment": [
  593. { "time": 0, "name": null },
  594. { "time": 0.3333, "name": "zuoshou2" }
  595. ]
  596. }
  597. },
  598. "bones": {
  599. "bone54": {
  600. "rotate": [
  601. { "time": 0, "angle": 0 },
  602. { "time": 0.1667, "angle": 4.63 },
  603. { "time": 0.3333, "angle": -3.47 },
  604. { "time": 0.5, "angle": 0.27 },
  605. { "time": 0.6667, "angle": -3.47 },
  606. { "time": 0.9667, "angle": 0.27 },
  607. { "time": 1.2667, "angle": -3.47 },
  608. { "time": 1.5667, "angle": 0.27 },
  609. { "time": 1.8667, "angle": -3.47 },
  610. { "time": 2.2, "angle": 0.27 },
  611. { "time": 2.5333, "angle": -3.47 },
  612. { "time": 2.9333, "angle": 0.27 },
  613. { "time": 3.2333, "angle": -3.47 },
  614. { "time": 3.5667, "angle": 0.27 },
  615. { "time": 3.9, "angle": -3.47 },
  616. { "time": 4.2333, "angle": 0.27 },
  617. { "time": 4.5333, "angle": -3.47 }
  618. ],
  619. "translate": [
  620. { "time": 0, "x": -75.4, "y": 0.21, "curve": "stepped" },
  621. { "time": 0.1667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  622. { "time": 0.3333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  623. { "time": 0.6667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  624. { "time": 1.2667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  625. { "time": 1.8667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  626. { "time": 2.5333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  627. { "time": 3.2333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  628. { "time": 3.9, "x": -75.4, "y": 0.21, "curve": "stepped" },
  629. { "time": 4.5333, "x": -75.4, "y": 0.21 }
  630. ],
  631. "scale": [
  632. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  633. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  634. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  635. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  636. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  637. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  638. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  639. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  640. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  641. { "time": 4.5333, "x": 1, "y": 1 }
  642. ]
  643. },
  644. "bone48": {
  645. "rotate": [
  646. { "time": 0, "angle": 0, "curve": "stepped" },
  647. { "time": 0.1667, "angle": 0 },
  648. { "time": 0.3333, "angle": 4.91 },
  649. { "time": 0.5, "angle": 0 },
  650. { "time": 0.6667, "angle": -0.7 },
  651. { "time": 0.9667, "angle": 0 },
  652. { "time": 1.2667, "angle": -0.7 },
  653. { "time": 1.5667, "angle": 0 },
  654. { "time": 1.8667, "angle": -0.7 },
  655. { "time": 2.2, "angle": 0 },
  656. { "time": 2.5333, "angle": -0.7 },
  657. { "time": 2.9333, "angle": 0 },
  658. { "time": 3.2333, "angle": -0.7 },
  659. { "time": 3.5667, "angle": 0 },
  660. { "time": 3.9, "angle": -0.7 },
  661. { "time": 4.2333, "angle": 0 },
  662. { "time": 4.5333, "angle": -0.7 }
  663. ],
  664. "translate": [
  665. { "time": 0, "x": -2.84, "y": 77.77, "curve": "stepped" },
  666. { "time": 0.1667, "x": -2.84, "y": 77.77 },
  667. { "time": 0.3333, "x": -2.26, "y": 77.27 },
  668. { "time": 0.5, "x": -2.84, "y": 77.77, "curve": "stepped" },
  669. { "time": 0.6667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  670. { "time": 0.9667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  671. { "time": 1.2667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  672. { "time": 1.5667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  673. { "time": 1.8667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  674. { "time": 2.2, "x": -2.84, "y": 77.77, "curve": "stepped" },
  675. { "time": 2.5333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  676. { "time": 2.9333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  677. { "time": 3.2333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  678. { "time": 3.5667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  679. { "time": 3.9, "x": -2.84, "y": 77.77, "curve": "stepped" },
  680. { "time": 4.2333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  681. { "time": 4.5333, "x": -2.84, "y": 77.77 }
  682. ],
  683. "scale": [
  684. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  685. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  686. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  687. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  688. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  689. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  690. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  691. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  692. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  693. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  694. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  695. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  696. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  697. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  698. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  699. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  700. { "time": 4.5333, "x": 1, "y": 1 }
  701. ]
  702. },
  703. "bone51": {
  704. "rotate": [
  705. { "time": 0, "angle": 0, "curve": "stepped" },
  706. {
  707. "time": 0.1667,
  708. "angle": 0,
  709. "curve": [ 0.25, 0, 0.75, 1 ]
  710. },
  711. {
  712. "time": 0.3333,
  713. "angle": -6.46,
  714. "curve": [ 0.25, 0, 0.75, 1 ]
  715. },
  716. {
  717. "time": 0.5,
  718. "angle": -18.26,
  719. "curve": [ 0.25, 0, 0.75, 1 ]
  720. },
  721. {
  722. "time": 0.6667,
  723. "angle": -5.63,
  724. "curve": [ 0.25, 0, 0.75, 1 ]
  725. },
  726. {
  727. "time": 0.9667,
  728. "angle": -18.26,
  729. "curve": [ 0.25, 0, 0.75, 1 ]
  730. },
  731. {
  732. "time": 1.2667,
  733. "angle": -5.63,
  734. "curve": [ 0.25, 0, 0.75, 1 ]
  735. },
  736. {
  737. "time": 1.5667,
  738. "angle": -18.26,
  739. "curve": [ 0.25, 0, 0.75, 1 ]
  740. },
  741. {
  742. "time": 1.8667,
  743. "angle": -5.63,
  744. "curve": [ 0.25, 0, 0.75, 1 ]
  745. },
  746. {
  747. "time": 2.2,
  748. "angle": -18.26,
  749. "curve": [ 0.25, 0, 0.75, 1 ]
  750. },
  751. {
  752. "time": 2.5333,
  753. "angle": -5.63,
  754. "curve": [ 0.25, 0, 0.75, 1 ]
  755. },
  756. {
  757. "time": 2.9333,
  758. "angle": -18.26,
  759. "curve": [ 0.25, 0, 0.75, 1 ]
  760. },
  761. {
  762. "time": 3.2333,
  763. "angle": -5.63,
  764. "curve": [ 0.25, 0, 0.75, 1 ]
  765. },
  766. {
  767. "time": 3.5667,
  768. "angle": -18.26,
  769. "curve": [ 0.25, 0, 0.75, 1 ]
  770. },
  771. {
  772. "time": 3.9,
  773. "angle": -5.63,
  774. "curve": [ 0.25, 0, 0.75, 1 ]
  775. },
  776. {
  777. "time": 4.2333,
  778. "angle": -18.26,
  779. "curve": [ 0.25, 0, 0.75, 1 ]
  780. },
  781. { "time": 4.5333, "angle": -5.63 }
  782. ],
  783. "translate": [
  784. { "time": 0, "x": -60.19, "y": 125.38, "curve": "stepped" },
  785. {
  786. "time": 0.1667,
  787. "x": -60.19,
  788. "y": 125.38,
  789. "curve": [ 0.25, 0, 0.75, 1 ]
  790. },
  791. { "time": 0.3333, "x": -60.67, "y": 124.82 }
  792. ]
  793. },
  794. "root": {
  795. "rotate": [
  796. { "time": 0, "angle": 0 }
  797. ],
  798. "translate": [
  799. { "time": 0, "x": 0, "y": 0 }
  800. ],
  801. "scale": [
  802. { "time": 0, "x": 0.65, "y": 0.65 }
  803. ]
  804. },
  805. "bone": {
  806. "rotate": [
  807. { "time": 0, "angle": 0, "curve": "stepped" },
  808. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  809. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  810. { "time": 0.5, "angle": 0, "curve": "stepped" },
  811. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  812. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  813. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  814. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  815. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  816. { "time": 2.2, "angle": 0, "curve": "stepped" },
  817. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  818. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  819. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  820. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  821. { "time": 3.9, "angle": 0, "curve": "stepped" },
  822. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  823. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  824. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  825. { "time": 5.2, "angle": 0 }
  826. ],
  827. "translate": [
  828. { "time": 0, "x": 0, "y": 0 },
  829. { "time": 0.1667, "x": 0, "y": -1.05 },
  830. { "time": 0.3333, "x": 3.11, "y": 0, "curve": "stepped" },
  831. { "time": 0.5, "x": 3.11, "y": 0, "curve": "stepped" },
  832. { "time": 0.6667, "x": 3.11, "y": 0, "curve": "stepped" },
  833. { "time": 0.9667, "x": 3.11, "y": 0, "curve": "stepped" },
  834. { "time": 1.2667, "x": 3.11, "y": 0, "curve": "stepped" },
  835. { "time": 1.5667, "x": 3.11, "y": 0, "curve": "stepped" },
  836. { "time": 1.8667, "x": 3.11, "y": 0, "curve": "stepped" },
  837. { "time": 2.2, "x": 3.11, "y": 0, "curve": "stepped" },
  838. { "time": 2.5333, "x": 3.11, "y": 0, "curve": "stepped" },
  839. { "time": 2.9333, "x": 3.11, "y": 0, "curve": "stepped" },
  840. { "time": 3.2333, "x": 3.11, "y": 0, "curve": "stepped" },
  841. { "time": 3.5667, "x": 3.11, "y": 0, "curve": "stepped" },
  842. { "time": 3.9, "x": 3.11, "y": 0, "curve": "stepped" },
  843. { "time": 4.2333, "x": 3.11, "y": 0, "curve": "stepped" },
  844. { "time": 4.5333, "x": 3.11, "y": 0, "curve": "stepped" },
  845. { "time": 4.8667, "x": 3.11, "y": 0, "curve": "stepped" },
  846. { "time": 5.2, "x": 3.11, "y": 0 }
  847. ],
  848. "scale": [
  849. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  850. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  851. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  852. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  853. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  854. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  855. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  856. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  857. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  858. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  859. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  860. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  864. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  865. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  866. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  867. { "time": 5.2, "x": 1, "y": 1 }
  868. ]
  869. },
  870. "bone2": {
  871. "rotate": [
  872. { "time": 0, "angle": 0, "curve": "stepped" },
  873. { "time": 0.1667, "angle": 0 },
  874. { "time": 0.3333, "angle": -1.48, "curve": "stepped" },
  875. { "time": 0.5, "angle": -1.48, "curve": "stepped" },
  876. { "time": 0.6667, "angle": -1.48, "curve": "stepped" },
  877. { "time": 0.9667, "angle": -1.48, "curve": "stepped" },
  878. { "time": 1.2667, "angle": -1.48, "curve": "stepped" },
  879. { "time": 1.5667, "angle": -1.48, "curve": "stepped" },
  880. { "time": 1.8667, "angle": -1.48, "curve": "stepped" },
  881. { "time": 2.2, "angle": -1.48, "curve": "stepped" },
  882. { "time": 2.5333, "angle": -1.48, "curve": "stepped" },
  883. { "time": 2.9333, "angle": -1.48, "curve": "stepped" },
  884. { "time": 3.2333, "angle": -1.48, "curve": "stepped" },
  885. { "time": 3.5667, "angle": -1.48, "curve": "stepped" },
  886. { "time": 3.9, "angle": -1.48, "curve": "stepped" },
  887. { "time": 4.2333, "angle": -1.48, "curve": "stepped" },
  888. { "time": 4.5333, "angle": -1.48 }
  889. ],
  890. "translate": [
  891. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  892. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  893. { "time": 0.3333, "x": 0, "y": 0 },
  894. { "time": 0.5, "x": 0.94, "y": -0.02 },
  895. { "time": 0.6667, "x": 0, "y": 0 },
  896. { "time": 0.9667, "x": 0.94, "y": -0.02 },
  897. { "time": 1.2667, "x": 0, "y": 0 },
  898. { "time": 1.5667, "x": 0.94, "y": -0.02 },
  899. { "time": 1.8667, "x": 0, "y": 0 },
  900. { "time": 2.2, "x": 0.94, "y": -0.02 },
  901. { "time": 2.5333, "x": 0, "y": 0 },
  902. { "time": 2.9333, "x": 0.94, "y": -0.02 },
  903. { "time": 3.2333, "x": 0, "y": 0 },
  904. { "time": 3.5667, "x": 0.94, "y": -0.02 },
  905. { "time": 3.9, "x": 0, "y": 0 },
  906. { "time": 4.2333, "x": 0.94, "y": -0.02 },
  907. { "time": 4.5333, "x": 0, "y": 0 }
  908. ],
  909. "scale": [
  910. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  911. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  912. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  913. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  914. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  915. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  916. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  917. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  918. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  919. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  920. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  921. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  922. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  923. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  924. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  925. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  926. { "time": 4.5333, "x": 1, "y": 1 }
  927. ]
  928. },
  929. "bone3": {
  930. "rotate": [
  931. { "time": 0, "angle": 0, "curve": "stepped" },
  932. { "time": 0.1667, "angle": 0 },
  933. { "time": 0.3333, "angle": -0.24, "curve": "stepped" },
  934. { "time": 0.5, "angle": -0.24, "curve": "stepped" },
  935. { "time": 0.6667, "angle": -0.24, "curve": "stepped" },
  936. { "time": 0.9667, "angle": -0.24, "curve": "stepped" },
  937. { "time": 1.2667, "angle": -0.24, "curve": "stepped" },
  938. { "time": 1.5667, "angle": -0.24, "curve": "stepped" },
  939. { "time": 1.8667, "angle": -0.24, "curve": "stepped" },
  940. { "time": 2.2, "angle": -0.24, "curve": "stepped" },
  941. { "time": 2.5333, "angle": -0.24, "curve": "stepped" },
  942. { "time": 2.9333, "angle": -0.24, "curve": "stepped" },
  943. { "time": 3.2333, "angle": -0.24, "curve": "stepped" },
  944. { "time": 3.5667, "angle": -0.24, "curve": "stepped" },
  945. { "time": 3.9, "angle": -0.24, "curve": "stepped" },
  946. { "time": 4.2333, "angle": -0.24, "curve": "stepped" },
  947. { "time": 4.5333, "angle": -0.24 }
  948. ],
  949. "translate": [
  950. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  951. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  952. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  953. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  954. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  955. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  956. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  957. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  958. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  959. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  960. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  961. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  962. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  963. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  964. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  965. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  966. { "time": 4.5333, "x": 0, "y": 0 }
  967. ],
  968. "scale": [
  969. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  970. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  971. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  972. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  973. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  974. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  975. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  976. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  977. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  978. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  979. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  980. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  981. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  982. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  983. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  984. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  985. { "time": 4.5333, "x": 1, "y": 1 }
  986. ]
  987. },
  988. "bone4": {
  989. "rotate": [
  990. { "time": 0, "angle": 0, "curve": "stepped" },
  991. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  992. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  993. { "time": 0.5, "angle": 0, "curve": "stepped" },
  994. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  995. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  996. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  997. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  998. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  999. { "time": 2.2, "angle": 0, "curve": "stepped" },
  1000. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  1001. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1002. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  1003. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  1004. { "time": 3.9, "angle": 0, "curve": "stepped" },
  1005. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  1006. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  1007. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  1008. { "time": 5.2, "angle": 0 }
  1009. ],
  1010. "translate": [
  1011. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1012. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1013. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1014. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1015. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1018. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1019. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1020. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1021. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1022. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1023. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  1024. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1025. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  1026. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  1027. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  1028. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  1029. { "time": 5.2, "x": 0, "y": 0 }
  1030. ],
  1031. "scale": [
  1032. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1033. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1034. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1035. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1036. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1037. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  1038. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1039. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1040. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1041. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1042. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1043. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1044. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  1049. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  1050. { "time": 5.2, "x": 1, "y": 1 }
  1051. ]
  1052. },
  1053. "bone5": {
  1054. "rotate": [
  1055. { "time": 0, "angle": 0, "curve": "stepped" },
  1056. { "time": 0.1667, "angle": 0 },
  1057. { "time": 0.5, "angle": -2.14 },
  1058. { "time": 0.6667, "angle": 0 },
  1059. { "time": 0.9667, "angle": -2.14 },
  1060. { "time": 1.2667, "angle": 0 },
  1061. { "time": 1.5667, "angle": -2.14 },
  1062. { "time": 1.8667, "angle": 0 },
  1063. { "time": 2.2, "angle": -2.14 },
  1064. { "time": 2.5333, "angle": 0 },
  1065. { "time": 2.9, "angle": -2.14 },
  1066. { "time": 3.2333, "angle": 0 },
  1067. { "time": 3.5667, "angle": -2.14 },
  1068. { "time": 3.9, "angle": 0 },
  1069. { "time": 4.2333, "angle": -2.14 },
  1070. { "time": 4.5333, "angle": 0 }
  1071. ],
  1072. "translate": [
  1073. { "time": 0, "x": 0, "y": 0 },
  1074. { "time": 0.1667, "x": -0.7, "y": -0.02 },
  1075. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1076. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1077. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1078. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  1079. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1080. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1081. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1082. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1083. { "time": 2.5333, "x": 0, "y": 0 },
  1084. { "time": 2.9, "x": -0.86, "y": 0 },
  1085. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  1086. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1087. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  1088. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  1089. { "time": 4.5333, "x": 0, "y": 0 }
  1090. ],
  1091. "scale": [
  1092. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 0.1667, "x": 1, "y": 1 },
  1094. { "time": 0.3333, "x": 1.02, "y": 1 },
  1095. { "time": 0.6667, "x": 1, "y": 1 },
  1096. { "time": 0.9667, "x": 1.02, "y": 1 },
  1097. { "time": 1.2667, "x": 1, "y": 1 },
  1098. { "time": 1.5667, "x": 1.02, "y": 1 },
  1099. { "time": 1.8667, "x": 1, "y": 1 },
  1100. { "time": 2.2, "x": 1.02, "y": 1 },
  1101. { "time": 2.5333, "x": 1, "y": 1 },
  1102. { "time": 3.0333, "x": 1.02, "y": 1 },
  1103. { "time": 3.2333, "x": 1, "y": 1 },
  1104. { "time": 3.5667, "x": 1.02, "y": 1 },
  1105. { "time": 3.9, "x": 1, "y": 1 },
  1106. { "time": 4.2333, "x": 1.02, "y": 1 },
  1107. { "time": 4.5333, "x": 1, "y": 1 }
  1108. ]
  1109. },
  1110. "bone6": {
  1111. "rotate": [
  1112. { "time": 0, "angle": 0, "curve": "stepped" },
  1113. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1114. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1115. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1116. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1117. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1118. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  1119. { "time": 3.2667, "angle": 0 }
  1120. ],
  1121. "translate": [
  1122. { "time": 0, "x": 0, "y": 0 },
  1123. { "time": 0.1, "x": -2.24, "y": 0, "curve": "stepped" },
  1124. { "time": 0.2, "x": -2.24, "y": 0 },
  1125. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1126. { "time": 2.7667, "x": 0, "y": 0 },
  1127. { "time": 2.9, "x": -2.58, "y": 0, "curve": "stepped" },
  1128. { "time": 3.0333, "x": -2.58, "y": 0 },
  1129. { "time": 3.2667, "x": 0, "y": 0 }
  1130. ],
  1131. "scale": [
  1132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1133. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1134. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1135. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1136. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 3.2667, "x": 1, "y": 1 }
  1140. ]
  1141. },
  1142. "bone7": {
  1143. "rotate": [
  1144. { "time": 0, "angle": 0, "curve": "stepped" },
  1145. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1146. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1147. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1148. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1149. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1150. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  1151. { "time": 3.2667, "angle": 0 }
  1152. ],
  1153. "translate": [
  1154. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1156. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1157. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1158. { "time": 2.7667, "x": 0, "y": 0 },
  1159. { "time": 2.9, "x": -0.84, "y": 0, "curve": "stepped" },
  1160. { "time": 3.0333, "x": -0.84, "y": 0 },
  1161. { "time": 3.2667, "x": 0, "y": 0 }
  1162. ],
  1163. "scale": [
  1164. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1165. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  1166. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  1167. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1168. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  1169. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  1170. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  1171. { "time": 3.2667, "x": 1, "y": 1 }
  1172. ]
  1173. },
  1174. "bone8": {
  1175. "rotate": [
  1176. { "time": 0, "angle": 0, "curve": "stepped" },
  1177. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1178. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1179. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1180. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1181. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1182. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  1183. { "time": 3.2667, "angle": 0 }
  1184. ],
  1185. "translate": [
  1186. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1187. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1188. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1189. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1190. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1191. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1192. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  1193. { "time": 3.2667, "x": 0, "y": 0 }
  1194. ],
  1195. "scale": [
  1196. { "time": 0, "x": 1, "y": 1 },
  1197. { "time": 0.1, "x": 0.514, "y": 1, "curve": "stepped" },
  1198. { "time": 0.2, "x": 0.514, "y": 1 },
  1199. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1200. { "time": 2.7667, "x": 1, "y": 1 },
  1201. { "time": 2.9, "x": 0.514, "y": 1, "curve": "stepped" },
  1202. { "time": 3.0333, "x": 0.514, "y": 1 },
  1203. { "time": 3.2667, "x": 1, "y": 1 }
  1204. ]
  1205. },
  1206. "bone9": {
  1207. "rotate": [
  1208. { "time": 0, "angle": 0, "curve": "stepped" },
  1209. { "time": 0.1, "angle": 0, "curve": "stepped" },
  1210. { "time": 0.2, "angle": 0, "curve": "stepped" },
  1211. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1212. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  1213. { "time": 2.9, "angle": 0, "curve": "stepped" },
  1214. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  1215. { "time": 3.2667, "angle": 0 }
  1216. ],
  1217. "translate": [
  1218. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1219. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  1220. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  1221. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  1225. { "time": 3.2667, "x": 0, "y": 0 }
  1226. ],
  1227. "scale": [
  1228. { "time": 0, "x": 1, "y": 1 },
  1229. { "time": 0.1, "x": 0.504, "y": 1, "curve": "stepped" },
  1230. { "time": 0.2, "x": 0.504, "y": 1 },
  1231. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1232. { "time": 2.7667, "x": 1, "y": 1 },
  1233. { "time": 2.9, "x": 0.504, "y": 1, "curve": "stepped" },
  1234. { "time": 3.0333, "x": 0.504, "y": 1 },
  1235. { "time": 3.2667, "x": 1, "y": 1 }
  1236. ]
  1237. },
  1238. "bone10": {
  1239. "rotate": [
  1240. { "time": 0, "angle": 0, "curve": "stepped" },
  1241. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  1242. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  1243. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1244. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1245. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  1246. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1247. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1248. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1249. { "time": 2.2, "angle": 0, "curve": "stepped" },
  1250. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  1251. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1252. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  1253. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  1254. { "time": 3.9, "angle": 0, "curve": "stepped" },
  1255. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  1256. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  1257. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  1258. { "time": 5.2, "angle": 0 }
  1259. ],
  1260. "translate": [
  1261. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1262. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1263. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  1264. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1265. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1266. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  1267. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  1272. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  1273. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  1274. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  1275. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  1276. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  1277. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  1278. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  1279. { "time": 5.2, "x": 0, "y": 0 }
  1280. ],
  1281. "scale": [
  1282. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1283. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1284. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  1285. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1286. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1287. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  1288. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1289. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1290. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1291. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1292. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1293. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1294. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  1295. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1296. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  1297. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 5.2, "x": 1, "y": 1 }
  1301. ]
  1302. },
  1303. "bone11": {
  1304. "rotate": [
  1305. { "time": 0, "angle": 0, "curve": "stepped" },
  1306. {
  1307. "time": 0.1667,
  1308. "angle": 0,
  1309. "curve": [ 0.248, 0, 0.628, 0.52 ]
  1310. },
  1311. {
  1312. "time": 0.4333,
  1313. "angle": -0.64,
  1314. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1315. },
  1316. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1317. { "time": 1, "angle": 0, "curve": "stepped" },
  1318. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  1319. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  1320. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  1321. { "time": 2.2, "angle": 0, "curve": "stepped" },
  1322. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  1323. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  1324. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  1325. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  1326. { "time": 3.9, "angle": 0, "curve": "stepped" },
  1327. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  1328. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  1329. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  1330. { "time": 5.2, "angle": 0 }
  1331. ],
  1332. "translate": [
  1333. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1334. {
  1335. "time": 0.1667,
  1336. "x": 0,
  1337. "y": 0,
  1338. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1339. },
  1340. {
  1341. "time": 0.3333,
  1342. "x": 0.78,
  1343. "y": 0.01,
  1344. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1345. },
  1346. {
  1347. "time": 0.6667,
  1348. "x": 0.78,
  1349. "y": 0.01,
  1350. "curve": [ 0.25, 0, 0.75, 1 ]
  1351. },
  1352. {
  1353. "time": 1,
  1354. "x": 0.77,
  1355. "y": 0.95,
  1356. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1357. },
  1358. {
  1359. "time": 1.2667,
  1360. "x": 0,
  1361. "y": 0,
  1362. "curve": [ 0.25, 0, 0.75, 1 ]
  1363. },
  1364. {
  1365. "time": 1.5667,
  1366. "x": 0.77,
  1367. "y": 0.95,
  1368. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1369. },
  1370. {
  1371. "time": 1.8667,
  1372. "x": 0,
  1373. "y": 0,
  1374. "curve": [ 0.25, 0, 0.75, 1 ]
  1375. },
  1376. {
  1377. "time": 2.2,
  1378. "x": 0.77,
  1379. "y": 0.95,
  1380. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1381. },
  1382. {
  1383. "time": 2.5333,
  1384. "x": 0,
  1385. "y": 0,
  1386. "curve": [ 0.25, 0, 0.75, 1 ]
  1387. },
  1388. {
  1389. "time": 2.9333,
  1390. "x": 0.77,
  1391. "y": 0.95,
  1392. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1393. },
  1394. {
  1395. "time": 3.2333,
  1396. "x": 0,
  1397. "y": 0,
  1398. "curve": [ 0.25, 0, 0.75, 1 ]
  1399. },
  1400. {
  1401. "time": 3.5667,
  1402. "x": 0.77,
  1403. "y": 0.95,
  1404. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1405. },
  1406. {
  1407. "time": 3.9,
  1408. "x": 0,
  1409. "y": 0,
  1410. "curve": [ 0.25, 0, 0.75, 1 ]
  1411. },
  1412. {
  1413. "time": 4.2333,
  1414. "x": 0.77,
  1415. "y": 0.95,
  1416. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1417. },
  1418. {
  1419. "time": 4.5333,
  1420. "x": 0,
  1421. "y": 0,
  1422. "curve": [ 0.25, 0, 0.75, 1 ]
  1423. },
  1424. {
  1425. "time": 4.8667,
  1426. "x": 0.77,
  1427. "y": 0.95,
  1428. "curve": [ 0.351, 0.4, 0.757, 1 ]
  1429. },
  1430. { "time": 5.2, "x": 0, "y": 0 }
  1431. ],
  1432. "scale": [
  1433. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1434. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1435. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1436. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  1437. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  1438. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  1439. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  1440. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  1441. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  1442. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  1443. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  1444. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  1445. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  1446. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  1447. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  1448. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  1449. { "time": 5.2, "x": 1, "y": 1 }
  1450. ]
  1451. },
  1452. "bone12": {
  1453. "rotate": [
  1454. {
  1455. "time": 0,
  1456. "angle": 0,
  1457. "curve": [ 0.25, 0, 0.75, 1 ]
  1458. },
  1459. {
  1460. "time": 0.1667,
  1461. "angle": -5.39,
  1462. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1463. },
  1464. {
  1465. "time": 0.3333,
  1466. "angle": -15.7,
  1467. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  1468. },
  1469. {
  1470. "time": 0.4333,
  1471. "angle": -8.33,
  1472. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1473. },
  1474. {
  1475. "time": 0.8333,
  1476. "angle": -6.1,
  1477. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1478. },
  1479. {
  1480. "time": 1.0667,
  1481. "angle": -21.44,
  1482. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1483. },
  1484. {
  1485. "time": 1.3,
  1486. "angle": -17.78,
  1487. "curve": [ 0.25, 0, 0.625, 0.5 ]
  1488. },
  1489. {
  1490. "time": 1.9,
  1491. "angle": -6.1,
  1492. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1493. },
  1494. {
  1495. "time": 2.1667,
  1496. "angle": -21.44,
  1497. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1498. },
  1499. {
  1500. "time": 2.3667,
  1501. "angle": -17.78,
  1502. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1503. },
  1504. {
  1505. "time": 2.5667,
  1506. "angle": -6.1,
  1507. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1508. },
  1509. {
  1510. "time": 2.9,
  1511. "angle": -21.44,
  1512. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1513. },
  1514. {
  1515. "time": 3.0667,
  1516. "angle": -17.78,
  1517. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1518. },
  1519. {
  1520. "time": 3.2667,
  1521. "angle": -6.1,
  1522. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1523. },
  1524. {
  1525. "time": 3.5333,
  1526. "angle": -21.44,
  1527. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1528. },
  1529. {
  1530. "time": 3.6667,
  1531. "angle": -17.78,
  1532. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1533. },
  1534. {
  1535. "time": 3.9333,
  1536. "angle": -6.1,
  1537. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1538. },
  1539. {
  1540. "time": 4.2,
  1541. "angle": -21.44,
  1542. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1543. },
  1544. {
  1545. "time": 4.3667,
  1546. "angle": -17.78,
  1547. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1548. },
  1549. {
  1550. "time": 4.5667,
  1551. "angle": -6.1,
  1552. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1553. },
  1554. {
  1555. "time": 4.8333,
  1556. "angle": -21.44,
  1557. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1558. },
  1559. { "time": 5.0333, "angle": -17.78 }
  1560. ],
  1561. "translate": [
  1562. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1563. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1564. {
  1565. "time": 0.8333,
  1566. "x": 0,
  1567. "y": 0,
  1568. "curve": [ 0.271, 0, 0.619, 0.41 ]
  1569. },
  1570. { "time": 0.9667, "x": 0.3, "y": 1.21 }
  1571. ],
  1572. "scale": [
  1573. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1574. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1575. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1576. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1577. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1578. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  1579. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1580. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1581. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1582. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1583. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  1584. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  1585. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  1586. { "time": 5.0333, "x": 1, "y": 1 }
  1587. ]
  1588. },
  1589. "bone13": {
  1590. "rotate": [
  1591. {
  1592. "time": 0,
  1593. "angle": 0,
  1594. "curve": [ 0.25, 0, 0.75, 1 ]
  1595. },
  1596. {
  1597. "time": 0.1667,
  1598. "angle": -5.39,
  1599. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1600. },
  1601. {
  1602. "time": 0.3333,
  1603. "angle": -4.58,
  1604. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  1605. },
  1606. {
  1607. "time": 0.4333,
  1608. "angle": -13.27,
  1609. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1610. },
  1611. {
  1612. "time": 0.8333,
  1613. "angle": 0,
  1614. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1615. },
  1616. {
  1617. "time": 1.0667,
  1618. "angle": 1.04,
  1619. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1620. },
  1621. {
  1622. "time": 1.3,
  1623. "angle": -6.64,
  1624. "curve": [ 0.25, 0, 0.625, 0.5 ]
  1625. },
  1626. {
  1627. "time": 1.9,
  1628. "angle": 0,
  1629. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1630. },
  1631. {
  1632. "time": 2.1667,
  1633. "angle": 1.04,
  1634. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1635. },
  1636. {
  1637. "time": 2.3667,
  1638. "angle": -6.64,
  1639. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1640. },
  1641. {
  1642. "time": 2.5667,
  1643. "angle": 0,
  1644. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1645. },
  1646. {
  1647. "time": 2.9,
  1648. "angle": 1.04,
  1649. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1650. },
  1651. {
  1652. "time": 3.0667,
  1653. "angle": -6.64,
  1654. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1655. },
  1656. {
  1657. "time": 3.2667,
  1658. "angle": 0,
  1659. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1660. },
  1661. {
  1662. "time": 3.5333,
  1663. "angle": 1.04,
  1664. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1665. },
  1666. {
  1667. "time": 3.6667,
  1668. "angle": -6.64,
  1669. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1670. },
  1671. {
  1672. "time": 3.9333,
  1673. "angle": 0,
  1674. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1675. },
  1676. {
  1677. "time": 4.2,
  1678. "angle": 1.04,
  1679. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1680. },
  1681. {
  1682. "time": 4.3667,
  1683. "angle": -6.64,
  1684. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1685. },
  1686. {
  1687. "time": 4.5667,
  1688. "angle": 0,
  1689. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1690. },
  1691. {
  1692. "time": 4.8333,
  1693. "angle": 1.04,
  1694. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1695. },
  1696. { "time": 5.0333, "angle": -6.64 }
  1697. ],
  1698. "translate": [
  1699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1700. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1701. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1702. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1703. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1704. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  1705. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1706. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1707. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  1708. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  1709. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  1710. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  1711. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  1712. { "time": 5.0333, "x": 0, "y": 0 }
  1713. ],
  1714. "scale": [
  1715. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1716. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1717. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1718. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1719. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1720. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  1721. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1722. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1723. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1724. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1725. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  1727. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 5.0333, "x": 1, "y": 1 }
  1729. ]
  1730. },
  1731. "bone14": {
  1732. "rotate": [
  1733. {
  1734. "time": 0,
  1735. "angle": 0,
  1736. "curve": [ 0.25, 0, 0.75, 1 ]
  1737. },
  1738. {
  1739. "time": 0.1667,
  1740. "angle": 5.93,
  1741. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1742. },
  1743. {
  1744. "time": 0.3333,
  1745. "angle": 3.54,
  1746. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  1747. },
  1748. {
  1749. "time": 0.4333,
  1750. "angle": -8.1,
  1751. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1752. },
  1753. {
  1754. "time": 0.8333,
  1755. "angle": -9.04,
  1756. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1757. },
  1758. {
  1759. "time": 1.0667,
  1760. "angle": 1.55,
  1761. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1762. },
  1763. {
  1764. "time": 1.3,
  1765. "angle": -4.95,
  1766. "curve": [ 0.25, 0, 0.625, 0.5 ]
  1767. },
  1768. {
  1769. "time": 1.9,
  1770. "angle": -9.04,
  1771. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1772. },
  1773. {
  1774. "time": 2.1667,
  1775. "angle": 1.55,
  1776. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1777. },
  1778. {
  1779. "time": 2.3667,
  1780. "angle": -4.95,
  1781. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1782. },
  1783. {
  1784. "time": 2.5667,
  1785. "angle": -9.04,
  1786. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1787. },
  1788. {
  1789. "time": 2.9,
  1790. "angle": 1.55,
  1791. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1792. },
  1793. {
  1794. "time": 3.0667,
  1795. "angle": -4.95,
  1796. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1797. },
  1798. {
  1799. "time": 3.2667,
  1800. "angle": -9.04,
  1801. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1802. },
  1803. {
  1804. "time": 3.5333,
  1805. "angle": 1.55,
  1806. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1807. },
  1808. {
  1809. "time": 3.6667,
  1810. "angle": -4.95,
  1811. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1812. },
  1813. {
  1814. "time": 3.9333,
  1815. "angle": -9.04,
  1816. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1817. },
  1818. {
  1819. "time": 4.2,
  1820. "angle": 1.55,
  1821. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1822. },
  1823. {
  1824. "time": 4.3667,
  1825. "angle": -4.95,
  1826. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1827. },
  1828. {
  1829. "time": 4.5667,
  1830. "angle": -9.04,
  1831. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1832. },
  1833. {
  1834. "time": 4.8333,
  1835. "angle": 1.55,
  1836. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1837. },
  1838. { "time": 5.0333, "angle": -4.95 }
  1839. ],
  1840. "translate": [
  1841. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1842. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1843. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1844. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1845. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1846. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  1847. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1848. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1849. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  1850. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  1851. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  1852. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  1853. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  1854. { "time": 5.0333, "x": 0, "y": 0 }
  1855. ],
  1856. "scale": [
  1857. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1858. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  1859. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  1860. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  1861. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  1862. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  1863. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  1864. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  1865. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  1866. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  1867. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  1868. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  1869. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  1870. { "time": 5.0333, "x": 1, "y": 1 }
  1871. ]
  1872. },
  1873. "bone15": {
  1874. "rotate": [
  1875. {
  1876. "time": 0,
  1877. "angle": 0,
  1878. "curve": [ 0.25, 0, 0.75, 1 ]
  1879. },
  1880. {
  1881. "time": 0.1667,
  1882. "angle": 5.93,
  1883. "curve": [ 0.265, 0, 0.618, 0.43 ]
  1884. },
  1885. {
  1886. "time": 0.3333,
  1887. "angle": 3.54,
  1888. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  1889. },
  1890. {
  1891. "time": 0.4333,
  1892. "angle": -8.1,
  1893. "curve": [ 0.378, 0.52, 0.748, 1 ]
  1894. },
  1895. {
  1896. "time": 0.8333,
  1897. "angle": -0.32,
  1898. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1899. },
  1900. {
  1901. "time": 1.0667,
  1902. "angle": 7.24,
  1903. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1904. },
  1905. {
  1906. "time": 1.3,
  1907. "angle": -4.95,
  1908. "curve": [ 0.25, 0, 0.625, 0.5 ]
  1909. },
  1910. {
  1911. "time": 1.9,
  1912. "angle": -0.32,
  1913. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1914. },
  1915. {
  1916. "time": 2.1667,
  1917. "angle": 7.24,
  1918. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1919. },
  1920. {
  1921. "time": 2.3667,
  1922. "angle": -4.95,
  1923. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1924. },
  1925. {
  1926. "time": 2.5667,
  1927. "angle": -0.32,
  1928. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1929. },
  1930. {
  1931. "time": 2.9,
  1932. "angle": 7.24,
  1933. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1934. },
  1935. {
  1936. "time": 3.0667,
  1937. "angle": -4.95,
  1938. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1939. },
  1940. {
  1941. "time": 3.2667,
  1942. "angle": -0.32,
  1943. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1944. },
  1945. {
  1946. "time": 3.5333,
  1947. "angle": 7.24,
  1948. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1949. },
  1950. {
  1951. "time": 3.6667,
  1952. "angle": -4.95,
  1953. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1954. },
  1955. {
  1956. "time": 3.9333,
  1957. "angle": -0.32,
  1958. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1959. },
  1960. {
  1961. "time": 4.2,
  1962. "angle": 7.24,
  1963. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1964. },
  1965. {
  1966. "time": 4.3667,
  1967. "angle": -4.95,
  1968. "curve": [ 0.266, 0, 0.618, 0.42 ]
  1969. },
  1970. {
  1971. "time": 4.5667,
  1972. "angle": -0.32,
  1973. "curve": [ 0.301, 0, 0.637, 0.36 ]
  1974. },
  1975. {
  1976. "time": 4.8333,
  1977. "angle": 7.24,
  1978. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  1979. },
  1980. { "time": 5.0333, "angle": -4.95 }
  1981. ],
  1982. "translate": [
  1983. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1984. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  1985. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  1986. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  1987. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  1988. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  1989. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  1990. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  1991. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  1992. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  1993. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  1994. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  1995. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  1996. { "time": 5.0333, "x": 0, "y": 0 }
  1997. ],
  1998. "scale": [
  1999. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2000. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2001. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  2002. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  2003. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  2004. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  2005. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  2006. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  2007. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  2008. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  2009. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  2010. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  2011. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  2012. { "time": 5.0333, "x": 1, "y": 1 }
  2013. ]
  2014. },
  2015. "bone16": {
  2016. "rotate": [
  2017. { "time": 0, "angle": 0, "curve": "stepped" },
  2018. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2019. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2020. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2021. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2022. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2023. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2024. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2025. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2026. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  2027. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2028. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  2029. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  2030. { "time": 3.9, "angle": 0, "curve": "stepped" },
  2031. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  2032. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  2033. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  2034. { "time": 5.2, "angle": 0 }
  2035. ],
  2036. "translate": [
  2037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2038. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2039. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2040. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2043. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2044. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2045. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2046. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2047. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2048. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2049. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2050. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2051. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2052. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2053. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2054. { "time": 5.2, "x": 0, "y": 0 }
  2055. ],
  2056. "scale": [
  2057. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2058. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2059. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2060. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2061. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2062. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2063. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2064. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2065. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2066. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2067. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2068. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2069. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2070. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2071. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2072. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2073. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2074. { "time": 5.2, "x": 1, "y": 1 }
  2075. ]
  2076. },
  2077. "bone17": {
  2078. "rotate": [
  2079. {
  2080. "time": 0,
  2081. "angle": 0,
  2082. "curve": [ 0.25, 0, 0.75, 1 ]
  2083. },
  2084. {
  2085. "time": 0.1667,
  2086. "angle": 1.58,
  2087. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2088. },
  2089. {
  2090. "time": 0.3333,
  2091. "angle": 1.54,
  2092. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2093. },
  2094. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2095. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2096. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2097. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2098. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2099. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2100. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2101. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  2102. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2103. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  2104. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  2105. { "time": 3.9, "angle": 0, "curve": "stepped" },
  2106. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  2107. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  2108. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  2109. { "time": 5.2, "angle": 0 }
  2110. ],
  2111. "translate": [
  2112. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2113. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2114. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2115. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2116. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2117. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2118. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2119. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2120. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2121. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2122. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2123. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2124. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2125. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2126. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2127. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2128. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2129. { "time": 5.2, "x": 0, "y": 0 }
  2130. ],
  2131. "scale": [
  2132. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2133. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2134. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2135. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2136. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2137. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2138. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2139. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2140. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2141. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2143. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2144. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2145. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2146. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2147. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2148. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2149. { "time": 5.2, "x": 1, "y": 1 }
  2150. ]
  2151. },
  2152. "bone18": {
  2153. "rotate": [
  2154. {
  2155. "time": 0,
  2156. "angle": 0,
  2157. "curve": [ 0.25, 0, 0.75, 1 ]
  2158. },
  2159. {
  2160. "time": 0.1667,
  2161. "angle": 10.37,
  2162. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2163. },
  2164. {
  2165. "time": 0.3333,
  2166. "angle": 11.75,
  2167. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2168. },
  2169. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  2170. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  2171. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  2172. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  2173. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  2174. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  2175. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  2176. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  2177. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  2178. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  2179. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  2180. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  2181. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  2182. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  2183. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  2184. { "time": 5.2, "angle": 6.96 }
  2185. ],
  2186. "translate": [
  2187. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2188. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2189. {
  2190. "time": 0.5,
  2191. "x": 0,
  2192. "y": 0,
  2193. "curve": [ 0.25, 0, 0.75, 1 ]
  2194. },
  2195. { "time": 0.6667, "x": 0.03, "y": -0.42 },
  2196. {
  2197. "time": 0.9667,
  2198. "x": 0,
  2199. "y": 0,
  2200. "curve": [ 0.25, 0, 0.75, 1 ]
  2201. },
  2202. { "time": 1.2667, "x": 0.03, "y": -0.42 },
  2203. {
  2204. "time": 1.5667,
  2205. "x": 0,
  2206. "y": 0,
  2207. "curve": [ 0.25, 0, 0.75, 1 ]
  2208. },
  2209. { "time": 1.8667, "x": 0.03, "y": -0.42 },
  2210. {
  2211. "time": 2.2,
  2212. "x": 0,
  2213. "y": 0,
  2214. "curve": [ 0.25, 0, 0.75, 1 ]
  2215. },
  2216. { "time": 2.5333, "x": 0.03, "y": -0.42 },
  2217. {
  2218. "time": 2.9333,
  2219. "x": 0,
  2220. "y": 0,
  2221. "curve": [ 0.25, 0, 0.75, 1 ]
  2222. },
  2223. { "time": 3.2333, "x": 0.03, "y": -0.42 },
  2224. {
  2225. "time": 3.5667,
  2226. "x": 0,
  2227. "y": 0,
  2228. "curve": [ 0.25, 0, 0.75, 1 ]
  2229. },
  2230. { "time": 3.9, "x": 0.03, "y": -0.42 },
  2231. {
  2232. "time": 4.2333,
  2233. "x": 0,
  2234. "y": 0,
  2235. "curve": [ 0.25, 0, 0.75, 1 ]
  2236. },
  2237. { "time": 4.5333, "x": 0.03, "y": -0.42 },
  2238. {
  2239. "time": 4.8667,
  2240. "x": 0,
  2241. "y": 0,
  2242. "curve": [ 0.25, 0, 0.75, 1 ]
  2243. },
  2244. { "time": 5.2, "x": 0.03, "y": -0.42 }
  2245. ],
  2246. "scale": [
  2247. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2248. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2249. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2250. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2251. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2252. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2253. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2254. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2255. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2256. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2257. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2258. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2259. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2260. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2261. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2262. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2263. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2264. { "time": 5.2, "x": 1, "y": 1 }
  2265. ]
  2266. },
  2267. "bone19": {
  2268. "rotate": [
  2269. {
  2270. "time": 0,
  2271. "angle": 0,
  2272. "curve": [ 0.25, 0, 0.75, 1 ]
  2273. },
  2274. {
  2275. "time": 0.1667,
  2276. "angle": -0.98,
  2277. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2278. },
  2279. {
  2280. "time": 0.3333,
  2281. "angle": 7.87,
  2282. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2283. },
  2284. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  2285. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  2286. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  2287. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  2288. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  2289. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  2290. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  2291. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  2292. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  2293. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  2294. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  2295. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  2296. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  2297. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  2298. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  2299. { "time": 5.2, "angle": 6.96 }
  2300. ],
  2301. "translate": [
  2302. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2303. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2304. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2305. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2306. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2307. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2308. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2309. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2310. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2311. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2312. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2313. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2314. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2315. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2316. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2317. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2318. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2319. { "time": 5.2, "x": 0, "y": 0 }
  2320. ],
  2321. "scale": [
  2322. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2323. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2324. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2325. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2326. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2327. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2328. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2329. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2330. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2331. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2332. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2333. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2334. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2336. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2337. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2338. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2339. { "time": 5.2, "x": 1, "y": 1 }
  2340. ]
  2341. },
  2342. "bone20": {
  2343. "rotate": [
  2344. {
  2345. "time": 0,
  2346. "angle": 0,
  2347. "curve": [ 0.25, 0, 0.75, 1 ]
  2348. },
  2349. {
  2350. "time": 0.1667,
  2351. "angle": -0.98,
  2352. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2353. },
  2354. {
  2355. "time": 0.3333,
  2356. "angle": 7.87,
  2357. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2358. },
  2359. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  2360. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  2361. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  2362. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  2363. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  2364. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  2365. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  2366. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  2367. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  2368. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  2369. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  2370. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  2371. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  2372. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  2373. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  2374. { "time": 5.2, "angle": 6.96 }
  2375. ],
  2376. "translate": [
  2377. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2378. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2379. {
  2380. "time": 0.5,
  2381. "x": 0,
  2382. "y": 0,
  2383. "curve": [ 0.25, 0, 0.75, 1 ]
  2384. },
  2385. { "time": 0.6667, "x": 0.68, "y": -1.16 },
  2386. {
  2387. "time": 0.9667,
  2388. "x": 0,
  2389. "y": 0,
  2390. "curve": [ 0.25, 0, 0.75, 1 ]
  2391. },
  2392. { "time": 1.2667, "x": 0.68, "y": -1.16 },
  2393. {
  2394. "time": 1.5667,
  2395. "x": 0,
  2396. "y": 0,
  2397. "curve": [ 0.25, 0, 0.75, 1 ]
  2398. },
  2399. { "time": 1.8667, "x": 0.68, "y": -1.16 },
  2400. {
  2401. "time": 2.2,
  2402. "x": 0,
  2403. "y": 0,
  2404. "curve": [ 0.25, 0, 0.75, 1 ]
  2405. },
  2406. { "time": 2.5333, "x": 0.68, "y": -1.16 },
  2407. {
  2408. "time": 2.9333,
  2409. "x": 0,
  2410. "y": 0,
  2411. "curve": [ 0.25, 0, 0.75, 1 ]
  2412. },
  2413. { "time": 3.2333, "x": 0.68, "y": -1.16 },
  2414. {
  2415. "time": 3.5667,
  2416. "x": 0,
  2417. "y": 0,
  2418. "curve": [ 0.25, 0, 0.75, 1 ]
  2419. },
  2420. { "time": 3.9, "x": 0.68, "y": -1.16 },
  2421. {
  2422. "time": 4.2333,
  2423. "x": 0,
  2424. "y": 0,
  2425. "curve": [ 0.25, 0, 0.75, 1 ]
  2426. },
  2427. { "time": 4.5333, "x": 0.68, "y": -1.16 },
  2428. {
  2429. "time": 4.8667,
  2430. "x": 0,
  2431. "y": 0,
  2432. "curve": [ 0.25, 0, 0.75, 1 ]
  2433. },
  2434. { "time": 5.2, "x": 0.68, "y": -1.16 }
  2435. ],
  2436. "scale": [
  2437. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2438. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2439. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2440. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2441. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2442. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2443. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2444. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2445. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2446. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2447. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2448. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2449. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2450. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2451. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2452. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2453. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2454. { "time": 5.2, "x": 1, "y": 1 }
  2455. ]
  2456. },
  2457. "bone21": {
  2458. "rotate": [
  2459. {
  2460. "time": 0,
  2461. "angle": 0,
  2462. "curve": [ 0.25, 0, 0.75, 1 ]
  2463. },
  2464. {
  2465. "time": 0.1667,
  2466. "angle": -0.98,
  2467. "curve": [ 0.25, 0, 0.625, 0.5 ]
  2468. },
  2469. {
  2470. "time": 0.3333,
  2471. "angle": 7.87,
  2472. "curve": [ 0.375, 0.5, 0.75, 1 ]
  2473. },
  2474. { "time": 0.5, "angle": -3.24, "curve": "stepped" },
  2475. { "time": 0.6667, "angle": -3.24, "curve": "stepped" },
  2476. { "time": 0.9667, "angle": -3.24, "curve": "stepped" },
  2477. { "time": 1.2667, "angle": -3.24, "curve": "stepped" },
  2478. { "time": 1.5667, "angle": -3.24, "curve": "stepped" },
  2479. { "time": 1.8667, "angle": -3.24, "curve": "stepped" },
  2480. { "time": 2.2, "angle": -3.24, "curve": "stepped" },
  2481. { "time": 2.5333, "angle": -3.24, "curve": "stepped" },
  2482. { "time": 2.9333, "angle": -3.24, "curve": "stepped" },
  2483. { "time": 3.2333, "angle": -3.24, "curve": "stepped" },
  2484. { "time": 3.5667, "angle": -3.24, "curve": "stepped" },
  2485. { "time": 3.9, "angle": -3.24, "curve": "stepped" },
  2486. { "time": 4.2333, "angle": -3.24, "curve": "stepped" },
  2487. { "time": 4.5333, "angle": -3.24, "curve": "stepped" },
  2488. { "time": 4.8667, "angle": -3.24, "curve": "stepped" },
  2489. { "time": 5.2, "angle": -3.24 }
  2490. ],
  2491. "translate": [
  2492. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2493. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2494. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2495. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2496. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2497. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2498. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2499. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2500. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2501. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2502. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2503. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2504. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2505. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2506. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2507. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2508. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2509. { "time": 5.2, "x": 0, "y": 0 }
  2510. ],
  2511. "scale": [
  2512. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2513. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2514. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2515. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2516. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2517. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2518. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2519. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2520. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2522. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2523. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2524. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2525. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2526. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2528. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2529. { "time": 5.2, "x": 1, "y": 1 }
  2530. ]
  2531. },
  2532. "bone22": {
  2533. "rotate": [
  2534. { "time": 0, "angle": 0 },
  2535. { "time": 0.1667, "angle": 8.77 },
  2536. { "time": 0.3333, "angle": -3.46 }
  2537. ],
  2538. "translate": [
  2539. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2540. { "time": 0.1667, "x": 0, "y": 0 },
  2541. { "time": 0.3333, "x": 0.1, "y": -3.16, "curve": "stepped" },
  2542. { "time": 0.3667, "x": -17.34, "y": -116.72 }
  2543. ],
  2544. "scale": [
  2545. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2546. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2547. { "time": 0.3333, "x": 1, "y": 1 }
  2548. ]
  2549. },
  2550. "bone23": {
  2551. "rotate": [
  2552. { "time": 0, "angle": 0 },
  2553. { "time": 0.1667, "angle": 12.4 },
  2554. { "time": 0.3333, "angle": -82.61 }
  2555. ],
  2556. "translate": [
  2557. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2558. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2559. { "time": 0.3333, "x": 0, "y": 0 }
  2560. ],
  2561. "scale": [
  2562. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2563. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2564. { "time": 0.3333, "x": 1, "y": 1 }
  2565. ]
  2566. },
  2567. "bone24": {
  2568. "rotate": [
  2569. { "time": 0, "angle": 0 },
  2570. { "time": 0.1667, "angle": 6.05 },
  2571. { "time": 0.3333, "angle": 18.34 }
  2572. ],
  2573. "translate": [
  2574. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2575. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2576. { "time": 0.3333, "x": 0, "y": 0 }
  2577. ],
  2578. "scale": [
  2579. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2580. { "time": 0.1667, "x": 1, "y": 1 },
  2581. { "time": 0.3333, "x": 0.8, "y": 1 }
  2582. ]
  2583. },
  2584. "bone25": {
  2585. "rotate": [
  2586. { "time": 0, "angle": 0 },
  2587. { "time": 0.1667, "angle": -4.88 },
  2588. { "time": 0.3333, "angle": 16.9 }
  2589. ],
  2590. "translate": [
  2591. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2592. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2593. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2594. { "time": 0.3667, "x": -10.25, "y": -103.17 }
  2595. ],
  2596. "scale": [
  2597. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2598. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2599. { "time": 0.3333, "x": 1, "y": 1 }
  2600. ]
  2601. },
  2602. "bone26": {
  2603. "rotate": [
  2604. { "time": 0, "angle": 0 },
  2605. { "time": 0.1667, "angle": -11.29 },
  2606. { "time": 0.3333, "angle": -86.34 }
  2607. ],
  2608. "translate": [
  2609. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2610. { "time": 0.1667, "x": 0, "y": 0 },
  2611. { "time": 0.3, "x": -1, "y": -2.13 },
  2612. { "time": 0.3333, "x": 0, "y": 0 }
  2613. ],
  2614. "scale": [
  2615. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2616. { "time": 0.1667, "x": 1, "y": 1 },
  2617. { "time": 0.3333, "x": 0.8, "y": 1 }
  2618. ]
  2619. },
  2620. "bone27": {
  2621. "rotate": [
  2622. { "time": 0, "angle": 0 },
  2623. { "time": 0.1667, "angle": -4.69 },
  2624. { "time": 0.3333, "angle": 0 }
  2625. ],
  2626. "translate": [
  2627. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2628. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2629. { "time": 0.3333, "x": 0, "y": 0 }
  2630. ],
  2631. "scale": [
  2632. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2633. { "time": 0.1667, "x": 1, "y": 1 },
  2634. { "time": 0.3333, "x": 0.8, "y": 1 }
  2635. ]
  2636. },
  2637. "bone28": {
  2638. "rotate": [
  2639. { "time": 0, "angle": 0, "curve": "stepped" },
  2640. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2641. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2642. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2643. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  2644. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  2645. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  2646. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  2647. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  2648. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2649. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  2650. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  2651. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  2652. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  2653. { "time": 3.9, "angle": 0, "curve": "stepped" },
  2654. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  2655. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  2656. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  2657. { "time": 5.2, "angle": 0 }
  2658. ],
  2659. "translate": [
  2660. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2661. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2662. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2663. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2664. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2665. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2666. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2667. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2668. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2669. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2670. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2671. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2672. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2673. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2674. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2675. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2676. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  2677. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  2678. { "time": 5.2, "x": 0, "y": 0 }
  2679. ],
  2680. "scale": [
  2681. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2682. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2683. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2684. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2685. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2686. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2687. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2688. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2689. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2690. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2691. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2692. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2693. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2694. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2695. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2696. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2697. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  2698. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  2699. { "time": 5.2, "x": 1, "y": 1 }
  2700. ]
  2701. },
  2702. "bone29": {
  2703. "rotate": [
  2704. { "time": 0, "angle": 0 },
  2705. { "time": 0.1667, "angle": -10.45 },
  2706. { "time": 0.3333, "angle": 0 },
  2707. { "time": 0.5, "angle": -10.84 },
  2708. { "time": 0.6667, "angle": 0 },
  2709. { "time": 0.9667, "angle": -10.84 },
  2710. { "time": 1.2667, "angle": 0 },
  2711. { "time": 1.5667, "angle": -10.84 },
  2712. { "time": 1.8667, "angle": 0 },
  2713. { "time": 2.2, "angle": -10.84 },
  2714. { "time": 2.5333, "angle": 0 },
  2715. { "time": 2.9333, "angle": -10.84 },
  2716. { "time": 3.2333, "angle": 0 },
  2717. { "time": 3.5667, "angle": -10.84 },
  2718. { "time": 3.9, "angle": 0 },
  2719. { "time": 4.2333, "angle": -10.84 },
  2720. { "time": 4.5333, "angle": 0 }
  2721. ],
  2722. "translate": [
  2723. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2724. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2725. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2726. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2727. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2728. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2729. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2730. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2731. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2732. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2733. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2734. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2735. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2736. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2737. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2738. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2739. { "time": 4.5333, "x": 0, "y": 0 }
  2740. ],
  2741. "scale": [
  2742. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2743. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2744. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2745. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2746. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2747. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2748. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2749. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2750. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2751. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2752. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2753. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2754. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2755. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2756. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2757. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2758. { "time": 4.5333, "x": 1, "y": 1 }
  2759. ]
  2760. },
  2761. "bone30": {
  2762. "rotate": [
  2763. { "time": 0, "angle": 0 },
  2764. { "time": 0.1667, "angle": 16.94 },
  2765. { "time": 0.3333, "angle": 0 },
  2766. { "time": 0.5, "angle": 24.75 },
  2767. { "time": 0.6667, "angle": 0 },
  2768. { "time": 0.9667, "angle": 24.75 },
  2769. { "time": 1.2667, "angle": 0 },
  2770. { "time": 1.5667, "angle": 24.75 },
  2771. { "time": 1.8667, "angle": 0 },
  2772. { "time": 2.2, "angle": 24.75 },
  2773. { "time": 2.5333, "angle": 0 },
  2774. { "time": 2.9333, "angle": 24.75 },
  2775. { "time": 3.2333, "angle": 0 },
  2776. { "time": 3.5667, "angle": 24.75 },
  2777. { "time": 3.9, "angle": 0 },
  2778. { "time": 4.2333, "angle": 24.75 },
  2779. { "time": 4.5333, "angle": 0 }
  2780. ],
  2781. "translate": [
  2782. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2783. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2784. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2785. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2786. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2787. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2788. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2789. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2790. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2791. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2792. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2793. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2794. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2795. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2796. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2797. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2798. { "time": 4.5333, "x": 0, "y": 0 }
  2799. ],
  2800. "scale": [
  2801. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2802. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2803. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2804. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2805. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2806. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2807. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2810. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2811. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2812. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2813. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2814. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2815. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2816. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2817. { "time": 4.5333, "x": 1, "y": 1 }
  2818. ]
  2819. },
  2820. "bone31": {
  2821. "rotate": [
  2822. { "time": 0, "angle": 0, "curve": "stepped" },
  2823. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2824. { "time": 0.3333, "angle": 0 },
  2825. { "time": 0.5, "angle": -7.22 },
  2826. { "time": 0.6667, "angle": 0 },
  2827. { "time": 0.9667, "angle": -7.22 },
  2828. { "time": 1.2667, "angle": 0 },
  2829. { "time": 1.5667, "angle": -7.22 },
  2830. { "time": 1.8667, "angle": 0 },
  2831. { "time": 2.2, "angle": -7.22 },
  2832. { "time": 2.5333, "angle": 0 },
  2833. { "time": 2.9333, "angle": -7.22 },
  2834. { "time": 3.2333, "angle": 0 },
  2835. { "time": 3.5667, "angle": -7.22 },
  2836. { "time": 3.9, "angle": 0 },
  2837. { "time": 4.2333, "angle": -7.22 },
  2838. { "time": 4.5333, "angle": 0 }
  2839. ],
  2840. "translate": [
  2841. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2842. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2843. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2844. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2845. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2846. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2847. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2848. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2849. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2850. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2851. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2852. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2853. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2854. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2855. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2856. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2857. { "time": 4.5333, "x": 0, "y": 0 }
  2858. ],
  2859. "scale": [
  2860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2861. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2862. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2863. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2864. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2865. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2866. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2867. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2868. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2869. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2875. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2876. { "time": 4.5333, "x": 1, "y": 1 }
  2877. ]
  2878. },
  2879. "bone32": {
  2880. "rotate": [
  2881. { "time": 0, "angle": 0 }
  2882. ],
  2883. "translate": [
  2884. { "time": 0, "x": 164.76, "y": 0 }
  2885. ],
  2886. "scale": [
  2887. { "time": 0, "x": 1, "y": 1 }
  2888. ]
  2889. },
  2890. "bone33": {
  2891. "rotate": [
  2892. { "time": 0, "angle": 0 }
  2893. ],
  2894. "translate": [
  2895. { "time": 0, "x": 0, "y": 0 }
  2896. ],
  2897. "scale": [
  2898. { "time": 0, "x": 1, "y": 1 }
  2899. ]
  2900. },
  2901. "bone34": {
  2902. "rotate": [
  2903. { "time": 0, "angle": 0 }
  2904. ],
  2905. "translate": [
  2906. { "time": 0, "x": 0, "y": 0 }
  2907. ],
  2908. "scale": [
  2909. { "time": 0, "x": 1, "y": 1 }
  2910. ]
  2911. },
  2912. "bone49": {
  2913. "rotate": [
  2914. { "time": 0, "angle": 0, "curve": "stepped" },
  2915. { "time": 0.1667, "angle": 0 },
  2916. { "time": 0.3333, "angle": -17.86 },
  2917. { "time": 0.5, "angle": -5.28 },
  2918. { "time": 0.6667, "angle": -5.85 },
  2919. { "time": 0.9667, "angle": -5.28 },
  2920. { "time": 1.2667, "angle": -5.85 },
  2921. { "time": 1.5667, "angle": -5.28 },
  2922. { "time": 1.8667, "angle": -5.85 },
  2923. { "time": 2.2, "angle": -5.28 },
  2924. { "time": 2.5333, "angle": -5.85 },
  2925. { "time": 2.9333, "angle": -5.28 },
  2926. { "time": 3.2333, "angle": -5.85 },
  2927. { "time": 3.5667, "angle": -5.28 },
  2928. { "time": 3.9, "angle": -5.85 },
  2929. { "time": 4.2333, "angle": -5.28 },
  2930. { "time": 4.5333, "angle": -5.85 }
  2931. ],
  2932. "translate": [
  2933. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2934. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2935. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2936. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2937. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2938. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2939. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2940. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  2941. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  2942. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2943. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  2944. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  2945. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  2946. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  2947. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  2948. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  2949. { "time": 4.5333, "x": 0, "y": 0 }
  2950. ],
  2951. "scale": [
  2952. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2953. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  2954. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  2955. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2956. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  2957. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  2958. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  2959. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  2960. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  2961. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  2962. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  2963. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  2964. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  2965. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  2966. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  2967. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  2968. { "time": 4.5333, "x": 1, "y": 1 }
  2969. ]
  2970. },
  2971. "bone50": {
  2972. "rotate": [
  2973. { "time": 0, "angle": 0, "curve": "stepped" },
  2974. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  2975. { "time": 0.3333, "angle": 0 },
  2976. { "time": 0.5, "angle": -16.77 },
  2977. { "time": 0.6667, "angle": -26.69 },
  2978. { "time": 0.9667, "angle": -16.77 },
  2979. { "time": 1.2667, "angle": -26.69 },
  2980. { "time": 1.5667, "angle": -16.77 },
  2981. { "time": 1.8667, "angle": -26.69 },
  2982. { "time": 2.2, "angle": -16.77 },
  2983. { "time": 2.5333, "angle": -26.69 },
  2984. { "time": 2.9333, "angle": -16.77 },
  2985. { "time": 3.2333, "angle": -26.69 },
  2986. { "time": 3.5667, "angle": -16.77 },
  2987. { "time": 3.9, "angle": -26.69 },
  2988. { "time": 4.2333, "angle": -16.77 },
  2989. { "time": 4.5333, "angle": -26.69 }
  2990. ],
  2991. "translate": [
  2992. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2993. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  2994. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2995. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2996. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  2997. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  2998. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  2999. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  3000. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  3001. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  3002. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  3003. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  3004. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  3005. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  3006. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  3007. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  3008. { "time": 4.5333, "x": 0, "y": 0 }
  3009. ],
  3010. "scale": [
  3011. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3012. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3013. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3014. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3015. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3016. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3017. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3018. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  3019. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3020. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3021. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3022. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3023. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3024. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3025. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  3026. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  3027. { "time": 4.5333, "x": 1, "y": 1 }
  3028. ]
  3029. },
  3030. "bone52": {
  3031. "rotate": [
  3032. { "time": 0, "angle": 0, "curve": "stepped" },
  3033. {
  3034. "time": 0.1667,
  3035. "angle": 0,
  3036. "curve": [ 0.25, 0, 0.75, 1 ]
  3037. },
  3038. {
  3039. "time": 0.3333,
  3040. "angle": 31.86,
  3041. "curve": [ 0.25, 0, 0.75, 1 ]
  3042. },
  3043. {
  3044. "time": 0.5,
  3045. "angle": 28.62,
  3046. "curve": [ 0.25, 0, 0.75, 1 ]
  3047. },
  3048. {
  3049. "time": 0.6667,
  3050. "angle": 55.03,
  3051. "curve": [ 0.25, 0, 0.75, 1 ]
  3052. },
  3053. {
  3054. "time": 0.9667,
  3055. "angle": 28.62,
  3056. "curve": [ 0.25, 0, 0.75, 1 ]
  3057. },
  3058. {
  3059. "time": 1.2667,
  3060. "angle": 55.03,
  3061. "curve": [ 0.25, 0, 0.75, 1 ]
  3062. },
  3063. {
  3064. "time": 1.5667,
  3065. "angle": 28.62,
  3066. "curve": [ 0.25, 0, 0.75, 1 ]
  3067. },
  3068. {
  3069. "time": 1.8667,
  3070. "angle": 55.03,
  3071. "curve": [ 0.25, 0, 0.75, 1 ]
  3072. },
  3073. {
  3074. "time": 2.2,
  3075. "angle": 28.62,
  3076. "curve": [ 0.25, 0, 0.75, 1 ]
  3077. },
  3078. {
  3079. "time": 2.5333,
  3080. "angle": 55.03,
  3081. "curve": [ 0.25, 0, 0.75, 1 ]
  3082. },
  3083. {
  3084. "time": 2.9333,
  3085. "angle": 28.62,
  3086. "curve": [ 0.25, 0, 0.75, 1 ]
  3087. },
  3088. {
  3089. "time": 3.2333,
  3090. "angle": 55.03,
  3091. "curve": [ 0.25, 0, 0.75, 1 ]
  3092. },
  3093. {
  3094. "time": 3.5667,
  3095. "angle": 28.62,
  3096. "curve": [ 0.25, 0, 0.75, 1 ]
  3097. },
  3098. {
  3099. "time": 3.9,
  3100. "angle": 55.03,
  3101. "curve": [ 0.25, 0, 0.75, 1 ]
  3102. },
  3103. {
  3104. "time": 4.2333,
  3105. "angle": 28.62,
  3106. "curve": [ 0.25, 0, 0.75, 1 ]
  3107. },
  3108. { "time": 4.5333, "angle": 55.03 }
  3109. ]
  3110. },
  3111. "bone53": {
  3112. "rotate": [
  3113. { "time": 0, "angle": 0, "curve": "stepped" },
  3114. {
  3115. "time": 0.1667,
  3116. "angle": 0,
  3117. "curve": [ 0.25, 0, 0.75, 1 ]
  3118. },
  3119. {
  3120. "time": 0.3333,
  3121. "angle": 15.04,
  3122. "curve": [ 0.25, 0, 0.75, 1 ]
  3123. },
  3124. {
  3125. "time": 0.5,
  3126. "angle": -12.72,
  3127. "curve": [ 0.25, 0, 0.75, 1 ]
  3128. },
  3129. {
  3130. "time": 0.6667,
  3131. "angle": 8.84,
  3132. "curve": [ 0.25, 0, 0.75, 1 ]
  3133. },
  3134. {
  3135. "time": 0.9667,
  3136. "angle": -19.46,
  3137. "curve": [ 0.25, 0, 0.75, 1 ]
  3138. },
  3139. {
  3140. "time": 1.2667,
  3141. "angle": 8.84,
  3142. "curve": [ 0.25, 0, 0.75, 1 ]
  3143. },
  3144. {
  3145. "time": 1.5667,
  3146. "angle": -19.46,
  3147. "curve": [ 0.25, 0, 0.75, 1 ]
  3148. },
  3149. {
  3150. "time": 1.8667,
  3151. "angle": 8.84,
  3152. "curve": [ 0.25, 0, 0.75, 1 ]
  3153. },
  3154. {
  3155. "time": 2.2,
  3156. "angle": -19.46,
  3157. "curve": [ 0.25, 0, 0.75, 1 ]
  3158. },
  3159. {
  3160. "time": 2.5333,
  3161. "angle": 8.84,
  3162. "curve": [ 0.25, 0, 0.75, 1 ]
  3163. },
  3164. {
  3165. "time": 2.9333,
  3166. "angle": -19.46,
  3167. "curve": [ 0.25, 0, 0.75, 1 ]
  3168. },
  3169. {
  3170. "time": 3.2333,
  3171. "angle": 8.84,
  3172. "curve": [ 0.25, 0, 0.75, 1 ]
  3173. },
  3174. {
  3175. "time": 3.5667,
  3176. "angle": -19.46,
  3177. "curve": [ 0.25, 0, 0.75, 1 ]
  3178. },
  3179. {
  3180. "time": 3.9,
  3181. "angle": 8.84,
  3182. "curve": [ 0.25, 0, 0.75, 1 ]
  3183. },
  3184. {
  3185. "time": 4.2333,
  3186. "angle": -19.46,
  3187. "curve": [ 0.25, 0, 0.75, 1 ]
  3188. },
  3189. { "time": 4.5333, "angle": 8.84 }
  3190. ]
  3191. },
  3192. "bone55": {
  3193. "rotate": [
  3194. { "time": 0, "angle": 0 },
  3195. { "time": 0.1667, "angle": -10.08 },
  3196. { "time": 0.3333, "angle": 0 },
  3197. { "time": 0.5, "angle": -7.7 },
  3198. { "time": 0.6667, "angle": 0 },
  3199. { "time": 0.9667, "angle": -7.7 },
  3200. { "time": 1.2667, "angle": 0 },
  3201. { "time": 1.5667, "angle": -7.7 },
  3202. { "time": 1.8667, "angle": 0 },
  3203. { "time": 2.2, "angle": -7.7 },
  3204. { "time": 2.5333, "angle": 0 },
  3205. { "time": 2.9333, "angle": -7.7 },
  3206. { "time": 3.2333, "angle": 0 },
  3207. { "time": 3.5667, "angle": -7.7 },
  3208. { "time": 3.9, "angle": 0 },
  3209. { "time": 4.2333, "angle": -7.7 },
  3210. { "time": 4.5333, "angle": 0 }
  3211. ],
  3212. "translate": [
  3213. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3214. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 0.3333, "x": 0, "y": 0 },
  3216. { "time": 0.5, "x": 0.55, "y": -0.72 },
  3217. { "time": 0.6667, "x": 0, "y": 0 },
  3218. { "time": 0.9667, "x": 0.55, "y": -0.72 },
  3219. { "time": 1.2667, "x": 0, "y": 0 },
  3220. { "time": 1.5667, "x": 0.55, "y": -0.72 },
  3221. { "time": 1.8667, "x": 0, "y": 0 },
  3222. { "time": 2.2, "x": 0.55, "y": -0.72 },
  3223. { "time": 2.5333, "x": 0, "y": 0 },
  3224. { "time": 2.9333, "x": 0.55, "y": -0.72 },
  3225. { "time": 3.2333, "x": 0, "y": 0 },
  3226. { "time": 3.5667, "x": 0.55, "y": -0.72 },
  3227. { "time": 3.9, "x": 0, "y": 0 },
  3228. { "time": 4.2333, "x": 0.55, "y": -0.72 },
  3229. { "time": 4.5333, "x": 0, "y": 0 }
  3230. ],
  3231. "scale": [
  3232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3233. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3234. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3235. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3236. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3237. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3238. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3239. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  3240. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3241. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3242. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3243. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3244. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3245. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3246. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  3247. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  3248. { "time": 4.5333, "x": 1, "y": 1 }
  3249. ]
  3250. },
  3251. "bone56": {
  3252. "rotate": [
  3253. { "time": 0, "angle": 0 },
  3254. { "time": 0.1667, "angle": 4.51 },
  3255. { "time": 0.3333, "angle": 0 },
  3256. { "time": 0.5, "angle": 7.83 },
  3257. { "time": 0.6667, "angle": 0 },
  3258. { "time": 0.9667, "angle": 7.83 },
  3259. { "time": 1.2667, "angle": 0 },
  3260. { "time": 1.5667, "angle": 7.83 },
  3261. { "time": 1.8667, "angle": 0 },
  3262. { "time": 2.2, "angle": 7.83 },
  3263. { "time": 2.5333, "angle": 0 },
  3264. { "time": 2.9333, "angle": 7.83 },
  3265. { "time": 3.2333, "angle": 0 },
  3266. { "time": 3.5667, "angle": 7.83 },
  3267. { "time": 3.9, "angle": 0 },
  3268. { "time": 4.2333, "angle": 7.83 },
  3269. { "time": 4.5333, "angle": 0 }
  3270. ],
  3271. "translate": [
  3272. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3273. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3274. { "time": 0.3333, "x": 0, "y": 0 },
  3275. { "time": 0.5, "x": 0.1, "y": 0.77 },
  3276. { "time": 0.6667, "x": 0, "y": 0 },
  3277. { "time": 0.9667, "x": 0.1, "y": 0.77 },
  3278. { "time": 1.2667, "x": 0, "y": 0 },
  3279. { "time": 1.5667, "x": 0.1, "y": 0.77 },
  3280. { "time": 1.8667, "x": 0, "y": 0 },
  3281. { "time": 2.2, "x": 0.1, "y": 0.77 },
  3282. { "time": 2.5333, "x": 0, "y": 0 },
  3283. { "time": 2.9333, "x": 0.1, "y": 0.77 },
  3284. { "time": 3.2333, "x": 0, "y": 0 },
  3285. { "time": 3.5667, "x": 0.1, "y": 0.77 },
  3286. { "time": 3.9, "x": 0, "y": 0 },
  3287. { "time": 4.2333, "x": 0.1, "y": 0.77 },
  3288. { "time": 4.5333, "x": 0, "y": 0 }
  3289. ],
  3290. "scale": [
  3291. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3292. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  3293. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3294. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3295. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  3296. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  3297. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  3298. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  3299. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  3300. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  3301. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  3302. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  3303. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  3304. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  3305. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  3306. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  3307. { "time": 4.5333, "x": 1, "y": 1 }
  3308. ]
  3309. },
  3310. "bone35": {
  3311. "translate": [
  3312. { "time": 0, "x": -309.38, "y": 1.15 }
  3313. ],
  3314. "scale": [
  3315. { "time": 0, "x": 1.1, "y": 1.1 }
  3316. ]
  3317. },
  3318. "bone58": {
  3319. "rotate": [
  3320. { "time": 0, "angle": 0, "curve": "stepped" },
  3321. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3322. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  3323. { "time": 3.2667, "angle": 0 }
  3324. ],
  3325. "translate": [
  3326. { "time": 0, "x": 0, "y": -1.13 },
  3327. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3328. { "time": 0.2, "x": 0, "y": 0 },
  3329. { "time": 0.3333, "x": -0.14, "y": 1.15, "curve": "stepped" },
  3330. { "time": 2.7667, "x": -0.14, "y": 1.15 },
  3331. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3332. { "time": 3.0333, "x": 0, "y": 0 },
  3333. { "time": 3.2667, "x": -0.14, "y": -3.07 }
  3334. ],
  3335. "scale": [
  3336. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3337. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3338. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  3339. { "time": 3.2667, "x": 1, "y": 1 }
  3340. ]
  3341. },
  3342. "bone57": {
  3343. "rotate": [
  3344. { "time": 0, "angle": 0, "curve": "stepped" },
  3345. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  3346. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  3347. { "time": 3.2667, "angle": 0 }
  3348. ],
  3349. "translate": [
  3350. { "time": 0, "x": 0, "y": -1.13 },
  3351. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3352. { "time": 0.2, "x": 0, "y": 0 },
  3353. { "time": 0.3333, "x": -0.14, "y": 1.15, "curve": "stepped" },
  3354. { "time": 2.7667, "x": -0.14, "y": 1.15 },
  3355. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  3356. { "time": 3.0333, "x": 0, "y": 0 },
  3357. { "time": 3.2667, "x": -0.14, "y": -3.07 }
  3358. ],
  3359. "scale": [
  3360. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3361. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  3362. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 3.2667, "x": 1, "y": 1 }
  3364. ]
  3365. },
  3366. "bone36": {
  3367. "translate": [
  3368. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  3369. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  3370. { "time": 0.5, "x": 0, "y": 0 }
  3371. ],
  3372. "scale": [
  3373. { "time": 0.1667, "x": 1.5, "y": 1.5 },
  3374. { "time": 0.3333, "x": 0.9, "y": 0.9 },
  3375. { "time": 0.5, "x": 1, "y": 1 }
  3376. ]
  3377. },
  3378. "bone37": {
  3379. "translate": [
  3380. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  3381. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  3382. { "time": 0.8, "x": 0, "y": 0 }
  3383. ],
  3384. "scale": [
  3385. { "time": 0.5, "x": 1.5, "y": 1.5 },
  3386. { "time": 0.6667, "x": 0.9, "y": 0.9 },
  3387. { "time": 0.8, "x": 1, "y": 1 }
  3388. ]
  3389. },
  3390. "bone38": {
  3391. "translate": [
  3392. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  3393. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3394. { "time": 1.1667, "x": 0, "y": 0 }
  3395. ],
  3396. "scale": [
  3397. { "time": 0.8333, "x": 1.5, "y": 1.5 },
  3398. { "time": 1, "x": 0.9, "y": 0.9 },
  3399. { "time": 1.1667, "x": 1, "y": 1 }
  3400. ]
  3401. },
  3402. "bone39": {
  3403. "translate": [
  3404. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  3405. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  3406. { "time": 1.4333, "x": 0, "y": 0 }
  3407. ],
  3408. "scale": [
  3409. { "time": 1.1, "x": 1.5, "y": 1.5 },
  3410. { "time": 1.2667, "x": 0.9, "y": 0.9 },
  3411. { "time": 1.4333, "x": 1, "y": 1 }
  3412. ]
  3413. },
  3414. "bone40": {
  3415. "translate": [
  3416. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  3417. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  3418. { "time": 1.6667, "x": 0, "y": 0 }
  3419. ],
  3420. "scale": [
  3421. { "time": 1.3667, "x": 1.5, "y": 1.5 },
  3422. { "time": 1.5333, "x": 0.9, "y": 0.9 },
  3423. { "time": 1.6667, "x": 1, "y": 1 }
  3424. ]
  3425. },
  3426. "bone41": {
  3427. "translate": [
  3428. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  3429. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  3430. { "time": 1.9667, "x": 0, "y": 0 }
  3431. ],
  3432. "scale": [
  3433. { "time": 1.6333, "x": 1.5, "y": 1.5 },
  3434. { "time": 1.8, "x": 0.9, "y": 0.9 },
  3435. { "time": 1.9667, "x": 1, "y": 1 }
  3436. ]
  3437. },
  3438. "bone42": {
  3439. "translate": [
  3440. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  3441. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  3442. { "time": 2.3, "x": 0, "y": 0 }
  3443. ],
  3444. "scale": [
  3445. { "time": 1.9667, "x": 1.5, "y": 1.5 },
  3446. { "time": 2.1333, "x": 0.9, "y": 0.9 },
  3447. { "time": 2.3, "x": 1, "y": 1 }
  3448. ]
  3449. },
  3450. "bone43": {
  3451. "translate": [
  3452. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  3453. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  3454. { "time": 2.8333, "x": 0, "y": 0 }
  3455. ],
  3456. "scale": [
  3457. { "time": 2.5, "x": 1.5, "y": 1.5 },
  3458. { "time": 2.6667, "x": 0.9, "y": 0.9 },
  3459. { "time": 2.8333, "x": 1, "y": 1 }
  3460. ]
  3461. },
  3462. "bone44": {
  3463. "translate": [
  3464. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  3465. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  3466. { "time": 3.1667, "x": 0, "y": 0 }
  3467. ],
  3468. "scale": [
  3469. { "time": 2.8667, "x": 1.5, "y": 1.5 },
  3470. { "time": 3.0333, "x": 0.9, "y": 0.9 },
  3471. { "time": 3.1667, "x": 1, "y": 1 }
  3472. ]
  3473. },
  3474. "bone45": {
  3475. "translate": [
  3476. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  3477. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  3478. { "time": 3.9667, "x": 0, "y": 0 }
  3479. ],
  3480. "scale": [
  3481. { "time": 3.3333, "x": 2, "y": 2 },
  3482. { "time": 3.5, "x": 0.9, "y": 0.9 },
  3483. { "time": 3.6667, "x": 1, "y": 1 }
  3484. ]
  3485. },
  3486. "bone46": {
  3487. "translate": [
  3488. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  3489. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  3490. { "time": 4.2, "x": 0, "y": 0 }
  3491. ],
  3492. "scale": [
  3493. { "time": 3.8667, "x": 2, "y": 2 },
  3494. { "time": 4.0333, "x": 0.9, "y": 0.9 },
  3495. { "time": 4.2, "x": 1, "y": 1 }
  3496. ]
  3497. },
  3498. "bone47": {
  3499. "translate": [
  3500. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  3501. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  3502. { "time": 4.7, "x": 0, "y": 0 }
  3503. ],
  3504. "scale": [
  3505. { "time": 4.3667, "x": 2, "y": 2 },
  3506. { "time": 4.5333, "x": 0.9, "y": 0.9 },
  3507. { "time": 4.7, "x": 1, "y": 1 }
  3508. ]
  3509. }
  3510. },
  3511. "deform": {
  3512. "default": {
  3513. "dang": {
  3514. "dang": [
  3515. {
  3516. "time": 0,
  3517. "vertices": [ -0.01262, -0.88391 ]
  3518. },
  3519. {
  3520. "time": 0.1667,
  3521. "vertices": [ -0.01262, -0.88391, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643 ]
  3522. },
  3523. {
  3524. "time": 0.3333,
  3525. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3526. },
  3527. {
  3528. "time": 0.5,
  3529. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3530. },
  3531. {
  3532. "time": 0.6667,
  3533. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3534. },
  3535. {
  3536. "time": 0.9667,
  3537. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3538. },
  3539. {
  3540. "time": 1.2667,
  3541. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3542. },
  3543. {
  3544. "time": 1.5667,
  3545. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3546. },
  3547. {
  3548. "time": 1.8667,
  3549. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3550. },
  3551. {
  3552. "time": 2.2,
  3553. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3554. },
  3555. {
  3556. "time": 2.5333,
  3557. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3558. },
  3559. {
  3560. "time": 2.9333,
  3561. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3562. },
  3563. {
  3564. "time": 3.2333,
  3565. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3566. },
  3567. {
  3568. "time": 3.5667,
  3569. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3570. },
  3571. {
  3572. "time": 3.9,
  3573. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3574. },
  3575. {
  3576. "time": 4.2333,
  3577. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3578. },
  3579. {
  3580. "time": 4.5333,
  3581. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3582. },
  3583. {
  3584. "time": 4.8667,
  3585. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3586. },
  3587. {
  3588. "time": 5.2,
  3589. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  3590. }
  3591. ]
  3592. },
  3593. "lingzi": {
  3594. "lingzi": [
  3595. { "time": 0.1667 },
  3596. {
  3597. "time": 0.4,
  3598. "offset": 2,
  3599. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3600. },
  3601. {
  3602. "time": 0.6667,
  3603. "offset": 6,
  3604. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3605. },
  3606. {
  3607. "time": 0.9667,
  3608. "offset": 2,
  3609. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3610. },
  3611. {
  3612. "time": 1.2667,
  3613. "offset": 6,
  3614. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3615. },
  3616. {
  3617. "time": 1.5667,
  3618. "offset": 2,
  3619. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3620. },
  3621. {
  3622. "time": 1.8667,
  3623. "offset": 6,
  3624. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3625. },
  3626. {
  3627. "time": 2.1667,
  3628. "offset": 2,
  3629. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3630. },
  3631. {
  3632. "time": 2.4667,
  3633. "offset": 6,
  3634. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  3635. "curve": "stepped"
  3636. },
  3637. {
  3638. "time": 2.5333,
  3639. "offset": 6,
  3640. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3641. },
  3642. {
  3643. "time": 2.9,
  3644. "offset": 2,
  3645. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3646. },
  3647. {
  3648. "time": 3.1667,
  3649. "offset": 6,
  3650. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  3651. "curve": "stepped"
  3652. },
  3653. {
  3654. "time": 3.2333,
  3655. "offset": 6,
  3656. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3657. },
  3658. {
  3659. "time": 3.5333,
  3660. "offset": 2,
  3661. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3662. },
  3663. {
  3664. "time": 3.7667,
  3665. "offset": 6,
  3666. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  3667. "curve": "stepped"
  3668. },
  3669. {
  3670. "time": 3.9,
  3671. "offset": 6,
  3672. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3673. },
  3674. {
  3675. "time": 4.2,
  3676. "offset": 2,
  3677. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  3678. },
  3679. {
  3680. "time": 4.4667,
  3681. "offset": 6,
  3682. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  3683. "curve": "stepped"
  3684. },
  3685. {
  3686. "time": 4.5333,
  3687. "offset": 6,
  3688. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  3689. }
  3690. ]
  3691. },
  3692. "shangyi": {
  3693. "shangyi": [
  3694. { "time": 0.1667 },
  3695. {
  3696. "time": 0.3333,
  3697. "offset": 46,
  3698. "vertices": [ 0.31957, 1.64477, 0.25944, 1.65532, -2.0E-5, -1.84968, 0.06747, -1.84845, -2.0E-5, -1.84968, 0.06747, -1.84845 ]
  3699. },
  3700. {
  3701. "time": 0.5,
  3702. "offset": 28,
  3703. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3704. },
  3705. {
  3706. "time": 0.6667,
  3707. "offset": 24,
  3708. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3709. },
  3710. {
  3711. "time": 0.9667,
  3712. "offset": 28,
  3713. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3714. },
  3715. {
  3716. "time": 1.2667,
  3717. "offset": 24,
  3718. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3719. },
  3720. {
  3721. "time": 1.5667,
  3722. "offset": 28,
  3723. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3724. },
  3725. {
  3726. "time": 1.8667,
  3727. "offset": 24,
  3728. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3729. },
  3730. {
  3731. "time": 2.2,
  3732. "offset": 28,
  3733. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3734. },
  3735. {
  3736. "time": 2.5333,
  3737. "offset": 24,
  3738. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3739. },
  3740. {
  3741. "time": 2.9333,
  3742. "offset": 28,
  3743. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3744. },
  3745. {
  3746. "time": 3.2333,
  3747. "offset": 24,
  3748. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3749. },
  3750. {
  3751. "time": 3.5667,
  3752. "offset": 28,
  3753. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3754. },
  3755. {
  3756. "time": 3.9,
  3757. "offset": 24,
  3758. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3759. },
  3760. {
  3761. "time": 4.2333,
  3762. "offset": 28,
  3763. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3764. },
  3765. {
  3766. "time": 4.5333,
  3767. "offset": 24,
  3768. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  3769. }
  3770. ]
  3771. },
  3772. "youjiao1": {
  3773. "youjiao1": [
  3774. {
  3775. "time": 0,
  3776. "offset": 68,
  3777. "vertices": [ 6.47365, -1.54266, 4.9081, -0.96003, 3.85265, 0.07049 ]
  3778. }
  3779. ]
  3780. },
  3781. "youshou": {
  3782. "youshou": [
  3783. { "time": 0.1667 },
  3784. {
  3785. "time": 0.3,
  3786. "offset": 46,
  3787. "vertices": [ -0.72944, -4.27695, 4.49204, -2.14155, -2.00895, -3.63001, 3.24948, -3.12452, -3.24054, -2.56062, 1.55338, -3.91862 ]
  3788. }
  3789. ]
  3790. },
  3791. "zuoshou": {
  3792. "zuoshou": [
  3793. { "time": 0, "curve": "stepped" },
  3794. { "time": 0.1667 },
  3795. {
  3796. "time": 0.3,
  3797. "offset": 48,
  3798. "vertices": [ -4.09583, -4.81184, 2.40179, -5.84451, -5.10458, -4.55464, 1.71119, -6.62344, -5.71799, -4.02365, 0.95828, -6.92514, 2.08435, -2.25566 ]
  3799. }
  3800. ]
  3801. }
  3802. }
  3803. }
  3804. },
  3805. "stand2": {
  3806. "slots": {
  3807. "biyan": {
  3808. "attachment": [
  3809. { "time": 0.1, "name": "biyan" },
  3810. { "time": 0.2, "name": null },
  3811. { "time": 2.9, "name": "biyan" },
  3812. { "time": 3.0333, "name": null }
  3813. ]
  3814. },
  3815. "gaoguang zuo": {
  3816. "attachment": [
  3817. { "time": 0.1, "name": null },
  3818. { "time": 0.2, "name": "gaoguang zuo" },
  3819. { "time": 2.9, "name": null },
  3820. { "time": 3.0333, "name": "gaoguang zuo" }
  3821. ]
  3822. },
  3823. "gaoguangyou": {
  3824. "attachment": [
  3825. { "time": 0.1, "name": null },
  3826. { "time": 0.2, "name": "gaoguangyou" },
  3827. { "time": 2.9, "name": null },
  3828. { "time": 3.0333, "name": "gaoguangyou" }
  3829. ]
  3830. },
  3831. "yanbai zuo": {
  3832. "attachment": [
  3833. { "time": 0.1, "name": null },
  3834. { "time": 0.2, "name": "yanbai zuo" },
  3835. { "time": 2.9, "name": null },
  3836. { "time": 3.0333, "name": "yanbai zuo" }
  3837. ]
  3838. },
  3839. "yanbaiyou": {
  3840. "attachment": [
  3841. { "time": 0.1, "name": null },
  3842. { "time": 0.2, "name": "yanbaiyou" },
  3843. { "time": 2.9, "name": null },
  3844. { "time": 3.0333, "name": "yanbaiyou" }
  3845. ]
  3846. },
  3847. "yanzhu you": {
  3848. "attachment": [
  3849. { "time": 0.1, "name": null },
  3850. { "time": 0.2, "name": "yanzhu you" },
  3851. { "time": 2.9, "name": null },
  3852. { "time": 3.0333, "name": "yanzhu you" }
  3853. ]
  3854. },
  3855. "yanzhu zuo": {
  3856. "attachment": [
  3857. { "time": 0.1, "name": null },
  3858. { "time": 0.2, "name": "yanzhu zuo" },
  3859. { "time": 2.9, "name": null },
  3860. { "time": 3.0333, "name": "yanzhu zuo" }
  3861. ]
  3862. },
  3863. "youjiao": {
  3864. "attachment": [
  3865. { "time": 0, "name": null }
  3866. ]
  3867. },
  3868. "youjiao1": {
  3869. "attachment": [
  3870. { "time": 0, "name": "youjiao1" }
  3871. ]
  3872. },
  3873. "youshou": {
  3874. "attachment": [
  3875. { "time": 0.3333, "name": null }
  3876. ]
  3877. },
  3878. "youshou1": {
  3879. "attachment": [
  3880. { "time": 0, "name": null },
  3881. { "time": 0.3333, "name": "youshou1" }
  3882. ]
  3883. },
  3884. "youshou2": {
  3885. "attachment": [
  3886. { "time": 0, "name": null },
  3887. { "time": 0.3333, "name": "youshou2" }
  3888. ]
  3889. },
  3890. "zi_1": {
  3891. "color": [
  3892. { "time": 0.1667, "color": "ffffff00" },
  3893. { "time": 0.2667, "color": "ffffffff" }
  3894. ],
  3895. "attachment": [
  3896. { "time": 0, "name": null },
  3897. { "time": 0.1667, "name": "zi_1" }
  3898. ]
  3899. },
  3900. "zi_2": {
  3901. "color": [
  3902. { "time": 0.5, "color": "ffffff00" },
  3903. { "time": 0.6, "color": "ffffffff" }
  3904. ],
  3905. "attachment": [
  3906. { "time": 0, "name": null },
  3907. { "time": 0.5, "name": "zi_2" }
  3908. ]
  3909. },
  3910. "zi_3": {
  3911. "attachment": [
  3912. { "time": 0, "name": null },
  3913. { "time": 0.8333, "name": "zi_3" }
  3914. ]
  3915. },
  3916. "zi_4": {
  3917. "color": [
  3918. { "time": 1.1, "color": "ffffff00" },
  3919. { "time": 1.2, "color": "ffffffff" }
  3920. ],
  3921. "attachment": [
  3922. { "time": 0, "name": null },
  3923. { "time": 1.1, "name": "zi_4" }
  3924. ]
  3925. },
  3926. "zi_5": {
  3927. "color": [
  3928. { "time": 1.3667, "color": "ffffff00" },
  3929. { "time": 1.5, "color": "ffffffff" }
  3930. ],
  3931. "attachment": [
  3932. { "time": 0, "name": null },
  3933. { "time": 1.3667, "name": "zi_5" }
  3934. ]
  3935. },
  3936. "zi_6": {
  3937. "color": [
  3938. { "time": 1.6333, "color": "ffffff00" },
  3939. { "time": 1.7333, "color": "ffffffff" }
  3940. ],
  3941. "attachment": [
  3942. { "time": 0, "name": null },
  3943. { "time": 1.6333, "name": "zi_6" }
  3944. ]
  3945. },
  3946. "zi_7": {
  3947. "color": [
  3948. { "time": 1.9667, "color": "ffffff00" },
  3949. { "time": 2.0667, "color": "ffffffff" }
  3950. ],
  3951. "attachment": [
  3952. { "time": 0, "name": null },
  3953. { "time": 1.9667, "name": "zi_7" }
  3954. ]
  3955. },
  3956. "zi_8": {
  3957. "color": [
  3958. { "time": 2.5, "color": "ffffff00" },
  3959. { "time": 2.6, "color": "ffffffff" }
  3960. ],
  3961. "attachment": [
  3962. { "time": 0, "name": null },
  3963. { "time": 2.5, "name": "zi_8" }
  3964. ]
  3965. },
  3966. "zi_9": {
  3967. "color": [
  3968. { "time": 2.8667, "color": "ffffff00" },
  3969. { "time": 2.9667, "color": "ffffffff" }
  3970. ],
  3971. "attachment": [
  3972. { "time": 0, "name": null },
  3973. { "time": 2.8667, "name": "zi_9" }
  3974. ]
  3975. },
  3976. "zi_10": {
  3977. "color": [
  3978. { "time": 3.3333, "color": "ffffff00" },
  3979. { "time": 3.4333, "color": "ffffffff" }
  3980. ],
  3981. "attachment": [
  3982. { "time": 0, "name": null },
  3983. { "time": 3.3333, "name": "zi_10" }
  3984. ]
  3985. },
  3986. "zi_11": {
  3987. "color": [
  3988. { "time": 3.8667, "color": "ffffff00" },
  3989. { "time": 3.9667, "color": "ffffffff" }
  3990. ],
  3991. "attachment": [
  3992. { "time": 0, "name": null },
  3993. { "time": 3.8667, "name": "zi_11" }
  3994. ]
  3995. },
  3996. "zi_12": {
  3997. "color": [
  3998. { "time": 4.3667, "color": "ffffff00" },
  3999. { "time": 4.4667, "color": "ffffffff" }
  4000. ],
  4001. "attachment": [
  4002. { "time": 0, "name": null },
  4003. { "time": 4.3667, "name": "zi_12" }
  4004. ]
  4005. },
  4006. "zuiba1": {
  4007. "attachment": [
  4008. { "time": 0, "name": "zuiba1" },
  4009. { "time": 0.6, "name": "zuiba1" },
  4010. { "time": 1.2, "name": "zuiba1" },
  4011. { "time": 1.8667, "name": "zuiba1" },
  4012. { "time": 2.4333, "name": "zuiba1" },
  4013. { "time": 3.1, "name": "zuiba1" },
  4014. { "time": 3.5667, "name": "zuiba1" },
  4015. { "time": 4.1667, "name": "zuiba1" },
  4016. { "time": 4.8333, "name": "zuiba1" }
  4017. ]
  4018. },
  4019. "zuiba2": {
  4020. "attachment": [
  4021. { "time": 0, "name": null },
  4022. { "time": 0.2333, "name": "zuiba2" },
  4023. { "time": 0.6, "name": null },
  4024. { "time": 0.8333, "name": "zuiba2" },
  4025. { "time": 1.2, "name": null },
  4026. { "time": 1.4333, "name": "zuiba2" },
  4027. { "time": 1.8667, "name": null },
  4028. { "time": 2.1, "name": "zuiba2" },
  4029. { "time": 2.4333, "name": null },
  4030. { "time": 2.8, "name": "zuiba2" },
  4031. { "time": 3.1, "name": null },
  4032. { "time": 3.2333, "name": "zuiba2" },
  4033. { "time": 3.5667, "name": null },
  4034. { "time": 3.8, "name": "zuiba2" },
  4035. { "time": 4.1667, "name": null },
  4036. { "time": 4.4, "name": "zuiba2" },
  4037. { "time": 4.8333, "name": null }
  4038. ]
  4039. },
  4040. "zuoshou": {
  4041. "attachment": [
  4042. { "time": 0.3333, "name": null }
  4043. ]
  4044. },
  4045. "zuoshou1": {
  4046. "attachment": [
  4047. { "time": 0, "name": null },
  4048. { "time": 0.3333, "name": "zuoshou1" }
  4049. ]
  4050. },
  4051. "zuoshou2": {
  4052. "attachment": [
  4053. { "time": 0, "name": null },
  4054. { "time": 0.3333, "name": "zuoshou2" }
  4055. ]
  4056. }
  4057. },
  4058. "bones": {
  4059. "bone54": {
  4060. "rotate": [
  4061. { "time": 0, "angle": 0 },
  4062. { "time": 0.1667, "angle": 4.63 },
  4063. { "time": 0.3333, "angle": -3.47 },
  4064. { "time": 0.5, "angle": 0.27 },
  4065. { "time": 0.6667, "angle": -3.47 },
  4066. { "time": 0.9667, "angle": 0.27 },
  4067. { "time": 1.2667, "angle": -3.47 },
  4068. { "time": 1.5667, "angle": 0.27 },
  4069. { "time": 1.8667, "angle": -3.47 },
  4070. { "time": 2.2, "angle": 0.27 },
  4071. { "time": 2.5333, "angle": -3.47 },
  4072. { "time": 2.9333, "angle": 0.27 },
  4073. { "time": 3.2333, "angle": -3.47 },
  4074. { "time": 3.5667, "angle": 0.27 },
  4075. { "time": 3.9, "angle": -3.47 },
  4076. { "time": 4.2333, "angle": 0.27 },
  4077. { "time": 4.5333, "angle": -3.47 }
  4078. ],
  4079. "translate": [
  4080. { "time": 0, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4081. { "time": 0.1667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4082. { "time": 0.3333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4083. { "time": 0.6667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4084. { "time": 1.2667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4085. { "time": 1.8667, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4086. { "time": 2.5333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4087. { "time": 3.2333, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4088. { "time": 3.9, "x": -75.4, "y": 0.21, "curve": "stepped" },
  4089. { "time": 4.5333, "x": -75.4, "y": 0.21 }
  4090. ],
  4091. "scale": [
  4092. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4093. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4094. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4095. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4096. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4097. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4098. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4099. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4100. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4101. { "time": 4.5333, "x": 1, "y": 1 }
  4102. ]
  4103. },
  4104. "bone48": {
  4105. "rotate": [
  4106. { "time": 0, "angle": 0, "curve": "stepped" },
  4107. { "time": 0.1667, "angle": 0 },
  4108. { "time": 0.3333, "angle": 4.91 },
  4109. { "time": 0.5, "angle": 0 },
  4110. { "time": 0.6667, "angle": -0.7 },
  4111. { "time": 0.9667, "angle": 0 },
  4112. { "time": 1.2667, "angle": -0.7 },
  4113. { "time": 1.5667, "angle": 0 },
  4114. { "time": 1.8667, "angle": -0.7 },
  4115. { "time": 2.2, "angle": 0 },
  4116. { "time": 2.5333, "angle": -0.7 },
  4117. { "time": 2.9333, "angle": 0 },
  4118. { "time": 3.2333, "angle": -0.7 },
  4119. { "time": 3.5667, "angle": 0 },
  4120. { "time": 3.9, "angle": -0.7 },
  4121. { "time": 4.2333, "angle": 0 },
  4122. { "time": 4.5333, "angle": -0.7 }
  4123. ],
  4124. "translate": [
  4125. { "time": 0, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4126. { "time": 0.1667, "x": -2.84, "y": 77.77 },
  4127. { "time": 0.3333, "x": -2.26, "y": 77.27 },
  4128. { "time": 0.5, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4129. { "time": 0.6667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4130. { "time": 0.9667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4131. { "time": 1.2667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4132. { "time": 1.5667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4133. { "time": 1.8667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4134. { "time": 2.2, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4135. { "time": 2.5333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4136. { "time": 2.9333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4137. { "time": 3.2333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4138. { "time": 3.5667, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4139. { "time": 3.9, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4140. { "time": 4.2333, "x": -2.84, "y": 77.77, "curve": "stepped" },
  4141. { "time": 4.5333, "x": -2.84, "y": 77.77 }
  4142. ],
  4143. "scale": [
  4144. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4145. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4146. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4147. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4148. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4149. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4150. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4151. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4152. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4153. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4154. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4155. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4156. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4157. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4158. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4159. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4160. { "time": 4.5333, "x": 1, "y": 1 }
  4161. ]
  4162. },
  4163. "bone51": {
  4164. "rotate": [
  4165. { "time": 0, "angle": 0, "curve": "stepped" },
  4166. {
  4167. "time": 0.1667,
  4168. "angle": 0,
  4169. "curve": [ 0.25, 0, 0.75, 1 ]
  4170. },
  4171. {
  4172. "time": 0.3333,
  4173. "angle": -6.46,
  4174. "curve": [ 0.25, 0, 0.75, 1 ]
  4175. },
  4176. {
  4177. "time": 0.5,
  4178. "angle": -18.26,
  4179. "curve": [ 0.25, 0, 0.75, 1 ]
  4180. },
  4181. {
  4182. "time": 0.6667,
  4183. "angle": -5.63,
  4184. "curve": [ 0.25, 0, 0.75, 1 ]
  4185. },
  4186. {
  4187. "time": 0.9667,
  4188. "angle": -18.26,
  4189. "curve": [ 0.25, 0, 0.75, 1 ]
  4190. },
  4191. {
  4192. "time": 1.2667,
  4193. "angle": -5.63,
  4194. "curve": [ 0.25, 0, 0.75, 1 ]
  4195. },
  4196. {
  4197. "time": 1.5667,
  4198. "angle": -18.26,
  4199. "curve": [ 0.25, 0, 0.75, 1 ]
  4200. },
  4201. {
  4202. "time": 1.8667,
  4203. "angle": -5.63,
  4204. "curve": [ 0.25, 0, 0.75, 1 ]
  4205. },
  4206. {
  4207. "time": 2.2,
  4208. "angle": -18.26,
  4209. "curve": [ 0.25, 0, 0.75, 1 ]
  4210. },
  4211. {
  4212. "time": 2.5333,
  4213. "angle": -5.63,
  4214. "curve": [ 0.25, 0, 0.75, 1 ]
  4215. },
  4216. {
  4217. "time": 2.9333,
  4218. "angle": -18.26,
  4219. "curve": [ 0.25, 0, 0.75, 1 ]
  4220. },
  4221. {
  4222. "time": 3.2333,
  4223. "angle": -5.63,
  4224. "curve": [ 0.25, 0, 0.75, 1 ]
  4225. },
  4226. {
  4227. "time": 3.5667,
  4228. "angle": -18.26,
  4229. "curve": [ 0.25, 0, 0.75, 1 ]
  4230. },
  4231. {
  4232. "time": 3.9,
  4233. "angle": -5.63,
  4234. "curve": [ 0.25, 0, 0.75, 1 ]
  4235. },
  4236. {
  4237. "time": 4.2333,
  4238. "angle": -18.26,
  4239. "curve": [ 0.25, 0, 0.75, 1 ]
  4240. },
  4241. { "time": 4.5333, "angle": -5.63 }
  4242. ],
  4243. "translate": [
  4244. { "time": 0, "x": -60.19, "y": 125.38, "curve": "stepped" },
  4245. {
  4246. "time": 0.1667,
  4247. "x": -60.19,
  4248. "y": 125.38,
  4249. "curve": [ 0.25, 0, 0.75, 1 ]
  4250. },
  4251. { "time": 0.3333, "x": -60.67, "y": 124.82 }
  4252. ]
  4253. },
  4254. "root": {
  4255. "rotate": [
  4256. { "time": 0, "angle": 0 }
  4257. ],
  4258. "translate": [
  4259. { "time": 0, "x": 0, "y": 0 }
  4260. ],
  4261. "scale": [
  4262. { "time": 0, "x": -0.65, "y": 0.65 }
  4263. ]
  4264. },
  4265. "bone": {
  4266. "rotate": [
  4267. { "time": 0, "angle": 0, "curve": "stepped" },
  4268. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4269. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4270. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4271. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4272. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4273. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4274. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  4275. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  4276. { "time": 2.2, "angle": 0, "curve": "stepped" },
  4277. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  4278. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  4279. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  4280. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4281. { "time": 3.9, "angle": 0, "curve": "stepped" },
  4282. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  4283. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  4284. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  4285. { "time": 5.2, "angle": 0 }
  4286. ],
  4287. "translate": [
  4288. { "time": 0, "x": 0, "y": 0 },
  4289. { "time": 0.1667, "x": 0, "y": -1.05 },
  4290. { "time": 0.3333, "x": 3.11, "y": 0, "curve": "stepped" },
  4291. { "time": 0.5, "x": 3.11, "y": 0, "curve": "stepped" },
  4292. { "time": 0.6667, "x": 3.11, "y": 0, "curve": "stepped" },
  4293. { "time": 0.9667, "x": 3.11, "y": 0, "curve": "stepped" },
  4294. { "time": 1.2667, "x": 3.11, "y": 0, "curve": "stepped" },
  4295. { "time": 1.5667, "x": 3.11, "y": 0, "curve": "stepped" },
  4296. { "time": 1.8667, "x": 3.11, "y": 0, "curve": "stepped" },
  4297. { "time": 2.2, "x": 3.11, "y": 0, "curve": "stepped" },
  4298. { "time": 2.5333, "x": 3.11, "y": 0, "curve": "stepped" },
  4299. { "time": 2.9333, "x": 3.11, "y": 0, "curve": "stepped" },
  4300. { "time": 3.2333, "x": 3.11, "y": 0, "curve": "stepped" },
  4301. { "time": 3.5667, "x": 3.11, "y": 0, "curve": "stepped" },
  4302. { "time": 3.9, "x": 3.11, "y": 0, "curve": "stepped" },
  4303. { "time": 4.2333, "x": 3.11, "y": 0, "curve": "stepped" },
  4304. { "time": 4.5333, "x": 3.11, "y": 0, "curve": "stepped" },
  4305. { "time": 4.8667, "x": 3.11, "y": 0, "curve": "stepped" },
  4306. { "time": 5.2, "x": 3.11, "y": 0 }
  4307. ],
  4308. "scale": [
  4309. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4310. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4311. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4312. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4313. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4314. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4315. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4316. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4317. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4318. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4319. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4320. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4321. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4322. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4323. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4324. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4325. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  4326. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  4327. { "time": 5.2, "x": 1, "y": 1 }
  4328. ]
  4329. },
  4330. "bone2": {
  4331. "rotate": [
  4332. { "time": 0, "angle": 0, "curve": "stepped" },
  4333. { "time": 0.1667, "angle": 0 },
  4334. { "time": 0.3333, "angle": -1.48, "curve": "stepped" },
  4335. { "time": 0.5, "angle": -1.48, "curve": "stepped" },
  4336. { "time": 0.6667, "angle": -1.48, "curve": "stepped" },
  4337. { "time": 0.9667, "angle": -1.48, "curve": "stepped" },
  4338. { "time": 1.2667, "angle": -1.48, "curve": "stepped" },
  4339. { "time": 1.5667, "angle": -1.48, "curve": "stepped" },
  4340. { "time": 1.8667, "angle": -1.48, "curve": "stepped" },
  4341. { "time": 2.2, "angle": -1.48, "curve": "stepped" },
  4342. { "time": 2.5333, "angle": -1.48, "curve": "stepped" },
  4343. { "time": 2.9333, "angle": -1.48, "curve": "stepped" },
  4344. { "time": 3.2333, "angle": -1.48, "curve": "stepped" },
  4345. { "time": 3.5667, "angle": -1.48, "curve": "stepped" },
  4346. { "time": 3.9, "angle": -1.48, "curve": "stepped" },
  4347. { "time": 4.2333, "angle": -1.48, "curve": "stepped" },
  4348. { "time": 4.5333, "angle": -1.48 }
  4349. ],
  4350. "translate": [
  4351. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4352. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4353. { "time": 0.3333, "x": 0, "y": 0 },
  4354. { "time": 0.5, "x": 0.94, "y": -0.02 },
  4355. { "time": 0.6667, "x": 0, "y": 0 },
  4356. { "time": 0.9667, "x": 0.94, "y": -0.02 },
  4357. { "time": 1.2667, "x": 0, "y": 0 },
  4358. { "time": 1.5667, "x": 0.94, "y": -0.02 },
  4359. { "time": 1.8667, "x": 0, "y": 0 },
  4360. { "time": 2.2, "x": 0.94, "y": -0.02 },
  4361. { "time": 2.5333, "x": 0, "y": 0 },
  4362. { "time": 2.9333, "x": 0.94, "y": -0.02 },
  4363. { "time": 3.2333, "x": 0, "y": 0 },
  4364. { "time": 3.5667, "x": 0.94, "y": -0.02 },
  4365. { "time": 3.9, "x": 0, "y": 0 },
  4366. { "time": 4.2333, "x": 0.94, "y": -0.02 },
  4367. { "time": 4.5333, "x": 0, "y": 0 }
  4368. ],
  4369. "scale": [
  4370. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4371. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4372. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4373. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4374. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4375. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4376. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4377. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4378. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4379. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4380. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4381. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4382. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4383. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4384. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4385. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4386. { "time": 4.5333, "x": 1, "y": 1 }
  4387. ]
  4388. },
  4389. "bone3": {
  4390. "rotate": [
  4391. { "time": 0, "angle": 0, "curve": "stepped" },
  4392. { "time": 0.1667, "angle": 0 },
  4393. { "time": 0.3333, "angle": -0.24, "curve": "stepped" },
  4394. { "time": 0.5, "angle": -0.24, "curve": "stepped" },
  4395. { "time": 0.6667, "angle": -0.24, "curve": "stepped" },
  4396. { "time": 0.9667, "angle": -0.24, "curve": "stepped" },
  4397. { "time": 1.2667, "angle": -0.24, "curve": "stepped" },
  4398. { "time": 1.5667, "angle": -0.24, "curve": "stepped" },
  4399. { "time": 1.8667, "angle": -0.24, "curve": "stepped" },
  4400. { "time": 2.2, "angle": -0.24, "curve": "stepped" },
  4401. { "time": 2.5333, "angle": -0.24, "curve": "stepped" },
  4402. { "time": 2.9333, "angle": -0.24, "curve": "stepped" },
  4403. { "time": 3.2333, "angle": -0.24, "curve": "stepped" },
  4404. { "time": 3.5667, "angle": -0.24, "curve": "stepped" },
  4405. { "time": 3.9, "angle": -0.24, "curve": "stepped" },
  4406. { "time": 4.2333, "angle": -0.24, "curve": "stepped" },
  4407. { "time": 4.5333, "angle": -0.24 }
  4408. ],
  4409. "translate": [
  4410. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4411. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4412. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4413. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4414. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4415. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4416. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4417. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4418. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4419. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4420. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4421. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  4422. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  4423. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4424. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  4425. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  4426. { "time": 4.5333, "x": 0, "y": 0 }
  4427. ],
  4428. "scale": [
  4429. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4430. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4431. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4432. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4433. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4434. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4435. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4436. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4437. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4438. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4439. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4440. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4441. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4442. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4443. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4444. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4445. { "time": 4.5333, "x": 1, "y": 1 }
  4446. ]
  4447. },
  4448. "bone4": {
  4449. "rotate": [
  4450. { "time": 0, "angle": 0, "curve": "stepped" },
  4451. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4452. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4453. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4454. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4455. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4456. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4457. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  4458. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  4459. { "time": 2.2, "angle": 0, "curve": "stepped" },
  4460. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  4461. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  4462. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  4463. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4464. { "time": 3.9, "angle": 0, "curve": "stepped" },
  4465. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  4466. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  4467. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  4468. { "time": 5.2, "angle": 0 }
  4469. ],
  4470. "translate": [
  4471. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4472. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4473. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4474. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4475. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4476. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4477. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4478. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4479. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4480. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4481. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4482. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  4483. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  4484. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4485. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  4486. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  4487. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  4488. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  4489. { "time": 5.2, "x": 0, "y": 0 }
  4490. ],
  4491. "scale": [
  4492. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4493. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4494. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4495. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4496. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4497. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4498. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4499. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4500. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4501. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4502. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4503. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4504. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4505. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4506. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4507. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4508. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  4509. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  4510. { "time": 5.2, "x": 1, "y": 1 }
  4511. ]
  4512. },
  4513. "bone5": {
  4514. "rotate": [
  4515. { "time": 0, "angle": 0, "curve": "stepped" },
  4516. { "time": 0.1667, "angle": 0 },
  4517. { "time": 0.5, "angle": -2.14 },
  4518. { "time": 0.6667, "angle": 0 },
  4519. { "time": 0.9667, "angle": -2.14 },
  4520. { "time": 1.2667, "angle": 0 },
  4521. { "time": 1.5667, "angle": -2.14 },
  4522. { "time": 1.8667, "angle": 0 },
  4523. { "time": 2.2, "angle": -2.14 },
  4524. { "time": 2.5333, "angle": 0 },
  4525. { "time": 2.9, "angle": -2.14 },
  4526. { "time": 3.2333, "angle": 0 },
  4527. { "time": 3.5667, "angle": -2.14 },
  4528. { "time": 3.9, "angle": 0 },
  4529. { "time": 4.2333, "angle": -2.14 },
  4530. { "time": 4.5333, "angle": 0 }
  4531. ],
  4532. "translate": [
  4533. { "time": 0, "x": 0, "y": 0 },
  4534. { "time": 0.1667, "x": -0.7, "y": -0.02 },
  4535. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4536. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4537. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4538. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4539. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4540. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4541. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4542. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4543. { "time": 2.5333, "x": 0, "y": 0 },
  4544. { "time": 2.9, "x": -0.86, "y": 0 },
  4545. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  4546. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4547. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  4548. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  4549. { "time": 4.5333, "x": 0, "y": 0 }
  4550. ],
  4551. "scale": [
  4552. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4553. { "time": 0.1667, "x": 1, "y": 1 },
  4554. { "time": 0.3333, "x": 1.02, "y": 1 },
  4555. { "time": 0.6667, "x": 1, "y": 1 },
  4556. { "time": 0.9667, "x": 1.02, "y": 1 },
  4557. { "time": 1.2667, "x": 1, "y": 1 },
  4558. { "time": 1.5667, "x": 1.02, "y": 1 },
  4559. { "time": 1.8667, "x": 1, "y": 1 },
  4560. { "time": 2.2, "x": 1.02, "y": 1 },
  4561. { "time": 2.5333, "x": 1, "y": 1 },
  4562. { "time": 3.0333, "x": 1.02, "y": 1 },
  4563. { "time": 3.2333, "x": 1, "y": 1 },
  4564. { "time": 3.5667, "x": 1.02, "y": 1 },
  4565. { "time": 3.9, "x": 1, "y": 1 },
  4566. { "time": 4.2333, "x": 1.02, "y": 1 },
  4567. { "time": 4.5333, "x": 1, "y": 1 }
  4568. ]
  4569. },
  4570. "bone6": {
  4571. "rotate": [
  4572. { "time": 0, "angle": 0, "curve": "stepped" },
  4573. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4574. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4575. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4576. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4577. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4578. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4579. { "time": 3.2667, "angle": 0 }
  4580. ],
  4581. "translate": [
  4582. { "time": 0, "x": 0, "y": 0 },
  4583. { "time": 0.1, "x": -2.24, "y": 0, "curve": "stepped" },
  4584. { "time": 0.2, "x": -2.24, "y": 0 },
  4585. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4586. { "time": 2.7667, "x": 0, "y": 0 },
  4587. { "time": 2.9, "x": -2.58, "y": 0, "curve": "stepped" },
  4588. { "time": 3.0333, "x": -2.58, "y": 0 },
  4589. { "time": 3.2667, "x": 0, "y": 0 }
  4590. ],
  4591. "scale": [
  4592. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4593. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4594. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4595. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4596. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  4597. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4598. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  4599. { "time": 3.2667, "x": 1, "y": 1 }
  4600. ]
  4601. },
  4602. "bone7": {
  4603. "rotate": [
  4604. { "time": 0, "angle": 0, "curve": "stepped" },
  4605. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4606. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4607. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4608. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4609. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4610. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4611. { "time": 3.2667, "angle": 0 }
  4612. ],
  4613. "translate": [
  4614. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4615. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4616. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4617. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4618. { "time": 2.7667, "x": 0, "y": 0 },
  4619. { "time": 2.9, "x": -0.84, "y": 0, "curve": "stepped" },
  4620. { "time": 3.0333, "x": -0.84, "y": 0 },
  4621. { "time": 3.2667, "x": 0, "y": 0 }
  4622. ],
  4623. "scale": [
  4624. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4625. { "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
  4626. { "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
  4627. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4628. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  4629. { "time": 2.9, "x": 1, "y": 1, "curve": "stepped" },
  4630. { "time": 3.0333, "x": 1, "y": 1, "curve": "stepped" },
  4631. { "time": 3.2667, "x": 1, "y": 1 }
  4632. ]
  4633. },
  4634. "bone8": {
  4635. "rotate": [
  4636. { "time": 0, "angle": 0, "curve": "stepped" },
  4637. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4638. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4639. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4640. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4641. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4642. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4643. { "time": 3.2667, "angle": 0 }
  4644. ],
  4645. "translate": [
  4646. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4647. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4648. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4649. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4650. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  4651. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4652. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  4653. { "time": 3.2667, "x": 0, "y": 0 }
  4654. ],
  4655. "scale": [
  4656. { "time": 0, "x": 1, "y": 1 },
  4657. { "time": 0.1, "x": 0.514, "y": 1, "curve": "stepped" },
  4658. { "time": 0.2, "x": 0.514, "y": 1 },
  4659. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4660. { "time": 2.7667, "x": 1, "y": 1 },
  4661. { "time": 2.9, "x": 0.514, "y": 1, "curve": "stepped" },
  4662. { "time": 3.0333, "x": 0.514, "y": 1 },
  4663. { "time": 3.2667, "x": 1, "y": 1 }
  4664. ]
  4665. },
  4666. "bone9": {
  4667. "rotate": [
  4668. { "time": 0, "angle": 0, "curve": "stepped" },
  4669. { "time": 0.1, "angle": 0, "curve": "stepped" },
  4670. { "time": 0.2, "angle": 0, "curve": "stepped" },
  4671. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4672. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  4673. { "time": 2.9, "angle": 0, "curve": "stepped" },
  4674. { "time": 3.0333, "angle": 0, "curve": "stepped" },
  4675. { "time": 3.2667, "angle": 0 }
  4676. ],
  4677. "translate": [
  4678. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4679. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  4680. { "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
  4681. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4682. { "time": 2.7667, "x": 0, "y": 0, "curve": "stepped" },
  4683. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  4684. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  4685. { "time": 3.2667, "x": 0, "y": 0 }
  4686. ],
  4687. "scale": [
  4688. { "time": 0, "x": 1, "y": 1 },
  4689. { "time": 0.1, "x": 0.504, "y": 1, "curve": "stepped" },
  4690. { "time": 0.2, "x": 0.504, "y": 1 },
  4691. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4692. { "time": 2.7667, "x": 1, "y": 1 },
  4693. { "time": 2.9, "x": 0.504, "y": 1, "curve": "stepped" },
  4694. { "time": 3.0333, "x": 0.504, "y": 1 },
  4695. { "time": 3.2667, "x": 1, "y": 1 }
  4696. ]
  4697. },
  4698. "bone10": {
  4699. "rotate": [
  4700. { "time": 0, "angle": 0, "curve": "stepped" },
  4701. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4702. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4703. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4704. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4705. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  4706. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4707. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  4708. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  4709. { "time": 2.2, "angle": 0, "curve": "stepped" },
  4710. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  4711. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  4712. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  4713. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4714. { "time": 3.9, "angle": 0, "curve": "stepped" },
  4715. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  4716. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  4717. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  4718. { "time": 5.2, "angle": 0 }
  4719. ],
  4720. "translate": [
  4721. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4722. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4723. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4724. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4725. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4726. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  4727. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  4728. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  4729. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  4730. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  4731. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  4732. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  4733. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  4734. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  4735. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  4736. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  4737. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  4738. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  4739. { "time": 5.2, "x": 0, "y": 0 }
  4740. ],
  4741. "scale": [
  4742. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4743. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4744. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4745. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4746. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4747. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  4748. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4749. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4750. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4751. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4752. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4753. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4754. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4755. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4756. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4757. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4758. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 5.2, "x": 1, "y": 1 }
  4761. ]
  4762. },
  4763. "bone11": {
  4764. "rotate": [
  4765. { "time": 0, "angle": 0, "curve": "stepped" },
  4766. {
  4767. "time": 0.1667,
  4768. "angle": 0,
  4769. "curve": [ 0.248, 0, 0.628, 0.52 ]
  4770. },
  4771. {
  4772. "time": 0.4333,
  4773. "angle": -0.64,
  4774. "curve": [ 0.378, 0.52, 0.748, 1 ]
  4775. },
  4776. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4777. { "time": 1, "angle": 0, "curve": "stepped" },
  4778. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  4779. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  4780. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  4781. { "time": 2.2, "angle": 0, "curve": "stepped" },
  4782. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  4783. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  4784. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  4785. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  4786. { "time": 3.9, "angle": 0, "curve": "stepped" },
  4787. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  4788. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  4789. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  4790. { "time": 5.2, "angle": 0 }
  4791. ],
  4792. "translate": [
  4793. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4794. {
  4795. "time": 0.1667,
  4796. "x": 0,
  4797. "y": 0,
  4798. "curve": [ 0.265, 0, 0.618, 0.43 ]
  4799. },
  4800. {
  4801. "time": 0.3333,
  4802. "x": 0.78,
  4803. "y": 0.01,
  4804. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4805. },
  4806. {
  4807. "time": 0.6667,
  4808. "x": 0.78,
  4809. "y": 0.01,
  4810. "curve": [ 0.25, 0, 0.75, 1 ]
  4811. },
  4812. {
  4813. "time": 1,
  4814. "x": 0.77,
  4815. "y": 0.95,
  4816. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4817. },
  4818. {
  4819. "time": 1.2667,
  4820. "x": 0,
  4821. "y": 0,
  4822. "curve": [ 0.25, 0, 0.75, 1 ]
  4823. },
  4824. {
  4825. "time": 1.5667,
  4826. "x": 0.77,
  4827. "y": 0.95,
  4828. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4829. },
  4830. {
  4831. "time": 1.8667,
  4832. "x": 0,
  4833. "y": 0,
  4834. "curve": [ 0.25, 0, 0.75, 1 ]
  4835. },
  4836. {
  4837. "time": 2.2,
  4838. "x": 0.77,
  4839. "y": 0.95,
  4840. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4841. },
  4842. {
  4843. "time": 2.5333,
  4844. "x": 0,
  4845. "y": 0,
  4846. "curve": [ 0.25, 0, 0.75, 1 ]
  4847. },
  4848. {
  4849. "time": 2.9333,
  4850. "x": 0.77,
  4851. "y": 0.95,
  4852. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4853. },
  4854. {
  4855. "time": 3.2333,
  4856. "x": 0,
  4857. "y": 0,
  4858. "curve": [ 0.25, 0, 0.75, 1 ]
  4859. },
  4860. {
  4861. "time": 3.5667,
  4862. "x": 0.77,
  4863. "y": 0.95,
  4864. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4865. },
  4866. {
  4867. "time": 3.9,
  4868. "x": 0,
  4869. "y": 0,
  4870. "curve": [ 0.25, 0, 0.75, 1 ]
  4871. },
  4872. {
  4873. "time": 4.2333,
  4874. "x": 0.77,
  4875. "y": 0.95,
  4876. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4877. },
  4878. {
  4879. "time": 4.5333,
  4880. "x": 0,
  4881. "y": 0,
  4882. "curve": [ 0.25, 0, 0.75, 1 ]
  4883. },
  4884. {
  4885. "time": 4.8667,
  4886. "x": 0.77,
  4887. "y": 0.95,
  4888. "curve": [ 0.351, 0.4, 0.757, 1 ]
  4889. },
  4890. { "time": 5.2, "x": 0, "y": 0 }
  4891. ],
  4892. "scale": [
  4893. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4894. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4895. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4896. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4897. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  4898. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  4899. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  4900. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  4901. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  4902. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  4903. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  4904. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  4905. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  4906. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  4907. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  4908. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  4909. { "time": 5.2, "x": 1, "y": 1 }
  4910. ]
  4911. },
  4912. "bone12": {
  4913. "rotate": [
  4914. {
  4915. "time": 0,
  4916. "angle": 0,
  4917. "curve": [ 0.25, 0, 0.75, 1 ]
  4918. },
  4919. {
  4920. "time": 0.1667,
  4921. "angle": -5.39,
  4922. "curve": [ 0.265, 0, 0.618, 0.43 ]
  4923. },
  4924. {
  4925. "time": 0.3333,
  4926. "angle": -15.7,
  4927. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  4928. },
  4929. {
  4930. "time": 0.4333,
  4931. "angle": -8.33,
  4932. "curve": [ 0.378, 0.52, 0.748, 1 ]
  4933. },
  4934. {
  4935. "time": 0.8333,
  4936. "angle": -6.1,
  4937. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4938. },
  4939. {
  4940. "time": 1.0667,
  4941. "angle": -21.44,
  4942. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  4943. },
  4944. {
  4945. "time": 1.3,
  4946. "angle": -17.78,
  4947. "curve": [ 0.25, 0, 0.625, 0.5 ]
  4948. },
  4949. {
  4950. "time": 1.9,
  4951. "angle": -6.1,
  4952. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4953. },
  4954. {
  4955. "time": 2.1667,
  4956. "angle": -21.44,
  4957. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  4958. },
  4959. {
  4960. "time": 2.3667,
  4961. "angle": -17.78,
  4962. "curve": [ 0.266, 0, 0.618, 0.42 ]
  4963. },
  4964. {
  4965. "time": 2.5667,
  4966. "angle": -6.1,
  4967. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4968. },
  4969. {
  4970. "time": 2.9,
  4971. "angle": -21.44,
  4972. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  4973. },
  4974. {
  4975. "time": 3.0667,
  4976. "angle": -17.78,
  4977. "curve": [ 0.266, 0, 0.618, 0.42 ]
  4978. },
  4979. {
  4980. "time": 3.2667,
  4981. "angle": -6.1,
  4982. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4983. },
  4984. {
  4985. "time": 3.5333,
  4986. "angle": -21.44,
  4987. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  4988. },
  4989. {
  4990. "time": 3.6667,
  4991. "angle": -17.78,
  4992. "curve": [ 0.266, 0, 0.618, 0.42 ]
  4993. },
  4994. {
  4995. "time": 3.9333,
  4996. "angle": -6.1,
  4997. "curve": [ 0.301, 0, 0.637, 0.36 ]
  4998. },
  4999. {
  5000. "time": 4.2,
  5001. "angle": -21.44,
  5002. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5003. },
  5004. {
  5005. "time": 4.3667,
  5006. "angle": -17.78,
  5007. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5008. },
  5009. {
  5010. "time": 4.5667,
  5011. "angle": -6.1,
  5012. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5013. },
  5014. {
  5015. "time": 4.8333,
  5016. "angle": -21.44,
  5017. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5018. },
  5019. { "time": 5.0333, "angle": -17.78 }
  5020. ],
  5021. "translate": [
  5022. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5023. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5024. {
  5025. "time": 0.8333,
  5026. "x": 0,
  5027. "y": 0,
  5028. "curve": [ 0.271, 0, 0.619, 0.41 ]
  5029. },
  5030. { "time": 0.9667, "x": 0.3, "y": 1.21 }
  5031. ],
  5032. "scale": [
  5033. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5034. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5035. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5036. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5037. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5038. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  5039. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  5040. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5041. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5042. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5043. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5044. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5045. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  5046. { "time": 5.0333, "x": 1, "y": 1 }
  5047. ]
  5048. },
  5049. "bone13": {
  5050. "rotate": [
  5051. {
  5052. "time": 0,
  5053. "angle": 0,
  5054. "curve": [ 0.25, 0, 0.75, 1 ]
  5055. },
  5056. {
  5057. "time": 0.1667,
  5058. "angle": -5.39,
  5059. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5060. },
  5061. {
  5062. "time": 0.3333,
  5063. "angle": -4.58,
  5064. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  5065. },
  5066. {
  5067. "time": 0.4333,
  5068. "angle": -13.27,
  5069. "curve": [ 0.378, 0.52, 0.748, 1 ]
  5070. },
  5071. {
  5072. "time": 0.8333,
  5073. "angle": 0,
  5074. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5075. },
  5076. {
  5077. "time": 1.0667,
  5078. "angle": 1.04,
  5079. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5080. },
  5081. {
  5082. "time": 1.3,
  5083. "angle": -6.64,
  5084. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5085. },
  5086. {
  5087. "time": 1.9,
  5088. "angle": 0,
  5089. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5090. },
  5091. {
  5092. "time": 2.1667,
  5093. "angle": 1.04,
  5094. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5095. },
  5096. {
  5097. "time": 2.3667,
  5098. "angle": -6.64,
  5099. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5100. },
  5101. {
  5102. "time": 2.5667,
  5103. "angle": 0,
  5104. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5105. },
  5106. {
  5107. "time": 2.9,
  5108. "angle": 1.04,
  5109. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5110. },
  5111. {
  5112. "time": 3.0667,
  5113. "angle": -6.64,
  5114. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5115. },
  5116. {
  5117. "time": 3.2667,
  5118. "angle": 0,
  5119. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5120. },
  5121. {
  5122. "time": 3.5333,
  5123. "angle": 1.04,
  5124. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5125. },
  5126. {
  5127. "time": 3.6667,
  5128. "angle": -6.64,
  5129. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5130. },
  5131. {
  5132. "time": 3.9333,
  5133. "angle": 0,
  5134. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5135. },
  5136. {
  5137. "time": 4.2,
  5138. "angle": 1.04,
  5139. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5140. },
  5141. {
  5142. "time": 4.3667,
  5143. "angle": -6.64,
  5144. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5145. },
  5146. {
  5147. "time": 4.5667,
  5148. "angle": 0,
  5149. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5150. },
  5151. {
  5152. "time": 4.8333,
  5153. "angle": 1.04,
  5154. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5155. },
  5156. { "time": 5.0333, "angle": -6.64 }
  5157. ],
  5158. "translate": [
  5159. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5160. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5161. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5162. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5163. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5164. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  5165. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  5166. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5167. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5168. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5169. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  5170. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5171. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  5172. { "time": 5.0333, "x": 0, "y": 0 }
  5173. ],
  5174. "scale": [
  5175. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5176. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5177. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5178. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5179. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5180. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  5181. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  5182. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5183. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5184. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5185. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5186. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 5.0333, "x": 1, "y": 1 }
  5189. ]
  5190. },
  5191. "bone14": {
  5192. "rotate": [
  5193. {
  5194. "time": 0,
  5195. "angle": 0,
  5196. "curve": [ 0.25, 0, 0.75, 1 ]
  5197. },
  5198. {
  5199. "time": 0.1667,
  5200. "angle": 5.93,
  5201. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5202. },
  5203. {
  5204. "time": 0.3333,
  5205. "angle": 3.54,
  5206. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  5207. },
  5208. {
  5209. "time": 0.4333,
  5210. "angle": -8.1,
  5211. "curve": [ 0.378, 0.52, 0.748, 1 ]
  5212. },
  5213. {
  5214. "time": 0.8333,
  5215. "angle": -9.04,
  5216. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5217. },
  5218. {
  5219. "time": 1.0667,
  5220. "angle": 1.55,
  5221. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5222. },
  5223. {
  5224. "time": 1.3,
  5225. "angle": -4.95,
  5226. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5227. },
  5228. {
  5229. "time": 1.9,
  5230. "angle": -9.04,
  5231. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5232. },
  5233. {
  5234. "time": 2.1667,
  5235. "angle": 1.55,
  5236. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5237. },
  5238. {
  5239. "time": 2.3667,
  5240. "angle": -4.95,
  5241. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5242. },
  5243. {
  5244. "time": 2.5667,
  5245. "angle": -9.04,
  5246. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5247. },
  5248. {
  5249. "time": 2.9,
  5250. "angle": 1.55,
  5251. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5252. },
  5253. {
  5254. "time": 3.0667,
  5255. "angle": -4.95,
  5256. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5257. },
  5258. {
  5259. "time": 3.2667,
  5260. "angle": -9.04,
  5261. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5262. },
  5263. {
  5264. "time": 3.5333,
  5265. "angle": 1.55,
  5266. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5267. },
  5268. {
  5269. "time": 3.6667,
  5270. "angle": -4.95,
  5271. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5272. },
  5273. {
  5274. "time": 3.9333,
  5275. "angle": -9.04,
  5276. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5277. },
  5278. {
  5279. "time": 4.2,
  5280. "angle": 1.55,
  5281. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5282. },
  5283. {
  5284. "time": 4.3667,
  5285. "angle": -4.95,
  5286. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5287. },
  5288. {
  5289. "time": 4.5667,
  5290. "angle": -9.04,
  5291. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5292. },
  5293. {
  5294. "time": 4.8333,
  5295. "angle": 1.55,
  5296. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5297. },
  5298. { "time": 5.0333, "angle": -4.95 }
  5299. ],
  5300. "translate": [
  5301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5302. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5303. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5304. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5305. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5306. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  5307. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  5308. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5309. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5310. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5311. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  5312. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5313. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  5314. { "time": 5.0333, "x": 0, "y": 0 }
  5315. ],
  5316. "scale": [
  5317. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5318. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5319. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5320. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5321. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5322. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  5323. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  5324. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5325. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5326. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5327. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5328. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5329. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  5330. { "time": 5.0333, "x": 1, "y": 1 }
  5331. ]
  5332. },
  5333. "bone15": {
  5334. "rotate": [
  5335. {
  5336. "time": 0,
  5337. "angle": 0,
  5338. "curve": [ 0.25, 0, 0.75, 1 ]
  5339. },
  5340. {
  5341. "time": 0.1667,
  5342. "angle": 5.93,
  5343. "curve": [ 0.265, 0, 0.618, 0.43 ]
  5344. },
  5345. {
  5346. "time": 0.3333,
  5347. "angle": 3.54,
  5348. "curve": [ 0.324, 0.31, 0.664, 0.66 ]
  5349. },
  5350. {
  5351. "time": 0.4333,
  5352. "angle": -8.1,
  5353. "curve": [ 0.378, 0.52, 0.748, 1 ]
  5354. },
  5355. {
  5356. "time": 0.8333,
  5357. "angle": -0.32,
  5358. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5359. },
  5360. {
  5361. "time": 1.0667,
  5362. "angle": 7.24,
  5363. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5364. },
  5365. {
  5366. "time": 1.3,
  5367. "angle": -4.95,
  5368. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5369. },
  5370. {
  5371. "time": 1.9,
  5372. "angle": -0.32,
  5373. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5374. },
  5375. {
  5376. "time": 2.1667,
  5377. "angle": 7.24,
  5378. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5379. },
  5380. {
  5381. "time": 2.3667,
  5382. "angle": -4.95,
  5383. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5384. },
  5385. {
  5386. "time": 2.5667,
  5387. "angle": -0.32,
  5388. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5389. },
  5390. {
  5391. "time": 2.9,
  5392. "angle": 7.24,
  5393. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5394. },
  5395. {
  5396. "time": 3.0667,
  5397. "angle": -4.95,
  5398. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5399. },
  5400. {
  5401. "time": 3.2667,
  5402. "angle": -0.32,
  5403. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5404. },
  5405. {
  5406. "time": 3.5333,
  5407. "angle": 7.24,
  5408. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5409. },
  5410. {
  5411. "time": 3.6667,
  5412. "angle": -4.95,
  5413. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5414. },
  5415. {
  5416. "time": 3.9333,
  5417. "angle": -0.32,
  5418. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5419. },
  5420. {
  5421. "time": 4.2,
  5422. "angle": 7.24,
  5423. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5424. },
  5425. {
  5426. "time": 4.3667,
  5427. "angle": -4.95,
  5428. "curve": [ 0.266, 0, 0.618, 0.42 ]
  5429. },
  5430. {
  5431. "time": 4.5667,
  5432. "angle": -0.32,
  5433. "curve": [ 0.301, 0, 0.637, 0.36 ]
  5434. },
  5435. {
  5436. "time": 4.8333,
  5437. "angle": 7.24,
  5438. "curve": [ 0.315, 0.25, 0.65, 0.59 ]
  5439. },
  5440. { "time": 5.0333, "angle": -4.95 }
  5441. ],
  5442. "translate": [
  5443. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5444. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5445. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5446. { "time": 1.3, "x": 0, "y": 0, "curve": "stepped" },
  5447. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  5448. { "time": 2.3667, "x": 0, "y": 0, "curve": "stepped" },
  5449. { "time": 2.5667, "x": 0, "y": 0, "curve": "stepped" },
  5450. { "time": 3.0667, "x": 0, "y": 0, "curve": "stepped" },
  5451. { "time": 3.2667, "x": 0, "y": 0, "curve": "stepped" },
  5452. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  5453. { "time": 3.9333, "x": 0, "y": 0, "curve": "stepped" },
  5454. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  5455. { "time": 4.5667, "x": 0, "y": 0, "curve": "stepped" },
  5456. { "time": 5.0333, "x": 0, "y": 0 }
  5457. ],
  5458. "scale": [
  5459. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5460. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5461. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5462. { "time": 1.3, "x": 1, "y": 1, "curve": "stepped" },
  5463. { "time": 1.9, "x": 1, "y": 1, "curve": "stepped" },
  5464. { "time": 2.3667, "x": 1, "y": 1, "curve": "stepped" },
  5465. { "time": 2.5667, "x": 1, "y": 1, "curve": "stepped" },
  5466. { "time": 3.0667, "x": 1, "y": 1, "curve": "stepped" },
  5467. { "time": 3.2667, "x": 1, "y": 1, "curve": "stepped" },
  5468. { "time": 3.6667, "x": 1, "y": 1, "curve": "stepped" },
  5469. { "time": 3.9333, "x": 1, "y": 1, "curve": "stepped" },
  5470. { "time": 4.3667, "x": 1, "y": 1, "curve": "stepped" },
  5471. { "time": 4.5667, "x": 1, "y": 1, "curve": "stepped" },
  5472. { "time": 5.0333, "x": 1, "y": 1 }
  5473. ]
  5474. },
  5475. "bone16": {
  5476. "rotate": [
  5477. { "time": 0, "angle": 0, "curve": "stepped" },
  5478. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5479. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5480. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5481. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5482. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5483. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  5484. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  5485. { "time": 2.2, "angle": 0, "curve": "stepped" },
  5486. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  5487. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  5488. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  5489. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  5490. { "time": 3.9, "angle": 0, "curve": "stepped" },
  5491. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  5492. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  5493. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  5494. { "time": 5.2, "angle": 0 }
  5495. ],
  5496. "translate": [
  5497. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5498. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5499. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5500. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5501. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5502. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5503. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  5504. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5505. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5506. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5507. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  5508. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  5509. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5510. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  5511. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  5512. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  5513. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  5514. { "time": 5.2, "x": 0, "y": 0 }
  5515. ],
  5516. "scale": [
  5517. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5518. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5519. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5520. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5521. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5522. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5523. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5524. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5525. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5526. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5527. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5528. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5529. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5530. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5531. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5532. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5533. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5534. { "time": 5.2, "x": 1, "y": 1 }
  5535. ]
  5536. },
  5537. "bone17": {
  5538. "rotate": [
  5539. {
  5540. "time": 0,
  5541. "angle": 0,
  5542. "curve": [ 0.25, 0, 0.75, 1 ]
  5543. },
  5544. {
  5545. "time": 0.1667,
  5546. "angle": 1.58,
  5547. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5548. },
  5549. {
  5550. "time": 0.3333,
  5551. "angle": 1.54,
  5552. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5553. },
  5554. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5555. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5556. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  5557. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5558. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  5559. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  5560. { "time": 2.2, "angle": 0, "curve": "stepped" },
  5561. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  5562. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  5563. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  5564. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  5565. { "time": 3.9, "angle": 0, "curve": "stepped" },
  5566. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  5567. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  5568. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  5569. { "time": 5.2, "angle": 0 }
  5570. ],
  5571. "translate": [
  5572. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5573. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5574. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5575. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5576. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5577. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5578. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  5579. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5580. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5581. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5582. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  5583. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  5584. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5585. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  5586. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  5587. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  5588. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  5589. { "time": 5.2, "x": 0, "y": 0 }
  5590. ],
  5591. "scale": [
  5592. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5593. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5594. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5595. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5596. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5597. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5598. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5599. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5600. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5601. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5602. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5603. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5604. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5605. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5606. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5607. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5608. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5609. { "time": 5.2, "x": 1, "y": 1 }
  5610. ]
  5611. },
  5612. "bone18": {
  5613. "rotate": [
  5614. {
  5615. "time": 0,
  5616. "angle": 0,
  5617. "curve": [ 0.25, 0, 0.75, 1 ]
  5618. },
  5619. {
  5620. "time": 0.1667,
  5621. "angle": 10.37,
  5622. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5623. },
  5624. {
  5625. "time": 0.3333,
  5626. "angle": 11.75,
  5627. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5628. },
  5629. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  5630. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  5631. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  5632. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  5633. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  5634. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  5635. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  5636. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  5637. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  5638. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  5639. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  5640. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  5641. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  5642. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  5643. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  5644. { "time": 5.2, "angle": 6.96 }
  5645. ],
  5646. "translate": [
  5647. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5648. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5649. {
  5650. "time": 0.5,
  5651. "x": 0,
  5652. "y": 0,
  5653. "curve": [ 0.25, 0, 0.75, 1 ]
  5654. },
  5655. { "time": 0.6667, "x": 0.03, "y": -0.42 },
  5656. {
  5657. "time": 0.9667,
  5658. "x": 0,
  5659. "y": 0,
  5660. "curve": [ 0.25, 0, 0.75, 1 ]
  5661. },
  5662. { "time": 1.2667, "x": 0.03, "y": -0.42 },
  5663. {
  5664. "time": 1.5667,
  5665. "x": 0,
  5666. "y": 0,
  5667. "curve": [ 0.25, 0, 0.75, 1 ]
  5668. },
  5669. { "time": 1.8667, "x": 0.03, "y": -0.42 },
  5670. {
  5671. "time": 2.2,
  5672. "x": 0,
  5673. "y": 0,
  5674. "curve": [ 0.25, 0, 0.75, 1 ]
  5675. },
  5676. { "time": 2.5333, "x": 0.03, "y": -0.42 },
  5677. {
  5678. "time": 2.9333,
  5679. "x": 0,
  5680. "y": 0,
  5681. "curve": [ 0.25, 0, 0.75, 1 ]
  5682. },
  5683. { "time": 3.2333, "x": 0.03, "y": -0.42 },
  5684. {
  5685. "time": 3.5667,
  5686. "x": 0,
  5687. "y": 0,
  5688. "curve": [ 0.25, 0, 0.75, 1 ]
  5689. },
  5690. { "time": 3.9, "x": 0.03, "y": -0.42 },
  5691. {
  5692. "time": 4.2333,
  5693. "x": 0,
  5694. "y": 0,
  5695. "curve": [ 0.25, 0, 0.75, 1 ]
  5696. },
  5697. { "time": 4.5333, "x": 0.03, "y": -0.42 },
  5698. {
  5699. "time": 4.8667,
  5700. "x": 0,
  5701. "y": 0,
  5702. "curve": [ 0.25, 0, 0.75, 1 ]
  5703. },
  5704. { "time": 5.2, "x": 0.03, "y": -0.42 }
  5705. ],
  5706. "scale": [
  5707. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5708. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5709. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5710. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5711. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5712. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5713. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5714. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5715. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5716. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5717. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5718. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5719. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5720. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5721. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5722. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5723. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5724. { "time": 5.2, "x": 1, "y": 1 }
  5725. ]
  5726. },
  5727. "bone19": {
  5728. "rotate": [
  5729. {
  5730. "time": 0,
  5731. "angle": 0,
  5732. "curve": [ 0.25, 0, 0.75, 1 ]
  5733. },
  5734. {
  5735. "time": 0.1667,
  5736. "angle": -0.98,
  5737. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5738. },
  5739. {
  5740. "time": 0.3333,
  5741. "angle": 7.87,
  5742. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5743. },
  5744. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  5745. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  5746. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  5747. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  5748. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  5749. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  5750. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  5751. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  5752. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  5753. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  5754. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  5755. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  5756. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  5757. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  5758. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  5759. { "time": 5.2, "angle": 6.96 }
  5760. ],
  5761. "translate": [
  5762. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5763. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5764. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5765. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5766. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5767. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5768. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  5769. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5770. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5771. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5772. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  5773. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  5774. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5775. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  5776. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  5777. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  5778. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  5779. { "time": 5.2, "x": 0, "y": 0 }
  5780. ],
  5781. "scale": [
  5782. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5783. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5784. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5785. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5786. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5787. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5788. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5789. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5790. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5791. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5792. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5793. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5794. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5795. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5796. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5797. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5798. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5799. { "time": 5.2, "x": 1, "y": 1 }
  5800. ]
  5801. },
  5802. "bone20": {
  5803. "rotate": [
  5804. {
  5805. "time": 0,
  5806. "angle": 0,
  5807. "curve": [ 0.25, 0, 0.75, 1 ]
  5808. },
  5809. {
  5810. "time": 0.1667,
  5811. "angle": -0.98,
  5812. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5813. },
  5814. {
  5815. "time": 0.3333,
  5816. "angle": 7.87,
  5817. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5818. },
  5819. { "time": 0.5, "angle": 6.96, "curve": "stepped" },
  5820. { "time": 0.6667, "angle": 6.96, "curve": "stepped" },
  5821. { "time": 0.9667, "angle": 6.96, "curve": "stepped" },
  5822. { "time": 1.2667, "angle": 6.96, "curve": "stepped" },
  5823. { "time": 1.5667, "angle": 6.96, "curve": "stepped" },
  5824. { "time": 1.8667, "angle": 6.96, "curve": "stepped" },
  5825. { "time": 2.2, "angle": 6.96, "curve": "stepped" },
  5826. { "time": 2.5333, "angle": 6.96, "curve": "stepped" },
  5827. { "time": 2.9333, "angle": 6.96, "curve": "stepped" },
  5828. { "time": 3.2333, "angle": 6.96, "curve": "stepped" },
  5829. { "time": 3.5667, "angle": 6.96, "curve": "stepped" },
  5830. { "time": 3.9, "angle": 6.96, "curve": "stepped" },
  5831. { "time": 4.2333, "angle": 6.96, "curve": "stepped" },
  5832. { "time": 4.5333, "angle": 6.96, "curve": "stepped" },
  5833. { "time": 4.8667, "angle": 6.96, "curve": "stepped" },
  5834. { "time": 5.2, "angle": 6.96 }
  5835. ],
  5836. "translate": [
  5837. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5838. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5839. {
  5840. "time": 0.5,
  5841. "x": 0,
  5842. "y": 0,
  5843. "curve": [ 0.25, 0, 0.75, 1 ]
  5844. },
  5845. { "time": 0.6667, "x": 0.68, "y": -1.16 },
  5846. {
  5847. "time": 0.9667,
  5848. "x": 0,
  5849. "y": 0,
  5850. "curve": [ 0.25, 0, 0.75, 1 ]
  5851. },
  5852. { "time": 1.2667, "x": 0.68, "y": -1.16 },
  5853. {
  5854. "time": 1.5667,
  5855. "x": 0,
  5856. "y": 0,
  5857. "curve": [ 0.25, 0, 0.75, 1 ]
  5858. },
  5859. { "time": 1.8667, "x": 0.68, "y": -1.16 },
  5860. {
  5861. "time": 2.2,
  5862. "x": 0,
  5863. "y": 0,
  5864. "curve": [ 0.25, 0, 0.75, 1 ]
  5865. },
  5866. { "time": 2.5333, "x": 0.68, "y": -1.16 },
  5867. {
  5868. "time": 2.9333,
  5869. "x": 0,
  5870. "y": 0,
  5871. "curve": [ 0.25, 0, 0.75, 1 ]
  5872. },
  5873. { "time": 3.2333, "x": 0.68, "y": -1.16 },
  5874. {
  5875. "time": 3.5667,
  5876. "x": 0,
  5877. "y": 0,
  5878. "curve": [ 0.25, 0, 0.75, 1 ]
  5879. },
  5880. { "time": 3.9, "x": 0.68, "y": -1.16 },
  5881. {
  5882. "time": 4.2333,
  5883. "x": 0,
  5884. "y": 0,
  5885. "curve": [ 0.25, 0, 0.75, 1 ]
  5886. },
  5887. { "time": 4.5333, "x": 0.68, "y": -1.16 },
  5888. {
  5889. "time": 4.8667,
  5890. "x": 0,
  5891. "y": 0,
  5892. "curve": [ 0.25, 0, 0.75, 1 ]
  5893. },
  5894. { "time": 5.2, "x": 0.68, "y": -1.16 }
  5895. ],
  5896. "scale": [
  5897. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5898. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5899. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5900. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5901. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5902. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5903. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5904. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5905. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5906. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5907. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5908. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5909. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5910. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5911. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5912. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5913. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5914. { "time": 5.2, "x": 1, "y": 1 }
  5915. ]
  5916. },
  5917. "bone21": {
  5918. "rotate": [
  5919. {
  5920. "time": 0,
  5921. "angle": 0,
  5922. "curve": [ 0.25, 0, 0.75, 1 ]
  5923. },
  5924. {
  5925. "time": 0.1667,
  5926. "angle": -0.98,
  5927. "curve": [ 0.25, 0, 0.625, 0.5 ]
  5928. },
  5929. {
  5930. "time": 0.3333,
  5931. "angle": 7.87,
  5932. "curve": [ 0.375, 0.5, 0.75, 1 ]
  5933. },
  5934. { "time": 0.5, "angle": -3.24, "curve": "stepped" },
  5935. { "time": 0.6667, "angle": -3.24, "curve": "stepped" },
  5936. { "time": 0.9667, "angle": -3.24, "curve": "stepped" },
  5937. { "time": 1.2667, "angle": -3.24, "curve": "stepped" },
  5938. { "time": 1.5667, "angle": -3.24, "curve": "stepped" },
  5939. { "time": 1.8667, "angle": -3.24, "curve": "stepped" },
  5940. { "time": 2.2, "angle": -3.24, "curve": "stepped" },
  5941. { "time": 2.5333, "angle": -3.24, "curve": "stepped" },
  5942. { "time": 2.9333, "angle": -3.24, "curve": "stepped" },
  5943. { "time": 3.2333, "angle": -3.24, "curve": "stepped" },
  5944. { "time": 3.5667, "angle": -3.24, "curve": "stepped" },
  5945. { "time": 3.9, "angle": -3.24, "curve": "stepped" },
  5946. { "time": 4.2333, "angle": -3.24, "curve": "stepped" },
  5947. { "time": 4.5333, "angle": -3.24, "curve": "stepped" },
  5948. { "time": 4.8667, "angle": -3.24, "curve": "stepped" },
  5949. { "time": 5.2, "angle": -3.24 }
  5950. ],
  5951. "translate": [
  5952. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5953. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5954. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5955. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5956. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  5957. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5958. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  5959. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  5960. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  5961. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  5962. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  5963. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  5964. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  5965. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  5966. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  5967. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  5968. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  5969. { "time": 5.2, "x": 0, "y": 0 }
  5970. ],
  5971. "scale": [
  5972. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5973. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5974. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5975. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5976. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  5977. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  5978. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  5979. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  5980. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  5981. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  5982. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  5983. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  5984. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  5985. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  5986. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  5987. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  5988. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  5989. { "time": 5.2, "x": 1, "y": 1 }
  5990. ]
  5991. },
  5992. "bone22": {
  5993. "rotate": [
  5994. { "time": 0, "angle": 0 },
  5995. { "time": 0.1667, "angle": 8.77 },
  5996. { "time": 0.3333, "angle": -3.46 }
  5997. ],
  5998. "translate": [
  5999. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6000. { "time": 0.1667, "x": 0, "y": 0 },
  6001. { "time": 0.3333, "x": 0.1, "y": -3.16, "curve": "stepped" },
  6002. { "time": 0.3667, "x": -17.34, "y": -116.72 }
  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.3333, "x": 1, "y": 1 }
  6008. ]
  6009. },
  6010. "bone23": {
  6011. "rotate": [
  6012. { "time": 0, "angle": 0 },
  6013. { "time": 0.1667, "angle": 12.4 },
  6014. { "time": 0.3333, "angle": -82.61 }
  6015. ],
  6016. "translate": [
  6017. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6018. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6019. { "time": 0.3333, "x": 0, "y": 0 }
  6020. ],
  6021. "scale": [
  6022. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6023. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6024. { "time": 0.3333, "x": 1, "y": 1 }
  6025. ]
  6026. },
  6027. "bone24": {
  6028. "rotate": [
  6029. { "time": 0, "angle": 0 },
  6030. { "time": 0.1667, "angle": 6.05 },
  6031. { "time": 0.3333, "angle": 18.34 }
  6032. ],
  6033. "translate": [
  6034. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6035. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6036. { "time": 0.3333, "x": 0, "y": 0 }
  6037. ],
  6038. "scale": [
  6039. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6040. { "time": 0.1667, "x": 1, "y": 1 },
  6041. { "time": 0.3333, "x": 0.8, "y": 1 }
  6042. ]
  6043. },
  6044. "bone25": {
  6045. "rotate": [
  6046. { "time": 0, "angle": 0 },
  6047. { "time": 0.1667, "angle": -4.88 },
  6048. { "time": 0.3333, "angle": 16.9 }
  6049. ],
  6050. "translate": [
  6051. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6052. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6053. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6054. { "time": 0.3667, "x": -10.25, "y": -103.17 }
  6055. ],
  6056. "scale": [
  6057. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6058. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6059. { "time": 0.3333, "x": 1, "y": 1 }
  6060. ]
  6061. },
  6062. "bone26": {
  6063. "rotate": [
  6064. { "time": 0, "angle": 0 },
  6065. { "time": 0.1667, "angle": -11.29 },
  6066. { "time": 0.3333, "angle": -86.34 }
  6067. ],
  6068. "translate": [
  6069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6070. { "time": 0.1667, "x": 0, "y": 0 },
  6071. { "time": 0.3, "x": -1, "y": -2.13 },
  6072. { "time": 0.3333, "x": 0, "y": 0 }
  6073. ],
  6074. "scale": [
  6075. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6076. { "time": 0.1667, "x": 1, "y": 1 },
  6077. { "time": 0.3333, "x": 0.8, "y": 1 }
  6078. ]
  6079. },
  6080. "bone27": {
  6081. "rotate": [
  6082. { "time": 0, "angle": 0 },
  6083. { "time": 0.1667, "angle": -4.69 },
  6084. { "time": 0.3333, "angle": 0 }
  6085. ],
  6086. "translate": [
  6087. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6088. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6089. { "time": 0.3333, "x": 0, "y": 0 }
  6090. ],
  6091. "scale": [
  6092. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6093. { "time": 0.1667, "x": 1, "y": 1 },
  6094. { "time": 0.3333, "x": 0.8, "y": 1 }
  6095. ]
  6096. },
  6097. "bone28": {
  6098. "rotate": [
  6099. { "time": 0, "angle": 0, "curve": "stepped" },
  6100. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6101. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6102. { "time": 0.5, "angle": 0, "curve": "stepped" },
  6103. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  6104. { "time": 0.9667, "angle": 0, "curve": "stepped" },
  6105. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  6106. { "time": 1.5667, "angle": 0, "curve": "stepped" },
  6107. { "time": 1.8667, "angle": 0, "curve": "stepped" },
  6108. { "time": 2.2, "angle": 0, "curve": "stepped" },
  6109. { "time": 2.5333, "angle": 0, "curve": "stepped" },
  6110. { "time": 2.9333, "angle": 0, "curve": "stepped" },
  6111. { "time": 3.2333, "angle": 0, "curve": "stepped" },
  6112. { "time": 3.5667, "angle": 0, "curve": "stepped" },
  6113. { "time": 3.9, "angle": 0, "curve": "stepped" },
  6114. { "time": 4.2333, "angle": 0, "curve": "stepped" },
  6115. { "time": 4.5333, "angle": 0, "curve": "stepped" },
  6116. { "time": 4.8667, "angle": 0, "curve": "stepped" },
  6117. { "time": 5.2, "angle": 0 }
  6118. ],
  6119. "translate": [
  6120. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6121. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6122. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6123. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6124. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6125. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6126. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6127. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6128. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6129. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6130. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6131. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6132. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6133. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6134. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6135. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6136. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  6137. { "time": 4.8667, "x": 0, "y": 0, "curve": "stepped" },
  6138. { "time": 5.2, "x": 0, "y": 0 }
  6139. ],
  6140. "scale": [
  6141. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6142. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6143. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6144. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6145. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6146. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6147. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6148. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6149. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6150. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6151. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6152. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6153. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6154. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6155. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6156. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6157. { "time": 4.5333, "x": 1, "y": 1, "curve": "stepped" },
  6158. { "time": 4.8667, "x": 1, "y": 1, "curve": "stepped" },
  6159. { "time": 5.2, "x": 1, "y": 1 }
  6160. ]
  6161. },
  6162. "bone29": {
  6163. "rotate": [
  6164. { "time": 0, "angle": 0 },
  6165. { "time": 0.1667, "angle": -10.45 },
  6166. { "time": 0.3333, "angle": 0 },
  6167. { "time": 0.5, "angle": -10.84 },
  6168. { "time": 0.6667, "angle": 0 },
  6169. { "time": 0.9667, "angle": -10.84 },
  6170. { "time": 1.2667, "angle": 0 },
  6171. { "time": 1.5667, "angle": -10.84 },
  6172. { "time": 1.8667, "angle": 0 },
  6173. { "time": 2.2, "angle": -10.84 },
  6174. { "time": 2.5333, "angle": 0 },
  6175. { "time": 2.9333, "angle": -10.84 },
  6176. { "time": 3.2333, "angle": 0 },
  6177. { "time": 3.5667, "angle": -10.84 },
  6178. { "time": 3.9, "angle": 0 },
  6179. { "time": 4.2333, "angle": -10.84 },
  6180. { "time": 4.5333, "angle": 0 }
  6181. ],
  6182. "translate": [
  6183. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6184. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6185. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6186. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6187. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6188. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6189. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6190. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6191. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6192. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6193. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6194. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6195. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6196. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6197. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6198. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6199. { "time": 4.5333, "x": 0, "y": 0 }
  6200. ],
  6201. "scale": [
  6202. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6203. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6204. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6205. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6206. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6207. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6208. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6209. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6210. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6211. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6212. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6213. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6214. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6215. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6216. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6217. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6218. { "time": 4.5333, "x": 1, "y": 1 }
  6219. ]
  6220. },
  6221. "bone30": {
  6222. "rotate": [
  6223. { "time": 0, "angle": 0 },
  6224. { "time": 0.1667, "angle": 16.94 },
  6225. { "time": 0.3333, "angle": 0 },
  6226. { "time": 0.5, "angle": 24.75 },
  6227. { "time": 0.6667, "angle": 0 },
  6228. { "time": 0.9667, "angle": 24.75 },
  6229. { "time": 1.2667, "angle": 0 },
  6230. { "time": 1.5667, "angle": 24.75 },
  6231. { "time": 1.8667, "angle": 0 },
  6232. { "time": 2.2, "angle": 24.75 },
  6233. { "time": 2.5333, "angle": 0 },
  6234. { "time": 2.9333, "angle": 24.75 },
  6235. { "time": 3.2333, "angle": 0 },
  6236. { "time": 3.5667, "angle": 24.75 },
  6237. { "time": 3.9, "angle": 0 },
  6238. { "time": 4.2333, "angle": 24.75 },
  6239. { "time": 4.5333, "angle": 0 }
  6240. ],
  6241. "translate": [
  6242. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6243. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6244. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6245. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6246. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6247. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6248. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6249. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6250. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6251. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6252. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6253. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6254. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6255. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6256. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6257. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6258. { "time": 4.5333, "x": 0, "y": 0 }
  6259. ],
  6260. "scale": [
  6261. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6262. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6263. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6264. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6265. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6266. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6267. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6268. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6269. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6270. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6271. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6272. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6273. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6274. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6275. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6276. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6277. { "time": 4.5333, "x": 1, "y": 1 }
  6278. ]
  6279. },
  6280. "bone31": {
  6281. "rotate": [
  6282. { "time": 0, "angle": 0, "curve": "stepped" },
  6283. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6284. { "time": 0.3333, "angle": 0 },
  6285. { "time": 0.5, "angle": -7.22 },
  6286. { "time": 0.6667, "angle": 0 },
  6287. { "time": 0.9667, "angle": -7.22 },
  6288. { "time": 1.2667, "angle": 0 },
  6289. { "time": 1.5667, "angle": -7.22 },
  6290. { "time": 1.8667, "angle": 0 },
  6291. { "time": 2.2, "angle": -7.22 },
  6292. { "time": 2.5333, "angle": 0 },
  6293. { "time": 2.9333, "angle": -7.22 },
  6294. { "time": 3.2333, "angle": 0 },
  6295. { "time": 3.5667, "angle": -7.22 },
  6296. { "time": 3.9, "angle": 0 },
  6297. { "time": 4.2333, "angle": -7.22 },
  6298. { "time": 4.5333, "angle": 0 }
  6299. ],
  6300. "translate": [
  6301. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6302. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6303. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6304. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6305. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6306. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6307. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6308. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6309. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6310. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6311. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6312. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6313. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6314. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6315. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6316. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6317. { "time": 4.5333, "x": 0, "y": 0 }
  6318. ],
  6319. "scale": [
  6320. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6321. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6322. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6323. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6324. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6325. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6326. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6327. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6328. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6329. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6330. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6331. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6332. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6333. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6334. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6335. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6336. { "time": 4.5333, "x": 1, "y": 1 }
  6337. ]
  6338. },
  6339. "bone32": {
  6340. "rotate": [
  6341. { "time": 0, "angle": 0 }
  6342. ],
  6343. "translate": [
  6344. { "time": 0, "x": 164.76, "y": 0 }
  6345. ],
  6346. "scale": [
  6347. { "time": 0, "x": 1, "y": 1 }
  6348. ]
  6349. },
  6350. "bone33": {
  6351. "rotate": [
  6352. { "time": 0, "angle": 0 }
  6353. ],
  6354. "translate": [
  6355. { "time": 0, "x": 0, "y": 0 }
  6356. ],
  6357. "scale": [
  6358. { "time": 0, "x": 1, "y": 1 }
  6359. ]
  6360. },
  6361. "bone34": {
  6362. "rotate": [
  6363. { "time": 0, "angle": 0 }
  6364. ],
  6365. "translate": [
  6366. { "time": 0, "x": 0, "y": 0 }
  6367. ],
  6368. "scale": [
  6369. { "time": 0, "x": 1, "y": 1 }
  6370. ]
  6371. },
  6372. "bone49": {
  6373. "rotate": [
  6374. { "time": 0, "angle": 0, "curve": "stepped" },
  6375. { "time": 0.1667, "angle": 0 },
  6376. { "time": 0.3333, "angle": -17.86 },
  6377. { "time": 0.5, "angle": -5.28 },
  6378. { "time": 0.6667, "angle": -5.85 },
  6379. { "time": 0.9667, "angle": -5.28 },
  6380. { "time": 1.2667, "angle": -5.85 },
  6381. { "time": 1.5667, "angle": -5.28 },
  6382. { "time": 1.8667, "angle": -5.85 },
  6383. { "time": 2.2, "angle": -5.28 },
  6384. { "time": 2.5333, "angle": -5.85 },
  6385. { "time": 2.9333, "angle": -5.28 },
  6386. { "time": 3.2333, "angle": -5.85 },
  6387. { "time": 3.5667, "angle": -5.28 },
  6388. { "time": 3.9, "angle": -5.85 },
  6389. { "time": 4.2333, "angle": -5.28 },
  6390. { "time": 4.5333, "angle": -5.85 }
  6391. ],
  6392. "translate": [
  6393. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6394. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6395. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6396. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6397. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6398. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6399. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6400. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6401. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6402. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6403. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6404. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6405. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6406. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6407. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6408. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6409. { "time": 4.5333, "x": 0, "y": 0 }
  6410. ],
  6411. "scale": [
  6412. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6413. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6414. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6415. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6416. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6417. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6418. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6419. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6420. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6421. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6422. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6423. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6424. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6425. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6426. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6427. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6428. { "time": 4.5333, "x": 1, "y": 1 }
  6429. ]
  6430. },
  6431. "bone50": {
  6432. "rotate": [
  6433. { "time": 0, "angle": 0, "curve": "stepped" },
  6434. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  6435. { "time": 0.3333, "angle": 0 },
  6436. { "time": 0.5, "angle": -16.77 },
  6437. { "time": 0.6667, "angle": -26.69 },
  6438. { "time": 0.9667, "angle": -16.77 },
  6439. { "time": 1.2667, "angle": -26.69 },
  6440. { "time": 1.5667, "angle": -16.77 },
  6441. { "time": 1.8667, "angle": -26.69 },
  6442. { "time": 2.2, "angle": -16.77 },
  6443. { "time": 2.5333, "angle": -26.69 },
  6444. { "time": 2.9333, "angle": -16.77 },
  6445. { "time": 3.2333, "angle": -26.69 },
  6446. { "time": 3.5667, "angle": -16.77 },
  6447. { "time": 3.9, "angle": -26.69 },
  6448. { "time": 4.2333, "angle": -16.77 },
  6449. { "time": 4.5333, "angle": -26.69 }
  6450. ],
  6451. "translate": [
  6452. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6453. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6454. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6455. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6456. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6457. { "time": 0.9667, "x": 0, "y": 0, "curve": "stepped" },
  6458. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6459. { "time": 1.5667, "x": 0, "y": 0, "curve": "stepped" },
  6460. { "time": 1.8667, "x": 0, "y": 0, "curve": "stepped" },
  6461. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  6462. { "time": 2.5333, "x": 0, "y": 0, "curve": "stepped" },
  6463. { "time": 2.9333, "x": 0, "y": 0, "curve": "stepped" },
  6464. { "time": 3.2333, "x": 0, "y": 0, "curve": "stepped" },
  6465. { "time": 3.5667, "x": 0, "y": 0, "curve": "stepped" },
  6466. { "time": 3.9, "x": 0, "y": 0, "curve": "stepped" },
  6467. { "time": 4.2333, "x": 0, "y": 0, "curve": "stepped" },
  6468. { "time": 4.5333, "x": 0, "y": 0 }
  6469. ],
  6470. "scale": [
  6471. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6472. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6473. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6474. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6475. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6476. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6477. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6478. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6479. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6480. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6481. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6482. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6483. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6484. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6485. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6486. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6487. { "time": 4.5333, "x": 1, "y": 1 }
  6488. ]
  6489. },
  6490. "bone52": {
  6491. "rotate": [
  6492. { "time": 0, "angle": 0, "curve": "stepped" },
  6493. {
  6494. "time": 0.1667,
  6495. "angle": 0,
  6496. "curve": [ 0.25, 0, 0.75, 1 ]
  6497. },
  6498. {
  6499. "time": 0.3333,
  6500. "angle": 31.86,
  6501. "curve": [ 0.25, 0, 0.75, 1 ]
  6502. },
  6503. {
  6504. "time": 0.5,
  6505. "angle": 28.62,
  6506. "curve": [ 0.25, 0, 0.75, 1 ]
  6507. },
  6508. {
  6509. "time": 0.6667,
  6510. "angle": 55.03,
  6511. "curve": [ 0.25, 0, 0.75, 1 ]
  6512. },
  6513. {
  6514. "time": 0.9667,
  6515. "angle": 28.62,
  6516. "curve": [ 0.25, 0, 0.75, 1 ]
  6517. },
  6518. {
  6519. "time": 1.2667,
  6520. "angle": 55.03,
  6521. "curve": [ 0.25, 0, 0.75, 1 ]
  6522. },
  6523. {
  6524. "time": 1.5667,
  6525. "angle": 28.62,
  6526. "curve": [ 0.25, 0, 0.75, 1 ]
  6527. },
  6528. {
  6529. "time": 1.8667,
  6530. "angle": 55.03,
  6531. "curve": [ 0.25, 0, 0.75, 1 ]
  6532. },
  6533. {
  6534. "time": 2.2,
  6535. "angle": 28.62,
  6536. "curve": [ 0.25, 0, 0.75, 1 ]
  6537. },
  6538. {
  6539. "time": 2.5333,
  6540. "angle": 55.03,
  6541. "curve": [ 0.25, 0, 0.75, 1 ]
  6542. },
  6543. {
  6544. "time": 2.9333,
  6545. "angle": 28.62,
  6546. "curve": [ 0.25, 0, 0.75, 1 ]
  6547. },
  6548. {
  6549. "time": 3.2333,
  6550. "angle": 55.03,
  6551. "curve": [ 0.25, 0, 0.75, 1 ]
  6552. },
  6553. {
  6554. "time": 3.5667,
  6555. "angle": 28.62,
  6556. "curve": [ 0.25, 0, 0.75, 1 ]
  6557. },
  6558. {
  6559. "time": 3.9,
  6560. "angle": 55.03,
  6561. "curve": [ 0.25, 0, 0.75, 1 ]
  6562. },
  6563. {
  6564. "time": 4.2333,
  6565. "angle": 28.62,
  6566. "curve": [ 0.25, 0, 0.75, 1 ]
  6567. },
  6568. { "time": 4.5333, "angle": 55.03 }
  6569. ]
  6570. },
  6571. "bone53": {
  6572. "rotate": [
  6573. { "time": 0, "angle": 0, "curve": "stepped" },
  6574. {
  6575. "time": 0.1667,
  6576. "angle": 0,
  6577. "curve": [ 0.25, 0, 0.75, 1 ]
  6578. },
  6579. {
  6580. "time": 0.3333,
  6581. "angle": 15.04,
  6582. "curve": [ 0.25, 0, 0.75, 1 ]
  6583. },
  6584. {
  6585. "time": 0.5,
  6586. "angle": -12.72,
  6587. "curve": [ 0.25, 0, 0.75, 1 ]
  6588. },
  6589. {
  6590. "time": 0.6667,
  6591. "angle": 8.84,
  6592. "curve": [ 0.25, 0, 0.75, 1 ]
  6593. },
  6594. {
  6595. "time": 0.9667,
  6596. "angle": -19.46,
  6597. "curve": [ 0.25, 0, 0.75, 1 ]
  6598. },
  6599. {
  6600. "time": 1.2667,
  6601. "angle": 8.84,
  6602. "curve": [ 0.25, 0, 0.75, 1 ]
  6603. },
  6604. {
  6605. "time": 1.5667,
  6606. "angle": -19.46,
  6607. "curve": [ 0.25, 0, 0.75, 1 ]
  6608. },
  6609. {
  6610. "time": 1.8667,
  6611. "angle": 8.84,
  6612. "curve": [ 0.25, 0, 0.75, 1 ]
  6613. },
  6614. {
  6615. "time": 2.2,
  6616. "angle": -19.46,
  6617. "curve": [ 0.25, 0, 0.75, 1 ]
  6618. },
  6619. {
  6620. "time": 2.5333,
  6621. "angle": 8.84,
  6622. "curve": [ 0.25, 0, 0.75, 1 ]
  6623. },
  6624. {
  6625. "time": 2.9333,
  6626. "angle": -19.46,
  6627. "curve": [ 0.25, 0, 0.75, 1 ]
  6628. },
  6629. {
  6630. "time": 3.2333,
  6631. "angle": 8.84,
  6632. "curve": [ 0.25, 0, 0.75, 1 ]
  6633. },
  6634. {
  6635. "time": 3.5667,
  6636. "angle": -19.46,
  6637. "curve": [ 0.25, 0, 0.75, 1 ]
  6638. },
  6639. {
  6640. "time": 3.9,
  6641. "angle": 8.84,
  6642. "curve": [ 0.25, 0, 0.75, 1 ]
  6643. },
  6644. {
  6645. "time": 4.2333,
  6646. "angle": -19.46,
  6647. "curve": [ 0.25, 0, 0.75, 1 ]
  6648. },
  6649. { "time": 4.5333, "angle": 8.84 }
  6650. ]
  6651. },
  6652. "bone55": {
  6653. "rotate": [
  6654. { "time": 0, "angle": 0 },
  6655. { "time": 0.1667, "angle": -10.08 },
  6656. { "time": 0.3333, "angle": 0 },
  6657. { "time": 0.5, "angle": -7.7 },
  6658. { "time": 0.6667, "angle": 0 },
  6659. { "time": 0.9667, "angle": -7.7 },
  6660. { "time": 1.2667, "angle": 0 },
  6661. { "time": 1.5667, "angle": -7.7 },
  6662. { "time": 1.8667, "angle": 0 },
  6663. { "time": 2.2, "angle": -7.7 },
  6664. { "time": 2.5333, "angle": 0 },
  6665. { "time": 2.9333, "angle": -7.7 },
  6666. { "time": 3.2333, "angle": 0 },
  6667. { "time": 3.5667, "angle": -7.7 },
  6668. { "time": 3.9, "angle": 0 },
  6669. { "time": 4.2333, "angle": -7.7 },
  6670. { "time": 4.5333, "angle": 0 }
  6671. ],
  6672. "translate": [
  6673. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6674. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6675. { "time": 0.3333, "x": 0, "y": 0 },
  6676. { "time": 0.5, "x": 0.55, "y": -0.72 },
  6677. { "time": 0.6667, "x": 0, "y": 0 },
  6678. { "time": 0.9667, "x": 0.55, "y": -0.72 },
  6679. { "time": 1.2667, "x": 0, "y": 0 },
  6680. { "time": 1.5667, "x": 0.55, "y": -0.72 },
  6681. { "time": 1.8667, "x": 0, "y": 0 },
  6682. { "time": 2.2, "x": 0.55, "y": -0.72 },
  6683. { "time": 2.5333, "x": 0, "y": 0 },
  6684. { "time": 2.9333, "x": 0.55, "y": -0.72 },
  6685. { "time": 3.2333, "x": 0, "y": 0 },
  6686. { "time": 3.5667, "x": 0.55, "y": -0.72 },
  6687. { "time": 3.9, "x": 0, "y": 0 },
  6688. { "time": 4.2333, "x": 0.55, "y": -0.72 },
  6689. { "time": 4.5333, "x": 0, "y": 0 }
  6690. ],
  6691. "scale": [
  6692. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6693. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6694. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6695. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6696. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6697. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6698. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6699. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6700. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6701. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6702. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6703. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6704. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6705. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6706. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6707. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6708. { "time": 4.5333, "x": 1, "y": 1 }
  6709. ]
  6710. },
  6711. "bone56": {
  6712. "rotate": [
  6713. { "time": 0, "angle": 0 },
  6714. { "time": 0.1667, "angle": 4.51 },
  6715. { "time": 0.3333, "angle": 0 },
  6716. { "time": 0.5, "angle": 7.83 },
  6717. { "time": 0.6667, "angle": 0 },
  6718. { "time": 0.9667, "angle": 7.83 },
  6719. { "time": 1.2667, "angle": 0 },
  6720. { "time": 1.5667, "angle": 7.83 },
  6721. { "time": 1.8667, "angle": 0 },
  6722. { "time": 2.2, "angle": 7.83 },
  6723. { "time": 2.5333, "angle": 0 },
  6724. { "time": 2.9333, "angle": 7.83 },
  6725. { "time": 3.2333, "angle": 0 },
  6726. { "time": 3.5667, "angle": 7.83 },
  6727. { "time": 3.9, "angle": 0 },
  6728. { "time": 4.2333, "angle": 7.83 },
  6729. { "time": 4.5333, "angle": 0 }
  6730. ],
  6731. "translate": [
  6732. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  6733. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6734. { "time": 0.3333, "x": 0, "y": 0 },
  6735. { "time": 0.5, "x": 0.1, "y": 0.77 },
  6736. { "time": 0.6667, "x": 0, "y": 0 },
  6737. { "time": 0.9667, "x": 0.1, "y": 0.77 },
  6738. { "time": 1.2667, "x": 0, "y": 0 },
  6739. { "time": 1.5667, "x": 0.1, "y": 0.77 },
  6740. { "time": 1.8667, "x": 0, "y": 0 },
  6741. { "time": 2.2, "x": 0.1, "y": 0.77 },
  6742. { "time": 2.5333, "x": 0, "y": 0 },
  6743. { "time": 2.9333, "x": 0.1, "y": 0.77 },
  6744. { "time": 3.2333, "x": 0, "y": 0 },
  6745. { "time": 3.5667, "x": 0.1, "y": 0.77 },
  6746. { "time": 3.9, "x": 0, "y": 0 },
  6747. { "time": 4.2333, "x": 0.1, "y": 0.77 },
  6748. { "time": 4.5333, "x": 0, "y": 0 }
  6749. ],
  6750. "scale": [
  6751. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6752. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  6753. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6754. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  6755. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  6756. { "time": 0.9667, "x": 1, "y": 1, "curve": "stepped" },
  6757. { "time": 1.2667, "x": 1, "y": 1, "curve": "stepped" },
  6758. { "time": 1.5667, "x": 1, "y": 1, "curve": "stepped" },
  6759. { "time": 1.8667, "x": 1, "y": 1, "curve": "stepped" },
  6760. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  6761. { "time": 2.5333, "x": 1, "y": 1, "curve": "stepped" },
  6762. { "time": 2.9333, "x": 1, "y": 1, "curve": "stepped" },
  6763. { "time": 3.2333, "x": 1, "y": 1, "curve": "stepped" },
  6764. { "time": 3.5667, "x": 1, "y": 1, "curve": "stepped" },
  6765. { "time": 3.9, "x": 1, "y": 1, "curve": "stepped" },
  6766. { "time": 4.2333, "x": 1, "y": 1, "curve": "stepped" },
  6767. { "time": 4.5333, "x": 1, "y": 1 }
  6768. ]
  6769. },
  6770. "bone35": {
  6771. "translate": [
  6772. { "time": 0, "x": -310.31, "y": 1.15 }
  6773. ],
  6774. "scale": [
  6775. { "time": 0, "x": -1.1, "y": 1.1 }
  6776. ]
  6777. },
  6778. "bone58": {
  6779. "rotate": [
  6780. { "time": 0, "angle": 0, "curve": "stepped" },
  6781. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6782. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  6783. { "time": 3.2667, "angle": 0 }
  6784. ],
  6785. "translate": [
  6786. { "time": 0, "x": 0, "y": -1.13 },
  6787. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  6788. { "time": 0.2, "x": 0, "y": 0 },
  6789. { "time": 0.3333, "x": -0.14, "y": 1.15, "curve": "stepped" },
  6790. { "time": 2.7667, "x": -0.14, "y": 1.15 },
  6791. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6792. { "time": 3.0333, "x": 0, "y": 0 },
  6793. { "time": 3.2667, "x": -0.14, "y": -3.07 }
  6794. ],
  6795. "scale": [
  6796. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6797. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6798. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  6799. { "time": 3.2667, "x": 1, "y": 1 }
  6800. ]
  6801. },
  6802. "bone57": {
  6803. "rotate": [
  6804. { "time": 0, "angle": 0, "curve": "stepped" },
  6805. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  6806. { "time": 2.7667, "angle": 0, "curve": "stepped" },
  6807. { "time": 3.2667, "angle": 0 }
  6808. ],
  6809. "translate": [
  6810. { "time": 0, "x": 0, "y": -1.13 },
  6811. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  6812. { "time": 0.2, "x": 0, "y": 0 },
  6813. { "time": 0.3333, "x": -0.14, "y": 1.15, "curve": "stepped" },
  6814. { "time": 2.7667, "x": -0.14, "y": 1.15 },
  6815. { "time": 2.9, "x": 0, "y": 0, "curve": "stepped" },
  6816. { "time": 3.0333, "x": 0, "y": 0 },
  6817. { "time": 3.2667, "x": -0.14, "y": -3.07 }
  6818. ],
  6819. "scale": [
  6820. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  6821. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  6822. { "time": 2.7667, "x": 1, "y": 1, "curve": "stepped" },
  6823. { "time": 3.2667, "x": 1, "y": 1 }
  6824. ]
  6825. },
  6826. "bone36": {
  6827. "translate": [
  6828. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  6829. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  6830. { "time": 0.5, "x": 0, "y": 0 }
  6831. ],
  6832. "scale": [
  6833. { "time": 0.1667, "x": 1.5, "y": 1.5 },
  6834. { "time": 0.3333, "x": 0.9, "y": 0.9 },
  6835. { "time": 0.5, "x": 1, "y": 1 }
  6836. ]
  6837. },
  6838. "bone37": {
  6839. "translate": [
  6840. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  6841. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  6842. { "time": 0.8, "x": 0, "y": 0 }
  6843. ],
  6844. "scale": [
  6845. { "time": 0.5, "x": 1.5, "y": 1.5 },
  6846. { "time": 0.6667, "x": 0.9, "y": 0.9 },
  6847. { "time": 0.8, "x": 1, "y": 1 }
  6848. ]
  6849. },
  6850. "bone38": {
  6851. "translate": [
  6852. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  6853. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  6854. { "time": 1.1667, "x": 0, "y": 0 }
  6855. ],
  6856. "scale": [
  6857. { "time": 0.8333, "x": 1.5, "y": 1.5 },
  6858. { "time": 1, "x": 0.9, "y": 0.9 },
  6859. { "time": 1.1667, "x": 1, "y": 1 }
  6860. ]
  6861. },
  6862. "bone39": {
  6863. "translate": [
  6864. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  6865. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  6866. { "time": 1.4333, "x": 0, "y": 0 }
  6867. ],
  6868. "scale": [
  6869. { "time": 1.1, "x": 1.5, "y": 1.5 },
  6870. { "time": 1.2667, "x": 0.9, "y": 0.9 },
  6871. { "time": 1.4333, "x": 1, "y": 1 }
  6872. ]
  6873. },
  6874. "bone40": {
  6875. "translate": [
  6876. { "time": 1.3667, "x": 0, "y": 0, "curve": "stepped" },
  6877. { "time": 1.5333, "x": 0, "y": 0, "curve": "stepped" },
  6878. { "time": 1.6667, "x": 0, "y": 0 }
  6879. ],
  6880. "scale": [
  6881. { "time": 1.3667, "x": 1.5, "y": 1.5 },
  6882. { "time": 1.5333, "x": 0.9, "y": 0.9 },
  6883. { "time": 1.6667, "x": 1, "y": 1 }
  6884. ]
  6885. },
  6886. "bone41": {
  6887. "translate": [
  6888. { "time": 1.6333, "x": 0, "y": 0, "curve": "stepped" },
  6889. { "time": 1.8, "x": 0, "y": 0, "curve": "stepped" },
  6890. { "time": 1.9667, "x": 0, "y": 0 }
  6891. ],
  6892. "scale": [
  6893. { "time": 1.6333, "x": 1.5, "y": 1.5 },
  6894. { "time": 1.8, "x": 0.9, "y": 0.9 },
  6895. { "time": 1.9667, "x": 1, "y": 1 }
  6896. ]
  6897. },
  6898. "bone42": {
  6899. "translate": [
  6900. { "time": 1.9667, "x": 0, "y": 0, "curve": "stepped" },
  6901. { "time": 2.1333, "x": 0, "y": 0, "curve": "stepped" },
  6902. { "time": 2.3, "x": 0, "y": 0 }
  6903. ],
  6904. "scale": [
  6905. { "time": 1.9667, "x": 1.5, "y": 1.5 },
  6906. { "time": 2.1333, "x": 0.9, "y": 0.9 },
  6907. { "time": 2.3, "x": 1, "y": 1 }
  6908. ]
  6909. },
  6910. "bone43": {
  6911. "translate": [
  6912. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  6913. { "time": 2.6667, "x": 0, "y": 0, "curve": "stepped" },
  6914. { "time": 2.8333, "x": 0, "y": 0 }
  6915. ],
  6916. "scale": [
  6917. { "time": 2.5, "x": 1.5, "y": 1.5 },
  6918. { "time": 2.6667, "x": 0.9, "y": 0.9 },
  6919. { "time": 2.8333, "x": 1, "y": 1 }
  6920. ]
  6921. },
  6922. "bone44": {
  6923. "translate": [
  6924. { "time": 2.8667, "x": 0, "y": 0, "curve": "stepped" },
  6925. { "time": 3.0333, "x": 0, "y": 0, "curve": "stepped" },
  6926. { "time": 3.1667, "x": 0, "y": 0 }
  6927. ],
  6928. "scale": [
  6929. { "time": 2.8667, "x": 1.5, "y": 1.5 },
  6930. { "time": 3.0333, "x": 0.9, "y": 0.9 },
  6931. { "time": 3.1667, "x": 1, "y": 1 }
  6932. ]
  6933. },
  6934. "bone45": {
  6935. "translate": [
  6936. { "time": 3.3333, "x": 0, "y": 0, "curve": "stepped" },
  6937. { "time": 3.6667, "x": 0, "y": 0, "curve": "stepped" },
  6938. { "time": 3.9667, "x": 0, "y": 0 }
  6939. ],
  6940. "scale": [
  6941. { "time": 3.3333, "x": 2, "y": 2 },
  6942. { "time": 3.5, "x": 0.9, "y": 0.9 },
  6943. { "time": 3.6667, "x": 1, "y": 1 }
  6944. ]
  6945. },
  6946. "bone46": {
  6947. "translate": [
  6948. { "time": 3.8667, "x": 0, "y": 0, "curve": "stepped" },
  6949. { "time": 4.0333, "x": 0, "y": 0, "curve": "stepped" },
  6950. { "time": 4.2, "x": 0, "y": 0 }
  6951. ],
  6952. "scale": [
  6953. { "time": 3.8667, "x": 2, "y": 2 },
  6954. { "time": 4.0333, "x": 0.9, "y": 0.9 },
  6955. { "time": 4.2, "x": 1, "y": 1 }
  6956. ]
  6957. },
  6958. "bone47": {
  6959. "translate": [
  6960. { "time": 4.3667, "x": 0, "y": 0, "curve": "stepped" },
  6961. { "time": 4.5333, "x": 0, "y": 0, "curve": "stepped" },
  6962. { "time": 4.7, "x": 0, "y": 0 }
  6963. ],
  6964. "scale": [
  6965. { "time": 4.3667, "x": 2, "y": 2 },
  6966. { "time": 4.5333, "x": 0.9, "y": 0.9 },
  6967. { "time": 4.7, "x": 1, "y": 1 }
  6968. ]
  6969. }
  6970. },
  6971. "deform": {
  6972. "default": {
  6973. "dang": {
  6974. "dang": [
  6975. {
  6976. "time": 0,
  6977. "vertices": [ -0.01262, -0.88391 ]
  6978. },
  6979. {
  6980. "time": 0.1667,
  6981. "vertices": [ -0.01262, -0.88391, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643 ]
  6982. },
  6983. {
  6984. "time": 0.3333,
  6985. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  6986. },
  6987. {
  6988. "time": 0.5,
  6989. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  6990. },
  6991. {
  6992. "time": 0.6667,
  6993. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  6994. },
  6995. {
  6996. "time": 0.9667,
  6997. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  6998. },
  6999. {
  7000. "time": 1.2667,
  7001. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7002. },
  7003. {
  7004. "time": 1.5667,
  7005. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7006. },
  7007. {
  7008. "time": 1.8667,
  7009. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7010. },
  7011. {
  7012. "time": 2.2,
  7013. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7014. },
  7015. {
  7016. "time": 2.5333,
  7017. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7018. },
  7019. {
  7020. "time": 2.9333,
  7021. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7022. },
  7023. {
  7024. "time": 3.2333,
  7025. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7026. },
  7027. {
  7028. "time": 3.5667,
  7029. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7030. },
  7031. {
  7032. "time": 3.9,
  7033. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7034. },
  7035. {
  7036. "time": 4.2333,
  7037. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7038. },
  7039. {
  7040. "time": 4.5333,
  7041. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7042. },
  7043. {
  7044. "time": 4.8667,
  7045. "vertices": [ -2.09044, -2.67839, 0, 0, -1.97362, -2.48003, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7046. },
  7047. {
  7048. "time": 5.2,
  7049. "vertices": [ -2.09044, -2.67839, 0, 0, 0, 0, 0, 0, -1.69353, 1.1643, 0, 0, -0.6937, -0.67416 ]
  7050. }
  7051. ]
  7052. },
  7053. "lingzi": {
  7054. "lingzi": [
  7055. { "time": 0.1667 },
  7056. {
  7057. "time": 0.4,
  7058. "offset": 2,
  7059. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7060. },
  7061. {
  7062. "time": 0.6667,
  7063. "offset": 6,
  7064. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7065. },
  7066. {
  7067. "time": 0.9667,
  7068. "offset": 2,
  7069. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7070. },
  7071. {
  7072. "time": 1.2667,
  7073. "offset": 6,
  7074. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7075. },
  7076. {
  7077. "time": 1.5667,
  7078. "offset": 2,
  7079. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7080. },
  7081. {
  7082. "time": 1.8667,
  7083. "offset": 6,
  7084. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7085. },
  7086. {
  7087. "time": 2.1667,
  7088. "offset": 2,
  7089. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7090. },
  7091. {
  7092. "time": 2.4667,
  7093. "offset": 6,
  7094. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  7095. "curve": "stepped"
  7096. },
  7097. {
  7098. "time": 2.5333,
  7099. "offset": 6,
  7100. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7101. },
  7102. {
  7103. "time": 2.9,
  7104. "offset": 2,
  7105. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7106. },
  7107. {
  7108. "time": 3.1667,
  7109. "offset": 6,
  7110. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  7111. "curve": "stepped"
  7112. },
  7113. {
  7114. "time": 3.2333,
  7115. "offset": 6,
  7116. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7117. },
  7118. {
  7119. "time": 3.5333,
  7120. "offset": 2,
  7121. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7122. },
  7123. {
  7124. "time": 3.7667,
  7125. "offset": 6,
  7126. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  7127. "curve": "stepped"
  7128. },
  7129. {
  7130. "time": 3.9,
  7131. "offset": 6,
  7132. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7133. },
  7134. {
  7135. "time": 4.2,
  7136. "offset": 2,
  7137. "vertices": [ 1.46431, -2.70225, 1.23531, 0.92426, 2.18953, 1.64012, 1.48871, 0.0346 ]
  7138. },
  7139. {
  7140. "time": 4.4667,
  7141. "offset": 6,
  7142. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ],
  7143. "curve": "stepped"
  7144. },
  7145. {
  7146. "time": 4.5333,
  7147. "offset": 6,
  7148. "vertices": [ 1.78878, 1.24792, 0, 0, 0.63161, -1.0156 ]
  7149. }
  7150. ]
  7151. },
  7152. "shangyi": {
  7153. "shangyi": [
  7154. { "time": 0.1667 },
  7155. {
  7156. "time": 0.3333,
  7157. "offset": 46,
  7158. "vertices": [ 0.31957, 1.64477, 0.25944, 1.65532, -2.0E-5, -1.84968, 0.06747, -1.84845, -2.0E-5, -1.84968, 0.06747, -1.84845 ]
  7159. },
  7160. {
  7161. "time": 0.5,
  7162. "offset": 28,
  7163. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7164. },
  7165. {
  7166. "time": 0.6667,
  7167. "offset": 24,
  7168. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7169. },
  7170. {
  7171. "time": 0.9667,
  7172. "offset": 28,
  7173. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7174. },
  7175. {
  7176. "time": 1.2667,
  7177. "offset": 24,
  7178. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7179. },
  7180. {
  7181. "time": 1.5667,
  7182. "offset": 28,
  7183. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7184. },
  7185. {
  7186. "time": 1.8667,
  7187. "offset": 24,
  7188. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7189. },
  7190. {
  7191. "time": 2.2,
  7192. "offset": 28,
  7193. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7194. },
  7195. {
  7196. "time": 2.5333,
  7197. "offset": 24,
  7198. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7199. },
  7200. {
  7201. "time": 2.9333,
  7202. "offset": 28,
  7203. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7204. },
  7205. {
  7206. "time": 3.2333,
  7207. "offset": 24,
  7208. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7209. },
  7210. {
  7211. "time": 3.5667,
  7212. "offset": 28,
  7213. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7214. },
  7215. {
  7216. "time": 3.9,
  7217. "offset": 24,
  7218. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7219. },
  7220. {
  7221. "time": 4.2333,
  7222. "offset": 28,
  7223. "vertices": [ -1.38313, 1.80177, -1.44791, 1.75013, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10205, 2.50849, 0.01053, 2.51054, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7224. },
  7225. {
  7226. "time": 4.5333,
  7227. "offset": 24,
  7228. "vertices": [ 0.81306, 0.85635, 0.78146, 0.88543, -1.52845, 0.96271, -1.56245, 0.90633, 0, 0, 0, 0, -0.50084, -0.01298, 0, 0, 0, 0, -1.7214, 1.96007, -1.79164, 1.89599, -0.37283, 1.49385, -0.42709, 1.47926 ]
  7229. }
  7230. ]
  7231. },
  7232. "youjiao1": {
  7233. "youjiao1": [
  7234. {
  7235. "time": 0,
  7236. "offset": 68,
  7237. "vertices": [ 6.47365, -1.54266, 4.9081, -0.96003, 3.85265, 0.07049 ]
  7238. }
  7239. ]
  7240. },
  7241. "youshou": {
  7242. "youshou": [
  7243. { "time": 0.1667 },
  7244. {
  7245. "time": 0.3,
  7246. "offset": 46,
  7247. "vertices": [ -0.72944, -4.27695, 4.49204, -2.14155, -2.00895, -3.63001, 3.24948, -3.12452, -3.24054, -2.56062, 1.55338, -3.91862 ]
  7248. }
  7249. ]
  7250. },
  7251. "zuoshou": {
  7252. "zuoshou": [
  7253. { "time": 0, "curve": "stepped" },
  7254. { "time": 0.1667 },
  7255. {
  7256. "time": 0.3,
  7257. "offset": 48,
  7258. "vertices": [ -4.09583, -4.81184, 2.40179, -5.84451, -5.10458, -4.55464, 1.71119, -6.62344, -5.71799, -4.02365, 0.95828, -6.92514, 2.08435, -2.25566 ]
  7259. }
  7260. ]
  7261. }
  7262. }
  7263. }
  7264. },
  7265. "walk1": {
  7266. "slots": {
  7267. "biyan": {
  7268. "attachment": [
  7269. { "time": 1.1, "name": "biyan" },
  7270. { "time": 1.2, "name": null }
  7271. ]
  7272. },
  7273. "gaoguang zuo": {
  7274. "attachment": [
  7275. { "time": 1.1, "name": null },
  7276. { "time": 1.2, "name": "gaoguang zuo" }
  7277. ]
  7278. },
  7279. "gaoguangyou": {
  7280. "attachment": [
  7281. { "time": 1.1, "name": null },
  7282. { "time": 1.2, "name": "gaoguangyou" }
  7283. ]
  7284. },
  7285. "yanbai zuo": {
  7286. "attachment": [
  7287. { "time": 1.1, "name": null },
  7288. { "time": 1.2, "name": "yanbai zuo" }
  7289. ]
  7290. },
  7291. "yanbaiyou": {
  7292. "attachment": [
  7293. { "time": 1.1, "name": null },
  7294. { "time": 1.2, "name": "yanbaiyou" }
  7295. ]
  7296. },
  7297. "yanzhu you": {
  7298. "attachment": [
  7299. { "time": 1.1, "name": null },
  7300. { "time": 1.2, "name": "yanzhu you" }
  7301. ]
  7302. },
  7303. "yanzhu zuo": {
  7304. "attachment": [
  7305. { "time": 1.1, "name": null },
  7306. { "time": 1.2, "name": "yanzhu zuo" }
  7307. ]
  7308. },
  7309. "youjiao1": {
  7310. "attachment": [
  7311. { "time": 0, "name": null }
  7312. ]
  7313. },
  7314. "youshou1": {
  7315. "attachment": [
  7316. { "time": 0, "name": null }
  7317. ]
  7318. },
  7319. "youshou2": {
  7320. "attachment": [
  7321. { "time": 0, "name": null }
  7322. ]
  7323. },
  7324. "zi_1": {
  7325. "attachment": [
  7326. { "time": 0, "name": null }
  7327. ]
  7328. },
  7329. "zi_2": {
  7330. "attachment": [
  7331. { "time": 0, "name": null }
  7332. ]
  7333. },
  7334. "zi_3": {
  7335. "attachment": [
  7336. { "time": 0, "name": null }
  7337. ]
  7338. },
  7339. "zi_4": {
  7340. "attachment": [
  7341. { "time": 0, "name": null }
  7342. ]
  7343. },
  7344. "zi_5": {
  7345. "attachment": [
  7346. { "time": 0, "name": null }
  7347. ]
  7348. },
  7349. "zi_6": {
  7350. "attachment": [
  7351. { "time": 0, "name": null }
  7352. ]
  7353. },
  7354. "zi_7": {
  7355. "attachment": [
  7356. { "time": 0, "name": null }
  7357. ]
  7358. },
  7359. "zi_8": {
  7360. "attachment": [
  7361. { "time": 0, "name": null }
  7362. ]
  7363. },
  7364. "zi_9": {
  7365. "attachment": [
  7366. { "time": 0, "name": null }
  7367. ]
  7368. },
  7369. "zi_10": {
  7370. "attachment": [
  7371. { "time": 0, "name": null }
  7372. ]
  7373. },
  7374. "zi_11": {
  7375. "attachment": [
  7376. { "time": 0, "name": null }
  7377. ]
  7378. },
  7379. "zi_12": {
  7380. "attachment": [
  7381. { "time": 0, "name": null }
  7382. ]
  7383. },
  7384. "zuiba2": {
  7385. "attachment": [
  7386. { "time": 0, "name": null },
  7387. { "time": 1, "name": null },
  7388. { "time": 2, "name": null }
  7389. ]
  7390. },
  7391. "zuoshou1": {
  7392. "attachment": [
  7393. { "time": 0, "name": null }
  7394. ]
  7395. },
  7396. "zuoshou2": {
  7397. "attachment": [
  7398. { "time": 0, "name": null }
  7399. ]
  7400. }
  7401. },
  7402. "bones": {
  7403. "root": {
  7404. "rotate": [
  7405. { "time": 0, "angle": 0 }
  7406. ],
  7407. "translate": [
  7408. { "time": 0, "x": 0, "y": 0 }
  7409. ],
  7410. "scale": [
  7411. { "time": 0, "x": 0.65, "y": 0.65 }
  7412. ]
  7413. },
  7414. "bone": {
  7415. "rotate": [
  7416. { "time": 0, "angle": 0, "curve": "stepped" },
  7417. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7418. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7419. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7420. { "time": 1, "angle": 0, "curve": "stepped" },
  7421. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7422. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7423. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7424. { "time": 2, "angle": 0 }
  7425. ],
  7426. "translate": [
  7427. { "time": 0, "x": 0, "y": 0 },
  7428. { "time": 0.1667, "x": 0, "y": 1 },
  7429. { "time": 0.5, "x": 0, "y": 0 },
  7430. { "time": 0.6667, "x": 0, "y": 1 },
  7431. { "time": 1, "x": 0, "y": 0 },
  7432. { "time": 1.1667, "x": 0, "y": 1 },
  7433. { "time": 1.5, "x": 0, "y": 0 },
  7434. { "time": 1.6667, "x": 0, "y": 1 },
  7435. { "time": 2, "x": 0, "y": 0 }
  7436. ],
  7437. "scale": [
  7438. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7439. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7440. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7441. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7442. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7443. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7444. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7445. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7446. { "time": 2, "x": 1, "y": 1 }
  7447. ]
  7448. },
  7449. "bone2": {
  7450. "rotate": [
  7451. { "time": 0, "angle": 0, "curve": "stepped" },
  7452. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7453. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7454. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7455. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7456. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7457. { "time": 1, "angle": 0, "curve": "stepped" },
  7458. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7459. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7460. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7461. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7462. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7463. { "time": 2, "angle": 0 }
  7464. ],
  7465. "translate": [
  7466. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7467. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7468. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7469. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7470. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7471. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7472. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7473. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7474. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7475. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7476. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7477. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7478. { "time": 2, "x": 0, "y": 0 }
  7479. ],
  7480. "scale": [
  7481. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7482. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7483. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7484. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7485. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7486. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7487. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7488. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7489. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7490. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7491. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7492. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7493. { "time": 2, "x": 1, "y": 1 }
  7494. ]
  7495. },
  7496. "bone3": {
  7497. "rotate": [
  7498. {
  7499. "time": 0,
  7500. "angle": -0.31,
  7501. "curve": [ 0.25, 0, 0.625, 0.5 ]
  7502. },
  7503. {
  7504. "time": 0.5,
  7505. "angle": -0.15,
  7506. "curve": [ 0.375, 0.5, 0.75, 1 ]
  7507. },
  7508. {
  7509. "time": 1,
  7510. "angle": -0.31,
  7511. "curve": [ 0.25, 0, 0.75, 1 ]
  7512. },
  7513. {
  7514. "time": 1.5,
  7515. "angle": -0.15,
  7516. "curve": [ 0.375, 0.5, 0.75, 1 ]
  7517. },
  7518. { "time": 2, "angle": -0.31 }
  7519. ],
  7520. "translate": [
  7521. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7522. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7523. { "time": 2, "x": 0, "y": 0 }
  7524. ],
  7525. "scale": [
  7526. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7527. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7528. { "time": 2, "x": 1, "y": 1 }
  7529. ]
  7530. },
  7531. "bone4": {
  7532. "rotate": [
  7533. { "time": 0, "angle": 0, "curve": "stepped" },
  7534. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7535. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7536. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7537. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7538. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7539. { "time": 1, "angle": 0, "curve": "stepped" },
  7540. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7541. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7542. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7543. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7544. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7545. { "time": 2, "angle": 0 }
  7546. ],
  7547. "translate": [
  7548. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7549. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7550. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7551. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7552. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7553. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7554. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7555. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7556. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7557. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7558. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7559. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7560. { "time": 2, "x": 0, "y": 0 }
  7561. ],
  7562. "scale": [
  7563. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7564. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7565. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7566. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7567. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7568. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7569. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7570. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7571. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7572. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7573. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7574. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7575. { "time": 2, "x": 1, "y": 1 }
  7576. ]
  7577. },
  7578. "bone5": {
  7579. "rotate": [
  7580. { "time": 0, "angle": 0, "curve": "stepped" },
  7581. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7582. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7583. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7584. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7585. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7586. { "time": 1, "angle": 0, "curve": "stepped" },
  7587. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7588. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7589. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7590. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7591. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7592. { "time": 2, "angle": 0 }
  7593. ],
  7594. "translate": [
  7595. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7596. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7597. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7598. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7599. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7600. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7601. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7602. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7603. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7604. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7605. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7606. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7607. { "time": 2, "x": 0, "y": 0 }
  7608. ],
  7609. "scale": [
  7610. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7611. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7612. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7613. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7614. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7615. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7616. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7617. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7618. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7619. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7620. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7621. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7622. { "time": 2, "x": 1, "y": 1 }
  7623. ]
  7624. },
  7625. "bone6": {
  7626. "rotate": [
  7627. { "time": 0, "angle": 0, "curve": "stepped" },
  7628. { "time": 1, "angle": 0, "curve": "stepped" },
  7629. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7630. { "time": 1.2, "angle": 0, "curve": "stepped" },
  7631. { "time": 1.3333, "angle": 0 }
  7632. ],
  7633. "translate": [
  7634. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7635. { "time": 1, "x": 0, "y": 0 },
  7636. { "time": 1.1, "x": -1.44, "y": 0, "curve": "stepped" },
  7637. { "time": 1.2, "x": -1.44, "y": 0 },
  7638. { "time": 1.3333, "x": 0, "y": 0 }
  7639. ],
  7640. "scale": [
  7641. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7642. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7643. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  7644. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  7645. { "time": 1.3333, "x": 1, "y": 1 }
  7646. ]
  7647. },
  7648. "bone7": {
  7649. "rotate": [
  7650. { "time": 0, "angle": 0, "curve": "stepped" },
  7651. { "time": 1, "angle": 0, "curve": "stepped" },
  7652. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7653. { "time": 1.2, "angle": 0, "curve": "stepped" },
  7654. { "time": 1.3333, "angle": 0 }
  7655. ],
  7656. "translate": [
  7657. { "time": 0, "x": -1.44, "y": -0.52 }
  7658. ],
  7659. "scale": [
  7660. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7661. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7662. { "time": 1.1, "x": 1, "y": 1, "curve": "stepped" },
  7663. { "time": 1.2, "x": 1, "y": 1, "curve": "stepped" },
  7664. { "time": 1.3333, "x": 1, "y": 1 }
  7665. ]
  7666. },
  7667. "bone8": {
  7668. "rotate": [
  7669. { "time": 0, "angle": 0, "curve": "stepped" },
  7670. { "time": 1, "angle": 0, "curve": "stepped" },
  7671. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7672. { "time": 1.2, "angle": 0, "curve": "stepped" },
  7673. { "time": 1.3333, "angle": 0 }
  7674. ],
  7675. "translate": [
  7676. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7677. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7678. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  7679. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  7680. { "time": 1.3333, "x": 0, "y": 0 }
  7681. ],
  7682. "scale": [
  7683. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7684. { "time": 1, "x": 1, "y": 1 },
  7685. { "time": 1.1, "x": 0.383, "y": 1, "curve": "stepped" },
  7686. { "time": 1.2, "x": 0.383, "y": 1 },
  7687. { "time": 1.3333, "x": 1, "y": 1 }
  7688. ]
  7689. },
  7690. "bone9": {
  7691. "rotate": [
  7692. { "time": 0, "angle": 0, "curve": "stepped" },
  7693. { "time": 1, "angle": 0, "curve": "stepped" },
  7694. { "time": 1.1, "angle": 0, "curve": "stepped" },
  7695. { "time": 1.2, "angle": 0, "curve": "stepped" },
  7696. { "time": 1.3333, "angle": 0 }
  7697. ],
  7698. "translate": [
  7699. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7700. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7701. { "time": 1.1, "x": 0, "y": 0, "curve": "stepped" },
  7702. { "time": 1.2, "x": 0, "y": 0, "curve": "stepped" },
  7703. { "time": 1.3333, "x": 0, "y": 0 }
  7704. ],
  7705. "scale": [
  7706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7707. { "time": 1, "x": 1, "y": 1 },
  7708. { "time": 1.1, "x": 0.415, "y": 1, "curve": "stepped" },
  7709. { "time": 1.2, "x": 0.415, "y": 1 },
  7710. { "time": 1.3333, "x": 1, "y": 1 }
  7711. ]
  7712. },
  7713. "bone10": {
  7714. "rotate": [
  7715. { "time": 0, "angle": 0, "curve": "stepped" },
  7716. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  7717. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  7718. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7719. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  7720. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  7721. { "time": 1, "angle": 0, "curve": "stepped" },
  7722. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  7723. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  7724. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7725. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  7726. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  7727. { "time": 2, "angle": 0 }
  7728. ],
  7729. "translate": [
  7730. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7731. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  7732. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  7733. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7734. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  7735. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  7736. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7737. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  7738. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  7739. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7740. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  7741. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  7742. { "time": 2, "x": 0, "y": 0 }
  7743. ],
  7744. "scale": [
  7745. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7746. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  7747. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  7748. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7749. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  7750. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  7751. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7752. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  7753. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  7754. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7755. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  7756. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  7757. { "time": 2, "x": 1, "y": 1 }
  7758. ]
  7759. },
  7760. "bone11": {
  7761. "rotate": [
  7762. { "time": 0, "angle": 0, "curve": "stepped" },
  7763. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7764. { "time": 1, "angle": 0, "curve": "stepped" },
  7765. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7766. { "time": 2, "angle": 0 }
  7767. ],
  7768. "translate": [
  7769. {
  7770. "time": 0,
  7771. "x": 0.33,
  7772. "y": 0.18,
  7773. "curve": [ 0.25, 0, 0.75, 1 ]
  7774. },
  7775. {
  7776. "time": 0.5,
  7777. "x": 0.01,
  7778. "y": -0.52,
  7779. "curve": [ 0.25, 0, 0.75, 1 ]
  7780. },
  7781. {
  7782. "time": 1,
  7783. "x": 0.33,
  7784. "y": 0.18,
  7785. "curve": [ 0.25, 0, 0.75, 1 ]
  7786. },
  7787. {
  7788. "time": 1.5,
  7789. "x": 0.01,
  7790. "y": -0.52,
  7791. "curve": [ 0.25, 0, 0.75, 1 ]
  7792. },
  7793. { "time": 2, "x": 0.33, "y": 0.18 }
  7794. ],
  7795. "scale": [
  7796. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7797. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7798. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7799. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7800. { "time": 2, "x": 1, "y": 1 }
  7801. ]
  7802. },
  7803. "bone12": {
  7804. "rotate": [
  7805. { "time": 0, "angle": -5.51 },
  7806. { "time": 0.5, "angle": 0 },
  7807. { "time": 0.7667, "angle": -8.39 },
  7808. { "time": 1, "angle": -5.51 },
  7809. { "time": 1.5, "angle": 0 },
  7810. { "time": 1.7667, "angle": -8.39 },
  7811. { "time": 2, "angle": -5.51 }
  7812. ],
  7813. "translate": [
  7814. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7815. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7816. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7817. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7818. { "time": 2, "x": 0, "y": 0 }
  7819. ],
  7820. "scale": [
  7821. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7822. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7823. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7824. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7825. { "time": 2, "x": 1, "y": 1 }
  7826. ]
  7827. },
  7828. "bone13": {
  7829. "rotate": [
  7830. { "time": 0, "angle": -5.51 },
  7831. { "time": 0.5, "angle": 0 },
  7832. { "time": 1, "angle": -5.51 },
  7833. { "time": 1.5, "angle": 0 },
  7834. { "time": 2, "angle": -5.51 }
  7835. ],
  7836. "translate": [
  7837. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7838. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7839. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7840. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7841. { "time": 2, "x": 0, "y": 0 }
  7842. ],
  7843. "scale": [
  7844. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7845. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7846. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7847. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7848. { "time": 2, "x": 1, "y": 1 }
  7849. ]
  7850. },
  7851. "bone14": {
  7852. "rotate": [
  7853. { "time": 0, "angle": -11.05 },
  7854. { "time": 0.5, "angle": 0 },
  7855. { "time": 1, "angle": -11.05 },
  7856. { "time": 1.5, "angle": 0 },
  7857. { "time": 2, "angle": -11.05 }
  7858. ],
  7859. "translate": [
  7860. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7861. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7862. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7863. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7864. { "time": 2, "x": 0, "y": 0 }
  7865. ],
  7866. "scale": [
  7867. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7868. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7869. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7870. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7871. { "time": 2, "x": 1, "y": 1 }
  7872. ]
  7873. },
  7874. "bone15": {
  7875. "rotate": [
  7876. { "time": 0, "angle": -11.05 },
  7877. { "time": 0.5, "angle": 0 },
  7878. { "time": 0.7667, "angle": 6.61 },
  7879. { "time": 1, "angle": -11.05 },
  7880. { "time": 1.5, "angle": 0 },
  7881. { "time": 1.7667, "angle": 6.61 },
  7882. { "time": 2, "angle": -11.05 }
  7883. ],
  7884. "translate": [
  7885. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7886. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7887. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7888. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7889. { "time": 2, "x": 0, "y": 0 }
  7890. ],
  7891. "scale": [
  7892. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7893. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7894. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7895. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7896. { "time": 2, "x": 1, "y": 1 }
  7897. ]
  7898. },
  7899. "bone16": {
  7900. "rotate": [
  7901. { "time": 0, "angle": 0, "curve": "stepped" },
  7902. { "time": 0.5, "angle": 0, "curve": "stepped" },
  7903. { "time": 1, "angle": 0, "curve": "stepped" },
  7904. { "time": 1.5, "angle": 0, "curve": "stepped" },
  7905. { "time": 2, "angle": 0 }
  7906. ],
  7907. "translate": [
  7908. {
  7909. "time": 0,
  7910. "x": 0.01,
  7911. "y": -0.25,
  7912. "curve": [ 0.25, 0, 0.75, 1 ]
  7913. },
  7914. {
  7915. "time": 0.5,
  7916. "x": 0,
  7917. "y": 0,
  7918. "curve": [ 0.25, 0, 0.75, 1 ]
  7919. },
  7920. {
  7921. "time": 1,
  7922. "x": 0.01,
  7923. "y": -0.25,
  7924. "curve": [ 0.25, 0, 0.75, 1 ]
  7925. },
  7926. {
  7927. "time": 1.5,
  7928. "x": 0,
  7929. "y": 0,
  7930. "curve": [ 0.25, 0, 0.75, 1 ]
  7931. },
  7932. { "time": 2, "x": 0.01, "y": -0.25 }
  7933. ],
  7934. "scale": [
  7935. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7936. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7937. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7938. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7939. { "time": 2, "x": 1, "y": 1 }
  7940. ]
  7941. },
  7942. "bone17": {
  7943. "rotate": [
  7944. { "time": 0, "angle": 0.46 },
  7945. { "time": 0.5, "angle": 9.01 },
  7946. { "time": 1, "angle": 0.46 },
  7947. { "time": 1.5, "angle": 3.96 },
  7948. { "time": 2, "angle": 0.46 }
  7949. ],
  7950. "translate": [
  7951. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7952. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7953. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7954. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7955. { "time": 2, "x": 0, "y": 0 }
  7956. ],
  7957. "scale": [
  7958. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7959. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7960. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7961. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7962. { "time": 2, "x": 1, "y": 1 }
  7963. ]
  7964. },
  7965. "bone18": {
  7966. "rotate": [
  7967. { "time": 0, "angle": -1.44 },
  7968. { "time": 0.5, "angle": 8.92 },
  7969. { "time": 1, "angle": -1.44 },
  7970. { "time": 1.5, "angle": 8.92 },
  7971. { "time": 2, "angle": -1.44 }
  7972. ],
  7973. "translate": [
  7974. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7975. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7976. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  7977. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  7978. { "time": 2, "x": 0, "y": 0 }
  7979. ],
  7980. "scale": [
  7981. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  7982. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  7983. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  7984. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  7985. { "time": 2, "x": 1, "y": 1 }
  7986. ]
  7987. },
  7988. "bone19": {
  7989. "rotate": [
  7990. { "time": 0, "angle": 1.37 },
  7991. { "time": 0.5, "angle": 3.96 },
  7992. { "time": 1, "angle": 1.37 },
  7993. { "time": 1.5, "angle": 3.96 },
  7994. { "time": 2, "angle": 1.37 }
  7995. ],
  7996. "translate": [
  7997. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  7998. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  7999. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8000. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8001. { "time": 2, "x": 0, "y": 0 }
  8002. ],
  8003. "scale": [
  8004. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8005. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8006. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8007. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8008. { "time": 2, "x": 1, "y": 1 }
  8009. ]
  8010. },
  8011. "bone20": {
  8012. "rotate": [
  8013. { "time": 0, "angle": 1.37 },
  8014. { "time": 0.5, "angle": 3.96 },
  8015. { "time": 1, "angle": 1.37 },
  8016. { "time": 1.5, "angle": 3.96 },
  8017. { "time": 2, "angle": 1.37 }
  8018. ],
  8019. "translate": [
  8020. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8021. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8022. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8023. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8024. { "time": 2, "x": 0, "y": 0 }
  8025. ],
  8026. "scale": [
  8027. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8028. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8029. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8030. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8031. { "time": 2, "x": 1, "y": 1 }
  8032. ]
  8033. },
  8034. "bone21": {
  8035. "rotate": [
  8036. { "time": 0, "angle": 1.37 },
  8037. { "time": 0.5, "angle": 3.96 },
  8038. { "time": 0.7667, "angle": -13.89 },
  8039. { "time": 1, "angle": 1.37 },
  8040. { "time": 1.5, "angle": 3.96 },
  8041. { "time": 1.7667, "angle": -13.89 },
  8042. { "time": 2, "angle": 1.37 }
  8043. ],
  8044. "translate": [
  8045. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8046. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8047. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8048. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8049. { "time": 2, "x": 0, "y": 0 }
  8050. ],
  8051. "scale": [
  8052. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8053. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8054. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8055. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8056. { "time": 2, "x": 1, "y": 1 }
  8057. ]
  8058. },
  8059. "bone22": {
  8060. "rotate": [
  8061. {
  8062. "time": 0,
  8063. "angle": -294.02,
  8064. "curve": [ 0.25, 0, 0.75, 1 ]
  8065. },
  8066. {
  8067. "time": 0.5,
  8068. "angle": 16.14,
  8069. "curve": [ 0.25, 0, 0.75, 1 ]
  8070. },
  8071. {
  8072. "time": 1,
  8073. "angle": -294.02,
  8074. "curve": [ 0.25, 0, 0.75, 1 ]
  8075. },
  8076. {
  8077. "time": 1.5,
  8078. "angle": 16.14,
  8079. "curve": [ 0.25, 0, 0.75, 1 ]
  8080. },
  8081. { "time": 2, "angle": -294.02 }
  8082. ],
  8083. "translate": [
  8084. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8085. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8086. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8087. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8088. { "time": 2, "x": 0, "y": 0 }
  8089. ],
  8090. "scale": [
  8091. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8092. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8093. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8094. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8095. { "time": 2, "x": 1, "y": 1 }
  8096. ]
  8097. },
  8098. "bone23": {
  8099. "rotate": [
  8100. {
  8101. "time": 0,
  8102. "angle": -22.1,
  8103. "curve": [ 0.25, 0, 0.75, 1 ]
  8104. },
  8105. {
  8106. "time": 0.5,
  8107. "angle": -20.43,
  8108. "curve": [ 0.25, 0, 0.75, 1 ]
  8109. },
  8110. {
  8111. "time": 1,
  8112. "angle": -22.1,
  8113. "curve": [ 0.25, 0, 0.75, 1 ]
  8114. },
  8115. {
  8116. "time": 1.5,
  8117. "angle": -20.43,
  8118. "curve": [ 0.25, 0, 0.75, 1 ]
  8119. },
  8120. { "time": 2, "angle": -22.1 }
  8121. ],
  8122. "translate": [
  8123. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8124. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8125. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8126. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8127. { "time": 2, "x": 0, "y": 0 }
  8128. ],
  8129. "scale": [
  8130. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8131. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8132. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8133. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8134. { "time": 2, "x": 1, "y": 1 }
  8135. ]
  8136. },
  8137. "bone24": {
  8138. "rotate": [
  8139. { "time": 0, "angle": 0, "curve": "stepped" },
  8140. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8141. { "time": 1, "angle": 0, "curve": "stepped" },
  8142. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8143. { "time": 2, "angle": 0 }
  8144. ],
  8145. "translate": [
  8146. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8147. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8148. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8149. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8150. { "time": 2, "x": 0, "y": 0 }
  8151. ],
  8152. "scale": [
  8153. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8154. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8155. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8156. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8157. { "time": 2, "x": 1, "y": 1 }
  8158. ]
  8159. },
  8160. "bone25": {
  8161. "rotate": [
  8162. {
  8163. "time": 0,
  8164. "angle": 309.38,
  8165. "curve": [ 0.25, 0, 0.75, 1 ]
  8166. },
  8167. {
  8168. "time": 0.5,
  8169. "angle": -5.95,
  8170. "curve": [ 0.25, 0, 0.75, 1 ]
  8171. },
  8172. {
  8173. "time": 1,
  8174. "angle": 309.38,
  8175. "curve": [ 0.25, 0, 0.75, 1 ]
  8176. },
  8177. {
  8178. "time": 1.5,
  8179. "angle": -5.95,
  8180. "curve": [ 0.25, 0, 0.75, 1 ]
  8181. },
  8182. { "time": 2, "angle": 309.38 }
  8183. ],
  8184. "translate": [
  8185. {
  8186. "time": 0,
  8187. "x": -0.32,
  8188. "y": -1.49,
  8189. "curve": [ 0.25, 0, 0.75, 1 ]
  8190. },
  8191. {
  8192. "time": 0.5,
  8193. "x": 0,
  8194. "y": 0,
  8195. "curve": [ 0.25, 0, 0.75, 1 ]
  8196. },
  8197. {
  8198. "time": 1,
  8199. "x": -0.32,
  8200. "y": -1.49,
  8201. "curve": [ 0.25, 0, 0.75, 1 ]
  8202. },
  8203. {
  8204. "time": 1.5,
  8205. "x": 0,
  8206. "y": 0,
  8207. "curve": [ 0.25, 0, 0.75, 1 ]
  8208. },
  8209. { "time": 2, "x": -0.32, "y": -1.49 }
  8210. ],
  8211. "scale": [
  8212. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8213. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8214. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8215. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8216. { "time": 2, "x": 1, "y": 1 }
  8217. ]
  8218. },
  8219. "bone26": {
  8220. "rotate": [
  8221. {
  8222. "time": 0,
  8223. "angle": -25.37,
  8224. "curve": [ 0.25, 0, 0.75, 1 ]
  8225. },
  8226. {
  8227. "time": 0.5,
  8228. "angle": -12.41,
  8229. "curve": [ 0.25, 0, 0.75, 1 ]
  8230. },
  8231. {
  8232. "time": 1,
  8233. "angle": -25.37,
  8234. "curve": [ 0.25, 0, 0.75, 1 ]
  8235. },
  8236. {
  8237. "time": 1.5,
  8238. "angle": -12.41,
  8239. "curve": [ 0.25, 0, 0.75, 1 ]
  8240. },
  8241. { "time": 2, "angle": -25.37 }
  8242. ],
  8243. "translate": [
  8244. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8245. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8246. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8247. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8248. { "time": 2, "x": 0, "y": 0 }
  8249. ],
  8250. "scale": [
  8251. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8252. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8253. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8254. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8255. { "time": 2, "x": 1, "y": 1 }
  8256. ]
  8257. },
  8258. "bone27": {
  8259. "rotate": [
  8260. { "time": 0, "angle": 0, "curve": "stepped" },
  8261. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8262. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8263. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8264. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8265. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8266. { "time": 1, "angle": 0, "curve": "stepped" },
  8267. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8268. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8269. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8270. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8271. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8272. { "time": 2, "angle": 0 }
  8273. ],
  8274. "translate": [
  8275. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8276. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8277. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8278. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8279. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8280. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8281. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8282. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8283. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8284. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8285. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8286. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8287. { "time": 2, "x": 0, "y": 0 }
  8288. ],
  8289. "scale": [
  8290. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8291. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8292. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8293. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8294. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8295. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8296. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8297. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8298. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8299. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8300. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8301. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8302. { "time": 2, "x": 1, "y": 1 }
  8303. ]
  8304. },
  8305. "bone28": {
  8306. "rotate": [
  8307. { "time": 0, "angle": 0, "curve": "stepped" },
  8308. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  8309. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  8310. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8311. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8312. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8313. { "time": 1, "angle": 0, "curve": "stepped" },
  8314. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  8315. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  8316. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8317. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8318. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8319. { "time": 2, "angle": 0 }
  8320. ],
  8321. "translate": [
  8322. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8323. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8324. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8325. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8326. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8327. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8328. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8329. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8330. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8331. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8332. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8333. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8334. { "time": 2, "x": 0, "y": 0 }
  8335. ],
  8336. "scale": [
  8337. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8338. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8339. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8340. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8341. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8342. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8343. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8344. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8345. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8346. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8347. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8348. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8349. { "time": 2, "x": 1, "y": 1 }
  8350. ]
  8351. },
  8352. "bone29": {
  8353. "rotate": [
  8354. { "time": 0, "angle": -12.27 },
  8355. { "time": 0.1667, "angle": 0.9 },
  8356. { "time": 0.3333, "angle": 25.84 },
  8357. { "time": 0.5, "angle": 43.85 },
  8358. { "time": 0.6667, "angle": 22.88 },
  8359. { "time": 0.8333, "angle": -8.01 },
  8360. { "time": 1, "angle": -12.27 },
  8361. { "time": 1.1667, "angle": 0.9 },
  8362. { "time": 1.3333, "angle": 25.84 },
  8363. { "time": 1.5, "angle": 43.85 },
  8364. { "time": 1.6667, "angle": 22.88 },
  8365. { "time": 1.8333, "angle": -8.01 },
  8366. { "time": 2, "angle": -12.27 }
  8367. ],
  8368. "scale": [
  8369. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8370. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8371. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8372. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8373. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8374. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8375. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8376. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8377. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8378. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8379. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8380. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8381. { "time": 2, "x": 1, "y": 1 }
  8382. ]
  8383. },
  8384. "bone30": {
  8385. "rotate": [
  8386. { "time": 0, "angle": 0 },
  8387. { "time": 0.1667, "angle": 11.43 },
  8388. { "time": 0.3333, "angle": 5.69 },
  8389. { "time": 0.5, "angle": 0 },
  8390. { "time": 0.6667, "angle": 48.45 },
  8391. { "time": 0.8333, "angle": 30.34 },
  8392. { "time": 1, "angle": 0 },
  8393. { "time": 1.1667, "angle": 11.43 },
  8394. { "time": 1.3333, "angle": 5.69 },
  8395. { "time": 1.5, "angle": 0 },
  8396. { "time": 1.6667, "angle": 48.45 },
  8397. { "time": 1.8333, "angle": 30.34 },
  8398. { "time": 2, "angle": 0 }
  8399. ],
  8400. "translate": [
  8401. { "time": 0, "x": 0, "y": 0 },
  8402. { "time": 0.1667, "x": -0.06, "y": 0 },
  8403. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8404. { "time": 0.5, "x": 0, "y": 0 },
  8405. { "time": 0.6667, "x": -1.6, "y": -1.55 },
  8406. { "time": 0.8333, "x": -1.58, "y": -0.47 },
  8407. { "time": 1, "x": 0, "y": 0 },
  8408. { "time": 1.1667, "x": -0.06, "y": 0 },
  8409. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8410. { "time": 1.5, "x": 0, "y": 0 },
  8411. { "time": 1.6667, "x": -1.6, "y": -1.55 },
  8412. { "time": 1.8333, "x": -1.58, "y": -0.47 },
  8413. { "time": 2, "x": 0, "y": 0 }
  8414. ],
  8415. "scale": [
  8416. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8417. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8418. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8419. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8420. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8421. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8422. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8423. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8424. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8425. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8426. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8427. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8428. { "time": 2, "x": 1, "y": 1 }
  8429. ]
  8430. },
  8431. "bone31": {
  8432. "rotate": [
  8433. { "time": 0, "angle": -14.4 },
  8434. { "time": 0.1667, "angle": -13.82 },
  8435. { "time": 0.3333, "angle": -29.67 },
  8436. { "time": 0.5, "angle": 0, "curve": "stepped" },
  8437. { "time": 0.6667, "angle": 0 },
  8438. { "time": 0.8333, "angle": -9.78 },
  8439. { "time": 1, "angle": -14.4 },
  8440. { "time": 1.1667, "angle": -13.82 },
  8441. { "time": 1.3333, "angle": -29.67 },
  8442. { "time": 1.5, "angle": 0, "curve": "stepped" },
  8443. { "time": 1.6667, "angle": 0 },
  8444. { "time": 1.8333, "angle": -9.78 },
  8445. { "time": 2, "angle": -14.4 }
  8446. ],
  8447. "translate": [
  8448. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8449. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8450. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8451. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8452. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8453. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8454. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8455. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8456. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8457. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8458. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8459. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8460. { "time": 2, "x": 0, "y": 0 }
  8461. ],
  8462. "scale": [
  8463. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8464. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8465. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8466. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8467. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8468. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8469. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8470. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8471. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8472. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8473. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8474. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8475. { "time": 2, "x": 1, "y": 1 }
  8476. ]
  8477. },
  8478. "bone32": {
  8479. "rotate": [
  8480. { "time": 0, "angle": 24.31 },
  8481. { "time": 0.1667, "angle": -3.65 },
  8482. { "time": 0.3333, "angle": -22.08 },
  8483. { "time": 0.5, "angle": -19.35 },
  8484. { "time": 0.6667, "angle": -7.71 },
  8485. { "time": 0.8333, "angle": 12.06 },
  8486. { "time": 1, "angle": 24.31 },
  8487. { "time": 1.1667, "angle": -3.65 },
  8488. { "time": 1.3333, "angle": -22.08 },
  8489. { "time": 1.5, "angle": -19.35 },
  8490. { "time": 1.6667, "angle": -7.71 },
  8491. { "time": 1.8333, "angle": 12.06 },
  8492. { "time": 2, "angle": 24.31 }
  8493. ],
  8494. "translate": [
  8495. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8496. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8497. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8498. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8499. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8500. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8501. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8502. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8503. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8504. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8505. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8506. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8507. { "time": 2, "x": 0, "y": 0 }
  8508. ],
  8509. "scale": [
  8510. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8511. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8512. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8513. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8514. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8515. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8516. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8517. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8518. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8519. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8520. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8521. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8522. { "time": 2, "x": 1, "y": 1 }
  8523. ]
  8524. },
  8525. "bone33": {
  8526. "rotate": [
  8527. { "time": 0, "angle": 0 },
  8528. { "time": 0.1667, "angle": 64.81 },
  8529. { "time": 0.3333, "angle": 29.11 },
  8530. { "time": 0.5, "angle": -4.93 },
  8531. { "time": 0.6667, "angle": 14.93 },
  8532. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8533. { "time": 1, "angle": 0 },
  8534. { "time": 1.1667, "angle": 64.81 },
  8535. { "time": 1.3333, "angle": 29.11 },
  8536. { "time": 1.5, "angle": -4.93 },
  8537. { "time": 1.6667, "angle": 14.93 },
  8538. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8539. { "time": 2, "angle": 0 }
  8540. ],
  8541. "translate": [
  8542. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8543. { "time": 0.1667, "x": 0, "y": 0 },
  8544. { "time": 0.3333, "x": -1.14, "y": -0.7 },
  8545. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8546. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8547. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8548. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8549. { "time": 1.1667, "x": 0, "y": 0 },
  8550. { "time": 1.3333, "x": -1.14, "y": -0.7 },
  8551. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8552. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8553. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8554. { "time": 2, "x": 0, "y": 0 }
  8555. ],
  8556. "scale": [
  8557. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8558. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8559. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8560. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8561. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8562. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8563. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8564. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8565. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8566. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8567. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8568. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8569. { "time": 2, "x": 1, "y": 1 }
  8570. ]
  8571. },
  8572. "bone34": {
  8573. "rotate": [
  8574. { "time": 0, "angle": 0 },
  8575. { "time": 0.1667, "angle": -9.94 },
  8576. { "time": 0.3333, "angle": 0 },
  8577. { "time": 0.5, "angle": -12.9 },
  8578. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  8579. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  8580. { "time": 1, "angle": 0 },
  8581. { "time": 1.1667, "angle": -9.94 },
  8582. { "time": 1.3333, "angle": 0 },
  8583. { "time": 1.5, "angle": -12.9 },
  8584. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  8585. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  8586. { "time": 2, "angle": 0 }
  8587. ],
  8588. "translate": [
  8589. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  8590. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  8591. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  8592. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  8593. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  8594. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  8595. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  8596. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  8597. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  8598. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  8599. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  8600. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  8601. { "time": 2, "x": 0, "y": 0 }
  8602. ],
  8603. "scale": [
  8604. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  8605. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  8606. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  8607. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  8608. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  8609. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  8610. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  8611. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  8612. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  8613. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  8614. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  8615. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  8616. { "time": 2, "x": 1, "y": 1 }
  8617. ]
  8618. }
  8619. },
  8620. "deform": {
  8621. "default": {
  8622. "dang": {
  8623. "dang": [
  8624. {
  8625. "time": 0,
  8626. "offset": 2,
  8627. "vertices": [ -0.66495, 2.73778, -0.04592, -3.21565, 0, 0, -0.49421, 1.73724 ]
  8628. },
  8629. {
  8630. "time": 0.5,
  8631. "vertices": [ 0.96135, -5.86631, 0, 0, 0, 0, 0.89266, 3.95865, 0, 0, 0, 0, -0.1878, -1.03541 ]
  8632. },
  8633. {
  8634. "time": 1,
  8635. "offset": 2,
  8636. "vertices": [ -0.66495, 2.73778, -0.04592, -3.21565, 0, 0, -0.49421, 1.73724 ]
  8637. },
  8638. {
  8639. "time": 1.5,
  8640. "vertices": [ 0.96135, -5.86631, 0, 0, 0, 0, 0.89266, 3.95865, 0, 0, 0, 0, -0.1878, -1.03541 ]
  8641. },
  8642. {
  8643. "time": 2,
  8644. "offset": 2,
  8645. "vertices": [ -0.66495, 2.73778, -0.04592, -3.21565, 0, 0, -0.49421, 1.73724 ]
  8646. }
  8647. ]
  8648. },
  8649. "shangyi": {
  8650. "shangyi": [
  8651. {
  8652. "time": 0,
  8653. "offset": 33,
  8654. "vertices": [ 1.75383, -0.06603, 1.75258, 0, 1.66153, 0, 1.66153, -0.06251, 1.66034, -0.09, 0.71999, -0.09795, 0.71895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, -0.09048, 2.3983, 0, 0, 0, 0, 0, 2.4, 0, 4.06153, 0, 0, 0, 0, 0, 1.66153, -0.06251, 1.66034, 0, 1.75383, -0.06603, 1.75258 ]
  8655. },
  8656. {
  8657. "time": 0.5,
  8658. "offset": 29,
  8659. "vertices": [ 0.80999, -0.03592, 0.80919, 0, 0, 0, 0, 0.40199, 1.89999, 0, 0, 0, 0, -0.71999, -0.62999, -0.69149, -0.66127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.06799, -0.06748, 3.06698, -0.01997, 1.80789, -0.01488, 1.80794, 0, 3.06799, 0, 3.06799 ]
  8660. },
  8661. {
  8662. "time": 1,
  8663. "offset": 33,
  8664. "vertices": [ 1.75383, -0.06603, 1.75258, 0, 1.66153, 0, 1.66153, -0.06251, 1.66034, -0.09, 0.71999, -0.09795, 0.71895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, -0.09048, 2.3983, 0, 0, 0, 0, 0, 2.4, 0, 4.06153, 0, 0, 0, 0, 0, 1.66153, -0.06251, 1.66034, 0, 1.75383, -0.06603, 1.75258 ]
  8665. },
  8666. {
  8667. "time": 1.5,
  8668. "offset": 29,
  8669. "vertices": [ 0.80999, -0.03592, 0.80919, 0, 0, 0, 0, 0.40199, 1.89999, 0, 0, 0, 0, -0.71999, -0.62999, -0.69149, -0.66127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3.06799, -0.06748, 3.06698, -0.01997, 1.80789, -0.01488, 1.80794, 0, 3.06799, 0, 3.06799 ]
  8670. },
  8671. {
  8672. "time": 2,
  8673. "offset": 33,
  8674. "vertices": [ 1.75383, -0.06603, 1.75258, 0, 1.66153, 0, 1.66153, -0.06251, 1.66034, -0.09, 0.71999, -0.09795, 0.71895, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.4, -0.09048, 2.3983, 0, 0, 0, 0, 0, 2.4, 0, 4.06153, 0, 0, 0, 0, 0, 1.66153, -0.06251, 1.66034, 0, 1.75383, -0.06603, 1.75258 ]
  8675. }
  8676. ]
  8677. },
  8678. "waitaoyou": {
  8679. "waitaoyou": [
  8680. {
  8681. "time": 0,
  8682. "offset": 168,
  8683. "vertices": [ -0.80709, -2.00046, -0.31631, -2.13376 ]
  8684. },
  8685. { "time": 0.5 },
  8686. {
  8687. "time": 1,
  8688. "offset": 168,
  8689. "vertices": [ -0.80709, -2.00046, -0.31631, -2.13376 ]
  8690. },
  8691. { "time": 1.5 },
  8692. {
  8693. "time": 2,
  8694. "offset": 168,
  8695. "vertices": [ -0.80709, -2.00046, -0.31631, -2.13376 ]
  8696. }
  8697. ]
  8698. },
  8699. "youjiao": {
  8700. "youjiao": [
  8701. { "time": 0 },
  8702. {
  8703. "time": 0.1667,
  8704. "vertices": [ -1.22946, 0.42257, -0.08203, 1.29738, -0.48162, 0.95128, 0.69334, 0.80991, -0.15329, 1.77386, 1.57892, 0.82273 ]
  8705. },
  8706. { "time": 0.5, "curve": "stepped" },
  8707. { "time": 1 },
  8708. {
  8709. "time": 1.1667,
  8710. "vertices": [ -1.22946, 0.42257, -0.08203, 1.29738, -0.48162, 0.95128, 0.69334, 0.80991, -0.15329, 1.77386, 1.57892, 0.82273 ]
  8711. },
  8712. { "time": 1.5, "curve": "stepped" },
  8713. { "time": 2 }
  8714. ]
  8715. },
  8716. "zuoshou": {
  8717. "zuoshou": [
  8718. {
  8719. "time": 0,
  8720. "offset": 60,
  8721. "vertices": [ 1.06564, 1.17688, 3.41656, 3.3894 ]
  8722. }
  8723. ]
  8724. }
  8725. }
  8726. }
  8727. }
  8728. }
  8729. }