42202.json 246 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879
  1. {
  2. "skeleton": { "hash": "FdvMoSSxqoIPV8Tcxqkwq6rH77E", "spine": "3.6.53", "width": 233.51, "height": 193, "images": "./images/" },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "bone", "parent": "root", "x": 0.67, "y": 0.44 },
  6. { "name": "bone2", "parent": "bone", "length": 16.52, "rotation": 87.4, "x": 4.13, "y": 65.25 },
  7. { "name": "bone3", "parent": "bone2", "length": 21.46, "rotation": -2.41, "x": 16.52 },
  8. { "name": "bone4", "parent": "bone3", "length": 6.24, "rotation": 7.74, "x": 22.3, "y": 0.03 },
  9. { "name": "bone5", "parent": "bone4", "length": 49.35, "rotation": -0.31, "x": 6.8, "y": -0.92 },
  10. { "name": "bone6", "parent": "bone5", "length": 17.28, "rotation": 153.22, "x": 74.06, "y": 1.04 },
  11. { "name": "bone7", "parent": "bone6", "length": 16.72, "rotation": 12.05, "x": 17.28 },
  12. { "name": "bone8", "parent": "bone7", "length": 12.48, "rotation": 10.94, "x": 16.72 },
  13. { "name": "bone9", "parent": "bone5", "length": 17.91, "rotation": 148.11, "x": 66.83, "y": 19.4 },
  14. { "name": "bone10", "parent": "bone9", "length": 13.46, "rotation": 21.75, "x": 17.91 },
  15. { "name": "bone11", "parent": "bone10", "length": 9.62, "rotation": 17.18, "x": 13.46 },
  16. { "name": "bone12", "parent": "bone5", "length": 17.44, "rotation": -163.51, "x": 68.18, "y": -13.35 },
  17. { "name": "bone13", "parent": "bone12", "length": 11.11, "rotation": -34.44, "x": 17.44 },
  18. { "name": "bone14", "parent": "bone13", "length": 6.33, "rotation": -32.98, "x": 11.11 },
  19. { "name": "bone15", "parent": "bone5", "length": 19.89, "rotation": -161.1, "x": 48.37, "y": -21.44 },
  20. { "name": "bone16", "parent": "bone15", "length": 17.7, "rotation": -26.45, "x": 19.89 },
  21. { "name": "bone17", "parent": "bone16", "length": 18.38, "rotation": -15.76, "x": 17.7 },
  22. { "name": "bone18", "parent": "bone5", "length": 20.4, "rotation": 164.78, "x": 40.64, "y": 31.14 },
  23. { "name": "bone19", "parent": "bone18", "length": 14.55, "rotation": 6.56, "x": 20.4 },
  24. { "name": "bone20", "parent": "bone19", "length": 8.84, "rotation": 10.64, "x": 14.55 },
  25. { "name": "bone21", "parent": "bone5", "x": 44.73, "y": -43.62 },
  26. { "name": "bone22", "parent": "bone5", "length": 7.78, "rotation": -163.98, "x": 6.86, "y": -33.39 },
  27. { "name": "bone23", "parent": "bone5", "length": 8.8, "rotation": 151.02, "x": 10.08, "y": 25.56 },
  28. { "name": "bone24", "parent": "bone5", "length": 13.78, "rotation": 2.78, "x": 10.63, "y": 19.4 },
  29. { "name": "bone25", "parent": "bone5", "length": 16.11, "rotation": 6.5, "x": 10.03, "y": -9.77 },
  30. { "name": "bone26", "parent": "bone5", "length": 6.4, "rotation": -1.02, "x": 13.59, "y": 8.04 },
  31. { "name": "bone27", "parent": "bone5", "length": 7.34, "rotation": -4.85, "x": 26.19, "y": 7.04 },
  32. { "name": "bone28", "parent": "bone3", "length": 19.36, "rotation": 160.08, "x": 20.36, "y": 7.56 },
  33. { "name": "bone29", "parent": "bone28", "length": 19.09, "rotation": 5.62, "x": 19.36 },
  34. { "name": "bone30", "parent": "bone29", "length": 16.15, "rotation": -13.62, "x": 19.09 },
  35. { "name": "bone31", "parent": "bone3", "length": 21.19, "rotation": -166.21, "x": 21, "y": -15.57 },
  36. { "name": "bone32", "parent": "bone31", "length": 17.12, "rotation": 2.63, "x": 21.19 },
  37. { "name": "bone33", "parent": "bone32", "length": 13.01, "rotation": 5.09, "x": 17.12 },
  38. { "name": "bone34", "parent": "bone3", "x": 16.36, "y": -10.65 },
  39. { "name": "bone35", "parent": "bone2", "length": 9.16, "rotation": 172.98, "x": -2.08, "y": 2.34 },
  40. { "name": "bone36", "parent": "bone35", "length": 8.88, "rotation": -1.3, "x": 9.16 },
  41. { "name": "bone37", "parent": "bone2", "length": 21.63, "rotation": -176.02, "x": -7.45, "y": -9.92 },
  42. { "name": "bone38", "parent": "bone37", "length": 26.13, "rotation": 0.14, "x": 21.63 },
  43. { "name": "bone39", "parent": "bone38", "length": 13.08, "rotation": -71.4, "x": 26.13 },
  44. { "name": "bone40", "parent": "bone2", "length": 20.07, "rotation": -177.4, "x": -13.41, "y": 6.96 },
  45. { "name": "bone41", "parent": "bone40", "length": 20.24, "rotation": 0.49, "x": 20.07 },
  46. { "name": "bone42", "parent": "bone41", "length": 15.71, "rotation": -63.64, "x": 20.24 },
  47. { "name": "bone43", "parent": "bone5", "length": 12.15, "rotation": -153.69, "x": 69.21, "y": -18.27 },
  48. { "name": "bone44", "parent": "bone43", "length": 9.36, "rotation": 2.24, "x": 12.15 },
  49. { "name": "bone45", "parent": "bone2", "length": 20.58, "rotation": -179.56, "x": -7.71, "y": -6.36 },
  50. { "name": "bone46", "parent": "bone45", "length": 19.99, "rotation": 1.05, "x": 20.58 },
  51. { "name": "bone47", "parent": "bone46", "length": 19.59, "rotation": -6.86, "x": 19.99 },
  52. { "name": "bone48", "parent": "bone2", "length": 20.58, "rotation": -179.56, "x": -7.82, "y": 8.54 },
  53. { "name": "bone49", "parent": "bone48", "length": 19.99, "rotation": 1.05, "x": 20.58 },
  54. { "name": "bone50", "parent": "bone49", "length": 19.59, "rotation": -6.86, "x": 19.99 },
  55. { "name": "bone52", "parent": "root", "length": 53.91, "rotation": 92.6, "x": -79.22, "y": 25.95 },
  56. { "name": "bone53", "parent": "root", "length": 53.91, "rotation": 92.6, "x": -41.27, "y": 40.39 },
  57. { "name": "bone54", "parent": "root", "length": 53.91, "rotation": 92.6, "x": 73.79, "y": 33.71, "scaleY": -1 }
  58. ],
  59. "slots": [
  60. { "name": "toufa8", "bone": "bone5", "attachment": "toufa8" },
  61. { "name": "toufa7", "bone": "bone11", "attachment": "toufa7" },
  62. { "name": "toushi", "bone": "bone21", "attachment": "toushi" },
  63. { "name": "zuoshou1", "bone": "bone28", "attachment": "zuoshou1" },
  64. { "name": "zuotui", "bone": "bone36", "attachment": "zuotui" },
  65. { "name": "youtui", "bone": "bone37", "attachment": "youtui" },
  66. { "name": "youtui 2", "bone": "root" },
  67. { "name": "zuotui2", "bone": "bone45" },
  68. { "name": "zuotui3", "bone": "bone48" },
  69. { "name": "qunzi", "bone": "bone35", "attachment": "qunzi" },
  70. { "name": "shuyao", "bone": "bone2", "attachment": "shuyao" },
  71. { "name": "xiong", "bone": "bone3", "attachment": "xiong" },
  72. { "name": "bozi", "bone": "bone4", "attachment": "bozi" },
  73. { "name": "zuoereerhuan", "bone": "bone23", "attachment": "zuoereerhuan" },
  74. { "name": "lian", "bone": "bone5", "attachment": "lian" },
  75. { "name": "zuoyan", "bone": "bone24", "attachment": "zuoyan" },
  76. { "name": "youyan", "bone": "bone25", "attachment": "youyan" },
  77. { "name": "meimao", "bone": "bone27", "attachment": "meimao" },
  78. { "name": "biyan", "bone": "bone26", "attachment": "biyan" },
  79. { "name": "zuiba", "bone": "bone5", "attachment": "zuiba" },
  80. { "name": "youerduo", "bone": "bone5", "attachment": "youerduo" },
  81. { "name": "toufa6", "bone": "bone22", "attachment": "toufa6" },
  82. { "name": "toufa5", "bone": "bone15", "attachment": "toufa5" },
  83. { "name": "toufa4", "bone": "bone12", "attachment": "toufa4" },
  84. { "name": "toufa3", "bone": "bone43", "attachment": "toufa3" },
  85. { "name": "toufa2", "bone": "bone9", "attachment": "toufa2" },
  86. { "name": "toufa1", "bone": "bone6", "attachment": "toufa1" },
  87. { "name": "youshou1", "bone": "bone31", "attachment": "youshou1" },
  88. { "name": "xionghua", "bone": "bone34", "attachment": "xionghua" },
  89. { "name": "love", "bone": "bone52", "attachment": "love" },
  90. { "name": "love2", "bone": "bone53", "attachment": "love" },
  91. { "name": "love3", "bone": "bone54", "attachment": "love" }
  92. ],
  93. "skins": {
  94. "default": {
  95. "biyan": {
  96. "biyan": { "x": 3.97, "y": -2.19, "rotation": -91.4, "width": 48, "height": 15 }
  97. },
  98. "bozi": {
  99. "bozi": {
  100. "type": "mesh",
  101. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  102. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  103. "vertices": [ 1, 4, -4.78, -7.86, 1, 1, 4, -4.17, 5.12, 1, 1, 4, 7.82, 4.55, 1, 1, 4, 7.2, -8.43, 1 ],
  104. "hull": 4,
  105. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  106. "width": 13,
  107. "height": 12
  108. }
  109. },
  110. "lian": {
  111. "lian": {
  112. "type": "mesh",
  113. "uvs": [ 1, 1, 0.4242, 1, 0, 1, 0, 0, 0.42192, 0, 1, 0, 0.35804, 0.33631, 0.3626, 0.78124 ],
  114. "triangles": [ 6, 3, 4, 5, 7, 6, 2, 3, 6, 2, 6, 7, 4, 5, 6, 0, 1, 7, 2, 7, 1, 0, 7, 5 ],
  115. "vertices": [ -6.77, -36.23, -5.05, 4.61, -3.78, 34.7, 67.16, 31.71, 65.9, 1.78, 64.17, -39.22, 42.23, 7.32, 10.66, 8.33 ],
  116. "hull": 6,
  117. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 8, 12, 12, 14, 0, 2, 2, 4, 14, 2 ],
  118. "width": 71,
  119. "height": 71
  120. }
  121. },
  122. "love": {
  123. "love": { "x": 27.72, "y": -1.26, "rotation": -92.6, "width": 80, "height": 70 }
  124. },
  125. "love2": {
  126. "love": { "x": 27.72, "y": -1.26, "rotation": -92.6, "width": 80, "height": 70 }
  127. },
  128. "love3": {
  129. "love": { "x": 27.72, "y": -1.26, "rotation": -92.6, "width": 80, "height": 70 }
  130. },
  131. "meimao": {
  132. "meimao": { "x": 2.94, "y": -1, "rotation": -87.56, "width": 49, "height": 10 }
  133. },
  134. "qunzi": {
  135. "qunzi": {
  136. "type": "mesh",
  137. "uvs": [ 0.75711, 0.20676, 0.80219, 0.27788, 0.89321, 0.42147, 1, 0.59538, 1, 0.73279, 1, 1, 0.73382, 0.99556, 0.30389, 0.98668, 0, 1, 0, 0.71562, 0.04525, 0.60433, 0.08031, 0.51809, 0.17435, 0.32271, 0.20437, 0.20408, 0.25601, 0, 0.43913, 0, 0.53931, 0, 0.63586, 0, 0.35535, 0.37179, 0.32467, 0.67697, 0.37243, 0.25677, 0.33049, 0.52555, 0.30977, 0.83184, 0.59711, 0.23288, 0.63656, 0.32341, 0.67688, 0.47086, 0.70516, 0.63694, 0.72108, 0.78185 ],
  138. "triangles": [ 7, 8, 22, 7, 22, 6, 6, 22, 27, 27, 22, 19, 19, 26, 27, 22, 8, 9, 22, 9, 19, 19, 9, 10, 10, 11, 19, 5, 27, 4, 5, 6, 27, 27, 26, 4, 26, 3, 4, 26, 21, 25, 26, 19, 21, 19, 11, 21, 26, 2, 3, 26, 25, 2, 25, 18, 24, 25, 21, 18, 11, 12, 21, 21, 12, 18, 25, 1, 2, 25, 24, 1, 24, 20, 23, 24, 18, 20, 18, 12, 20, 24, 0, 1, 24, 23, 0, 12, 13, 20, 20, 15, 23, 15, 16, 23, 13, 14, 20, 20, 14, 15, 23, 17, 0, 23, 16, 17 ],
  139. "vertices": [ 2, 35, -7.52, 18.86, 0.97505, 36, -17.1, 18.47, 0.02495, 2, 35, -5.58, 21.88, 0.9491, 36, -15.23, 21.54, 0.0509, 2, 35, -1.66, 28, 0.89103, 36, -11.45, 27.74, 0.10897, 2, 35, 3.12, 35.2, 0.8485, 36, -6.84, 35.05, 0.1515, 2, 35, 7.72, 35.98, 0.83027, 36, -2.25, 35.93, 0.16973, 2, 35, 16.68, 37.49, 0.80335, 36, 6.67, 37.66, 0.19665, 2, 35, 19.16, 21.98, 0.50182, 36, 9.5, 22.21, 0.49818, 2, 35, 23.1, -3.07, 4.1E-4, 36, 14.01, -2.76, 0.99959, 2, 35, 26.54, -20.68, 0.10115, 36, 17.85, -20.28, 0.89885, 2, 35, 17.01, -22.29, 0.19822, 36, 8.36, -22.11, 0.80178, 2, 35, 12.83, -20.29, 0.30055, 36, 4.14, -20.2, 0.69945, 2, 35, 9.59, -18.74, 0.4283, 36, 0.86, -18.73, 0.5717, 2, 35, 2.12, -14.38, 0.82671, 36, -6.71, -14.54, 0.17329, 2, 35, -2.16, -13.31, 0.95557, 36, -11.01, -13.56, 0.04443, 2, 35, -9.51, -11.47, 0.99995, 36, -18.4, -11.89, 5.0E-5, 1, 35, -11.31, -0.81, 1, 1, 35, -12.3, 5.01, 1, 1, 35, -13.25, 10.63, 1, 1, 35, 1.98, -3.57, 1, 2, 35, 12.51, -3.63, 0.16329, 36, 3.44, -3.55, 0.83671, 1, 35, -2.05, -3.23, 1, 2, 35, 7.38, -4.15, 0.99795, 36, -1.68, -4.19, 0.00205, 2, 35, 17.85, -3.61, 9.0E-5, 36, 8.77, -3.41, 0.99991, 2, 35, -5.06, 9.7, 0.98702, 36, -14.43, 9.37, 0.01298, 2, 35, -2.42, 12.51, 0.97384, 36, -11.85, 12.24, 0.02616, 2, 35, 2.13, 15.69, 0.94176, 36, -7.38, 15.53, 0.05824, 2, 35, 7.42, 18.28, 0.49947, 36, -2.15, 18.24, 0.50053, 2, 35, 12.12, 20.03, 0.4542, 36, 2.51, 20.09, 0.5458 ],
  140. "hull": 18,
  141. "edges": [ 14, 16, 34, 0, 4, 6, 28, 30, 24, 22, 16, 18, 24, 36, 0, 2, 2, 4, 24, 26, 26, 28, 30, 40, 40, 36, 26, 40, 36, 42, 42, 38, 22, 42, 18, 20, 20, 22, 20, 38, 14, 44, 44, 38, 18, 44, 6, 8, 8, 10, 30, 32, 32, 34, 0, 46, 46, 40, 32, 46, 2, 48, 48, 36, 46, 48, 4, 50, 50, 42, 48, 50, 6, 52, 52, 38, 50, 52, 8, 54, 52, 54, 10, 12, 12, 14, 54, 12 ],
  142. "width": 59,
  143. "height": 34
  144. }
  145. },
  146. "shuyao": {
  147. "shuyao": {
  148. "type": "mesh",
  149. "uvs": [ 1, 1, 0.37916, 1, 0, 1, 0, 0, 0.42621, 0, 1, 0, 0.37916, 0.59072 ],
  150. "triangles": [ 6, 3, 4, 2, 3, 6, 1, 2, 6, 6, 4, 5, 0, 6, 5, 1, 6, 0 ],
  151. "vertices": [ -3.96, -15.94, -4.81, 2.66, -5.33, 14.03, 17.65, 15.07, 18.23, 2.3, 19.01, -14.9, 4.59, 3.09 ],
  152. "hull": 6,
  153. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 8, 12, 0, 2, 2, 4, 12, 2 ],
  154. "width": 30,
  155. "height": 23
  156. }
  157. },
  158. "toufa1": {
  159. "toufa1": {
  160. "type": "mesh",
  161. "uvs": [ 1, 0.30985, 1, 0.40416, 1, 0.54925, 1, 0.68225, 1, 0.83943, 1, 1, 0.38057, 1, 0, 1, 0, 0.82009, 0, 0.61696, 0, 0.48638, 0, 0.28325, 0, 0.20345, 0, 0, 0.65261, 0, 1, 0, 0.47125, 0.34854, 0.38964, 0.64598, 0.51084, 0.27246, 0.41862, 0.54036, 0.38504, 0.82554 ],
  162. "triangles": [ 20, 8, 17, 20, 17, 3, 20, 3, 4, 6, 7, 8, 20, 6, 8, 20, 4, 5, 6, 20, 5, 19, 10, 11, 19, 16, 2, 17, 9, 10, 19, 17, 10, 19, 2, 3, 17, 19, 3, 8, 9, 17, 18, 12, 13, 14, 18, 13, 16, 11, 12, 14, 15, 0, 18, 14, 0, 18, 16, 12, 18, 0, 1, 16, 18, 1, 16, 19, 11, 16, 1, 2 ],
  163. "vertices": [ 3, 6, 4.28, 20.21, 0.63731, 7, -8.5, 22.48, 0.28319, 8, -20.49, 26.86, 0.0795, 3, 6, 9, 22.35, 0.43749, 7, -3.43, 23.58, 0.40118, 8, -15.31, 26.98, 0.16133, 3, 6, 16.27, 25.64, 0.17886, 7, 4.37, 25.28, 0.45958, 8, -7.33, 27.17, 0.36156, 3, 6, 22.93, 28.66, 0.05225, 7, 11.51, 26.84, 0.35789, 8, -0.01, 27.34, 0.58986, 3, 6, 30.81, 32.22, 0.00484, 7, 19.96, 28.69, 0.18781, 8, 8.63, 27.55, 0.80735, 2, 7, 28.59, 30.57, 0.1128, 8, 17.46, 27.76, 0.8872, 1, 8, 18.11, 0.51, 1, 2, 7, 37.97, -12.42, 0.00206, 8, 18.5, -16.23, 0.99794, 2, 7, 28.3, -14.53, 0.1288, 8, 8.61, -16.46, 0.8712, 3, 6, 37.81, -12.91, 0.0286, 7, 17.38, -16.91, 0.63875, 8, -2.56, -16.73, 0.33265, 3, 6, 31.27, -15.87, 0.15306, 7, 10.37, -18.44, 0.77267, 8, -9.74, -16.9, 0.07427, 3, 6, 21.09, -20.48, 0.57562, 7, -0.55, -20.82, 0.42431, 8, -20.91, -17.17, 6.0E-5, 2, 6, 17.09, -22.29, 0.7342, 7, -4.84, -21.76, 0.2658, 2, 6, 6.9, -26.9, 0.91271, 7, -15.77, -24.14, 0.08729, 2, 6, -4.94, -0.75, 0.9996, 7, -21.89, 3.91, 4.0E-4, 2, 6, -11.25, 13.18, 0.9697, 7, -25.15, 18.84, 0.0303, 1, 6, 15.81, -0.11, 1, 1, 7, 15.29, 0.18, 1, 1, 6, 11.28, -0.25, 1, 2, 7, 9.34, 0.19, 0.99826, 8, -7.21, 1.58, 0.00174, 1, 8, 8.51, 0.48, 1 ],
  164. "hull": 16,
  165. "edges": [ 26, 28, 28, 30, 10, 12, 12, 14, 22, 32, 32, 2, 22, 24, 24, 26, 28, 36, 36, 32, 24, 36, 2, 0, 0, 30, 36, 0, 18, 34, 34, 6, 18, 20, 20, 22, 32, 38, 38, 34, 20, 38, 2, 4, 4, 6, 38, 4, 14, 16, 16, 18, 12, 40, 40, 34, 16, 40, 6, 8, 8, 10, 40, 8 ],
  166. "width": 44,
  167. "height": 55
  168. }
  169. },
  170. "toufa2": {
  171. "toufa2": {
  172. "type": "mesh",
  173. "uvs": [ 1, 0.08298, 0.87725, 0.20226, 0.84026, 0.23821, 0.79604, 0.3182, 0.71892, 0.45768, 0.71961, 0.50234, 0.72057, 0.56473, 0.72272, 0.70392, 0.74732, 0.78746, 0.80992, 1, 0.37009, 1, 0.20326, 1, 0.07618, 0.816, 0, 0.7057, 0, 0.52549, 0, 0.44341, 0, 0.35062, 0.27716, 0.17055, 0.36251, 0.11509, 0.48067, 0.07081, 0.66963, 0, 1, 0, 0.7303, 0.1829, 0.37768, 0.46303, 0.31322, 0.69321, 0.77459, 0.15286, 0.62175, 0.26913, 0.42977, 0.42165, 0.35335, 0.5499, 0.33384, 0.80446 ],
  174. "triangles": [ 10, 8, 9, 11, 29, 10, 10, 29, 8, 11, 12, 29, 12, 24, 29, 29, 7, 8, 12, 13, 24, 29, 24, 7, 13, 14, 24, 24, 28, 7, 28, 6, 7, 24, 14, 28, 28, 23, 6, 23, 28, 15, 28, 14, 15, 23, 5, 6, 23, 27, 5, 27, 4, 5, 27, 23, 16, 27, 26, 4, 4, 26, 3, 23, 15, 16, 16, 17, 27, 27, 17, 26, 26, 22, 3, 3, 22, 2, 17, 18, 26, 26, 18, 22, 22, 25, 2, 2, 25, 1, 1, 25, 0, 18, 19, 22, 22, 19, 25, 19, 20, 25, 0, 25, 21, 25, 20, 21 ],
  175. "vertices": [ 1, 9, -7.28, 3.57, 1, 1, 9, -0.53, 4, 1, 1, 9, 1.5, 4.13, 1, 2, 9, 5.58, 5.21, 0.99733, 10, -9.53, 9.41, 0.00267, 3, 9, 12.68, 7.1, 0.73823, 10, -2.23, 8.53, 0.25849, 11, -12.46, 12.79, 0.00327, 3, 9, 14.65, 8.24, 0.50425, 10, 0.03, 8.86, 0.47912, 11, -10.21, 12.43, 0.01663, 3, 9, 17.41, 9.82, 0.2235, 10, 3.18, 9.31, 0.70717, 11, -7.07, 11.93, 0.06933, 3, 9, 23.57, 13.36, 0.00717, 10, 10.2, 10.31, 0.52792, 11, -0.06, 10.81, 0.46491, 2, 10, 14.35, 11.47, 0.2209, 11, 4.24, 10.69, 0.7791, 1, 11, 15.18, 10.39, 1, 1, 11, 13.44, -0.02, 1, 1, 11, 12.78, -3.97, 1, 2, 10, 17.95, -4.3, 0.09103, 11, 3.03, -5.43, 0.90897, 2, 10, 12.62, -6.86, 0.7775, 11, -2.82, -6.31, 0.2225, 2, 9, 24.18, -6.22, 0.08764, 10, 3.52, -8.1, 0.91236, 2, 9, 20.54, -8.28, 0.41556, 10, -0.63, -8.66, 0.58444, 2, 9, 16.42, -10.61, 0.76849, 10, -5.32, -9.3, 0.23151, 1, 9, 5.15, -9.33, 1, 1, 9, 1.68, -8.94, 1, 1, 9, -1.68, -7.59, 1, 1, 9, -7.06, -5.41, 1, 1, 9, -10.96, 1.49, 1, 1, 9, 0.35, 0.44, 1, 3, 9, 16.95, 0.11, 0.99075, 10, -0.86, 0.46, 0.00925, 11, -13.54, 4.66, 0, 2, 10, 10.98, 0.5, 0.97304, 11, -2.21, 1.21, 0.02696, 1, 9, -1.51, 0.61, 1, 1, 9, 5.46, 0.34, 1, 2, 9, 14.5, 0.16, 0.99677, 10, -3.12, 1.41, 0.00323, 3, 9, 21.09, 1.78, 0.00389, 10, 3.61, 0.47, 0.99524, 11, -9.27, 3.36, 8.8E-4, 2, 10, 16.54, 1.75, 0.01288, 11, 3.46, 0.76, 0.98712 ],
  176. "hull": 22,
  177. "edges": [ 40, 42, 20, 22, 0, 42, 18, 20, 36, 38, 38, 40, 42, 50, 50, 44, 38, 50, 0, 2, 2, 4, 50, 2, 36, 44, 44, 4, 32, 34, 34, 36, 44, 52, 34, 52, 4, 6, 6, 8, 52, 6, 46, 54, 54, 52, 32, 54, 54, 8, 30, 32, 30, 46, 8, 10, 46, 10, 26, 28, 28, 30, 46, 56, 56, 48, 28, 56, 10, 12, 12, 14, 56, 12, 26, 48, 48, 14, 22, 24, 24, 26, 20, 58, 58, 48, 24, 58, 14, 16, 16, 18, 58, 16 ],
  178. "width": 24,
  179. "height": 51
  180. }
  181. },
  182. "toufa3": {
  183. "toufa3": {
  184. "type": "mesh",
  185. "uvs": [ 0.41183, 0.03831, 0.53253, 0.11366, 0.6178, 0.18663, 0.71148, 0.26677, 0.8117, 0.35252, 0.84863, 0.47, 0.89666, 0.6228, 1, 0.70137, 1, 1, 0.83901, 1, 0.55984, 1, 0.48679, 0.77084, 0.45363, 0.6668, 0.39872, 0.56532, 0.34548, 0.46693, 0.29887, 0.38081, 0.19337, 0.2987, 0, 0.14823, 0, 0, 0.05308, 0, 0.35046, 0, 0.40811, 0.21423, 0.60232, 0.56309, 0.31613, 0.15873, 0.47694, 0.33787, 0.64784, 0.64711, 0.53916, 0.44964, 0.72607, 0.79152 ],
  186. "triangles": [ 12, 22, 25, 12, 13, 22, 13, 26, 22, 13, 14, 26, 22, 4, 5, 4, 26, 3, 4, 22, 26, 14, 24, 26, 14, 15, 24, 3, 24, 2, 3, 26, 24, 15, 21, 24, 15, 23, 21, 15, 16, 23, 2, 21, 1, 2, 24, 21, 16, 17, 23, 21, 0, 1, 21, 23, 0, 17, 19, 23, 23, 20, 0, 23, 19, 20, 17, 18, 19, 9, 7, 8, 10, 27, 9, 7, 27, 6, 7, 9, 27, 10, 11, 27, 11, 25, 27, 27, 25, 6, 11, 12, 25, 6, 25, 5, 25, 22, 5 ],
  187. "vertices": [ 1, 43, -4.14, 2.37, 1, 1, 43, -0.61, 4.43, 1, 2, 44, -9.55, 5.99, 0.00218, 43, 2.37, 5.61, 0.99782, 2, 44, -6.23, 7.17, 0.0591, 43, 5.65, 6.92, 0.9409, 2, 44, -2.68, 8.42, 0.24336, 43, 9.15, 8.31, 0.75664, 2, 44, 0.69, 7.65, 0.54604, 43, 12.55, 7.67, 0.45396, 2, 44, 5.08, 6.64, 0.94279, 43, 16.97, 6.84, 0.05721, 2, 44, 8.51, 8.08, 0.99947, 43, 20.34, 8.41, 5.3E-4, 1, 44, 15.68, 3.78, 1, 1, 44, 13.28, -0.22, 1, 1, 44, 9.11, -7.17, 1, 2, 44, 2.52, -5.68, 0.89145, 43, 14.89, -5.58, 0.10855, 2, 44, -0.47, -5.01, 0.4821, 43, 11.87, -5.02, 0.5179, 2, 44, -3.73, -4.91, 0.07315, 43, 8.62, -5.05, 0.92685, 2, 44, -6.89, -4.82, 6.6E-4, 43, 5.46, -5.08, 0.99934, 1, 43, 2.7, -5.11, 1, 1, 43, -0.79, -6.69, 1, 1, 43, -7.18, -9.58, 1, 1, 43, -10.82, -7.59, 1, 1, 43, -10.08, -6.24, 1, 1, 43, -5.94, 1.32, 1, 1, 43, 0.13, -0.09, 1, 1, 43, 11.4, 0.15, 1, 1, 43, -2.52, -1.68, 1, 1, 43, 4.12, 0, 1, 1, 44, 1.95, 0.1, 1, 2, 44, -4.41, 0.25, 1.2E-4, 43, 7.73, 0.07, 0.99988, 1, 44, 6.58, -0.03, 1 ],
  188. "hull": 21,
  189. "edges": [ 36, 38, 16, 18, 38, 40, 16, 14, 12, 14, 34, 36, 18, 20, 30, 42, 42, 2, 30, 32, 32, 34, 38, 46, 46, 42, 32, 46, 2, 0, 0, 40, 46, 0, 28, 30, 42, 48, 28, 48, 2, 4, 48, 4, 24, 44, 44, 8, 20, 22, 22, 24, 50, 44, 22, 50, 8, 10, 10, 12, 50, 10, 24, 26, 26, 28, 44, 52, 52, 48, 26, 52, 4, 6, 6, 8, 52, 6, 18, 54, 54, 50, 20, 54, 54, 12 ],
  190. "width": 29,
  191. "height": 28
  192. }
  193. },
  194. "toufa4": {
  195. "toufa4": {
  196. "type": "mesh",
  197. "uvs": [ 0.91467, 0.16942, 0.9443, 0.21486, 0.98241, 0.42696, 1, 0.52481, 1, 0.8154, 0.75193, 1, 0.28406, 1, 0.18193, 0.79752, 0.29945, 0.70634, 0.40679, 0.62306, 0.53343, 0.52481, 0.51564, 0.43958, 0.48896, 0.31166, 0.47405, 0.24019, 0.3458, 0, 0.51442, 0, 0.80417, 0, 0.6308, 0.2089, 0.8113, 0.51438, 0.69968, 0.72897, 0.66882, 0.27325, 0.71392, 0.26403, 0.7596, 0.42689, 0.51829, 0.84725 ],
  198. "triangles": [ 23, 9, 19, 8, 9, 23, 6, 7, 8, 6, 8, 23, 5, 19, 4, 23, 19, 5, 6, 23, 5, 9, 10, 19, 18, 3, 4, 19, 18, 4, 17, 15, 16, 17, 16, 0, 13, 14, 15, 13, 15, 17, 21, 17, 0, 21, 0, 1, 20, 17, 21, 12, 13, 17, 12, 17, 20, 22, 21, 1, 20, 21, 22, 22, 1, 2, 11, 12, 20, 11, 20, 22, 18, 22, 2, 18, 2, 3, 10, 11, 22, 10, 22, 18, 19, 10, 18 ],
  199. "vertices": [ 1, 12, 1.65, 9.26, 1, 1, 12, 4.15, 9.4, 1, 2, 12, 14.77, 7.05, 0.9293, 13, -6.19, 4.31, 0.0707, 2, 12, 19.68, 5.97, 0.42301, 13, -1.53, 6.19, 0.57699, 2, 13, 12.75, 10.16, 0.56283, 14, -4.16, 9.41, 0.43717, 2, 13, 23.95, 5.03, 0.00216, 14, 8.03, 11.21, 0.99784, 1, 14, 19.24, 1.29, 1, 2, 13, 18.88, -15.31, 0.0149, 14, 14.85, -8.61, 0.9851, 3, 12, 21.17, -18.24, 7.3E-4, 13, 13.4, -12.93, 0.12045, 14, 8.96, -9.6, 0.87881, 3, 12, 18.27, -13.61, 0.0384, 13, 8.38, -10.76, 0.41367, 14, 3.57, -10.51, 0.54793, 3, 12, 14.84, -8.16, 0.42067, 13, 2.47, -8.2, 0.49204, 14, -2.79, -11.58, 0.08728, 3, 12, 10.54, -7.29, 0.86037, 13, -1.57, -9.91, 0.13373, 14, -5.24, -15.21, 0.0059, 2, 12, 4.1, -5.98, 0.99855, 13, -7.62, -12.48, 0.00145, 1, 12, 0.49, -5.25, 1, 1, 12, -12.43, -5.16, 1, 1, 12, -10.68, -0.06, 1, 1, 12, -7.67, 8.71, 1, 1, 12, 0.61, 0.01, 1, 2, 12, 17.22, 0.43, 0.77011, 13, -0.42, 0.23, 0.22989, 2, 13, 11.08, -0.28, 0.43457, 14, 0.12, -0.25, 0.56543, 1, 12, 4.11, 0.1, 1, 1, 12, 4.13, 1.62, 1, 1, 12, 12.46, 0.31, 1, 1, 14, 8.47, 0.42, 1 ],
  200. "hull": 17,
  201. "edges": [ 30, 34, 36, 38, 28, 30, 28, 26, 30, 32, 6, 8, 10, 12, 8, 10, 12, 14, 26, 34, 2, 0, 0, 32, 34, 0, 24, 26, 34, 40, 24, 40, 42, 2, 20, 22, 22, 24, 36, 44, 44, 40, 22, 44, 2, 4, 4, 6, 44, 4, 20, 36, 36, 6, 18, 20, 18, 38, 38, 8, 14, 16, 16, 18, 12, 46, 46, 38, 16, 46, 46, 10 ],
  202. "width": 32,
  203. "height": 51
  204. }
  205. },
  206. "toufa5": {
  207. "toufa5": {
  208. "type": "mesh",
  209. "uvs": [ 0.84358, 0.27942, 0.88833, 0.32918, 0.92774, 0.37301, 0.96385, 0.41316, 1, 0.45337, 1, 0.56895, 1, 0.6781, 1, 0.74418, 1, 0.83236, 1, 1, 0.68114, 1, 0.46327, 1, 0.5411, 0.8286, 0.58367, 0.73482, 0.58771, 0.69628, 0.59288, 0.64696, 0.59574, 0.61968, 0.60087, 0.57064, 0.54571, 0.48727, 0.51487, 0.44066, 0.46344, 0.39788, 0.37154, 0.32144, 0.52061, 0.21187, 0.66203, 0.14064, 0.65438, 0.3311, 0.80154, 0.54512, 0.76523, 0.74155, 0.69172, 0.38541, 0.7246, 0.43322, 0.77545, 0.50718, 0.7901, 0.60698, 0.77433, 0.69231, 0.73649, 0.82988 ],
  210. "triangles": [ 32, 13, 26, 12, 13, 32, 32, 26, 8, 10, 12, 32, 11, 12, 10, 32, 8, 9, 10, 32, 9, 25, 16, 17, 30, 25, 5, 25, 30, 16, 15, 16, 30, 30, 5, 6, 31, 15, 30, 31, 30, 6, 14, 15, 31, 26, 14, 31, 13, 14, 26, 31, 6, 7, 26, 31, 7, 26, 7, 8, 24, 22, 23, 24, 23, 0, 27, 24, 0, 27, 0, 1, 20, 21, 22, 20, 22, 24, 28, 27, 1, 28, 1, 2, 19, 20, 24, 19, 24, 27, 18, 19, 27, 18, 27, 28, 29, 28, 2, 29, 2, 3, 25, 29, 3, 25, 3, 4, 25, 4, 5, 17, 18, 28, 17, 28, 29, 29, 25, 17 ],
  211. "vertices": [ 1, 15, -1.31, 10.24, 1, 1, 15, 3.5, 10.53, 1, 2, 15, 7.74, 10.78, 0.99995, 16, -15.68, 4.24, 5.0E-5, 2, 15, 11.62, 11.01, 0.98533, 16, -12.31, 6.17, 0.01467, 2, 15, 15.51, 11.23, 0.91621, 16, -8.93, 8.11, 0.08379, 2, 15, 24.98, 7.54, 0.18897, 16, 1.2, 9.02, 0.81103, 2, 16, 10.77, 9.87, 0.94157, 17, -9.35, 7.62, 0.05843, 2, 16, 16.56, 10.39, 0.63224, 17, -3.92, 9.69, 0.36776, 2, 16, 24.29, 11.09, 0.11191, 17, 3.33, 12.46, 0.88809, 1, 17, 17.11, 17.72, 1, 1, 17, 22.23, 4.31, 1, 1, 17, 25.72, -4.85, 1, 2, 16, 25.81, -9.51, 0.0054, 17, 10.38, -6.95, 0.9946, 2, 16, 17.41, -8.34, 0.42896, 17, 1.99, -8.1, 0.57104, 3, 15, 28.68, -13.82, 2.3E-4, 16, 14.02, -8.46, 0.75977, 17, -1.24, -9.14, 0.24, 3, 15, 24.72, -12.03, 0.02692, 16, 9.68, -8.62, 0.93197, 17, -5.38, -10.47, 0.04111, 3, 15, 22.53, -11.03, 0.08757, 16, 7.27, -8.7, 0.90388, 17, -7.67, -11.21, 0.00855, 2, 15, 18.59, -9.25, 0.3913, 16, 2.96, -8.86, 0.6087, 2, 15, 10.86, -8.89, 0.93432, 16, -4.13, -11.99, 0.06568, 2, 15, 6.53, -8.7, 0.99457, 16, -8.09, -13.74, 0.00543, 1, 15, 2.18, -9.48, 1, 1, 15, -5.59, -10.89, 1, 1, 15, -12.13, -1.14, 1, 1, 15, -15.66, 7.07, 1, 1, 15, -0.17, 0.66, 1, 2, 15, 19.78, -0.02, 0.5646, 16, -0.09, -0.07, 0.4354, 2, 16, 17.27, -0.15, 0.77978, 17, -0.37, -0.26, 0.22022, 1, 15, 4.89, 0.49, 1, 1, 15, 9.35, 0.33, 1, 1, 15, 16.25, 0.1, 1, 2, 15, 24.67, -2.48, 1.5E-4, 16, 5.38, -0.09, 0.99985, 2, 16, 12.92, -0.13, 0.99904, 17, -4.56, -1.42, 9.6E-4, 1, 17, 7.35, 1.3, 1 ],
  212. "hull": 24,
  213. "edges": [ 44, 48, 18, 20, 44, 46, 46, 0, 44, 42, 20, 22, 38, 40, 40, 42, 40, 48, 48, 0, 48, 54, 38, 54, 0, 2, 54, 2, 34, 36, 36, 38, 56, 54, 36, 56, 2, 4, 56, 4, 50, 58, 58, 56, 34, 58, 4, 6, 6, 8, 58, 6, 32, 34, 32, 50, 50, 8, 30, 32, 50, 60, 30, 60, 8, 10, 60, 10, 26, 28, 28, 30, 52, 62, 62, 60, 28, 62, 10, 12, 12, 14, 62, 12, 26, 52, 52, 14, 22, 24, 24, 26, 20, 64, 64, 52, 24, 64, 14, 16, 16, 18, 64, 16 ],
  214. "width": 45,
  215. "height": 88
  216. }
  217. },
  218. "toufa6": {
  219. "toufa6": { "x": 2.34, "y": 0.71, "rotation": 71.57, "width": 8, "height": 17 }
  220. },
  221. "toufa7": {
  222. "toufa7": {
  223. "type": "mesh",
  224. "uvs": [ 1, 0.24252, 0.92589, 0.3201, 0.85596, 0.3933, 0.77393, 0.46853, 0.70298, 0.53359, 0.62222, 0.60765, 0.56407, 0.68503, 0.52447, 0.73774, 0.52447, 0.79539, 0.52447, 0.83826, 0.77947, 1, 0.34172, 1, 0, 1, 0, 0.88852, 0, 0.81608, 0, 0.69191, 0.03444, 0.63035, 0.09097, 0.5293, 0.1694, 0.44917, 0.25638, 0.3603, 0.36297, 0.25139, 0.39088, 0.20905, 0.44065, 0.13357, 0.52872, 0, 0.77521, 0, 1, 0, 0.51597, 0.28835, 0.32897, 0.57513, 0.28222, 0.79687, 0.62645, 0.16547, 0.55978, 0.23962, 0.44134, 0.40279, 0.38676, 0.4865, 0.31069, 0.66181, 0.29956, 0.71463, 0.30159, 0.863 ],
  225. "triangles": [ 8, 35, 28, 9, 35, 8, 13, 14, 28, 13, 28, 35, 12, 13, 35, 11, 35, 9, 12, 35, 11, 11, 9, 10, 16, 17, 33, 6, 27, 5, 33, 27, 6, 34, 16, 33, 15, 16, 34, 7, 33, 6, 34, 33, 7, 8, 34, 7, 28, 15, 34, 28, 34, 8, 14, 15, 28, 29, 23, 24, 22, 23, 29, 30, 22, 29, 21, 22, 30, 24, 25, 0, 29, 24, 0, 26, 21, 30, 20, 21, 26, 1, 29, 0, 30, 29, 1, 2, 30, 1, 26, 30, 2, 31, 20, 26, 19, 20, 31, 3, 26, 2, 31, 26, 3, 32, 19, 31, 18, 19, 32, 4, 31, 3, 32, 31, 4, 27, 18, 32, 17, 18, 27, 5, 32, 4, 27, 32, 5, 33, 17, 27 ],
  226. "vertices": [ 1, 18, -6.16, 10.2, 1, 1, 18, -0.54, 9.65, 1, 1, 18, 4.75, 9.13, 1, 1, 18, 10.25, 8.36, 1, 2, 18, 15.01, 7.7, 0.95471, 19, -4.47, 8.26, 0.04529, 2, 18, 20.42, 6.94, 0.51854, 19, 0.82, 6.89, 0.48146, 2, 18, 25.94, 6.76, 0.0455, 19, 6.28, 6.09, 0.9545, 3, 18, 29.69, 6.64, 3.2E-4, 19, 10, 5.54, 0.9498, 20, -3.45, 6.28, 0.04988, 2, 19, 13.95, 5.97, 0.54311, 20, 0.51, 5.98, 0.45689, 2, 19, 16.89, 6.29, 0.15185, 20, 3.46, 5.75, 0.84815, 1, 20, 15.06, 11, 1, 1, 20, 14.25, 0.52, 1, 1, 20, 13.62, -7.66, 1, 2, 19, 21.71, -5.84, 0.01872, 20, 5.95, -7.07, 0.98128, 2, 19, 16.74, -6.39, 0.34434, 20, 0.97, -6.68, 0.65566, 3, 18, 29.4, -6.33, 0.00198, 19, 8.22, -7.32, 0.99428, 20, -7.57, -6.02, 0.00373, 2, 18, 25.07, -6.47, 0.10416, 19, 3.91, -6.96, 0.89584, 2, 18, 17.97, -6.69, 0.85096, 19, -3.17, -6.37, 0.14904, 1, 18, 12.17, -6.08, 1, 1, 18, 5.72, -5.4, 1, 1, 18, -2.17, -4.57, 1, 1, 18, -5.17, -4.57, 1, 1, 18, -10.51, -4.56, 1, 1, 18, -19.97, -4.54, 1, 1, 18, -21.28, 1.23, 1, 1, 18, -22.47, 6.49, 1, 1, 18, -0.5, -0.43, 1, 2, 18, 19.79, -0.42, 0.92135, 19, -0.65, -0.35, 0.07865, 2, 19, 14.68, 0.2, 0.39333, 20, 0.17, 0.17, 0.60667, 1, 18, -9.35, 0.28, 1, 1, 18, -4.01, -0.15, 1, 1, 18, 7.6, -0.42, 1, 1, 18, 13.52, -0.42, 1, 1, 19, 5.35, -0.13, 1, 1, 19, 9, 0, 1, 2, 19, 19.17, 1.16, 8.7E-4, 20, 4.75, 0.29, 0.99913 ],
  227. "hull": 26,
  228. "edges": [ 48, 50, 22, 24, 46, 48, 28, 30, 0, 50, 20, 22, 18, 20, 46, 44, 48, 58, 44, 58, 58, 0, 40, 42, 42, 44, 52, 60, 60, 58, 42, 60, 0, 2, 2, 4, 60, 2, 40, 52, 52, 4, 40, 38, 52, 62, 38, 62, 4, 6, 62, 6, 34, 54, 54, 10, 34, 36, 36, 38, 54, 64, 64, 62, 36, 64, 6, 8, 8, 10, 64, 8, 30, 32, 32, 34, 54, 66, 32, 66, 10, 12, 12, 14, 66, 12, 56, 68, 68, 66, 30, 68, 68, 14, 28, 56, 14, 16, 16, 18, 56, 16, 22, 70, 70, 56, 18, 70, 24, 26, 26, 28, 70, 26 ],
  229. "width": 24,
  230. "height": 69
  231. }
  232. },
  233. "toufa8": {
  234. "toufa8": {
  235. "type": "mesh",
  236. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  237. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  238. "vertices": [ -12.61, -56, -8.65, 37.91, 82.27, 34.08, 78.31, -59.84 ],
  239. "hull": 4,
  240. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  241. "width": 94,
  242. "height": 91
  243. }
  244. },
  245. "toushi": {
  246. "toushi": { "x": -1.25, "y": 0.27, "rotation": -92.41, "width": 30, "height": 33 }
  247. },
  248. "xiong": {
  249. "xiong": {
  250. "type": "mesh",
  251. "uvs": [ 1, 1, 0.40024, 1, 0, 1, 0, 0.49401, 0.2578, 0.24936, 0.40306, 0, 0.51729, 0, 1, 0, 0.43832, 0.44471, 0.39319, 0.6685, 0.22537, 0.42574, 0.66395, 0.44281, 0.11255, 0.69884, 0.69075, 0.74056 ],
  252. "triangles": [ 11, 6, 7, 6, 4, 5, 8, 6, 11, 8, 4, 6, 10, 4, 8, 10, 3, 4, 9, 10, 8, 12, 3, 10, 12, 10, 9, 0, 13, 11, 2, 3, 12, 13, 1, 9, 12, 9, 1, 2, 12, 1, 9, 8, 11, 11, 13, 9, 0, 11, 7, 1, 13, 0 ],
  253. "vertices": [ 1, 3, -1.42, -20.2, 1, 1, 3, -3.47, 3.1, 1, 1, 3, -4.83, 18.65, 1, 1, 3, 9.79, 19.94, 1, 1, 3, 17.73, 10.54, 1, 1, 3, 25.43, 5.53, 1, 1, 3, 25.82, 1.09, 1, 1, 3, 27.46, -17.66, 1, 1, 3, 12.7, 3.03, 1, 1, 3, 6.08, 4.22, 1, 1, 3, 12.53, 11.35, 1, 1, 3, 13.53, -5.73, 1, 1, 3, 4.25, 15.04, 1, 1, 3, 5.02, -7.53, 1 ],
  254. "hull": 8,
  255. "edges": [ 0, 14, 12, 14, 12, 16, 16, 18, 0, 2, 2, 4, 18, 2, 10, 12, 10, 8, 4, 6, 8, 6 ],
  256. "width": 39,
  257. "height": 29
  258. }
  259. },
  260. "xionghua": {
  261. "xionghua": { "x": -1.55, "y": -0.09, "rotation": -84.99, "width": 12, "height": 12 }
  262. },
  263. "youerduo": {
  264. "youerduo": { "x": 19.25, "y": -36.33, "rotation": -92.41, "width": 14, "height": 22 }
  265. },
  266. "youshou1": {
  267. "youshou1": {
  268. "type": "mesh",
  269. "uvs": [ 1, 0.33921, 1, 0.38643, 1, 0.44938, 1, 0.59101, 1, 0.62564, 1, 0.65711, 1, 1, 0.7203, 1, 0, 1, 0, 0.68544, 0, 0.64924, 0, 0.61934, 0, 0.44623, 0, 0.38957, 0, 0.34236, 0, 0, 0.23071, 0, 1, 0, 0.41311, 0.39115, 0.58111, 0.6697, 0.44269, 0.44019, 0.39109, 0.34394, 0.6915, 0.66341, 0.54132, 0.60373, 0.5619, 0.63786 ],
  270. "triangles": [ 7, 22, 5, 8, 19, 7, 7, 5, 6, 20, 18, 1, 12, 18, 20, 20, 1, 2, 23, 20, 2, 3, 23, 2, 11, 12, 20, 11, 20, 23, 24, 23, 3, 4, 24, 3, 10, 11, 23, 10, 23, 24, 22, 24, 4, 5, 22, 4, 19, 24, 22, 9, 10, 24, 9, 24, 19, 8, 9, 19, 19, 22, 7, 21, 16, 17, 14, 15, 16, 0, 21, 17, 14, 16, 21, 18, 21, 0, 13, 14, 21, 1, 18, 0, 13, 21, 18, 12, 13, 18 ],
  271. "vertices": [ 2, 31, 18.48, 11.97, 0.68493, 32, -2.16, 12.08, 0.31507, 2, 31, 21.33, 11.53, 0.48529, 32, 0.66, 11.51, 0.51471, 2, 31, 25.12, 10.95, 0.22363, 32, 4.43, 10.75, 0.77637, 3, 31, 33.66, 9.63, 0.00332, 32, 12.9, 9.04, 0.87123, 33, -3.41, 9.38, 0.12545, 3, 31, 35.75, 9.31, 6.0E-5, 32, 14.97, 8.63, 0.74339, 33, -1.38, 8.78, 0.25655, 2, 32, 16.85, 8.25, 0.57363, 33, 0.46, 8.24, 0.42637, 1, 33, 20.51, 2.3, 1, 1, 33, 18.92, -3.07, 1, 1, 33, 14.83, -16.88, 1, 2, 32, 14.59, -11.7, 0.59325, 33, -3.57, -11.43, 0.40675, 2, 32, 12.42, -11.26, 0.7398, 33, -5.68, -10.8, 0.2602, 3, 31, 32.32, -10.4, 9.7E-4, 32, 10.63, -10.9, 0.8356, 33, -7.43, -10.28, 0.16343, 3, 31, 21.88, -8.79, 0.38224, 32, 0.28, -8.81, 0.61768, 33, -17.56, -7.28, 8.0E-5, 2, 31, 18.46, -8.26, 0.7098, 32, -3.1, -8.13, 0.2902, 2, 31, 15.62, -7.82, 0.90489, 32, -5.93, -7.56, 0.09511, 1, 31, -5.02, -4.64, 1, 1, 31, -4.32, -0.08, 1, 1, 31, -1.97, 15.13, 1, 1, 31, 19.82, -0.11, 1, 1, 32, 15.94, -0.12, 1, 1, 32, 1.67, -0.06, 1, 1, 31, 16.91, -0.11, 1, 2, 32, 16.01, 2.12, 0.70998, 33, -0.93, 2.21, 0.29002, 2, 32, 11.84, -0.1, 0.99983, 33, -5.27, 0.37, 1.7E-4, 1, 32, 13.97, -0.11, 1 ],
  272. "hull": 18,
  273. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 38, 14, 26, 36, 36, 2, 24, 26, 36, 40, 24, 40, 2, 4, 40, 4, 26, 28, 28, 30, 32, 42, 42, 36, 28, 42, 2, 0, 0, 34, 42, 0, 16, 18, 18, 38, 10, 12, 44, 10, 22, 24, 46, 40, 22, 46, 4, 6, 46, 6, 18, 20, 20, 22, 38, 48, 48, 46, 20, 48, 6, 8, 8, 10, 48, 8 ],
  274. "width": 20,
  275. "height": 61
  276. }
  277. },
  278. "youtui": {
  279. "youtui": {
  280. "type": "mesh",
  281. "uvs": [ 1, 0.33624, 1, 0.39591, 1, 0.45388, 1, 0.69427, 1, 0.7207, 1, 0.74116, 1, 1, 0.6643, 1, 0, 1, 0, 0.84483, 0.38416, 0.739, 0.38154, 0.71022, 0.37938, 0.68642, 0.3602, 0.47576, 0.35483, 0.41677, 0.35087, 0.35491, 0.32816, 0, 0.64356, 0, 1, 0, 0.6643, 0.403, 0.70163, 0.81611, 0.66156, 0.34984, 0.66974, 0.46326, 0.69486, 0.74123, 0.69077, 0.69595, 0.69289, 0.7194 ],
  282. "triangles": [ 8, 9, 10, 8, 10, 7, 7, 20, 6, 22, 19, 1, 2, 22, 1, 13, 14, 19, 13, 19, 22, 12, 13, 22, 24, 22, 2, 3, 24, 2, 12, 22, 24, 11, 12, 24, 25, 24, 3, 11, 24, 25, 25, 3, 4, 10, 11, 25, 23, 25, 4, 5, 23, 4, 10, 25, 23, 20, 23, 5, 20, 7, 10, 20, 10, 23, 20, 5, 6, 21, 17, 18, 0, 21, 18, 15, 16, 17, 15, 17, 21, 21, 0, 1, 19, 21, 1, 14, 15, 21, 14, 21, 19 ],
  283. "vertices": [ 2, 37, 17.52, 8.76, 0.85087, 38, -4.09, 8.77, 0.14913, 2, 37, 21.16, 8.67, 0.55163, 38, -0.45, 8.67, 0.44837, 2, 37, 24.69, 8.59, 0.22253, 38, 3.08, 8.58, 0.77747, 1, 38, 17.74, 8.19, 1, 1, 38, 19.35, 8.15, 1, 2, 38, 20.6, 8.12, 0.99917, 39, -9.46, -2.65, 8.3E-4, 2, 38, 36.39, 7.7, 0.15732, 39, -4.03, 12.17, 0.84268, 2, 38, 36.15, -1.36, 0.00405, 39, 4.48, 9.06, 0.99595, 1, 39, 21.33, 2.89, 1, 2, 38, 26.21, -19.04, 4.1E-4, 39, 18.07, -6, 0.99959, 2, 38, 20.03, -8.5, 0.51581, 39, 6.11, -8.5, 0.48419, 2, 38, 18.27, -8.53, 0.72102, 39, 5.57, -10.17, 0.27898, 2, 38, 16.82, -8.55, 0.82479, 39, 5.13, -11.55, 0.17521, 2, 37, 25.61, -8.71, 0.14923, 38, 3.96, -8.72, 0.85077, 2, 37, 22.01, -8.77, 0.45275, 38, 0.36, -8.77, 0.54725, 2, 37, 18.24, -8.79, 0.79719, 38, -3.42, -8.78, 0.20281, 1, 37, -3.42, -8.88, 1, 1, 37, -3.22, -0.37, 1, 1, 37, -2.99, 9.25, 1, 2, 37, 21.37, -0.4, 0.69412, 38, -0.26, -0.4, 0.30588, 1, 38, 24.96, -0.06, 1, 2, 37, 18.13, -0.4, 0.99867, 38, -3.5, -0.39, 0.00133, 2, 37, 25.05, -0.34, 4.9E-4, 38, 3.42, -0.35, 0.99951, 2, 38, 20.39, -0.12, 0.99683, 39, -1.72, -5.48, 0.00317, 2, 38, 17.62, -0.16, 0.99871, 39, -2.56, -8.11, 0.00129, 2, 38, 19.06, -0.14, 0.99772, 39, -2.13, -6.75, 0.00228 ],
  284. "hull": 19,
  285. "edges": [ 34, 36, 12, 14, 14, 16, 40, 14, 32, 34, 16, 18, 20, 18, 28, 38, 38, 2, 28, 30, 30, 32, 34, 42, 42, 38, 30, 42, 2, 0, 0, 36, 42, 0, 26, 28, 38, 44, 26, 44, 2, 4, 44, 4, 40, 46, 20, 46, 10, 12, 46, 10, 24, 26, 44, 48, 24, 48, 4, 6, 48, 6, 20, 22, 22, 24, 46, 50, 50, 48, 22, 50, 6, 8, 8, 10, 50, 8 ],
  286. "width": 27,
  287. "height": 61
  288. }
  289. },
  290. "youtui 2": {
  291. "youtui 2": { "x": -5.37, "y": 26.01, "width": 19, "height": 70 }
  292. },
  293. "youyan": {
  294. "youyan": { "x": 7.64, "y": -1.86, "rotation": -98.91, "width": 21, "height": 25 }
  295. },
  296. "zuiba": {
  297. "zuiba": { "x": 2.5, "y": 5.41, "rotation": -92.41, "width": 8, "height": 5 }
  298. },
  299. "zuoereerhuan": {
  300. "zuoereerhuan": { "x": 3.13, "y": 0.96, "rotation": 116.57, "width": 10, "height": 16 }
  301. },
  302. "zuoshou1": {
  303. "zuoshou1": {
  304. "type": "mesh",
  305. "uvs": [ 1, 0.11074, 0.89318, 0.29004, 0.85616, 0.35216, 0.81204, 0.4308, 0.7062, 0.61942, 0.67276, 0.67902, 0.51465, 1, 0.14468, 1, 0, 0.75145, 0.23006, 0.54716, 0.27556, 0.50009, 0.44132, 0.32862, 0.50833, 0.25931, 0.54383, 0.18998, 0.64114, 0, 0.87514, 0, 1, 0, 0.64746, 0.31502, 0.45773, 0.61402, 0.49533, 0.55477, 0.69161, 0.25393, 0.60262, 0.38569 ],
  306. "triangles": [ 7, 8, 9, 7, 9, 18, 6, 18, 5, 7, 18, 6, 11, 12, 21, 21, 17, 3, 19, 11, 21, 10, 11, 19, 18, 10, 19, 9, 10, 18, 4, 21, 3, 19, 21, 4, 5, 19, 4, 18, 19, 5, 15, 16, 0, 20, 14, 15, 1, 20, 15, 13, 14, 20, 0, 1, 15, 17, 13, 20, 12, 13, 17, 2, 20, 1, 17, 20, 2, 21, 12, 17, 3, 17, 2 ],
  307. "vertices": [ 1, 28, 1.3, 6.95, 1, 2, 28, 13.21, 8.13, 0.94079, 29, -5.33, 8.69, 0.05921, 2, 28, 17.34, 8.53, 0.65762, 29, -1.18, 8.69, 0.34238, 2, 28, 22.52, 9.14, 0.17462, 29, 4.04, 8.79, 0.82538, 2, 29, 16.55, 9.02, 0.75428, 30, -4.6, 8.17, 0.24572, 2, 29, 20.5, 9.1, 0.39875, 30, -0.78, 9.17, 0.60125, 1, 30, 19.38, 15.26, 1, 1, 30, 26.82, 3.77, 1, 1, 30, 16.59, -9.24, 1, 2, 29, 18.08, -9.11, 0.41848, 30, 1.16, -9.09, 0.58152, 2, 29, 14.72, -8.5, 0.73041, 30, -2.25, -9.29, 0.26959, 2, 28, 22.46, -6.01, 0.16447, 29, 2.5, -6.29, 0.83553, 2, 28, 17.46, -5.6, 0.81262, 29, -2.44, -5.39, 0.18738, 2, 28, 12.94, -6.25, 0.99907, 29, -7, -5.59, 9.3E-4, 1, 28, 0.57, -8.03, 1, 1, 28, -3.08, -0.18, 1, 1, 28, -5.03, 4.01, 1, 2, 28, 18.47, 0.54, 0.95769, 29, -0.83, 0.63, 0.04231, 2, 29, 19.26, 0.23, 0.39498, 30, 0.11, 0.27, 0.60502, 1, 29, 15.28, 0.31, 1, 1, 28, 14.29, 0.4, 1, 2, 28, 23.21, 0.92, 0.00274, 29, 3.92, 0.54, 0.99726 ],
  308. "hull": 17,
  309. "edges": [ 30, 32, 36, 14, 28, 30, 18, 16, 0, 32, 12, 14, 10, 12, 24, 34, 34, 4, 18, 36, 36, 10, 20, 18, 38, 36, 20, 38, 8, 10, 38, 8, 28, 26, 26, 24, 30, 40, 40, 34, 26, 40, 0, 2, 2, 4, 40, 2, 24, 22, 22, 20, 34, 42, 42, 38, 22, 42, 4, 6, 6, 8, 42, 6, 14, 16 ],
  310. "width": 37,
  311. "height": 63
  312. }
  313. },
  314. "zuotui": {
  315. "zuotui": {
  316. "type": "mesh",
  317. "uvs": [ 1, 0.35018, 1, 0.40125, 1, 0.43918, 1, 0.63906, 1, 0.67116, 1, 0.71056, 1, 1, 0.71727, 1, 0, 1, 0, 0.84124, 0.47334, 0.70165, 0.47672, 0.66389, 0.47988, 0.62863, 0.49654, 0.44246, 0.50044, 0.39885, 0.49777, 0.35163, 0.47786, 0, 0.77148, 0, 1, 0, 0.73986, 0.44582, 0.75341, 0.77682, 0.74195, 0.40254, 0.74547, 0.3545, 0.75109, 0.7178, 0.74944, 0.67548, 0.74789, 0.63613 ],
  318. "triangles": [ 7, 20, 6, 8, 10, 7, 20, 7, 10, 8, 9, 10, 20, 5, 6, 20, 10, 23, 20, 23, 5, 23, 10, 24, 10, 11, 24, 23, 24, 5, 24, 4, 5, 24, 11, 25, 11, 12, 25, 4, 24, 3, 24, 25, 3, 25, 2, 3, 12, 13, 25, 13, 19, 25, 25, 19, 2, 13, 14, 19, 19, 21, 2, 19, 14, 21, 21, 1, 2, 21, 22, 1, 21, 14, 22, 22, 0, 1, 14, 15, 22, 0, 22, 17, 17, 22, 16, 22, 15, 16, 17, 18, 0 ],
  319. "vertices": [ 3, 40, 13.96, 7.3, 0.97462, 41, -6.04, 7.36, 0.02537, 42, -18.26, -20.28, 0, 3, 40, 17.08, 7.3, 0.82992, 41, -2.93, 7.33, 0.17008, 42, -16.85, -17.5, 0, 2, 40, 19.39, 7.3, 0.33, 41, -0.61, 7.31, 0.67, 2, 41, 11.58, 7.21, 0.99986, 42, -10.3, -4.56, 1.4E-4, 1, 41, 13.54, 7.19, 1, 2, 41, 15.94, 7.17, 0.9941, 42, -8.33, -0.67, 0.0059, 2, 41, 33.6, 7.02, 0.00771, 42, -0.36, 15.08, 0.99229, 1, 42, 6.96, 11.38, 1, 1, 42, 25.52, 1.99, 1, 1, 42, 21.14, -6.65, 1, 2, 41, 15.27, -8.1, 0.51822, 42, 5.05, -8.05, 0.48178, 2, 41, 12.97, -7.98, 0.77563, 42, 3.92, -10.06, 0.22437, 2, 41, 10.82, -7.87, 0.89618, 42, 2.87, -11.94, 0.10382, 2, 40, 19.59, -7.3, 0.48356, 41, -0.54, -7.29, 0.51644, 2, 40, 16.93, -7.18, 0.76629, 41, -3.2, -7.16, 0.23371, 2, 40, 14.05, -7.26, 0.94136, 41, -6.08, -7.21, 0.05864, 1, 40, -7.4, -7.84, 1, 1, 40, -7.4, 0.68, 1, 1, 40, -7.4, 7.3, 1, 1, 40, 19.8, -0.24, 1, 2, 41, 19.92, -0.02, 0.69597, 42, -0.13, -0.29, 0.30403, 2, 40, 17.16, -0.18, 0.99726, 41, -2.91, -0.15, 0.00274, 2, 40, 14.23, -0.08, 0.99991, 41, -5.84, -0.03, 9.0E-5, 2, 41, 16.32, -0.05, 0.9996, 42, -1.69, -3.54, 4.0E-4, 2, 41, 13.74, -0.08, 0.99932, 42, -2.82, -5.86, 6.8E-4, 2, 41, 11.34, -0.1, 0.99938, 42, -3.86, -8.02, 6.2E-4 ],
  320. "hull": 19,
  321. "edges": [ 34, 36, 12, 14, 14, 16, 40, 14, 32, 34, 16, 18, 20, 18, 42, 38, 28, 42, 42, 2, 26, 28, 26, 38, 2, 4, 38, 4, 28, 30, 30, 32, 34, 44, 44, 42, 30, 44, 2, 0, 0, 36, 44, 0, 46, 40, 20, 46, 10, 12, 46, 10, 20, 22, 48, 46, 22, 48, 8, 10, 48, 8, 22, 24, 24, 26, 38, 50, 50, 48, 24, 50, 4, 6, 6, 8, 50, 6 ],
  322. "width": 29,
  323. "height": 61
  324. }
  325. },
  326. "zuotui2": {
  327. "youtui 2": {
  328. "type": "mesh",
  329. "uvs": [ 1, 0.28488, 1, 0.33734, 1, 0.38671, 1, 0.48545, 1, 0.51168, 1, 0.58574, 1, 1, 0.3137, 1, 0, 1, 1.0E-5, 0.62123, 0, 0.58111, 0, 0.51785, 0, 0.3898, 0, 0.33426, 0, 0.28026, 0, 0, 0.3721, 0, 1, 0, 0.34341, 0.33766, 0.3032, 0.60722, 0.34793, 0.28448, 0.33539, 0.38802, 0.30714, 0.56532, 0.31654, 0.50633 ],
  330. "triangles": [ 6, 7, 19, 9, 19, 7, 8, 9, 7, 18, 1, 2, 21, 13, 18, 21, 18, 2, 12, 13, 21, 21, 2, 3, 23, 12, 21, 23, 21, 3, 23, 3, 4, 11, 12, 23, 22, 11, 23, 22, 23, 4, 10, 11, 22, 22, 4, 5, 19, 10, 22, 19, 22, 5, 9, 10, 19, 6, 19, 5, 20, 14, 15, 16, 20, 15, 16, 17, 0, 20, 16, 0, 18, 13, 14, 20, 0, 1, 20, 18, 14, 18, 20, 1 ],
  331. "vertices": [ 2, 45, 16.18, 12.36, 0.65841, 46, -4.17, 12.44, 0.34159, 2, 45, 19.85, 12.5, 0.41094, 46, -0.5, 12.51, 0.58906, 3, 45, 23.3, 12.63, 0.19805, 46, 2.96, 12.58, 0.80191, 47, -18.41, 10.45, 4.0E-5, 3, 45, 30.21, 12.89, 0.01262, 46, 9.87, 12.71, 0.95259, 47, -11.56, 11.41, 0.03479, 3, 45, 32.04, 12.96, 0.00315, 46, 11.7, 12.75, 0.92752, 47, -9.75, 11.67, 0.06933, 2, 46, 16.88, 12.85, 0.72321, 47, -4.61, 12.38, 0.27679, 1, 47, 24.11, 16.4, 1, 1, 47, 25.91, 3.49, 1, 1, 47, 26.74, -2.41, 1, 2, 46, 19.74, -6.1, 0.47404, 47, 0.48, -6.09, 0.52596, 2, 46, 16.93, -6.16, 0.79354, 47, -2.3, -6.48, 0.20646, 2, 46, 12.5, -6.24, 0.98653, 47, -6.68, -7.09, 0.01347, 2, 45, 24.24, -6.35, 0.13127, 46, 3.54, -6.42, 0.86873, 2, 45, 20.35, -6.5, 0.60273, 46, -0.35, -6.49, 0.39727, 2, 45, 16.57, -6.64, 0.95808, 46, -4.13, -6.57, 0.04192, 1, 45, -3.03, -7.38, 1, 1, 45, -3.3, -0.32, 1, 1, 45, -3.75, 11.61, 1, 2, 45, 20.34, 0.03, 0.66556, 46, -0.24, 0.04, 0.33444, 1, 46, 18.64, -0.36, 1, 1, 45, 16.62, -0.02, 1, 2, 45, 23.87, 0.01, 4.3E-4, 46, 3.29, -0.05, 0.99957, 2, 46, 15.71, -0.34, 0.9986, 47, -4.2, -0.85, 0.0014, 1, 46, 11.58, -0.25, 1 ],
  332. "hull": 18,
  333. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 38, 14, 26, 36, 36, 2, 26, 28, 28, 30, 32, 40, 40, 36, 28, 40, 2, 0, 0, 34, 40, 0, 24, 26, 36, 42, 24, 42, 2, 4, 42, 4, 16, 18, 18, 38, 10, 12, 38, 10, 18, 20, 38, 44, 20, 44, 8, 10, 20, 22, 22, 24, 42, 46, 46, 44, 22, 46, 4, 6, 6, 8, 46, 6, 44, 8 ],
  334. "width": 19,
  335. "height": 70
  336. }
  337. },
  338. "zuotui3": {
  339. "youtui 2": {
  340. "type": "mesh",
  341. "uvs": [ 1, 0.28488, 1, 0.33734, 1, 0.38671, 1, 0.48545, 1, 0.51168, 1, 0.58574, 1, 1, 0.3137, 1, 0, 1, 1.0E-5, 0.62123, 0, 0.58111, 0, 0.51785, 0, 0.3898, 0, 0.33426, 0, 0.28026, 0, 0, 0.3721, 0, 1, 0, 0.34341, 0.33766, 0.3032, 0.60722, 0.34793, 0.28448, 0.33539, 0.38802, 0.30714, 0.56532, 0.31654, 0.50633 ],
  342. "triangles": [ 6, 7, 19, 9, 19, 7, 8, 9, 7, 18, 1, 2, 21, 13, 18, 21, 18, 2, 12, 13, 21, 21, 2, 3, 23, 12, 21, 23, 21, 3, 23, 3, 4, 11, 12, 23, 22, 11, 23, 22, 23, 4, 10, 11, 22, 22, 4, 5, 19, 10, 22, 19, 22, 5, 9, 10, 19, 6, 19, 5, 20, 14, 15, 16, 20, 15, 16, 17, 0, 20, 16, 0, 18, 13, 14, 20, 0, 1, 20, 18, 14, 18, 20, 1 ],
  343. "vertices": [ 2, 48, 16.18, 12.36, 0.65841, 49, -4.17, 12.44, 0.34159, 2, 48, 19.85, 12.5, 0.41094, 49, -0.5, 12.51, 0.58906, 3, 48, 23.3, 12.63, 0.19805, 49, 2.96, 12.58, 0.80191, 50, -18.41, 10.45, 4.0E-5, 3, 48, 30.21, 12.89, 0.01262, 49, 9.87, 12.71, 0.95259, 50, -11.56, 11.41, 0.03479, 3, 48, 32.04, 12.96, 0.00315, 49, 11.7, 12.75, 0.92752, 50, -9.75, 11.67, 0.06933, 2, 49, 16.88, 12.85, 0.72321, 50, -4.61, 12.38, 0.27679, 1, 50, 24.11, 16.4, 1, 1, 50, 25.91, 3.49, 1, 1, 50, 26.74, -2.41, 1, 2, 49, 19.74, -6.1, 0.47404, 50, 0.48, -6.09, 0.52596, 2, 49, 16.93, -6.16, 0.79354, 50, -2.3, -6.48, 0.20646, 2, 49, 12.5, -6.24, 0.98653, 50, -6.68, -7.09, 0.01347, 2, 48, 24.24, -6.35, 0.13127, 49, 3.54, -6.42, 0.86873, 2, 48, 20.35, -6.5, 0.60273, 49, -0.35, -6.49, 0.39727, 2, 48, 16.57, -6.64, 0.95808, 49, -4.13, -6.57, 0.04192, 1, 48, -3.03, -7.38, 1, 1, 48, -3.3, -0.32, 1, 1, 48, -3.75, 11.61, 1, 2, 48, 20.34, 0.03, 0.66556, 49, -0.24, 0.04, 0.33444, 1, 49, 18.64, -0.36, 1, 1, 48, 16.62, -0.02, 1, 2, 48, 23.87, 0.01, 4.3E-4, 49, 3.29, -0.05, 0.99957, 2, 49, 15.71, -0.34, 0.9986, 50, -4.2, -0.85, 0.0014, 1, 49, 11.58, -0.25, 1 ],
  344. "hull": 18,
  345. "edges": [ 30, 32, 32, 34, 12, 14, 14, 16, 38, 14, 26, 36, 36, 2, 26, 28, 28, 30, 32, 40, 40, 36, 28, 40, 2, 0, 0, 34, 40, 0, 24, 26, 36, 42, 24, 42, 2, 4, 42, 4, 16, 18, 18, 38, 10, 12, 38, 10, 18, 20, 38, 44, 20, 44, 8, 10, 20, 22, 22, 24, 42, 46, 46, 44, 22, 46, 4, 6, 6, 8, 46, 6, 44, 8 ],
  346. "width": 19,
  347. "height": 70
  348. }
  349. },
  350. "zuoyan": {
  351. "zuoyan": { "x": 7.08, "y": 1.04, "rotation": -95.19, "width": 20, "height": 24 }
  352. }
  353. }
  354. },
  355. "animations": {
  356. "stand1": {
  357. "slots": {
  358. "biyan": {
  359. "attachment": [
  360. { "time": 0, "name": null },
  361. { "time": 1.3333, "name": null },
  362. { "time": 2, "name": "biyan" },
  363. { "time": 2.1, "name": null },
  364. { "time": 2.6667, "name": null }
  365. ]
  366. },
  367. "love": {
  368. "color": [
  369. { "time": 0, "color": "ffffff00" }
  370. ]
  371. },
  372. "love2": {
  373. "color": [
  374. { "time": 0, "color": "ffffff00" }
  375. ]
  376. },
  377. "love3": {
  378. "color": [
  379. { "time": 0, "color": "ffffff00" }
  380. ]
  381. },
  382. "youyan": {
  383. "attachment": [
  384. { "time": 2, "name": null },
  385. { "time": 2.1, "name": "youyan" }
  386. ]
  387. },
  388. "zuoyan": {
  389. "attachment": [
  390. { "time": 2, "name": null },
  391. { "time": 2.1, "name": "zuoyan" }
  392. ]
  393. }
  394. },
  395. "bones": {
  396. "bone26": {
  397. "rotate": [
  398. { "time": 0, "angle": 0, "curve": "stepped" },
  399. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  400. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  401. { "time": 2, "angle": 0, "curve": "stepped" },
  402. { "time": 2.6667, "angle": 0 }
  403. ],
  404. "translate": [
  405. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  406. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  407. { "time": 1.3333, "x": 0, "y": 0 },
  408. { "time": 2, "x": -1.23, "y": 0.02 },
  409. { "time": 2.6667, "x": 0, "y": 0 }
  410. ],
  411. "scale": [
  412. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  413. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  414. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  415. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  416. { "time": 2.6667, "x": 1, "y": 1 }
  417. ]
  418. },
  419. "root": {
  420. "rotate": [
  421. { "time": 0, "angle": 0 }
  422. ],
  423. "translate": [
  424. { "time": 0, "x": 0, "y": 0 }
  425. ],
  426. "scale": [
  427. { "time": 0, "x": 0.65, "y": 0.65 }
  428. ]
  429. },
  430. "bone": {
  431. "rotate": [
  432. { "time": 0, "angle": 0, "curve": "stepped" },
  433. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  434. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  435. { "time": 2, "angle": 0, "curve": "stepped" },
  436. { "time": 2.6667, "angle": 0 }
  437. ],
  438. "translate": [
  439. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  440. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  441. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  442. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  443. { "time": 2.6667, "x": 0, "y": 0 }
  444. ],
  445. "scale": [
  446. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  447. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  448. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  449. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  450. { "time": 2.6667, "x": 1, "y": 1 }
  451. ]
  452. },
  453. "bone2": {
  454. "rotate": [
  455. { "time": 0, "angle": 0, "curve": "stepped" },
  456. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  457. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  458. { "time": 2, "angle": 0, "curve": "stepped" },
  459. { "time": 2.6667, "angle": 0 }
  460. ],
  461. "translate": [
  462. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  463. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  464. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  465. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  466. { "time": 2.6667, "x": 0, "y": 0 }
  467. ],
  468. "scale": [
  469. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  470. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  471. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  472. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  473. { "time": 2.6667, "x": 1, "y": 1 }
  474. ]
  475. },
  476. "bone3": {
  477. "rotate": [
  478. { "time": 0, "angle": 0, "curve": "stepped" },
  479. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  480. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  481. { "time": 2, "angle": 0, "curve": "stepped" },
  482. { "time": 2.6667, "angle": 0 }
  483. ],
  484. "translate": [
  485. { "time": 0, "x": 0, "y": 0 },
  486. { "time": 0.6667, "x": 1.5, "y": -0.06 },
  487. { "time": 1.3333, "x": 0, "y": 0 },
  488. { "time": 2, "x": 1.5, "y": -0.06 },
  489. { "time": 2.6667, "x": 0, "y": 0 }
  490. ],
  491. "scale": [
  492. { "time": 0, "x": 1, "y": 1 },
  493. { "time": 0.6667, "x": 1.07, "y": 1 },
  494. { "time": 1.3333, "x": 1, "y": 1 },
  495. { "time": 2, "x": 1.07, "y": 1 },
  496. { "time": 2.6667, "x": 1, "y": 1 }
  497. ]
  498. },
  499. "bone4": {
  500. "rotate": [
  501. { "time": 0, "angle": 0, "curve": "stepped" },
  502. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  503. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  504. { "time": 2, "angle": 0, "curve": "stepped" },
  505. { "time": 2.6667, "angle": 0 }
  506. ],
  507. "translate": [
  508. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  509. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  510. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  511. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  512. { "time": 2.6667, "x": 0, "y": 0 }
  513. ],
  514. "scale": [
  515. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  516. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  517. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  518. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  519. { "time": 2.6667, "x": 1, "y": 1 }
  520. ]
  521. },
  522. "bone5": {
  523. "rotate": [
  524. { "time": 0, "angle": 0, "curve": "stepped" },
  525. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  526. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  527. { "time": 2, "angle": 0, "curve": "stepped" },
  528. { "time": 2.6667, "angle": 0 }
  529. ],
  530. "translate": [
  531. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  532. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  533. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  534. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  535. { "time": 2.6667, "x": 0, "y": 0 }
  536. ],
  537. "scale": [
  538. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  539. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  540. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  541. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  542. { "time": 2.6667, "x": 1, "y": 1 }
  543. ]
  544. },
  545. "bone6": {
  546. "rotate": [
  547. { "time": 0, "angle": 0 },
  548. { "time": 0.6667, "angle": -4.75 },
  549. { "time": 1.3333, "angle": 0 },
  550. { "time": 2, "angle": -4.75 },
  551. { "time": 2.6667, "angle": 0 }
  552. ],
  553. "translate": [
  554. { "time": 0, "x": 0, "y": 0 }
  555. ],
  556. "scale": [
  557. { "time": 0, "x": 1, "y": 1 }
  558. ]
  559. },
  560. "bone7": {
  561. "rotate": [
  562. { "time": 0, "angle": 0 },
  563. { "time": 0.6667, "angle": -0.51 },
  564. { "time": 1.3333, "angle": 0 },
  565. { "time": 2, "angle": -0.51 },
  566. { "time": 2.6667, "angle": 0 }
  567. ],
  568. "translate": [
  569. { "time": 0, "x": 0, "y": 0 }
  570. ],
  571. "scale": [
  572. { "time": 0, "x": 1, "y": 1 }
  573. ]
  574. },
  575. "bone8": {
  576. "rotate": [
  577. { "time": 0, "angle": 0 },
  578. { "time": 0.6667, "angle": -2.69 },
  579. { "time": 1.3333, "angle": 0 },
  580. { "time": 2, "angle": -2.69 },
  581. { "time": 2.6667, "angle": 0 }
  582. ],
  583. "translate": [
  584. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  585. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  586. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  587. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  588. { "time": 2.6667, "x": 0, "y": 0 }
  589. ],
  590. "scale": [
  591. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  592. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  593. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  594. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  595. { "time": 2.6667, "x": 1, "y": 1 }
  596. ]
  597. },
  598. "bone9": {
  599. "rotate": [
  600. { "time": 0, "angle": 0, "curve": "stepped" },
  601. { "time": 2.6667, "angle": 0 }
  602. ],
  603. "translate": [
  604. { "time": 0, "x": 0, "y": 0 },
  605. { "time": 1.3, "x": 0.16, "y": 0.26 },
  606. { "time": 2.6667, "x": 0, "y": 0 }
  607. ],
  608. "scale": [
  609. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  610. { "time": 2.6667, "x": 1, "y": 1 }
  611. ]
  612. },
  613. "bone10": {
  614. "rotate": [
  615. { "time": 0, "angle": 0 },
  616. { "time": 1.3333, "angle": -20.13 },
  617. { "time": 2.6667, "angle": 0 }
  618. ],
  619. "translate": [
  620. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  621. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  622. { "time": 2.6667, "x": 0, "y": 0 }
  623. ],
  624. "scale": [
  625. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  626. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  627. { "time": 2.6667, "x": 1, "y": 1 }
  628. ]
  629. },
  630. "bone11": {
  631. "rotate": [
  632. { "time": 0, "angle": 0 },
  633. { "time": 1.3333, "angle": -12.78 },
  634. { "time": 2.6667, "angle": 0 }
  635. ],
  636. "translate": [
  637. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  638. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  639. { "time": 2.6667, "x": 0, "y": 0 }
  640. ],
  641. "scale": [
  642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  643. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  644. { "time": 2.6667, "x": 1, "y": 1 }
  645. ]
  646. },
  647. "bone12": {
  648. "rotate": [
  649. { "time": 0, "angle": 0, "curve": "stepped" },
  650. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  651. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  652. { "time": 2, "angle": 0, "curve": "stepped" },
  653. { "time": 2.6667, "angle": 0 }
  654. ],
  655. "translate": [
  656. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  657. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  658. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  659. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  660. { "time": 2.6667, "x": 0, "y": 0 }
  661. ],
  662. "scale": [
  663. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  664. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  665. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  666. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  667. { "time": 2.6667, "x": 1, "y": 1 }
  668. ]
  669. },
  670. "bone13": {
  671. "rotate": [
  672. { "time": 0, "angle": 0 },
  673. { "time": 1.3333, "angle": 20.99 },
  674. { "time": 2.6667, "angle": 0 }
  675. ],
  676. "translate": [
  677. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  678. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  679. { "time": 2.6667, "x": 0, "y": 0 }
  680. ],
  681. "scale": [
  682. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  683. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  684. { "time": 2.6667, "x": 1, "y": 1 }
  685. ]
  686. },
  687. "bone14": {
  688. "rotate": [
  689. { "time": 0, "angle": 0 },
  690. { "time": 1.3333, "angle": 23.87 },
  691. { "time": 2.6667, "angle": 0 }
  692. ],
  693. "translate": [
  694. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  695. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  696. { "time": 2.6667, "x": 0, "y": 0 }
  697. ],
  698. "scale": [
  699. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  700. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  701. { "time": 2.6667, "x": 1, "y": 1 }
  702. ]
  703. },
  704. "bone15": {
  705. "rotate": [
  706. { "time": 0, "angle": 0, "curve": "stepped" },
  707. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  708. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  709. { "time": 2, "angle": 0, "curve": "stepped" },
  710. { "time": 2.6667, "angle": 0 }
  711. ],
  712. "translate": [
  713. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  714. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  715. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  716. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  717. { "time": 2.6667, "x": 0, "y": 0 }
  718. ],
  719. "scale": [
  720. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  721. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  722. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  723. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  724. { "time": 2.6667, "x": 1, "y": 1 }
  725. ]
  726. },
  727. "bone16": {
  728. "rotate": [
  729. { "time": 0, "angle": 0 },
  730. { "time": 0.3333, "angle": 6.05 },
  731. { "time": 0.6667, "angle": 15.07 },
  732. { "time": 1.3333, "angle": 0 },
  733. { "time": 1.6667, "angle": 6.05 },
  734. { "time": 2, "angle": 15.07 },
  735. { "time": 2.6667, "angle": 0 }
  736. ],
  737. "translate": [
  738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  739. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  740. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  741. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  742. { "time": 2.6667, "x": 0, "y": 0 }
  743. ],
  744. "scale": [
  745. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  746. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  747. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  748. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  749. { "time": 2.6667, "x": 1, "y": 1 }
  750. ]
  751. },
  752. "bone17": {
  753. "rotate": [
  754. { "time": 0, "angle": 0 },
  755. { "time": 0.6667, "angle": 12.13 },
  756. { "time": 1.3333, "angle": 0 },
  757. { "time": 2, "angle": 12.13 },
  758. { "time": 2.6667, "angle": 0 }
  759. ],
  760. "translate": [
  761. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  762. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  763. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  764. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  765. { "time": 2.6667, "x": 0, "y": 0 }
  766. ],
  767. "scale": [
  768. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  769. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  770. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  771. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  772. { "time": 2.6667, "x": 1, "y": 1 }
  773. ]
  774. },
  775. "bone18": {
  776. "rotate": [
  777. { "time": 0, "angle": 0 },
  778. { "time": 0.6667, "angle": -3.95 },
  779. { "time": 1.3333, "angle": 0 },
  780. { "time": 2, "angle": -3.95 },
  781. { "time": 2.6667, "angle": 0 }
  782. ],
  783. "translate": [
  784. { "time": 0, "x": 0, "y": 0 },
  785. { "time": 0.6667, "x": -0.52, "y": -1.93 },
  786. { "time": 1.3333, "x": 0, "y": 0 },
  787. { "time": 2, "x": -0.52, "y": -1.93 },
  788. { "time": 2.6667, "x": 0, "y": 0 }
  789. ],
  790. "scale": [
  791. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  792. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  793. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  794. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  795. { "time": 2.6667, "x": 1, "y": 1 }
  796. ]
  797. },
  798. "bone19": {
  799. "rotate": [
  800. { "time": 0, "angle": 0 },
  801. { "time": 0.6667, "angle": 14.76 },
  802. { "time": 1.3333, "angle": 0 },
  803. { "time": 2, "angle": 14.76 },
  804. { "time": 2.6667, "angle": 0 }
  805. ],
  806. "translate": [
  807. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  808. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  809. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  810. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  811. { "time": 2.6667, "x": 0, "y": 0 }
  812. ],
  813. "scale": [
  814. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  815. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  816. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  817. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  818. { "time": 2.6667, "x": 1, "y": 1 }
  819. ]
  820. },
  821. "bone20": {
  822. "rotate": [
  823. { "time": 0, "angle": 0 },
  824. { "time": 0.6667, "angle": 21.63 },
  825. { "time": 1.3333, "angle": 0 },
  826. { "time": 2, "angle": 21.63 },
  827. { "time": 2.6667, "angle": 0 }
  828. ],
  829. "translate": [
  830. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  831. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  832. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  833. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  834. { "time": 2.6667, "x": 0, "y": 0 }
  835. ],
  836. "scale": [
  837. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  838. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  839. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  840. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  841. { "time": 2.6667, "x": 1, "y": 1 }
  842. ]
  843. },
  844. "bone21": {
  845. "rotate": [
  846. { "time": 0, "angle": 0, "curve": "stepped" },
  847. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  848. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  849. { "time": 2, "angle": 0, "curve": "stepped" },
  850. { "time": 2.6667, "angle": 0 }
  851. ],
  852. "translate": [
  853. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  854. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  855. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  856. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  857. { "time": 2.6667, "x": 0, "y": 0 }
  858. ],
  859. "scale": [
  860. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  861. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  862. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  863. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  864. { "time": 2.6667, "x": 1, "y": 1 }
  865. ]
  866. },
  867. "bone22": {
  868. "rotate": [
  869. { "time": 0, "angle": 0 },
  870. { "time": 0.6667, "angle": 325.76 },
  871. { "time": 1.3333, "angle": 0 },
  872. { "time": 2, "angle": 325.76 },
  873. { "time": 2.6667, "angle": 0 }
  874. ],
  875. "translate": [
  876. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  877. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  878. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  879. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  880. { "time": 2.6667, "x": 0, "y": 0 }
  881. ],
  882. "scale": [
  883. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  884. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  885. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  886. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  887. { "time": 2.6667, "x": 1, "y": 1 }
  888. ]
  889. },
  890. "bone23": {
  891. "rotate": [
  892. { "time": 0, "angle": 0 },
  893. { "time": 0.6667, "angle": 21.93 },
  894. { "time": 1.3333, "angle": 0 },
  895. { "time": 2, "angle": 21.93 },
  896. { "time": 2.6667, "angle": 0 }
  897. ],
  898. "translate": [
  899. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  900. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  901. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  902. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  903. { "time": 2.6667, "x": 0, "y": 0 }
  904. ],
  905. "scale": [
  906. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  907. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  908. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  909. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  910. { "time": 2.6667, "x": 1, "y": 1 }
  911. ]
  912. },
  913. "bone24": {
  914. "rotate": [
  915. { "time": 0, "angle": 0, "curve": "stepped" },
  916. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  917. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  918. { "time": 1.9, "angle": 0, "curve": "stepped" },
  919. { "time": 2, "angle": 0, "curve": "stepped" },
  920. { "time": 2.1, "angle": 0, "curve": "stepped" },
  921. { "time": 2.2, "angle": 0, "curve": "stepped" },
  922. { "time": 2.6667, "angle": 0 }
  923. ],
  924. "translate": [
  925. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  926. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  927. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  928. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  929. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  930. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  931. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  932. { "time": 2.6667, "x": 0, "y": 0 }
  933. ],
  934. "scale": [
  935. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  936. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  937. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  938. { "time": 1.9, "x": 1, "y": 1 },
  939. { "time": 2, "x": 0.284, "y": 1, "curve": "stepped" },
  940. { "time": 2.0667, "x": 0.284, "y": 1 },
  941. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  942. { "time": 2.6667, "x": 1, "y": 1 }
  943. ]
  944. },
  945. "bone25": {
  946. "rotate": [
  947. { "time": 0, "angle": 0, "curve": "stepped" },
  948. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  949. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  950. { "time": 1.9, "angle": 0, "curve": "stepped" },
  951. { "time": 2, "angle": 0, "curve": "stepped" },
  952. { "time": 2.1, "angle": 0, "curve": "stepped" },
  953. { "time": 2.2, "angle": 0, "curve": "stepped" },
  954. { "time": 2.6667, "angle": 0 }
  955. ],
  956. "translate": [
  957. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  958. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  959. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  960. { "time": 1.9, "x": 0, "y": 0, "curve": "stepped" },
  961. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  962. { "time": 2.1, "x": 0, "y": 0, "curve": "stepped" },
  963. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  964. { "time": 2.6667, "x": 0, "y": 0 }
  965. ],
  966. "scale": [
  967. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  968. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  969. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  970. { "time": 1.9, "x": 1, "y": 1 },
  971. { "time": 2, "x": 0.262, "y": 1, "curve": "stepped" },
  972. { "time": 2.0667, "x": 0.262, "y": 1 },
  973. { "time": 2.2, "x": 1, "y": 1, "curve": "stepped" },
  974. { "time": 2.6667, "x": 1, "y": 1 }
  975. ]
  976. },
  977. "bone27": {
  978. "rotate": [
  979. { "time": 0, "angle": 0, "curve": "stepped" },
  980. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  981. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  982. { "time": 2, "angle": 0, "curve": "stepped" },
  983. { "time": 2.1, "angle": 0, "curve": "stepped" },
  984. { "time": 2.6667, "angle": 0 }
  985. ],
  986. "translate": [
  987. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  988. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  989. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  990. { "time": 1.9, "x": 0, "y": 0 },
  991. { "time": 2, "x": -3.18, "y": 0.27, "curve": "stepped" },
  992. { "time": 2.1, "x": -3.18, "y": 0.27 },
  993. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  994. { "time": 2.6667, "x": 0, "y": 0 }
  995. ],
  996. "scale": [
  997. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  998. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  999. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1000. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1001. { "time": 2.1, "x": 1, "y": 1, "curve": "stepped" },
  1002. { "time": 2.6667, "x": 1, "y": 1 }
  1003. ]
  1004. },
  1005. "bone28": {
  1006. "rotate": [
  1007. { "time": 0, "angle": 11.4 },
  1008. { "time": 0.6667, "angle": 0.28 },
  1009. { "time": 1.3333, "angle": 11.4 },
  1010. { "time": 2, "angle": 0.28 },
  1011. { "time": 2.6667, "angle": 11.4 }
  1012. ],
  1013. "translate": [
  1014. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1015. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1016. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1017. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1018. { "time": 2.6667, "x": 0, "y": 0 }
  1019. ],
  1020. "scale": [
  1021. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1022. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1023. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1024. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1025. { "time": 2.6667, "x": 1, "y": 1 }
  1026. ]
  1027. },
  1028. "bone29": {
  1029. "rotate": [
  1030. { "time": 0, "angle": 0 },
  1031. { "time": 0.6667, "angle": 0.67 },
  1032. { "time": 1.3333, "angle": 0 },
  1033. { "time": 2, "angle": 0.67 },
  1034. { "time": 2.6667, "angle": 0 }
  1035. ],
  1036. "translate": [
  1037. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1038. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1039. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1040. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1041. { "time": 2.6667, "x": 0, "y": 0 }
  1042. ],
  1043. "scale": [
  1044. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1045. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1046. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1047. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1048. { "time": 2.6667, "x": 1, "y": 1 }
  1049. ]
  1050. },
  1051. "bone30": {
  1052. "rotate": [
  1053. { "time": 0, "angle": 0 },
  1054. { "time": 0.6667, "angle": 0.79 },
  1055. { "time": 1.3333, "angle": 0 },
  1056. { "time": 2, "angle": 0.79 },
  1057. { "time": 2.6667, "angle": 0 }
  1058. ],
  1059. "translate": [
  1060. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1061. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1062. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1063. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1064. { "time": 2.6667, "x": 0, "y": 0 }
  1065. ],
  1066. "scale": [
  1067. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1068. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1069. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1070. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1071. { "time": 2.6667, "x": 1, "y": 1 }
  1072. ]
  1073. },
  1074. "bone31": {
  1075. "rotate": [
  1076. { "time": 0, "angle": 0 },
  1077. { "time": 0.6667, "angle": 14.76 },
  1078. { "time": 1.3333, "angle": 0 },
  1079. { "time": 2, "angle": 14.76 },
  1080. { "time": 2.6667, "angle": 0 }
  1081. ],
  1082. "translate": [
  1083. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1084. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1085. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1086. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1087. { "time": 2.6667, "x": 0, "y": 0 }
  1088. ],
  1089. "scale": [
  1090. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1091. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1092. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1093. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1094. { "time": 2.6667, "x": 1, "y": 1 }
  1095. ]
  1096. },
  1097. "bone32": {
  1098. "rotate": [
  1099. { "time": 0, "angle": 0 },
  1100. { "time": 0.6667, "angle": -10.33 },
  1101. { "time": 1.3333, "angle": 0 },
  1102. { "time": 2, "angle": -10.33 },
  1103. { "time": 2.6667, "angle": 0 }
  1104. ],
  1105. "translate": [
  1106. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1107. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1108. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1109. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1110. { "time": 2.6667, "x": 0, "y": 0 }
  1111. ],
  1112. "scale": [
  1113. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1114. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1115. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1116. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1117. { "time": 2.6667, "x": 1, "y": 1 }
  1118. ]
  1119. },
  1120. "bone33": {
  1121. "rotate": [
  1122. { "time": 0, "angle": 0, "curve": "stepped" },
  1123. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1124. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1125. { "time": 2, "angle": 0, "curve": "stepped" },
  1126. { "time": 2.6667, "angle": 0 }
  1127. ],
  1128. "translate": [
  1129. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1130. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1131. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1132. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1133. { "time": 2.6667, "x": 0, "y": 0 }
  1134. ],
  1135. "scale": [
  1136. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1137. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1138. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1139. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1140. { "time": 2.6667, "x": 1, "y": 1 }
  1141. ]
  1142. },
  1143. "bone34": {
  1144. "rotate": [
  1145. { "time": 0, "angle": 0, "curve": "stepped" },
  1146. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1147. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1148. { "time": 2, "angle": 0, "curve": "stepped" },
  1149. { "time": 2.6667, "angle": 0 }
  1150. ],
  1151. "translate": [
  1152. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1153. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1154. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1155. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1156. { "time": 2.6667, "x": 0, "y": 0 }
  1157. ],
  1158. "scale": [
  1159. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1160. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1161. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1162. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1163. { "time": 2.6667, "x": 1, "y": 1 }
  1164. ]
  1165. },
  1166. "bone35": {
  1167. "rotate": [
  1168. { "time": 0, "angle": 0 },
  1169. { "time": 0.6667, "angle": -0.53 },
  1170. { "time": 1.3333, "angle": 0 },
  1171. { "time": 2, "angle": -0.53 },
  1172. { "time": 2.6667, "angle": 0 }
  1173. ],
  1174. "translate": [
  1175. { "time": 0, "x": 0, "y": 0 },
  1176. { "time": 0.6667, "x": 2.53, "y": -0.33 },
  1177. { "time": 1.3333, "x": 0, "y": 0 },
  1178. { "time": 2, "x": 2.53, "y": -0.33 },
  1179. { "time": 2.6667, "x": 0, "y": 0 }
  1180. ],
  1181. "scale": [
  1182. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1183. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1184. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1185. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1186. { "time": 2.6667, "x": 1, "y": 1 }
  1187. ]
  1188. },
  1189. "bone36": {
  1190. "rotate": [
  1191. { "time": 0, "angle": 0 },
  1192. { "time": 0.6667, "angle": -6.82 },
  1193. { "time": 1.3333, "angle": 0 },
  1194. { "time": 2, "angle": -6.82 },
  1195. { "time": 2.6667, "angle": 0 }
  1196. ],
  1197. "translate": [
  1198. { "time": 0, "x": 0, "y": 0 },
  1199. { "time": 0.6667, "x": -0.74, "y": 0.11 },
  1200. { "time": 1.3333, "x": 0, "y": 0 },
  1201. { "time": 2, "x": -0.74, "y": 0.11 },
  1202. { "time": 2.6667, "x": 0, "y": 0 }
  1203. ],
  1204. "scale": [
  1205. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1206. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1207. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1208. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1209. { "time": 2.6667, "x": 1, "y": 1 }
  1210. ]
  1211. },
  1212. "bone37": {
  1213. "rotate": [
  1214. { "time": 0, "angle": 0, "curve": "stepped" },
  1215. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1216. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1217. { "time": 2, "angle": 0, "curve": "stepped" },
  1218. { "time": 2.6667, "angle": 0 }
  1219. ],
  1220. "translate": [
  1221. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1222. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1223. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1224. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1225. { "time": 2.6667, "x": 0, "y": 0 }
  1226. ],
  1227. "scale": [
  1228. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1229. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1230. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1231. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1232. { "time": 2.6667, "x": 1, "y": 1 }
  1233. ]
  1234. },
  1235. "bone38": {
  1236. "rotate": [
  1237. { "time": 0, "angle": 0, "curve": "stepped" },
  1238. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1239. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1240. { "time": 2, "angle": 0, "curve": "stepped" },
  1241. { "time": 2.6667, "angle": 0 }
  1242. ],
  1243. "translate": [
  1244. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1245. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1246. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1247. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1248. { "time": 2.6667, "x": 0, "y": 0 }
  1249. ],
  1250. "scale": [
  1251. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1252. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1253. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1254. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1255. { "time": 2.6667, "x": 1, "y": 1 }
  1256. ]
  1257. },
  1258. "bone39": {
  1259. "rotate": [
  1260. { "time": 0, "angle": 0, "curve": "stepped" },
  1261. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1262. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1263. { "time": 2, "angle": 0, "curve": "stepped" },
  1264. { "time": 2.6667, "angle": 0 }
  1265. ],
  1266. "translate": [
  1267. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1268. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1269. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1270. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1271. { "time": 2.6667, "x": 0, "y": 0 }
  1272. ],
  1273. "scale": [
  1274. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1275. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1276. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1277. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1278. { "time": 2.6667, "x": 1, "y": 1 }
  1279. ]
  1280. },
  1281. "bone40": {
  1282. "rotate": [
  1283. { "time": 0, "angle": 0, "curve": "stepped" },
  1284. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1285. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1286. { "time": 2, "angle": 0, "curve": "stepped" },
  1287. { "time": 2.6667, "angle": 0 }
  1288. ],
  1289. "translate": [
  1290. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1291. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1292. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1293. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1294. { "time": 2.6667, "x": 0, "y": 0 }
  1295. ],
  1296. "scale": [
  1297. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1298. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1299. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1300. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1301. { "time": 2.6667, "x": 1, "y": 1 }
  1302. ]
  1303. },
  1304. "bone41": {
  1305. "rotate": [
  1306. { "time": 0, "angle": 0, "curve": "stepped" },
  1307. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1308. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1309. { "time": 2, "angle": 0, "curve": "stepped" },
  1310. { "time": 2.6667, "angle": 0 }
  1311. ],
  1312. "translate": [
  1313. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1314. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1315. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1316. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1317. { "time": 2.6667, "x": 0, "y": 0 }
  1318. ],
  1319. "scale": [
  1320. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1321. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1322. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1323. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1324. { "time": 2.6667, "x": 1, "y": 1 }
  1325. ]
  1326. },
  1327. "bone42": {
  1328. "rotate": [
  1329. { "time": 0, "angle": 0, "curve": "stepped" },
  1330. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1331. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1332. { "time": 2, "angle": 0, "curve": "stepped" },
  1333. { "time": 2.6667, "angle": 0 }
  1334. ],
  1335. "translate": [
  1336. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1337. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1338. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1339. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1340. { "time": 2.6667, "x": 0, "y": 0 }
  1341. ],
  1342. "scale": [
  1343. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1344. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1345. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1346. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1347. { "time": 2.6667, "x": 1, "y": 1 }
  1348. ]
  1349. },
  1350. "bone43": {
  1351. "rotate": [
  1352. { "time": 0, "angle": 0, "curve": "stepped" },
  1353. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1354. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1355. { "time": 2, "angle": 0, "curve": "stepped" },
  1356. { "time": 2.6667, "angle": 0 }
  1357. ],
  1358. "translate": [
  1359. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1360. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1361. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1362. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1363. { "time": 2.6667, "x": 0, "y": 0 }
  1364. ],
  1365. "scale": [
  1366. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1367. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1368. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1369. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1370. { "time": 2.6667, "x": 1, "y": 1 }
  1371. ]
  1372. },
  1373. "bone44": {
  1374. "rotate": [
  1375. { "time": 0, "angle": 0, "curve": "stepped" },
  1376. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1377. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  1378. { "time": 2, "angle": 0, "curve": "stepped" },
  1379. { "time": 2.6667, "angle": 0 }
  1380. ],
  1381. "translate": [
  1382. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1383. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1384. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  1385. { "time": 2, "x": 0, "y": 0, "curve": "stepped" },
  1386. { "time": 2.6667, "x": 0, "y": 0 }
  1387. ],
  1388. "scale": [
  1389. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1390. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1391. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  1392. { "time": 2, "x": 1, "y": 1, "curve": "stepped" },
  1393. { "time": 2.6667, "x": 1, "y": 1 }
  1394. ]
  1395. }
  1396. },
  1397. "deform": {
  1398. "default": {
  1399. "qunzi": {
  1400. "qunzi": [
  1401. { "time": 0 },
  1402. {
  1403. "time": 0.6667,
  1404. "offset": 16,
  1405. "vertices": [ -1.49082, -0.09929, -1.39085, -0.54587, -0.95747, 0.66671, -1.11437, 0.34562, 0, 0, 0, 0, -0.42201, -3.2604, 0.58461, -3.2352, -0.69577, -0.79507, -0.4225, -0.96838, -0.46314, -2.09441, 0.19249, -2.13635, -0.84613, -1.82772, -0.25324, -1.9981, -1.24118, -0.55746, -1.01423, -0.90699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.44969, -1.26528, -0.99873, -1.64473, 0, 0, -0.97603, -0.16543, -0.88019, -0.4531, -1.28728, -1.23622, -0.85274, -1.56787 ]
  1406. },
  1407. { "time": 1.3333 },
  1408. {
  1409. "time": 2,
  1410. "offset": 16,
  1411. "vertices": [ -1.49082, -0.09929, -1.39085, -0.54587, -0.95747, 0.66671, -1.11437, 0.34562, 0, 0, 0, 0, -0.42201, -3.2604, 0.58461, -3.2352, -0.69577, -0.79507, -0.4225, -0.96838, -0.46314, -2.09441, 0.19249, -2.13635, -0.84613, -1.82772, -0.25324, -1.9981, -1.24118, -0.55746, -1.01423, -0.90699, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1.44969, -1.26528, -0.99873, -1.64473, 0, 0, -0.97603, -0.16543, -0.88019, -0.4531, -1.28728, -1.23622, -0.85274, -1.56787 ]
  1412. },
  1413. { "time": 2.6667 }
  1414. ]
  1415. },
  1416. "shuyao": {
  1417. "shuyao": [
  1418. {
  1419. "time": 0,
  1420. "offset": 6,
  1421. "vertices": [ 3.31154, 0.15052 ]
  1422. },
  1423. {
  1424. "time": 0.6667,
  1425. "vertices": [ 2.36259, -1.23799, 1.34261, 0.06103, 3.88826, -0.97643, 3.31154, 0.15052, 2.65907, 0.69747, 0, 0, 3.45242, 0.15693 ]
  1426. },
  1427. {
  1428. "time": 1.3333,
  1429. "offset": 6,
  1430. "vertices": [ 3.31154, 0.15052 ]
  1431. },
  1432. {
  1433. "time": 2,
  1434. "vertices": [ 2.36259, -1.23799, 1.34261, 0.06103, 3.88826, -0.97643, 3.31154, 0.15052, 2.65907, 0.69747, 0, 0, 3.45242, 0.15693 ]
  1435. },
  1436. {
  1437. "time": 2.6667,
  1438. "offset": 6,
  1439. "vertices": [ 3.31154, 0.15052 ]
  1440. }
  1441. ]
  1442. },
  1443. "toufa8": {
  1444. "toufa8": [
  1445. { "time": 0 },
  1446. {
  1447. "time": 0.6667,
  1448. "vertices": [ 0.15852, -3.24708, 3.08467, -0.11665 ]
  1449. },
  1450. { "time": 1.3333 },
  1451. {
  1452. "time": 2,
  1453. "vertices": [ 0.15852, -3.24708, 3.08467, -0.11665 ]
  1454. },
  1455. { "time": 2.6667 }
  1456. ]
  1457. },
  1458. "xiong": {
  1459. "xiong": [
  1460. {
  1461. "time": 0,
  1462. "offset": 2,
  1463. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  1464. },
  1465. {
  1466. "time": 0.6667,
  1467. "vertices": [ -1.83295, -3.68023, -1.80258, 0.50561, -0.32539, 3.71006, -0.32539, 3.71006, 0.47253, 0.79842, 0, 0, 0, 0, 0, 0, 0, 0, 2.10699, 0.18482, 0.5883, 1.56396, 0.2879, -1.29454, 0.2282, 1.88098, 1.11015, -1.54846 ]
  1468. },
  1469. {
  1470. "time": 1.3333,
  1471. "offset": 2,
  1472. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  1473. },
  1474. {
  1475. "time": 2,
  1476. "vertices": [ -1.83295, -3.68023, -1.80258, 0.50561, -0.32539, 3.71006, -0.32539, 3.71006, 0.47253, 0.79842, 0, 0, 0, 0, 0, 0, 0, 0, 2.10699, 0.18482, 0.5883, 1.56396, 0.2879, -1.29454, 0.2282, 1.88098, 1.11015, -1.54846 ]
  1477. },
  1478. {
  1479. "time": 2.6667,
  1480. "offset": 2,
  1481. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  1482. }
  1483. ]
  1484. }
  1485. }
  1486. }
  1487. },
  1488. "stand2": {
  1489. "slots": {
  1490. "biyan": {
  1491. "attachment": [
  1492. { "time": 0, "name": null },
  1493. { "time": 0.2333, "name": "biyan" },
  1494. { "time": 2.1667, "name": "biyan" },
  1495. { "time": 2.2, "name": null },
  1496. { "time": 3, "name": null }
  1497. ]
  1498. },
  1499. "love": {
  1500. "color": [
  1501. { "time": 0, "color": "ffffff00" }
  1502. ]
  1503. },
  1504. "love2": {
  1505. "color": [
  1506. { "time": 0, "color": "ffffff00" }
  1507. ]
  1508. },
  1509. "love3": {
  1510. "color": [
  1511. { "time": 0, "color": "ffffff00" }
  1512. ]
  1513. },
  1514. "youyan": {
  1515. "attachment": [
  1516. { "time": 0.2333, "name": null },
  1517. { "time": 2.2, "name": "youyan" }
  1518. ]
  1519. },
  1520. "zuoyan": {
  1521. "attachment": [
  1522. { "time": 0.2333, "name": null },
  1523. { "time": 2.1667, "name": null },
  1524. { "time": 2.2, "name": "zuoyan" }
  1525. ]
  1526. }
  1527. },
  1528. "bones": {
  1529. "bone26": {
  1530. "rotate": [
  1531. { "time": 0, "angle": 0, "curve": "stepped" },
  1532. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1533. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1534. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  1535. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1536. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1537. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1538. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1539. { "time": 3, "angle": 0 }
  1540. ],
  1541. "translate": [
  1542. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1543. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1544. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1545. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  1546. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1547. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1548. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1549. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1550. { "time": 3, "x": 0, "y": 0 }
  1551. ],
  1552. "scale": [
  1553. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1554. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1555. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1556. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  1557. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1558. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1559. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1560. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1561. { "time": 3, "x": 1, "y": 1 }
  1562. ]
  1563. },
  1564. "root": {
  1565. "rotate": [
  1566. { "time": 0, "angle": 0 }
  1567. ],
  1568. "translate": [
  1569. { "time": 0, "x": 0, "y": 0 }
  1570. ],
  1571. "scale": [
  1572. { "time": 0, "x": 0.65, "y": 0.65 }
  1573. ]
  1574. },
  1575. "bone": {
  1576. "rotate": [
  1577. { "time": 0, "angle": 0, "curve": "stepped" },
  1578. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1579. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1580. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1581. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1582. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1583. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1584. { "time": 3, "angle": 0 }
  1585. ],
  1586. "translate": [
  1587. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1588. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1589. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1590. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1591. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1592. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1593. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1594. { "time": 3, "x": 0, "y": 0 }
  1595. ],
  1596. "scale": [
  1597. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1598. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1599. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1600. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1601. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1602. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1603. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1604. { "time": 3, "x": 1, "y": 1 }
  1605. ]
  1606. },
  1607. "bone2": {
  1608. "rotate": [
  1609. { "time": 0, "angle": 0, "curve": "stepped" },
  1610. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1611. { "time": 0.5, "angle": 0, "curve": "stepped" },
  1612. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  1613. { "time": 1.6, "angle": 0, "curve": "stepped" },
  1614. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  1615. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1616. { "time": 3, "angle": 0 }
  1617. ],
  1618. "translate": [
  1619. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1620. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1621. { "time": 0.5, "x": 0, "y": 0 },
  1622. { "time": 1.0667, "x": 1.05, "y": -0.05 },
  1623. { "time": 1.6, "x": 0, "y": 0 },
  1624. { "time": 2.1667, "x": 1.05, "y": -0.05 },
  1625. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1626. { "time": 3, "x": 0, "y": 0 }
  1627. ],
  1628. "scale": [
  1629. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1630. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1631. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1632. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1633. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1634. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1635. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1636. { "time": 3, "x": 1, "y": 1 }
  1637. ]
  1638. },
  1639. "bone3": {
  1640. "rotate": [
  1641. { "time": 0, "angle": 0, "curve": "stepped" },
  1642. { "time": 0.1333, "angle": 0 },
  1643. { "time": 0.5, "angle": -6.44 },
  1644. { "time": 1.0667, "angle": 7.88 },
  1645. { "time": 1.6, "angle": -6.44 },
  1646. { "time": 2.1667, "angle": 7.88 },
  1647. { "time": 2.6, "angle": -6.44 },
  1648. { "time": 3, "angle": 0 }
  1649. ],
  1650. "translate": [
  1651. { "time": 0, "x": 0, "y": 0 },
  1652. { "time": 0.1333, "x": -2.24, "y": 0.09 },
  1653. { "time": 0.5, "x": 1.5, "y": -0.06, "curve": "stepped" },
  1654. { "time": 1.0667, "x": 1.5, "y": -0.06, "curve": "stepped" },
  1655. { "time": 1.6, "x": 1.5, "y": -0.06, "curve": "stepped" },
  1656. { "time": 2.1667, "x": 1.5, "y": -0.06, "curve": "stepped" },
  1657. { "time": 2.6, "x": 1.5, "y": -0.06 },
  1658. { "time": 3, "x": 0, "y": 0 }
  1659. ],
  1660. "scale": [
  1661. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1662. { "time": 0.1333, "x": 1, "y": 1 },
  1663. { "time": 0.5, "x": 1.05, "y": 1, "curve": "stepped" },
  1664. { "time": 1.0667, "x": 1.05, "y": 1, "curve": "stepped" },
  1665. { "time": 1.6, "x": 1.05, "y": 1, "curve": "stepped" },
  1666. { "time": 2.1667, "x": 1.05, "y": 1, "curve": "stepped" },
  1667. { "time": 2.6, "x": 1.05, "y": 1 },
  1668. { "time": 3, "x": 1, "y": 1 }
  1669. ]
  1670. },
  1671. "bone4": {
  1672. "rotate": [
  1673. { "time": 0, "angle": 0, "curve": "stepped" },
  1674. { "time": 0.1333, "angle": 0 },
  1675. { "time": 0.5, "angle": -5.24, "curve": "stepped" },
  1676. { "time": 1.0667, "angle": -5.24, "curve": "stepped" },
  1677. { "time": 1.6, "angle": -5.24, "curve": "stepped" },
  1678. { "time": 2.1667, "angle": -5.24, "curve": "stepped" },
  1679. { "time": 2.6, "angle": -5.24 },
  1680. { "time": 3, "angle": 0 }
  1681. ],
  1682. "translate": [
  1683. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1684. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1685. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1686. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1687. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1688. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1689. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1690. { "time": 3, "x": 0, "y": 0 }
  1691. ],
  1692. "scale": [
  1693. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1694. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1695. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1696. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1697. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1698. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1699. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1700. { "time": 3, "x": 1, "y": 1 }
  1701. ]
  1702. },
  1703. "bone5": {
  1704. "rotate": [
  1705. { "time": 0, "angle": 0, "curve": "stepped" },
  1706. { "time": 0.1333, "angle": 0 },
  1707. { "time": 0.5, "angle": 3.84, "curve": "stepped" },
  1708. { "time": 1.0667, "angle": 3.84, "curve": "stepped" },
  1709. { "time": 1.6, "angle": 3.84, "curve": "stepped" },
  1710. { "time": 2.1667, "angle": 3.84, "curve": "stepped" },
  1711. { "time": 2.6, "angle": 3.84 },
  1712. { "time": 3, "angle": 0 }
  1713. ],
  1714. "translate": [
  1715. { "time": 0, "x": 0, "y": 0 },
  1716. { "time": 0.1333, "x": -0.9, "y": 0 },
  1717. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1718. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1719. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1720. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1721. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1722. { "time": 3, "x": 0, "y": 0 }
  1723. ],
  1724. "scale": [
  1725. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1726. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1727. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1728. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1729. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1730. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1731. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1732. { "time": 3, "x": 1, "y": 1 }
  1733. ]
  1734. },
  1735. "bone6": {
  1736. "rotate": [
  1737. { "time": 0, "angle": 0, "curve": "stepped" },
  1738. { "time": 0.1333, "angle": 0 },
  1739. { "time": 0.5, "angle": -4.75 },
  1740. { "time": 1.0667, "angle": -5.8 },
  1741. { "time": 1.6, "angle": -4.75 },
  1742. { "time": 2.1667, "angle": -5.8 },
  1743. { "time": 2.6, "angle": -4.75 },
  1744. { "time": 3, "angle": 0 }
  1745. ],
  1746. "translate": [
  1747. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1748. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1749. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1750. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1751. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1752. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1753. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1754. { "time": 3, "x": 0, "y": 0 }
  1755. ],
  1756. "scale": [
  1757. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1758. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1759. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1760. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1761. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1762. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1763. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1764. { "time": 3, "x": 1, "y": 1 }
  1765. ]
  1766. },
  1767. "bone7": {
  1768. "rotate": [
  1769. { "time": 0, "angle": 0, "curve": "stepped" },
  1770. { "time": 0.1333, "angle": 0 },
  1771. { "time": 0.5, "angle": -0.51 },
  1772. { "time": 1.0667, "angle": -4.9 },
  1773. { "time": 1.6, "angle": -0.51 },
  1774. { "time": 2.1667, "angle": -4.9 },
  1775. { "time": 2.6, "angle": -0.51 },
  1776. { "time": 3, "angle": 0 }
  1777. ],
  1778. "translate": [
  1779. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1780. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1781. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1782. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1783. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1784. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1785. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1786. { "time": 3, "x": 0, "y": 0 }
  1787. ],
  1788. "scale": [
  1789. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1790. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1791. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1792. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1793. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1794. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1795. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1796. { "time": 3, "x": 1, "y": 1 }
  1797. ]
  1798. },
  1799. "bone8": {
  1800. "rotate": [
  1801. { "time": 0, "angle": 0, "curve": "stepped" },
  1802. { "time": 0.1333, "angle": 0 },
  1803. { "time": 0.5, "angle": -2.69 },
  1804. { "time": 1.0667, "angle": -16.85 },
  1805. { "time": 1.6, "angle": -2.69 },
  1806. { "time": 2.1667, "angle": -16.85 },
  1807. { "time": 2.6, "angle": -2.69 },
  1808. { "time": 3, "angle": 0 }
  1809. ],
  1810. "translate": [
  1811. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1812. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1813. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1814. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1815. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1816. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1817. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1818. { "time": 3, "x": 0, "y": 0 }
  1819. ],
  1820. "scale": [
  1821. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1822. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1823. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1824. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1825. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1826. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1827. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1828. { "time": 3, "x": 1, "y": 1 }
  1829. ]
  1830. },
  1831. "bone9": {
  1832. "rotate": [
  1833. { "time": 0, "angle": 0, "curve": "stepped" },
  1834. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1835. { "time": 0.5, "angle": 0 },
  1836. { "time": 1.0667, "angle": -9.51 },
  1837. { "time": 1.6, "angle": 0 },
  1838. { "time": 2.1667, "angle": -9.51 },
  1839. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1840. { "time": 3, "angle": 0 }
  1841. ],
  1842. "translate": [
  1843. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1844. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1845. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1846. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1847. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1848. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1849. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1850. { "time": 3, "x": 0, "y": 0 }
  1851. ],
  1852. "scale": [
  1853. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1854. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1855. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1856. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1857. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1858. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1859. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1860. { "time": 3, "x": 1, "y": 1 }
  1861. ]
  1862. },
  1863. "bone10": {
  1864. "rotate": [
  1865. { "time": 0, "angle": 0, "curve": "stepped" },
  1866. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1867. { "time": 0.5, "angle": 0 },
  1868. { "time": 1.0667, "angle": -3.83 },
  1869. { "time": 1.6, "angle": 0 },
  1870. { "time": 2.1667, "angle": -3.83 },
  1871. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1872. { "time": 3, "angle": 0 }
  1873. ],
  1874. "translate": [
  1875. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1876. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1877. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1878. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1879. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1880. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1881. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1882. { "time": 3, "x": 0, "y": 0 }
  1883. ],
  1884. "scale": [
  1885. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1886. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1887. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1888. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1889. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1890. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1891. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1892. { "time": 3, "x": 1, "y": 1 }
  1893. ]
  1894. },
  1895. "bone11": {
  1896. "rotate": [
  1897. { "time": 0, "angle": 0, "curve": "stepped" },
  1898. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1899. { "time": 0.5, "angle": 0 },
  1900. { "time": 1.0667, "angle": -3.45 },
  1901. { "time": 1.6, "angle": 0 },
  1902. { "time": 2.1667, "angle": -3.45 },
  1903. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1904. { "time": 3, "angle": 0 }
  1905. ],
  1906. "translate": [
  1907. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1908. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1909. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1910. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1911. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1912. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1913. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1914. { "time": 3, "x": 0, "y": 0 }
  1915. ],
  1916. "scale": [
  1917. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1918. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1919. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1920. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1921. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1922. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1923. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1924. { "time": 3, "x": 1, "y": 1 }
  1925. ]
  1926. },
  1927. "bone12": {
  1928. "rotate": [
  1929. { "time": 0, "angle": 0, "curve": "stepped" },
  1930. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1931. { "time": 0.5, "angle": 0 },
  1932. { "time": 1.0667, "angle": 2.32 },
  1933. { "time": 1.6, "angle": 0 },
  1934. { "time": 2.1667, "angle": 2.32 },
  1935. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1936. { "time": 3, "angle": 0 }
  1937. ],
  1938. "translate": [
  1939. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1940. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1941. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1942. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1943. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1944. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1945. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1946. { "time": 3, "x": 0, "y": 0 }
  1947. ],
  1948. "scale": [
  1949. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1950. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1951. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1952. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1953. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1954. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1955. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1956. { "time": 3, "x": 1, "y": 1 }
  1957. ]
  1958. },
  1959. "bone13": {
  1960. "rotate": [
  1961. { "time": 0, "angle": 0, "curve": "stepped" },
  1962. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1963. { "time": 0.5, "angle": 0 },
  1964. { "time": 1.0667, "angle": 9.73 },
  1965. { "time": 1.6, "angle": 0 },
  1966. { "time": 2.1667, "angle": 9.73 },
  1967. { "time": 2.6, "angle": 0, "curve": "stepped" },
  1968. { "time": 3, "angle": 0 }
  1969. ],
  1970. "translate": [
  1971. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  1972. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  1973. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  1974. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  1975. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  1976. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  1977. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  1978. { "time": 3, "x": 0, "y": 0 }
  1979. ],
  1980. "scale": [
  1981. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  1982. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  1983. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  1984. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  1985. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  1986. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  1987. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  1988. { "time": 3, "x": 1, "y": 1 }
  1989. ]
  1990. },
  1991. "bone14": {
  1992. "rotate": [
  1993. { "time": 0, "angle": 0, "curve": "stepped" },
  1994. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  1995. { "time": 0.5, "angle": 0 },
  1996. { "time": 1.0667, "angle": 23.54 },
  1997. { "time": 1.6, "angle": 0 },
  1998. { "time": 2.1667, "angle": 23.54 },
  1999. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2000. { "time": 3, "angle": 0 }
  2001. ],
  2002. "translate": [
  2003. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2004. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2005. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2006. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2007. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2008. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2009. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2010. { "time": 3, "x": 0, "y": 0 }
  2011. ],
  2012. "scale": [
  2013. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2014. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2015. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2016. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2017. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2018. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2019. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2020. { "time": 3, "x": 1, "y": 1 }
  2021. ]
  2022. },
  2023. "bone15": {
  2024. "rotate": [
  2025. { "time": 0, "angle": 0, "curve": "stepped" },
  2026. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2027. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2028. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2029. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2030. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2031. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2032. { "time": 3, "angle": 0 }
  2033. ],
  2034. "translate": [
  2035. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2036. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2037. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2038. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2039. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2040. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2041. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2042. { "time": 3, "x": 0, "y": 0 }
  2043. ],
  2044. "scale": [
  2045. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2046. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2047. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2048. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2049. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2050. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2051. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2052. { "time": 3, "x": 1, "y": 1 }
  2053. ]
  2054. },
  2055. "bone16": {
  2056. "rotate": [
  2057. { "time": 0, "angle": 0 },
  2058. { "time": 0.1333, "angle": 10.78 },
  2059. { "time": 0.5, "angle": 15.07 },
  2060. { "time": 1.0667, "angle": 26.02 },
  2061. { "time": 1.6, "angle": 15.07 },
  2062. { "time": 2.1667, "angle": 26.02 },
  2063. { "time": 2.6, "angle": 15.07 },
  2064. { "time": 3, "angle": 0 }
  2065. ],
  2066. "translate": [
  2067. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2068. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2069. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2070. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2071. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2072. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2073. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2074. { "time": 3, "x": 0, "y": 0 }
  2075. ],
  2076. "scale": [
  2077. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2078. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2079. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2080. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2081. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2082. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2083. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2084. { "time": 3, "x": 1, "y": 1 }
  2085. ]
  2086. },
  2087. "bone17": {
  2088. "rotate": [
  2089. { "time": 0, "angle": 0, "curve": "stepped" },
  2090. { "time": 0.1333, "angle": 0 },
  2091. { "time": 0.5, "angle": 12.13 },
  2092. { "time": 1.0667, "angle": 17.98 },
  2093. { "time": 1.6, "angle": 12.13 },
  2094. { "time": 2.1667, "angle": 17.98 },
  2095. { "time": 2.6, "angle": 12.13 },
  2096. { "time": 3, "angle": 0 }
  2097. ],
  2098. "translate": [
  2099. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2100. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2101. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2102. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2103. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2104. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2105. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2106. { "time": 3, "x": 0, "y": 0 }
  2107. ],
  2108. "scale": [
  2109. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2110. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2111. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2112. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2113. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2114. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2115. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2116. { "time": 3, "x": 1, "y": 1 }
  2117. ]
  2118. },
  2119. "bone18": {
  2120. "rotate": [
  2121. { "time": 0, "angle": 0 },
  2122. { "time": 0.1333, "angle": -4.3 },
  2123. { "time": 0.5, "angle": -3.95 },
  2124. { "time": 1.0667, "angle": -13.2 },
  2125. { "time": 1.6, "angle": -3.95 },
  2126. { "time": 2.1667, "angle": -13.2 },
  2127. { "time": 2.6, "angle": -3.95 },
  2128. { "time": 3, "angle": 0 }
  2129. ],
  2130. "translate": [
  2131. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2132. { "time": 0.1333, "x": 0, "y": 0 },
  2133. { "time": 0.5, "x": -0.52, "y": -1.93, "curve": "stepped" },
  2134. { "time": 1.0667, "x": -0.52, "y": -1.93, "curve": "stepped" },
  2135. { "time": 1.6, "x": -0.52, "y": -1.93, "curve": "stepped" },
  2136. { "time": 2.1667, "x": -0.52, "y": -1.93, "curve": "stepped" },
  2137. { "time": 2.6, "x": -0.52, "y": -1.93 },
  2138. { "time": 3, "x": 0, "y": 0 }
  2139. ],
  2140. "scale": [
  2141. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2142. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2143. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2144. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2145. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2146. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2147. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2148. { "time": 3, "x": 1, "y": 1 }
  2149. ]
  2150. },
  2151. "bone19": {
  2152. "rotate": [
  2153. { "time": 0, "angle": 0, "curve": "stepped" },
  2154. { "time": 0.1333, "angle": 0 },
  2155. { "time": 0.5, "angle": 14.76 },
  2156. { "time": 1.0667, "angle": 7.89 },
  2157. { "time": 1.6, "angle": 14.76 },
  2158. { "time": 2.1667, "angle": 7.89 },
  2159. { "time": 2.6, "angle": 14.76 },
  2160. { "time": 3, "angle": 0 }
  2161. ],
  2162. "translate": [
  2163. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2164. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2165. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2166. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2167. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2168. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2169. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2170. { "time": 3, "x": 0, "y": 0 }
  2171. ],
  2172. "scale": [
  2173. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2174. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2175. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2176. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2177. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2178. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2179. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2180. { "time": 3, "x": 1, "y": 1 }
  2181. ]
  2182. },
  2183. "bone20": {
  2184. "rotate": [
  2185. { "time": 0, "angle": 0, "curve": "stepped" },
  2186. { "time": 0.1333, "angle": 0 },
  2187. { "time": 0.5, "angle": 21.63 },
  2188. { "time": 1.0667, "angle": 13.14 },
  2189. { "time": 1.6, "angle": 21.63 },
  2190. { "time": 2.1667, "angle": 13.14 },
  2191. { "time": 2.6, "angle": 21.63 },
  2192. { "time": 3, "angle": 0 }
  2193. ],
  2194. "translate": [
  2195. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2196. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2197. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2198. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2199. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2200. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2201. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2202. { "time": 3, "x": 0, "y": 0 }
  2203. ],
  2204. "scale": [
  2205. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2206. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2207. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2208. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2209. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2210. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2211. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2212. { "time": 3, "x": 1, "y": 1 }
  2213. ]
  2214. },
  2215. "bone21": {
  2216. "rotate": [
  2217. { "time": 0, "angle": 0, "curve": "stepped" },
  2218. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2219. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2220. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2221. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2222. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2223. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2224. { "time": 3, "angle": 0 }
  2225. ],
  2226. "translate": [
  2227. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2228. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2229. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2230. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2231. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2232. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2233. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2234. { "time": 3, "x": 0, "y": 0 }
  2235. ],
  2236. "scale": [
  2237. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2238. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2239. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2240. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2241. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2242. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2243. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2244. { "time": 3, "x": 1, "y": 1 }
  2245. ]
  2246. },
  2247. "bone22": {
  2248. "rotate": [
  2249. { "time": 0, "angle": 0, "curve": "stepped" },
  2250. { "time": 0.1333, "angle": 0 },
  2251. { "time": 0.5, "angle": -34.24 },
  2252. { "time": 1.0667, "angle": 10.49 },
  2253. { "time": 1.6, "angle": -34.24 },
  2254. { "time": 2.1667, "angle": 10.49 },
  2255. { "time": 2.6, "angle": -34.24 },
  2256. { "time": 3, "angle": 0 }
  2257. ],
  2258. "translate": [
  2259. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2260. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2261. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2262. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2263. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2264. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2265. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2266. { "time": 3, "x": 0, "y": 0 }
  2267. ],
  2268. "scale": [
  2269. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2270. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2271. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2272. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2273. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2274. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2275. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2276. { "time": 3, "x": 1, "y": 1 }
  2277. ]
  2278. },
  2279. "bone23": {
  2280. "rotate": [
  2281. { "time": 0, "angle": 0, "curve": "stepped" },
  2282. { "time": 0.1333, "angle": 0 },
  2283. { "time": 0.5, "angle": 21.93 },
  2284. { "time": 1.0667, "angle": 6.54 },
  2285. { "time": 1.6, "angle": 21.93 },
  2286. { "time": 2.1667, "angle": 6.54 },
  2287. { "time": 2.6, "angle": 21.93 },
  2288. { "time": 3, "angle": 0 }
  2289. ],
  2290. "translate": [
  2291. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2292. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2293. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2294. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2295. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2296. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2297. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2298. { "time": 3, "x": 0, "y": 0 }
  2299. ],
  2300. "scale": [
  2301. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2302. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2303. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2304. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2305. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2306. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2307. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2308. { "time": 3, "x": 1, "y": 1 }
  2309. ]
  2310. },
  2311. "bone24": {
  2312. "rotate": [
  2313. { "time": 0, "angle": 0, "curve": "stepped" },
  2314. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2315. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2316. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  2317. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2318. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2319. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2320. { "time": 3, "angle": 0 }
  2321. ],
  2322. "translate": [
  2323. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2324. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2325. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2326. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  2327. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2328. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2329. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2330. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2331. { "time": 3, "x": 0, "y": 0 }
  2332. ],
  2333. "scale": [
  2334. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2335. { "time": 0.1333, "x": 1, "y": 1 },
  2336. { "time": 0.2333, "x": 0.364, "y": 1, "curve": "stepped" },
  2337. { "time": 0.3333, "x": 0.364, "y": 1, "curve": "stepped" },
  2338. { "time": 2.1667, "x": 0.364, "y": 1, "curve": "stepped" },
  2339. { "time": 2.2, "x": 0.364, "y": 1 },
  2340. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2341. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2342. { "time": 3, "x": 1, "y": 1 }
  2343. ]
  2344. },
  2345. "bone25": {
  2346. "rotate": [
  2347. { "time": 0, "angle": 0, "curve": "stepped" },
  2348. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2349. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2350. { "time": 2.2, "angle": 0, "curve": "stepped" },
  2351. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2352. { "time": 3, "angle": 0 }
  2353. ],
  2354. "translate": [
  2355. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2356. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2357. { "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
  2358. { "time": 2.2, "x": 0, "y": 0, "curve": "stepped" },
  2359. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2360. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2361. { "time": 3, "x": 0, "y": 0 }
  2362. ],
  2363. "scale": [
  2364. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2365. { "time": 0.1333, "x": 1, "y": 1 },
  2366. { "time": 0.2333, "x": 0.394, "y": 1, "curve": "stepped" },
  2367. { "time": 2.2, "x": 0.394, "y": 1 },
  2368. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2369. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2370. { "time": 3, "x": 1, "y": 1 }
  2371. ]
  2372. },
  2373. "bone27": {
  2374. "rotate": [
  2375. { "time": 0, "angle": 0, "curve": "stepped" },
  2376. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2377. { "time": 0.2333, "angle": 0, "curve": "stepped" },
  2378. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2379. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2380. { "time": 3, "angle": 0 }
  2381. ],
  2382. "translate": [
  2383. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2384. { "time": 0.1333, "x": 0, "y": 0 },
  2385. { "time": 0.2333, "x": -3.19, "y": 0.27, "curve": "stepped" },
  2386. { "time": 2.1667, "x": -3.19, "y": 0.27 },
  2387. { "time": 2.3333, "x": 0, "y": 0, "curve": "stepped" },
  2388. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2389. { "time": 3, "x": 0, "y": 0 }
  2390. ],
  2391. "scale": [
  2392. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2393. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2394. { "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
  2395. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2396. { "time": 2.3333, "x": 1, "y": 1, "curve": "stepped" },
  2397. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2398. { "time": 3, "x": 1, "y": 1 }
  2399. ]
  2400. },
  2401. "bone28": {
  2402. "rotate": [
  2403. { "time": 0, "angle": 11.4, "curve": "stepped" },
  2404. { "time": 0.1333, "angle": 11.4 },
  2405. { "time": 0.5, "angle": 0.28 },
  2406. { "time": 1.0667, "angle": -16.99 },
  2407. { "time": 1.6, "angle": 0.28 },
  2408. { "time": 2.1667, "angle": -17.41 },
  2409. { "time": 2.6, "angle": 0.28 },
  2410. { "time": 3, "angle": 11.4 }
  2411. ],
  2412. "translate": [
  2413. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2414. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2415. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2416. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2417. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2418. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2419. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2420. { "time": 3, "x": 0, "y": 0 }
  2421. ],
  2422. "scale": [
  2423. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2424. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2425. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2426. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2427. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2428. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2429. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2430. { "time": 3, "x": 1, "y": 1 }
  2431. ]
  2432. },
  2433. "bone29": {
  2434. "rotate": [
  2435. { "time": 0, "angle": 0, "curve": "stepped" },
  2436. { "time": 0.1333, "angle": 0 },
  2437. { "time": 0.5, "angle": -8.49 },
  2438. { "time": 1.0667, "angle": -31.06 },
  2439. { "time": 1.6, "angle": -8.49 },
  2440. { "time": 2.1667, "angle": -29.16 },
  2441. { "time": 2.6, "angle": -8.49 },
  2442. { "time": 3, "angle": 0 }
  2443. ],
  2444. "translate": [
  2445. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2446. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2447. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2448. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2449. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2450. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2451. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2452. { "time": 3, "x": 0, "y": 0 }
  2453. ],
  2454. "scale": [
  2455. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2456. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2457. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2458. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2459. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2460. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2461. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2462. { "time": 3, "x": 1, "y": 1 }
  2463. ]
  2464. },
  2465. "bone30": {
  2466. "rotate": [
  2467. { "time": 0, "angle": 0, "curve": "stepped" },
  2468. { "time": 0.1333, "angle": 0 },
  2469. { "time": 0.3333, "angle": 2.73 },
  2470. { "time": 0.5, "angle": -32.85 },
  2471. { "time": 1.0667, "angle": -15.86 },
  2472. { "time": 1.6, "angle": -32.85 },
  2473. { "time": 2.1667, "angle": -15.86 },
  2474. { "time": 2.6, "angle": -32.85 },
  2475. { "time": 3, "angle": 0 }
  2476. ],
  2477. "translate": [
  2478. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2479. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2480. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2481. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2482. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2483. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2484. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2485. { "time": 3, "x": 0, "y": 0 }
  2486. ],
  2487. "scale": [
  2488. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2489. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2490. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2491. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2492. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2493. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2494. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2495. { "time": 3, "x": 1, "y": 1 }
  2496. ]
  2497. },
  2498. "bone31": {
  2499. "rotate": [
  2500. { "time": 0, "angle": 0 },
  2501. { "time": 0.1333, "angle": 5.42 },
  2502. { "time": 0.5, "angle": 14.76 },
  2503. { "time": 1.0667, "angle": 26.94 },
  2504. { "time": 1.6, "angle": 14.76 },
  2505. { "time": 2.1667, "angle": 26.94 },
  2506. { "time": 2.6, "angle": 14.76 },
  2507. { "time": 3, "angle": 0 }
  2508. ],
  2509. "translate": [
  2510. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2511. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2512. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2513. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2514. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2515. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2516. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2517. { "time": 3, "x": 0, "y": 0 }
  2518. ],
  2519. "scale": [
  2520. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2521. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2522. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2523. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2524. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2525. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2526. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2527. { "time": 3, "x": 1, "y": 1 }
  2528. ]
  2529. },
  2530. "bone32": {
  2531. "rotate": [
  2532. { "time": 0, "angle": 0 },
  2533. { "time": 0.1333, "angle": -16.87 },
  2534. { "time": 0.5, "angle": -0.1 },
  2535. { "time": 1.0667, "angle": 9.44 },
  2536. { "time": 1.6, "angle": -0.1 },
  2537. { "time": 2.1667, "angle": 9.44 },
  2538. { "time": 2.6, "angle": -0.1 },
  2539. { "time": 3, "angle": 0 }
  2540. ],
  2541. "translate": [
  2542. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2543. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2544. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2545. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2546. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2547. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2548. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2549. { "time": 3, "x": 0, "y": 0 }
  2550. ],
  2551. "scale": [
  2552. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2553. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2554. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2555. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2556. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2557. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2558. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2559. { "time": 3, "x": 1, "y": 1 }
  2560. ]
  2561. },
  2562. "bone33": {
  2563. "rotate": [
  2564. { "time": 0, "angle": 0, "curve": "stepped" },
  2565. { "time": 0.1333, "angle": 0 },
  2566. { "time": 0.5, "angle": 41.35 },
  2567. { "time": 1.0667, "angle": 20.76 },
  2568. { "time": 1.6, "angle": 41.35 },
  2569. { "time": 2.1667, "angle": 20.76 },
  2570. { "time": 2.6, "angle": 41.35 },
  2571. { "time": 3, "angle": 0 }
  2572. ],
  2573. "translate": [
  2574. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2575. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2576. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2577. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2578. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2579. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2580. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2581. { "time": 3, "x": 0, "y": 0 }
  2582. ],
  2583. "scale": [
  2584. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2585. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2586. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2587. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2588. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2589. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2590. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2591. { "time": 3, "x": 1, "y": 1 }
  2592. ]
  2593. },
  2594. "bone34": {
  2595. "rotate": [
  2596. { "time": 0, "angle": 0, "curve": "stepped" },
  2597. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2598. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2599. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2600. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2601. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2602. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2603. { "time": 3, "angle": 0 }
  2604. ],
  2605. "translate": [
  2606. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2607. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2608. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2609. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2610. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2611. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2612. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2613. { "time": 3, "x": 0, "y": 0 }
  2614. ],
  2615. "scale": [
  2616. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2617. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2618. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2619. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2620. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2621. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2622. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2623. { "time": 3, "x": 1, "y": 1 }
  2624. ]
  2625. },
  2626. "bone35": {
  2627. "rotate": [
  2628. { "time": 0, "angle": 0, "curve": "stepped" },
  2629. { "time": 0.1333, "angle": 0 },
  2630. { "time": 0.5, "angle": -0.53 },
  2631. { "time": 1.0667, "angle": 6.97 },
  2632. { "time": 1.6, "angle": -0.53 },
  2633. { "time": 2.1667, "angle": 6.97 },
  2634. { "time": 2.6, "angle": -0.53 },
  2635. { "time": 3, "angle": 0 }
  2636. ],
  2637. "translate": [
  2638. { "time": 0, "x": 0, "y": 0 },
  2639. { "time": 0.1333, "x": -1, "y": 0.12 },
  2640. { "time": 0.5, "x": 2.53, "y": -0.33, "curve": "stepped" },
  2641. { "time": 1.0667, "x": 2.53, "y": -0.33, "curve": "stepped" },
  2642. { "time": 1.6, "x": 2.53, "y": -0.33, "curve": "stepped" },
  2643. { "time": 2.1667, "x": 2.53, "y": -0.33, "curve": "stepped" },
  2644. { "time": 2.6, "x": 2.53, "y": -0.33 },
  2645. { "time": 3, "x": 0, "y": 0 }
  2646. ],
  2647. "scale": [
  2648. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2649. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2650. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2651. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2652. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2653. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2654. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2655. { "time": 3, "x": 1, "y": 1 }
  2656. ]
  2657. },
  2658. "bone36": {
  2659. "rotate": [
  2660. { "time": 0, "angle": 0, "curve": "stepped" },
  2661. { "time": 0.1333, "angle": 0 },
  2662. { "time": 0.5, "angle": -6.82 },
  2663. { "time": 1.0667, "angle": -1.12 },
  2664. { "time": 1.6, "angle": -6.82 },
  2665. { "time": 2.1667, "angle": -1.12 },
  2666. { "time": 2.6, "angle": -6.82 },
  2667. { "time": 3, "angle": 0 }
  2668. ],
  2669. "translate": [
  2670. { "time": 0, "x": 0, "y": 0 },
  2671. { "time": 0.1333, "x": 1.18, "y": -0.03 },
  2672. { "time": 0.5, "x": -0.74, "y": 0.11, "curve": "stepped" },
  2673. { "time": 1.6, "x": -0.74, "y": 0.11, "curve": "stepped" },
  2674. { "time": 2.6, "x": -0.74, "y": 0.11 },
  2675. { "time": 3, "x": 0, "y": 0 }
  2676. ],
  2677. "scale": [
  2678. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2679. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2680. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2681. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2682. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2683. { "time": 3, "x": 1, "y": 1 }
  2684. ]
  2685. },
  2686. "bone37": {
  2687. "rotate": [
  2688. { "time": 0, "angle": 0, "curve": "stepped" },
  2689. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2690. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2691. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2692. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2693. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2694. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2695. { "time": 3, "angle": 0 }
  2696. ],
  2697. "translate": [
  2698. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2699. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2700. { "time": 0.5, "x": 0, "y": 0 },
  2701. { "time": 1.0667, "x": -0.07, "y": 1.05 },
  2702. { "time": 1.6, "x": 0, "y": 0 },
  2703. { "time": 2.1667, "x": -0.07, "y": 1.05 },
  2704. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2705. { "time": 3, "x": 0, "y": 0 }
  2706. ],
  2707. "scale": [
  2708. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2709. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2710. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2711. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2712. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2713. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2714. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2715. { "time": 3, "x": 1, "y": 1 }
  2716. ]
  2717. },
  2718. "bone38": {
  2719. "rotate": [
  2720. { "time": 0, "angle": 0, "curve": "stepped" },
  2721. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2722. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2723. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2724. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2725. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2726. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2727. { "time": 3, "angle": 0 }
  2728. ],
  2729. "translate": [
  2730. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2731. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2732. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2733. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2734. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2735. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2736. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2737. { "time": 3, "x": 0, "y": 0 }
  2738. ],
  2739. "scale": [
  2740. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2741. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2742. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2743. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2744. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2745. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2746. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2747. { "time": 3, "x": 1, "y": 1 }
  2748. ]
  2749. },
  2750. "bone39": {
  2751. "rotate": [
  2752. { "time": 0, "angle": 0, "curve": "stepped" },
  2753. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2754. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2755. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2756. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2757. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2758. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2759. { "time": 3, "angle": 0 }
  2760. ],
  2761. "translate": [
  2762. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2763. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2764. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2765. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2766. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2767. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2768. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2769. { "time": 3, "x": 0, "y": 0 }
  2770. ],
  2771. "scale": [
  2772. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2773. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2774. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2775. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2776. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2777. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2778. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2779. { "time": 3, "x": 1, "y": 1 }
  2780. ]
  2781. },
  2782. "bone40": {
  2783. "rotate": [
  2784. { "time": 0, "angle": 0 },
  2785. { "time": 0.1333, "angle": 351.46 },
  2786. { "time": 0.5, "angle": -29.02 },
  2787. { "time": 1.0667, "angle": 334.32 },
  2788. { "time": 1.6, "angle": -29.02 },
  2789. { "time": 2.1667, "angle": 334.32 },
  2790. { "time": 2.5, "angle": 331.46 },
  2791. { "time": 3, "angle": 0 }
  2792. ],
  2793. "translate": [
  2794. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2795. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2796. { "time": 0.5, "x": 0, "y": 0 },
  2797. { "time": 1.0667, "x": -1.2, "y": 0.6 },
  2798. { "time": 1.6, "x": 0, "y": 0 },
  2799. { "time": 2.1667, "x": -1.2, "y": 0.6 },
  2800. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2801. { "time": 3, "x": 0, "y": 0 }
  2802. ],
  2803. "scale": [
  2804. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2805. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2806. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2807. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2808. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2809. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2810. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2811. { "time": 3, "x": 1, "y": 1 }
  2812. ]
  2813. },
  2814. "bone41": {
  2815. "rotate": [
  2816. { "time": 0, "angle": 0 },
  2817. { "time": 0.1333, "angle": 23.76 },
  2818. { "time": 0.5, "angle": 87.6 },
  2819. { "time": 1.0667, "angle": 78.13 },
  2820. { "time": 1.6, "angle": 87.6 },
  2821. { "time": 2.1667, "angle": 78.13 },
  2822. { "time": 2.5, "angle": 87.6 },
  2823. { "time": 2.7333, "angle": 17.63 },
  2824. { "time": 3, "angle": 0 }
  2825. ],
  2826. "translate": [
  2827. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2828. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2829. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2830. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2831. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2832. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2833. { "time": 2.5, "x": 0, "y": 0, "curve": "stepped" },
  2834. { "time": 3, "x": 0, "y": 0 }
  2835. ],
  2836. "scale": [
  2837. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2838. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2839. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2840. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2841. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2842. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2843. { "time": 2.5, "x": 1, "y": 1, "curve": "stepped" },
  2844. { "time": 3, "x": 1, "y": 1 }
  2845. ]
  2846. },
  2847. "bone42": {
  2848. "rotate": [
  2849. { "time": 0, "angle": 0, "curve": "stepped" },
  2850. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2851. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2852. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2853. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2854. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2855. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2856. { "time": 3, "angle": 0 }
  2857. ],
  2858. "translate": [
  2859. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2860. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2861. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2862. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2863. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2864. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2865. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2866. { "time": 3, "x": 0, "y": 0 }
  2867. ],
  2868. "scale": [
  2869. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2870. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2871. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2872. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2873. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2874. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2875. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2876. { "time": 3, "x": 1, "y": 1 }
  2877. ]
  2878. },
  2879. "bone43": {
  2880. "rotate": [
  2881. { "time": 0, "angle": 0, "curve": "stepped" },
  2882. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2883. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2884. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2885. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2886. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2887. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2888. { "time": 3, "angle": 0 }
  2889. ],
  2890. "translate": [
  2891. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2892. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2893. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2894. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2895. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2896. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2897. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2898. { "time": 3, "x": 0, "y": 0 }
  2899. ],
  2900. "scale": [
  2901. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2902. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2903. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2904. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2905. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2906. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2907. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2908. { "time": 3, "x": 1, "y": 1 }
  2909. ]
  2910. },
  2911. "bone44": {
  2912. "rotate": [
  2913. { "time": 0, "angle": 0, "curve": "stepped" },
  2914. { "time": 0.1333, "angle": 0, "curve": "stepped" },
  2915. { "time": 0.5, "angle": 0, "curve": "stepped" },
  2916. { "time": 1.0667, "angle": 0, "curve": "stepped" },
  2917. { "time": 1.6, "angle": 0, "curve": "stepped" },
  2918. { "time": 2.1667, "angle": 0, "curve": "stepped" },
  2919. { "time": 2.6, "angle": 0, "curve": "stepped" },
  2920. { "time": 3, "angle": 0 }
  2921. ],
  2922. "translate": [
  2923. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  2924. { "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
  2925. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  2926. { "time": 1.0667, "x": 0, "y": 0, "curve": "stepped" },
  2927. { "time": 1.6, "x": 0, "y": 0, "curve": "stepped" },
  2928. { "time": 2.1667, "x": 0, "y": 0, "curve": "stepped" },
  2929. { "time": 2.6, "x": 0, "y": 0, "curve": "stepped" },
  2930. { "time": 3, "x": 0, "y": 0 }
  2931. ],
  2932. "scale": [
  2933. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  2934. { "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
  2935. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  2936. { "time": 1.0667, "x": 1, "y": 1, "curve": "stepped" },
  2937. { "time": 1.6, "x": 1, "y": 1, "curve": "stepped" },
  2938. { "time": 2.1667, "x": 1, "y": 1, "curve": "stepped" },
  2939. { "time": 2.6, "x": 1, "y": 1, "curve": "stepped" },
  2940. { "time": 3, "x": 1, "y": 1 }
  2941. ]
  2942. }
  2943. },
  2944. "deform": {
  2945. "default": {
  2946. "qunzi": {
  2947. "qunzi": [
  2948. { "time": 0, "curve": "stepped" },
  2949. { "time": 0.1333, "curve": "stepped" },
  2950. { "time": 3 }
  2951. ]
  2952. },
  2953. "shuyao": {
  2954. "shuyao": [
  2955. {
  2956. "time": 0,
  2957. "offset": 6,
  2958. "vertices": [ 3.31154, 0.15052 ]
  2959. },
  2960. {
  2961. "time": 0.1333,
  2962. "vertices": [ -2.20572, -0.10025, 0, 0, -2.20572, -0.10025, 1.10582, 0.05027, 0, 0, -2.20572, -0.10025 ]
  2963. },
  2964. {
  2965. "time": 0.5,
  2966. "vertices": [ 2.77454, -0.78684, 0, 0, 3.07824, -0.77303, 3.38743, -1.51976, 0, 0, 1.74613, 1.7531 ]
  2967. },
  2968. {
  2969. "time": 1.0667,
  2970. "vertices": [ 3.75639, 0.95554, -0.09628, 2.11781, 1.15294, -0.43611, 2.49214, -0.49937, 0.26951, 3.40776, 1.41881, 4.28484, 0.14431, 1.49209 ]
  2971. },
  2972. {
  2973. "time": 1.6,
  2974. "vertices": [ 2.77454, -0.78684, 0, 0, 3.07824, -0.77303, 3.38743, -1.51976, 0, 0, 1.74613, 1.7531 ]
  2975. },
  2976. {
  2977. "time": 2.1667,
  2978. "vertices": [ 3.75639, 0.95554, -0.09628, 2.11781, 1.15294, -0.43611, 2.49214, -0.49937, 0.26951, 3.40776, 1.41881, 4.28484, 0.14431, 1.49209 ]
  2979. },
  2980. {
  2981. "time": 2.6,
  2982. "vertices": [ 2.77454, -0.78684, 0, 0, 3.07824, -0.77303, 3.38743, -1.51976, 0, 0, 1.74613, 1.7531 ]
  2983. },
  2984. {
  2985. "time": 3,
  2986. "offset": 6,
  2987. "vertices": [ 3.31154, 0.15052 ]
  2988. }
  2989. ]
  2990. },
  2991. "toufa8": {
  2992. "toufa8": [
  2993. { "time": 0 },
  2994. {
  2995. "time": 0.1333,
  2996. "vertices": [ -1.63454, 0.06891, -2.0432, 0.08615 ]
  2997. },
  2998. {
  2999. "time": 0.5,
  3000. "vertices": [ 3.61739, -2.47457, 6.29456, -1.01181 ]
  3001. },
  3002. {
  3003. "time": 1.0667,
  3004. "vertices": [ 1.98846, 3.99902, 1.31239, 1.81056 ]
  3005. },
  3006. {
  3007. "time": 1.6,
  3008. "vertices": [ 0.15852, -3.24708, 3.08467, -0.11665 ]
  3009. },
  3010. {
  3011. "time": 2.1667,
  3012. "vertices": [ 1.98846, 3.99902, 1.31239, 1.81056 ]
  3013. },
  3014. {
  3015. "time": 2.6,
  3016. "vertices": [ 0.15852, -3.24708, 3.08467, -0.11665 ]
  3017. },
  3018. { "time": 3 }
  3019. ]
  3020. },
  3021. "xiong": {
  3022. "xiong": [
  3023. {
  3024. "time": 0,
  3025. "offset": 2,
  3026. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ],
  3027. "curve": "stepped"
  3028. },
  3029. {
  3030. "time": 0.1333,
  3031. "offset": 2,
  3032. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ],
  3033. "curve": "stepped"
  3034. },
  3035. {
  3036. "time": 3,
  3037. "offset": 2,
  3038. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  3039. }
  3040. ]
  3041. }
  3042. }
  3043. }
  3044. },
  3045. "stand3": {
  3046. "slots": {
  3047. "biyan": {
  3048. "attachment": [
  3049. { "time": 0, "name": null },
  3050. { "time": 0.1, "name": "biyan" },
  3051. { "time": 1.0333, "name": null },
  3052. { "time": 1.5667, "name": null }
  3053. ]
  3054. },
  3055. "love": {
  3056. "color": [
  3057. { "time": 0, "color": "ffffff00" },
  3058. { "time": 0.1667, "color": "ffffffff", "curve": "stepped" },
  3059. { "time": 0.8333, "color": "ffffffff" },
  3060. { "time": 1, "color": "ffffff00" }
  3061. ]
  3062. },
  3063. "love2": {
  3064. "color": [
  3065. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3066. { "time": 0.2333, "color": "ffffff00" },
  3067. { "time": 0.5, "color": "ffffffff", "curve": "stepped" },
  3068. { "time": 1.3, "color": "ffffffff" },
  3069. { "time": 1.4667, "color": "ffffff00" }
  3070. ]
  3071. },
  3072. "love3": {
  3073. "color": [
  3074. { "time": 0, "color": "ffffff00", "curve": "stepped" },
  3075. { "time": 0.3333, "color": "ffffff00" },
  3076. { "time": 0.6, "color": "ffffffff", "curve": "stepped" },
  3077. { "time": 1.4, "color": "ffffffff" },
  3078. { "time": 1.5667, "color": "ffffff00" }
  3079. ]
  3080. },
  3081. "youyan": {
  3082. "attachment": [
  3083. { "time": 0.1, "name": null },
  3084. { "time": 1.0333, "name": "youyan" }
  3085. ]
  3086. },
  3087. "zuoyan": {
  3088. "attachment": [
  3089. { "time": 0.1, "name": null },
  3090. { "time": 1.0333, "name": "zuoyan" }
  3091. ]
  3092. }
  3093. },
  3094. "bones": {
  3095. "bone26": {
  3096. "rotate": [
  3097. { "time": 0, "angle": 0, "curve": "stepped" },
  3098. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3099. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3100. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3101. { "time": 1, "angle": 0, "curve": "stepped" },
  3102. { "time": 1.5667, "angle": 0 }
  3103. ],
  3104. "translate": [
  3105. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3106. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3107. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3108. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3109. { "time": 1.5667, "x": 0, "y": 0 }
  3110. ],
  3111. "scale": [
  3112. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3113. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3114. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3115. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3116. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3117. { "time": 1.5667, "x": 1, "y": 1 }
  3118. ]
  3119. },
  3120. "root": {
  3121. "rotate": [
  3122. { "time": 0, "angle": 0 }
  3123. ],
  3124. "translate": [
  3125. { "time": 0, "x": 0, "y": 0 }
  3126. ],
  3127. "scale": [
  3128. { "time": 0, "x": 0.65, "y": 0.65 }
  3129. ]
  3130. },
  3131. "bone": {
  3132. "rotate": [
  3133. { "time": 0, "angle": 0, "curve": "stepped" },
  3134. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3135. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3136. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3137. { "time": 1, "angle": 0, "curve": "stepped" },
  3138. { "time": 1.5667, "angle": 0 }
  3139. ],
  3140. "translate": [
  3141. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3142. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3143. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3144. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3145. { "time": 1.5667, "x": 0, "y": 0 }
  3146. ],
  3147. "scale": [
  3148. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3149. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3150. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3151. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3152. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3153. { "time": 1.5667, "x": 1, "y": 1 }
  3154. ]
  3155. },
  3156. "bone2": {
  3157. "rotate": [
  3158. { "time": 0, "angle": 0, "curve": "stepped" },
  3159. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3160. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3161. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3162. { "time": 1, "angle": 0, "curve": "stepped" },
  3163. { "time": 1.5667, "angle": 0 }
  3164. ],
  3165. "translate": [
  3166. { "time": 0, "x": 0, "y": 0 },
  3167. { "time": 0.2667, "x": 3.37, "y": -0.15 },
  3168. { "time": 0.5, "x": 3.24, "y": -2.94, "curve": "stepped" },
  3169. { "time": 0.7333, "x": 3.24, "y": -2.94, "curve": "stepped" },
  3170. { "time": 1, "x": 3.24, "y": -2.94 },
  3171. { "time": 1.2, "x": 0, "y": 0 }
  3172. ],
  3173. "scale": [
  3174. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3175. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3176. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3177. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3178. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3179. { "time": 1.5667, "x": 1, "y": 1 }
  3180. ]
  3181. },
  3182. "bone3": {
  3183. "rotate": [
  3184. { "time": 0, "angle": 0, "curve": "stepped" },
  3185. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3186. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3187. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3188. { "time": 1, "angle": 0, "curve": "stepped" },
  3189. { "time": 1.5667, "angle": 0 }
  3190. ],
  3191. "translate": [
  3192. { "time": 0, "x": 0, "y": 0 },
  3193. { "time": 0.2667, "x": 1.42, "y": -0.06 },
  3194. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3195. { "time": 1.5667, "x": 0, "y": 0 }
  3196. ],
  3197. "scale": [
  3198. { "time": 0, "x": 1, "y": 1 },
  3199. { "time": 0.1, "x": 1.03, "y": 1 },
  3200. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3201. { "time": 1.5667, "x": 1, "y": 1 }
  3202. ]
  3203. },
  3204. "bone4": {
  3205. "rotate": [
  3206. { "time": 0, "angle": 0, "curve": "stepped" },
  3207. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3208. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3209. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3210. { "time": 1, "angle": 0, "curve": "stepped" },
  3211. { "time": 1.5667, "angle": 0 }
  3212. ],
  3213. "translate": [
  3214. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3215. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3216. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3217. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3218. { "time": 1.5667, "x": 0, "y": 0 }
  3219. ],
  3220. "scale": [
  3221. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3222. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3223. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3224. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3225. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3226. { "time": 1.5667, "x": 1, "y": 1 }
  3227. ]
  3228. },
  3229. "bone5": {
  3230. "rotate": [
  3231. { "time": 0, "angle": 0, "curve": "stepped" },
  3232. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3233. { "time": 0.5, "angle": 0 },
  3234. { "time": 0.7333, "angle": 2.58, "curve": "stepped" },
  3235. { "time": 1, "angle": 2.58 },
  3236. { "time": 1.5667, "angle": 0 }
  3237. ],
  3238. "translate": [
  3239. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3240. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3241. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3242. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3243. { "time": 1.5667, "x": 0, "y": 0 }
  3244. ],
  3245. "scale": [
  3246. { "time": 0, "x": 1, "y": 1 },
  3247. { "time": 0.2667, "x": 1.029, "y": 1 },
  3248. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3249. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3250. { "time": 1.5667, "x": 1, "y": 1 }
  3251. ]
  3252. },
  3253. "bone6": {
  3254. "rotate": [
  3255. { "time": 0, "angle": 0, "curve": "stepped" },
  3256. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3257. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3258. { "time": 0.7333, "angle": 0 },
  3259. { "time": 1, "angle": 7.37 },
  3260. { "time": 1.5667, "angle": 0 }
  3261. ],
  3262. "translate": [
  3263. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3264. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3265. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3266. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3267. { "time": 1.5667, "x": 0, "y": 0 }
  3268. ],
  3269. "scale": [
  3270. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3271. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3272. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3273. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3274. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3275. { "time": 1.5667, "x": 1, "y": 1 }
  3276. ]
  3277. },
  3278. "bone7": {
  3279. "rotate": [
  3280. { "time": 0, "angle": 0 },
  3281. { "time": 0.5, "angle": -13.31 },
  3282. { "time": 0.7333, "angle": -9.05 },
  3283. { "time": 1, "angle": -9.62 },
  3284. { "time": 1.5667, "angle": 0 }
  3285. ],
  3286. "translate": [
  3287. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3288. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3289. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3290. { "time": 1.5667, "x": 0, "y": 0 }
  3291. ],
  3292. "scale": [
  3293. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3294. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3295. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3296. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3297. { "time": 1.5667, "x": 1, "y": 1 }
  3298. ]
  3299. },
  3300. "bone8": {
  3301. "rotate": [
  3302. { "time": 0, "angle": 0 },
  3303. { "time": 0.5, "angle": -18.55 },
  3304. { "time": 0.7333, "angle": -12.61, "curve": "stepped" },
  3305. { "time": 1, "angle": -12.61 },
  3306. { "time": 1.5667, "angle": 0 }
  3307. ],
  3308. "translate": [
  3309. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3310. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3311. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3312. { "time": 1.5667, "x": 0, "y": 0 }
  3313. ],
  3314. "scale": [
  3315. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3316. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3317. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3318. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3319. { "time": 1.5667, "x": 1, "y": 1 }
  3320. ]
  3321. },
  3322. "bone9": {
  3323. "rotate": [
  3324. { "time": 0, "angle": 0, "curve": "stepped" },
  3325. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3326. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3327. { "time": 0.7333, "angle": 0 },
  3328. { "time": 1, "angle": 1.06 },
  3329. { "time": 1.5667, "angle": 0 }
  3330. ],
  3331. "translate": [
  3332. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3333. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3334. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3335. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3336. { "time": 1.5667, "x": 0, "y": 0 }
  3337. ],
  3338. "scale": [
  3339. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3340. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3341. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3342. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3343. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3344. { "time": 1.5667, "x": 1, "y": 1 }
  3345. ]
  3346. },
  3347. "bone10": {
  3348. "rotate": [
  3349. { "time": 0, "angle": 0 },
  3350. { "time": 0.5, "angle": -15.81 },
  3351. { "time": 0.7333, "angle": -10.75, "curve": "stepped" },
  3352. { "time": 1, "angle": -10.75 },
  3353. { "time": 1.5667, "angle": 0 }
  3354. ],
  3355. "translate": [
  3356. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3357. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3358. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3359. { "time": 1.5667, "x": 0, "y": 0 }
  3360. ],
  3361. "scale": [
  3362. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3363. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3364. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3365. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3366. { "time": 1.5667, "x": 1, "y": 1 }
  3367. ]
  3368. },
  3369. "bone11": {
  3370. "rotate": [
  3371. { "time": 0, "angle": 0 },
  3372. { "time": 0.5, "angle": -13.04 },
  3373. { "time": 0.7333, "angle": -8.86, "curve": "stepped" },
  3374. { "time": 1, "angle": -8.86 },
  3375. { "time": 1.5667, "angle": 0 }
  3376. ],
  3377. "translate": [
  3378. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3379. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3380. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3381. { "time": 1.5667, "x": 0, "y": 0 }
  3382. ],
  3383. "scale": [
  3384. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3385. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3386. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3387. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3388. { "time": 1.5667, "x": 1, "y": 1 }
  3389. ]
  3390. },
  3391. "bone12": {
  3392. "rotate": [
  3393. { "time": 0, "angle": 0, "curve": "stepped" },
  3394. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3395. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3396. { "time": 0.7333, "angle": 0 },
  3397. { "time": 1, "angle": 2.11 },
  3398. { "time": 1.5667, "angle": 0 }
  3399. ],
  3400. "translate": [
  3401. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3402. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3403. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3404. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3405. { "time": 1.5667, "x": 0, "y": 0 }
  3406. ],
  3407. "scale": [
  3408. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3409. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3410. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3411. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3412. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3413. { "time": 1.5667, "x": 1, "y": 1 }
  3414. ]
  3415. },
  3416. "bone13": {
  3417. "rotate": [
  3418. { "time": 0, "angle": 0 },
  3419. { "time": 0.5, "angle": 9.68 },
  3420. { "time": 0.7333, "angle": 6.58, "curve": "stepped" },
  3421. { "time": 1, "angle": 6.58 },
  3422. { "time": 1.5667, "angle": 0 }
  3423. ],
  3424. "translate": [
  3425. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3426. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3427. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3428. { "time": 1.5667, "x": 0, "y": 0 }
  3429. ],
  3430. "scale": [
  3431. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3432. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3433. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3434. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3435. { "time": 1.5667, "x": 1, "y": 1 }
  3436. ]
  3437. },
  3438. "bone14": {
  3439. "rotate": [
  3440. { "time": 0, "angle": 0 },
  3441. { "time": 0.5, "angle": 33.17 },
  3442. { "time": 0.7333, "angle": 22.55, "curve": "stepped" },
  3443. { "time": 1, "angle": 22.55 },
  3444. { "time": 1.5667, "angle": 0 }
  3445. ],
  3446. "translate": [
  3447. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3448. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3449. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3450. { "time": 1.5667, "x": 0, "y": 0 }
  3451. ],
  3452. "scale": [
  3453. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3454. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3455. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3456. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3457. { "time": 1.5667, "x": 1, "y": 1 }
  3458. ]
  3459. },
  3460. "bone15": {
  3461. "rotate": [
  3462. { "time": 0, "angle": 0, "curve": "stepped" },
  3463. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3464. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3465. { "time": 0.7333, "angle": 0 },
  3466. { "time": 1, "angle": -1.67 },
  3467. { "time": 1.5667, "angle": 0 }
  3468. ],
  3469. "translate": [
  3470. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3471. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3472. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3473. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3474. { "time": 1.5667, "x": 0, "y": 0 }
  3475. ],
  3476. "scale": [
  3477. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3478. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3479. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3480. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3481. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3482. { "time": 1.5667, "x": 1, "y": 1 }
  3483. ]
  3484. },
  3485. "bone16": {
  3486. "rotate": [
  3487. { "time": 0, "angle": 0 },
  3488. { "time": 0.5, "angle": 2.97 },
  3489. { "time": 0.7333, "angle": 2.02, "curve": "stepped" },
  3490. { "time": 1, "angle": 2.02 },
  3491. { "time": 1.5667, "angle": 0 }
  3492. ],
  3493. "translate": [
  3494. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3495. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3496. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3497. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3498. { "time": 1.5667, "x": 0, "y": 0 }
  3499. ],
  3500. "scale": [
  3501. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3502. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3503. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3504. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3505. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3506. { "time": 1.5667, "x": 1, "y": 1 }
  3507. ]
  3508. },
  3509. "bone17": {
  3510. "rotate": [
  3511. { "time": 0, "angle": 0 },
  3512. { "time": 0.5, "angle": 8.46 },
  3513. { "time": 0.7333, "angle": 5.75, "curve": "stepped" },
  3514. { "time": 1, "angle": 5.75 },
  3515. { "time": 1.5667, "angle": 0 }
  3516. ],
  3517. "translate": [
  3518. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3519. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3520. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3521. { "time": 1.5667, "x": 0, "y": 0 }
  3522. ],
  3523. "scale": [
  3524. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3525. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3526. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3527. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3528. { "time": 1.5667, "x": 1, "y": 1 }
  3529. ]
  3530. },
  3531. "bone18": {
  3532. "rotate": [
  3533. { "time": 0, "angle": 0, "curve": "stepped" },
  3534. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3535. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3536. { "time": 0.7333, "angle": 0 },
  3537. { "time": 1, "angle": 1.46 },
  3538. { "time": 1.5667, "angle": 0 }
  3539. ],
  3540. "translate": [
  3541. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3542. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3543. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3544. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3545. { "time": 1.5667, "x": 0, "y": 0 }
  3546. ],
  3547. "scale": [
  3548. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3549. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3550. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3551. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3552. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3553. { "time": 1.5667, "x": 1, "y": 1 }
  3554. ]
  3555. },
  3556. "bone19": {
  3557. "rotate": [
  3558. { "time": 0, "angle": 0, "curve": "stepped" },
  3559. { "time": 0.2667, "angle": 0 },
  3560. { "time": 0.5, "angle": 23.51 },
  3561. { "time": 0.7333, "angle": 15.99, "curve": "stepped" },
  3562. { "time": 1, "angle": 15.99 },
  3563. { "time": 1.5667, "angle": 0 }
  3564. ],
  3565. "translate": [
  3566. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3567. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3568. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3569. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3570. { "time": 1.5667, "x": 0, "y": 0 }
  3571. ],
  3572. "scale": [
  3573. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3574. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3575. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3576. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3577. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3578. { "time": 1.5667, "x": 1, "y": 1 }
  3579. ]
  3580. },
  3581. "bone20": {
  3582. "rotate": [
  3583. { "time": 0, "angle": 0, "curve": "stepped" },
  3584. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3585. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3586. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3587. { "time": 1, "angle": 0, "curve": "stepped" },
  3588. { "time": 1.5667, "angle": 0 }
  3589. ],
  3590. "translate": [
  3591. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3592. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3593. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3594. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3595. { "time": 1.5667, "x": 0, "y": 0 }
  3596. ],
  3597. "scale": [
  3598. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3599. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3600. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3601. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3602. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3603. { "time": 1.5667, "x": 1, "y": 1 }
  3604. ]
  3605. },
  3606. "bone21": {
  3607. "rotate": [
  3608. { "time": 0, "angle": 0, "curve": "stepped" },
  3609. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3610. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3611. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3612. { "time": 1, "angle": 0, "curve": "stepped" },
  3613. { "time": 1.5667, "angle": 0 }
  3614. ],
  3615. "translate": [
  3616. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3617. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3618. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3619. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3620. { "time": 1.5667, "x": 0, "y": 0 }
  3621. ],
  3622. "scale": [
  3623. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3624. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3625. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3626. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3627. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3628. { "time": 1.5667, "x": 1, "y": 1 }
  3629. ]
  3630. },
  3631. "bone22": {
  3632. "rotate": [
  3633. { "time": 0, "angle": 0 },
  3634. { "time": 0.5, "angle": -9.88 },
  3635. { "time": 0.7333, "angle": -6.72, "curve": "stepped" },
  3636. { "time": 1, "angle": -6.72 },
  3637. { "time": 1.5667, "angle": 0 }
  3638. ],
  3639. "translate": [
  3640. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3641. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3642. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3643. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3644. { "time": 1.5667, "x": 0, "y": 0 }
  3645. ],
  3646. "scale": [
  3647. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3648. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3649. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3650. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3651. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3652. { "time": 1.5667, "x": 1, "y": 1 }
  3653. ]
  3654. },
  3655. "bone23": {
  3656. "rotate": [
  3657. { "time": 0, "angle": 0 },
  3658. { "time": 0.5, "angle": 24.5 },
  3659. { "time": 0.7333, "angle": 16.66, "curve": "stepped" },
  3660. { "time": 1, "angle": 16.66 },
  3661. { "time": 1.5667, "angle": 0 }
  3662. ],
  3663. "translate": [
  3664. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3665. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3666. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3667. { "time": 1.5667, "x": 0, "y": 0 }
  3668. ],
  3669. "scale": [
  3670. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3671. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3672. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3673. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3674. { "time": 1.5667, "x": 1, "y": 1 }
  3675. ]
  3676. },
  3677. "bone24": {
  3678. "rotate": [
  3679. { "time": 0, "angle": 0, "curve": "stepped" },
  3680. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3681. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3682. { "time": 1, "angle": 0, "curve": "stepped" },
  3683. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3684. { "time": 1.5667, "angle": 0 }
  3685. ],
  3686. "translate": [
  3687. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3688. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3689. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3690. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3691. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3692. { "time": 1.5667, "x": 0, "y": 0 }
  3693. ],
  3694. "scale": [
  3695. { "time": 0, "x": 1, "y": 1 },
  3696. { "time": 0.1, "x": 0.464, "y": 1, "curve": "stepped" },
  3697. { "time": 0.7333, "x": 0.464, "y": 1, "curve": "stepped" },
  3698. { "time": 1, "x": 0.464, "y": 1 },
  3699. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3700. { "time": 1.5667, "x": 1, "y": 1 }
  3701. ]
  3702. },
  3703. "bone25": {
  3704. "rotate": [
  3705. { "time": 0, "angle": 0, "curve": "stepped" },
  3706. { "time": 0.1, "angle": 0, "curve": "stepped" },
  3707. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3708. { "time": 1, "angle": 0, "curve": "stepped" },
  3709. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3710. { "time": 1.5667, "angle": 0 }
  3711. ],
  3712. "translate": [
  3713. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3714. { "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
  3715. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3716. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3717. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3718. { "time": 1.5667, "x": 0, "y": 0 }
  3719. ],
  3720. "scale": [
  3721. { "time": 0, "x": 1, "y": 1 },
  3722. { "time": 0.1, "x": 0.412, "y": 1, "curve": "stepped" },
  3723. { "time": 0.7333, "x": 0.412, "y": 1, "curve": "stepped" },
  3724. { "time": 1, "x": 0.412, "y": 1 },
  3725. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3726. { "time": 1.5667, "x": 1, "y": 1 }
  3727. ],
  3728. "shear": [
  3729. { "time": 0.1, "x": 0, "y": 0 }
  3730. ]
  3731. },
  3732. "bone27": {
  3733. "rotate": [
  3734. { "time": 0, "angle": 0, "curve": "stepped" },
  3735. { "time": 0.1, "angle": 0, "curve": "stepped" },
  3736. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3737. { "time": 1, "angle": 0, "curve": "stepped" },
  3738. { "time": 1.1333, "angle": 0, "curve": "stepped" },
  3739. { "time": 1.5667, "angle": 0 }
  3740. ],
  3741. "translate": [
  3742. { "time": 0, "x": 0, "y": 0 },
  3743. { "time": 0.1, "x": -4.76, "y": 0.4, "curve": "stepped" },
  3744. { "time": 0.7333, "x": -4.76, "y": 0.4, "curve": "stepped" },
  3745. { "time": 1, "x": -4.76, "y": 0.4 },
  3746. { "time": 1.1333, "x": 0, "y": 0, "curve": "stepped" },
  3747. { "time": 1.5667, "x": 0, "y": 0 }
  3748. ],
  3749. "scale": [
  3750. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3751. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3752. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3753. { "time": 1.1333, "x": 1, "y": 1, "curve": "stepped" },
  3754. { "time": 1.5667, "x": 1, "y": 1 }
  3755. ]
  3756. },
  3757. "bone28": {
  3758. "rotate": [
  3759. { "time": 0, "angle": 11.4 },
  3760. { "time": 0.2667, "angle": -5.93 },
  3761. { "time": 0.5, "angle": -1.41 },
  3762. { "time": 0.7333, "angle": 7.29 },
  3763. { "time": 1, "angle": 9.18 },
  3764. { "time": 1.5667, "angle": 11.4 }
  3765. ],
  3766. "translate": [
  3767. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3768. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3769. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3770. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3771. { "time": 1.5667, "x": 0, "y": 0 }
  3772. ],
  3773. "scale": [
  3774. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3775. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3776. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3777. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3778. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3779. { "time": 1.5667, "x": 1, "y": 1 }
  3780. ]
  3781. },
  3782. "bone29": {
  3783. "rotate": [
  3784. { "time": 0, "angle": 0 },
  3785. { "time": 0.2667, "angle": -13.97 },
  3786. { "time": 0.5, "angle": -22.88, "curve": "stepped" },
  3787. { "time": 0.7333, "angle": -22.88 },
  3788. { "time": 1, "angle": -17.25 },
  3789. { "time": 1.5667, "angle": 0 }
  3790. ],
  3791. "translate": [
  3792. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3793. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3794. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3795. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3796. { "time": 1.5667, "x": 0, "y": 0 }
  3797. ],
  3798. "scale": [
  3799. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3800. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3801. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3802. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3803. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3804. { "time": 1.5667, "x": 1, "y": 1 }
  3805. ]
  3806. },
  3807. "bone30": {
  3808. "rotate": [
  3809. { "time": 0, "angle": 0, "curve": "stepped" },
  3810. { "time": 0.2667, "angle": 0 },
  3811. { "time": 0.5, "angle": -9.31, "curve": "stepped" },
  3812. { "time": 0.7333, "angle": -9.31, "curve": "stepped" },
  3813. { "time": 1, "angle": -9.31 },
  3814. { "time": 1.5667, "angle": 0 }
  3815. ],
  3816. "translate": [
  3817. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3818. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3819. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3820. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3821. { "time": 1.5667, "x": 0, "y": 0 }
  3822. ],
  3823. "scale": [
  3824. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3825. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3826. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3827. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3828. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3829. { "time": 1.5667, "x": 1, "y": 1 }
  3830. ]
  3831. },
  3832. "bone31": {
  3833. "rotate": [
  3834. { "time": 0, "angle": 0 },
  3835. { "time": 0.2667, "angle": 12.58 },
  3836. { "time": 0.5, "angle": 10.78 },
  3837. { "time": 0.7333, "angle": 6.07 },
  3838. { "time": 1, "angle": 5.22 },
  3839. { "time": 1.5667, "angle": 0 }
  3840. ],
  3841. "translate": [
  3842. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3843. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3844. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3845. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3846. { "time": 1.5667, "x": 0, "y": 0 }
  3847. ],
  3848. "scale": [
  3849. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3850. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3851. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3852. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3853. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3854. { "time": 1.5667, "x": 1, "y": 1 }
  3855. ]
  3856. },
  3857. "bone32": {
  3858. "rotate": [
  3859. { "time": 0, "angle": 0 },
  3860. { "time": 0.2667, "angle": 9.54 },
  3861. { "time": 0.5, "angle": 15.56, "curve": "stepped" },
  3862. { "time": 0.7333, "angle": 15.56 },
  3863. { "time": 1, "angle": 12.37 },
  3864. { "time": 1.5667, "angle": 0 }
  3865. ],
  3866. "translate": [
  3867. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3868. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3869. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3870. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3871. { "time": 1.5667, "x": 0, "y": 0 }
  3872. ],
  3873. "scale": [
  3874. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3875. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3876. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3877. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3878. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3879. { "time": 1.5667, "x": 1, "y": 1 }
  3880. ]
  3881. },
  3882. "bone33": {
  3883. "rotate": [
  3884. { "time": 0, "angle": 0, "curve": "stepped" },
  3885. { "time": 0.2667, "angle": 0 },
  3886. { "time": 0.5, "angle": 10.16, "curve": "stepped" },
  3887. { "time": 0.7333, "angle": 10.16, "curve": "stepped" },
  3888. { "time": 1, "angle": 10.16 },
  3889. { "time": 1.5667, "angle": 0 }
  3890. ],
  3891. "translate": [
  3892. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3893. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3894. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3895. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3896. { "time": 1.5667, "x": 0, "y": 0 }
  3897. ],
  3898. "scale": [
  3899. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3900. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3901. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3902. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3903. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3904. { "time": 1.5667, "x": 1, "y": 1 }
  3905. ]
  3906. },
  3907. "bone34": {
  3908. "rotate": [
  3909. { "time": 0, "angle": 0, "curve": "stepped" },
  3910. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3911. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3912. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3913. { "time": 1, "angle": 0, "curve": "stepped" },
  3914. { "time": 1.5667, "angle": 0 }
  3915. ],
  3916. "translate": [
  3917. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3918. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  3919. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3920. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3921. { "time": 1.5667, "x": 0, "y": 0 }
  3922. ],
  3923. "scale": [
  3924. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3925. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3926. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3927. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3928. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3929. { "time": 1.5667, "x": 1, "y": 1 }
  3930. ]
  3931. },
  3932. "bone35": {
  3933. "rotate": [
  3934. { "time": 0, "angle": 0, "curve": "stepped" },
  3935. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3936. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3937. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3938. { "time": 1, "angle": 0, "curve": "stepped" },
  3939. { "time": 1.5667, "angle": 0 }
  3940. ],
  3941. "translate": [
  3942. { "time": 0, "x": 0, "y": 0 },
  3943. { "time": 0.2667, "x": 0.99, "y": -0.12 },
  3944. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  3945. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  3946. { "time": 1.5667, "x": 0, "y": 0 }
  3947. ],
  3948. "scale": [
  3949. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3950. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3951. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3952. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3953. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3954. { "time": 1.5667, "x": 1, "y": 1 }
  3955. ]
  3956. },
  3957. "bone36": {
  3958. "rotate": [
  3959. { "time": 0, "angle": 0, "curve": "stepped" },
  3960. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  3961. { "time": 0.5, "angle": 0, "curve": "stepped" },
  3962. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  3963. { "time": 1, "angle": 0, "curve": "stepped" },
  3964. { "time": 1.5667, "angle": 0 }
  3965. ],
  3966. "translate": [
  3967. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3968. { "time": 0.2667, "x": 0, "y": 0 },
  3969. { "time": 0.5, "x": 1.13, "y": -0.03 },
  3970. { "time": 0.7333, "x": 0, "y": 0 },
  3971. { "time": 1, "x": 0.96, "y": -0.02 },
  3972. { "time": 1.5667, "x": 0, "y": 0 }
  3973. ],
  3974. "scale": [
  3975. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  3976. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  3977. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  3978. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  3979. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  3980. { "time": 1.5667, "x": 1, "y": 1 }
  3981. ]
  3982. },
  3983. "bone37": {
  3984. "rotate": [
  3985. { "time": 0, "angle": 0 },
  3986. { "time": 0.2667, "angle": 353.37 },
  3987. { "time": 0.5, "angle": -6.63, "curve": "stepped" },
  3988. { "time": 0.7333, "angle": -6.63, "curve": "stepped" },
  3989. { "time": 1, "angle": -6.63 },
  3990. { "time": 1.5667, "angle": 0 }
  3991. ],
  3992. "translate": [
  3993. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  3994. { "time": 0.2667, "x": 0, "y": 0 },
  3995. { "time": 0.5, "x": 2.44, "y": -0.11, "curve": "stepped" },
  3996. { "time": 0.7333, "x": 2.44, "y": -0.11, "curve": "stepped" },
  3997. { "time": 1, "x": 2.44, "y": -0.11 },
  3998. { "time": 1.5667, "x": 0, "y": 0 }
  3999. ],
  4000. "scale": [
  4001. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4002. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4003. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4004. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4005. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4006. { "time": 1.5667, "x": 1, "y": 1 }
  4007. ]
  4008. },
  4009. "bone38": {
  4010. "rotate": [
  4011. { "time": 0, "angle": 0, "curve": "stepped" },
  4012. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4013. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4014. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4015. { "time": 1, "angle": 0, "curve": "stepped" },
  4016. { "time": 1.5667, "angle": 0 }
  4017. ],
  4018. "translate": [
  4019. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4020. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4021. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4022. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4023. { "time": 1.5667, "x": 0, "y": 0 }
  4024. ],
  4025. "scale": [
  4026. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4027. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4028. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4029. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4030. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4031. { "time": 1.5667, "x": 1, "y": 1 }
  4032. ]
  4033. },
  4034. "bone39": {
  4035. "rotate": [
  4036. { "time": 0, "angle": 0 },
  4037. { "time": 0.2667, "angle": 2.97, "curve": "stepped" },
  4038. { "time": 0.5, "angle": 2.97, "curve": "stepped" },
  4039. { "time": 0.7333, "angle": 2.97, "curve": "stepped" },
  4040. { "time": 1, "angle": 2.97 },
  4041. { "time": 1.5667, "angle": 0 }
  4042. ],
  4043. "translate": [
  4044. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4045. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4046. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4047. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4048. { "time": 1.5667, "x": 0, "y": 0 }
  4049. ],
  4050. "scale": [
  4051. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4052. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4053. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4054. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4055. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4056. { "time": 1.5667, "x": 1, "y": 1 }
  4057. ]
  4058. },
  4059. "bone40": {
  4060. "rotate": [
  4061. { "time": 0, "angle": 0, "curve": "stepped" },
  4062. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4063. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4064. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4065. { "time": 1, "angle": 0, "curve": "stepped" },
  4066. { "time": 1.5667, "angle": 0 }
  4067. ],
  4068. "translate": [
  4069. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4070. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4071. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4072. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4073. { "time": 1.5667, "x": 0, "y": 0 }
  4074. ],
  4075. "scale": [
  4076. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4077. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4078. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4079. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4080. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4081. { "time": 1.5667, "x": 1, "y": 1 }
  4082. ]
  4083. },
  4084. "bone41": {
  4085. "rotate": [
  4086. { "time": 0, "angle": 0 },
  4087. { "time": 0.2667, "angle": 78.15 },
  4088. { "time": 0.5, "angle": 70.29, "curve": "stepped" },
  4089. { "time": 0.7333, "angle": 70.29, "curve": "stepped" },
  4090. { "time": 1, "angle": 70.29 },
  4091. { "time": 1.3667, "angle": 30.24 },
  4092. { "time": 1.5667, "angle": 0 }
  4093. ],
  4094. "translate": [
  4095. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4096. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4097. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4098. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4099. { "time": 1.5667, "x": 0, "y": 0 }
  4100. ],
  4101. "scale": [
  4102. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4103. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4104. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4105. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4106. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4107. { "time": 1.5667, "x": 1, "y": 1 }
  4108. ]
  4109. },
  4110. "bone42": {
  4111. "rotate": [
  4112. { "time": 0, "angle": 0, "curve": "stepped" },
  4113. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4114. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4115. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4116. { "time": 1, "angle": 0 },
  4117. { "time": 1.3667, "angle": -16.61 },
  4118. { "time": 1.5667, "angle": 0 }
  4119. ],
  4120. "translate": [
  4121. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4122. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4123. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4124. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4125. { "time": 1.5667, "x": 0, "y": 0 }
  4126. ],
  4127. "scale": [
  4128. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4129. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4130. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4131. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4132. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4133. { "time": 1.5667, "x": 1, "y": 1 }
  4134. ]
  4135. },
  4136. "bone43": {
  4137. "rotate": [
  4138. { "time": 0, "angle": 0, "curve": "stepped" },
  4139. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4140. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4141. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4142. { "time": 1, "angle": 0, "curve": "stepped" },
  4143. { "time": 1.5667, "angle": 0 }
  4144. ],
  4145. "translate": [
  4146. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4147. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4148. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4149. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4150. { "time": 1.5667, "x": 0, "y": 0 }
  4151. ],
  4152. "scale": [
  4153. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4154. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4155. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4156. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4157. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4158. { "time": 1.5667, "x": 1, "y": 1 }
  4159. ]
  4160. },
  4161. "bone44": {
  4162. "rotate": [
  4163. { "time": 0, "angle": 0, "curve": "stepped" },
  4164. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4165. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4166. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4167. { "time": 1, "angle": 0, "curve": "stepped" },
  4168. { "time": 1.5667, "angle": 0 }
  4169. ],
  4170. "translate": [
  4171. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4172. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4173. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4174. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4175. { "time": 1.5667, "x": 0, "y": 0 }
  4176. ],
  4177. "scale": [
  4178. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4179. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4180. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4181. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4182. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4183. { "time": 1.5667, "x": 1, "y": 1 }
  4184. ]
  4185. },
  4186. "bone45": {
  4187. "rotate": [
  4188. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4189. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4190. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4191. { "time": 1, "angle": 0 }
  4192. ],
  4193. "translate": [
  4194. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4195. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4196. { "time": 1, "x": 0, "y": 0 }
  4197. ],
  4198. "scale": [
  4199. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4200. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4201. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4202. { "time": 1, "x": 1, "y": 1 }
  4203. ]
  4204. },
  4205. "bone46": {
  4206. "rotate": [
  4207. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4208. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4209. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4210. { "time": 1, "angle": 0 }
  4211. ],
  4212. "translate": [
  4213. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4214. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4215. { "time": 1, "x": 0, "y": 0 }
  4216. ],
  4217. "scale": [
  4218. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4219. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4220. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4221. { "time": 1, "x": 1, "y": 1 }
  4222. ]
  4223. },
  4224. "bone47": {
  4225. "rotate": [
  4226. { "time": 0.2667, "angle": 0, "curve": "stepped" },
  4227. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4228. { "time": 0.7333, "angle": 0, "curve": "stepped" },
  4229. { "time": 1, "angle": 0 }
  4230. ],
  4231. "translate": [
  4232. { "time": 0.2667, "x": 0, "y": 0, "curve": "stepped" },
  4233. { "time": 0.7333, "x": 0, "y": 0, "curve": "stepped" },
  4234. { "time": 1, "x": 0, "y": 0 }
  4235. ],
  4236. "scale": [
  4237. { "time": 0.2667, "x": 1, "y": 1, "curve": "stepped" },
  4238. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4239. { "time": 0.7333, "x": 1, "y": 1, "curve": "stepped" },
  4240. { "time": 1, "x": 1, "y": 1 }
  4241. ]
  4242. },
  4243. "bone52": {
  4244. "rotate": [
  4245. { "time": 0, "angle": 23.52 },
  4246. { "time": 0.1667, "angle": 10.03 },
  4247. { "time": 0.6667, "angle": -7.25 },
  4248. { "time": 1, "angle": -10.84 }
  4249. ],
  4250. "translate": [
  4251. { "time": 0, "x": 5.33, "y": -8.07 },
  4252. { "time": 0.3667, "x": 6.98, "y": 78.51 },
  4253. { "time": 0.6667, "x": 16.22, "y": 112.34 },
  4254. { "time": 1, "x": 23.58, "y": 168.29 }
  4255. ],
  4256. "scale": [
  4257. { "time": 0, "x": 0.2, "y": 0.2 },
  4258. { "time": 0.3667, "x": 0.5, "y": 0.5, "curve": "stepped" },
  4259. { "time": 1, "x": 0.5, "y": 0.5 }
  4260. ]
  4261. },
  4262. "bone53": {
  4263. "rotate": [
  4264. { "time": 0.2333, "angle": 23.52 },
  4265. { "time": 0.5333, "angle": 10.03 },
  4266. { "time": 0.8333, "angle": 11.5 },
  4267. { "time": 1.1333, "angle": -0.24 },
  4268. { "time": 1.4667, "angle": -1.13 }
  4269. ],
  4270. "translate": [
  4271. { "time": 0.2333, "x": 25.97, "y": -8.95 },
  4272. { "time": 0.8333, "x": 18.8, "y": 79.69 },
  4273. { "time": 1.1333, "x": 17.65, "y": 112.24 },
  4274. { "time": 1.4667, "x": 20.37, "y": 153.53 }
  4275. ],
  4276. "scale": [
  4277. { "time": 0.2333, "x": 0.2, "y": 0.2 },
  4278. { "time": 0.8333, "x": 0.5, "y": 0.5, "curve": "stepped" },
  4279. { "time": 1.4667, "x": 0.5, "y": 0.5 }
  4280. ]
  4281. },
  4282. "bone54": {
  4283. "rotate": [
  4284. { "time": 0.3333, "angle": 2.66 }
  4285. ],
  4286. "translate": [
  4287. { "time": 0.3333, "x": 25.97, "y": -8.95 },
  4288. { "time": 0.9, "x": 20.98, "y": 71.63 },
  4289. { "time": 1.2333, "x": 17.26, "y": 107.04 },
  4290. { "time": 1.5667, "x": 9.44, "y": 141.57 }
  4291. ],
  4292. "scale": [
  4293. { "time": 0.3333, "x": 0.2, "y": 0.2 },
  4294. { "time": 0.7333, "x": 0.5, "y": 0.5, "curve": "stepped" },
  4295. { "time": 1.5667, "x": 0.5, "y": 0.5 }
  4296. ]
  4297. }
  4298. },
  4299. "deform": {
  4300. "default": {
  4301. "qunzi": {
  4302. "qunzi": [
  4303. { "time": 0, "curve": "stepped" },
  4304. { "time": 0.7333, "curve": "stepped" },
  4305. { "time": 1, "curve": "stepped" },
  4306. { "time": 1.5667 }
  4307. ]
  4308. },
  4309. "shuyao": {
  4310. "shuyao": [
  4311. {
  4312. "time": 0,
  4313. "offset": 6,
  4314. "vertices": [ 3.31154, 0.15052 ]
  4315. },
  4316. {
  4317. "time": 0.2667,
  4318. "vertices": [ 2.39452, 0.10884, 0.83235, 0.3201, 1.69025, 0.07683, 3.31154, 0.15052, 0, 0, 0, 0, 1.69025, 0.07683 ]
  4319. },
  4320. {
  4321. "time": 1.5667,
  4322. "offset": 6,
  4323. "vertices": [ 3.31154, 0.15052 ]
  4324. }
  4325. ]
  4326. },
  4327. "toufa8": {
  4328. "toufa8": [
  4329. { "time": 0 },
  4330. {
  4331. "time": 0.2667,
  4332. "offset": 1,
  4333. "vertices": [ -0.90083, 0, 0.9775, 0, 0.90083, 1.0E-5, -0.9775 ]
  4334. },
  4335. {
  4336. "time": 1,
  4337. "vertices": [ -6.40705, 4.97563, -5.05209, -0.97936, 0, 0.5034, 0, -0.54625 ]
  4338. },
  4339. { "time": 1.5667 }
  4340. ]
  4341. },
  4342. "xiong": {
  4343. "xiong": [
  4344. {
  4345. "time": 0,
  4346. "offset": 2,
  4347. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  4348. },
  4349. {
  4350. "time": 0.5,
  4351. "vertices": [ -0.98322, -0.08624, -1.73032, -0.1518, -0.98322, -0.08624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.85857, -0.07532, 0, 0, 0, 0, -0.85857, -0.07532, -0.85857, -0.07532 ]
  4352. },
  4353. {
  4354. "time": 1.5667,
  4355. "offset": 2,
  4356. "vertices": [ -0.74711, -0.06556, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12464, 0.01091, 0, 0, 0, 0, 0.12464, 0.01091, 0.12464, 0.01091 ]
  4357. }
  4358. ]
  4359. }
  4360. }
  4361. }
  4362. },
  4363. "walk1": {
  4364. "slots": {
  4365. "biyan": {
  4366. "attachment": [
  4367. { "time": 0, "name": null },
  4368. { "time": 1.3333, "name": "biyan" },
  4369. { "time": 1.4333, "name": null }
  4370. ]
  4371. },
  4372. "love": {
  4373. "color": [
  4374. { "time": 0, "color": "ffffff00" }
  4375. ]
  4376. },
  4377. "love2": {
  4378. "color": [
  4379. { "time": 0, "color": "ffffff00" }
  4380. ]
  4381. },
  4382. "love3": {
  4383. "color": [
  4384. { "time": 0, "color": "ffffff00" }
  4385. ]
  4386. },
  4387. "youtui 2": {
  4388. "attachment": [
  4389. { "time": 1.3667, "name": null }
  4390. ]
  4391. },
  4392. "youyan": {
  4393. "attachment": [
  4394. { "time": 1.3333, "name": null },
  4395. { "time": 1.4333, "name": "youyan" }
  4396. ]
  4397. },
  4398. "zuoyan": {
  4399. "attachment": [
  4400. { "time": 1.3333, "name": null },
  4401. { "time": 1.4333, "name": "zuoyan" }
  4402. ]
  4403. }
  4404. },
  4405. "bones": {
  4406. "bone26": {
  4407. "rotate": [
  4408. { "time": 0, "angle": 0, "curve": "stepped" },
  4409. { "time": 1.3333, "angle": 0 }
  4410. ],
  4411. "translate": [
  4412. { "time": 1.3, "x": 0, "y": 0 },
  4413. { "time": 1.3333, "x": -1.03, "y": 0.02 }
  4414. ],
  4415. "scale": [
  4416. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4417. { "time": 1.3333, "x": 1, "y": 1 }
  4418. ]
  4419. },
  4420. "root": {
  4421. "rotate": [
  4422. { "time": 0, "angle": 0 }
  4423. ],
  4424. "translate": [
  4425. { "time": 0, "x": 0, "y": 0 }
  4426. ],
  4427. "scale": [
  4428. { "time": 0, "x": 0.65, "y": 0.65 }
  4429. ]
  4430. },
  4431. "bone": {
  4432. "rotate": [
  4433. { "time": 0, "angle": 0, "curve": "stepped" },
  4434. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4435. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  4436. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4437. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4438. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4439. { "time": 1, "angle": 0, "curve": "stepped" },
  4440. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4441. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  4442. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4443. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4444. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4445. { "time": 2, "angle": 0 }
  4446. ],
  4447. "translate": [
  4448. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4449. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4450. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4451. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4452. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4453. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4454. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4455. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4456. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4457. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4458. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4459. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4460. { "time": 2, "x": 0, "y": 0 }
  4461. ],
  4462. "scale": [
  4463. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4464. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4465. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4466. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4467. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4468. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4469. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4470. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4471. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4472. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4473. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4474. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4475. { "time": 2, "x": 1, "y": 1 }
  4476. ]
  4477. },
  4478. "bone2": {
  4479. "rotate": [
  4480. { "time": 0, "angle": 0, "curve": "stepped" },
  4481. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4482. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4483. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4484. { "time": 1, "angle": 0, "curve": "stepped" },
  4485. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4486. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4487. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4488. { "time": 2, "angle": 0 }
  4489. ],
  4490. "translate": [
  4491. {
  4492. "time": 0,
  4493. "x": 0.07,
  4494. "y": 1.63,
  4495. "curve": [ 0.25, 0, 0.75, 1 ]
  4496. },
  4497. {
  4498. "time": 0.1667,
  4499. "x": 0,
  4500. "y": 0,
  4501. "curve": [ 0.25, 0, 0.75, 1 ]
  4502. },
  4503. {
  4504. "time": 0.5,
  4505. "x": 0.07,
  4506. "y": 1.63,
  4507. "curve": [ 0.25, 0, 0.75, 1 ]
  4508. },
  4509. {
  4510. "time": 0.6667,
  4511. "x": 0,
  4512. "y": 0,
  4513. "curve": [ 0.25, 0, 0.75, 1 ]
  4514. },
  4515. {
  4516. "time": 1,
  4517. "x": 0.07,
  4518. "y": 1.63,
  4519. "curve": [ 0.25, 0, 0.75, 1 ]
  4520. },
  4521. {
  4522. "time": 1.1667,
  4523. "x": 0,
  4524. "y": 0,
  4525. "curve": [ 0.25, 0, 0.75, 1 ]
  4526. },
  4527. {
  4528. "time": 1.5,
  4529. "x": 0.07,
  4530. "y": 1.63,
  4531. "curve": [ 0.25, 0, 0.75, 1 ]
  4532. },
  4533. {
  4534. "time": 1.6667,
  4535. "x": 0,
  4536. "y": 0,
  4537. "curve": [ 0.25, 0, 0.75, 1 ]
  4538. },
  4539. { "time": 2, "x": 0.07, "y": 1.63 }
  4540. ],
  4541. "scale": [
  4542. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4543. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4544. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4545. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4546. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4547. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4548. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4549. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4550. { "time": 2, "x": 1, "y": 1 }
  4551. ]
  4552. },
  4553. "bone3": {
  4554. "rotate": [
  4555. { "time": 0, "angle": 4.85 },
  4556. { "time": 0.5, "angle": -1.36 },
  4557. { "time": 1, "angle": 4.85 },
  4558. { "time": 1.5, "angle": -1.36 },
  4559. { "time": 2, "angle": 4.85 }
  4560. ],
  4561. "translate": [
  4562. { "time": 0, "x": 0, "y": 0 },
  4563. { "time": 0.1667, "x": -1.46, "y": 0.07 },
  4564. { "time": 0.5, "x": 0.43, "y": -0.02 },
  4565. { "time": 0.6667, "x": -1.46, "y": 0.07 },
  4566. { "time": 1, "x": 0, "y": 0 },
  4567. { "time": 1.1667, "x": -1.46, "y": 0.07 },
  4568. { "time": 1.5, "x": 0.43, "y": -0.02 },
  4569. { "time": 1.6667, "x": -1.46, "y": 0.07 },
  4570. { "time": 2, "x": 0, "y": 0 }
  4571. ],
  4572. "scale": [
  4573. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4574. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4575. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4576. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4577. { "time": 2, "x": 1, "y": 1 }
  4578. ]
  4579. },
  4580. "bone4": {
  4581. "rotate": [
  4582. { "time": 0, "angle": 0 },
  4583. { "time": 0.5, "angle": 4.44 },
  4584. { "time": 1, "angle": 0 },
  4585. { "time": 1.5, "angle": 4.44 },
  4586. { "time": 2, "angle": 0 }
  4587. ],
  4588. "translate": [
  4589. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4590. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4591. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4592. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4593. { "time": 2, "x": 0, "y": 0 }
  4594. ],
  4595. "scale": [
  4596. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4597. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4598. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4599. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4600. { "time": 2, "x": 1, "y": 1 }
  4601. ]
  4602. },
  4603. "bone5": {
  4604. "rotate": [
  4605. { "time": 0, "angle": -7.86 },
  4606. { "time": 0.5, "angle": -5.25 },
  4607. { "time": 1, "angle": -7.86 },
  4608. { "time": 1.5, "angle": -5.25 },
  4609. { "time": 2, "angle": -7.86 }
  4610. ],
  4611. "translate": [
  4612. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4613. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4614. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4615. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4616. { "time": 2, "x": 0, "y": 0 }
  4617. ],
  4618. "scale": [
  4619. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4620. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4621. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4622. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4623. { "time": 2, "x": 1, "y": 1 }
  4624. ]
  4625. },
  4626. "bone6": {
  4627. "rotate": [
  4628. { "time": 0, "angle": 0, "curve": "stepped" },
  4629. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4630. { "time": 1, "angle": 0, "curve": "stepped" },
  4631. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4632. { "time": 2, "angle": 0 }
  4633. ],
  4634. "translate": [
  4635. { "time": 0, "x": 0, "y": 0 },
  4636. { "time": 0.5, "x": -0.54, "y": -0.92 },
  4637. { "time": 1, "x": 0, "y": 0 },
  4638. { "time": 1.5, "x": -0.54, "y": -0.92 },
  4639. { "time": 2, "x": 0, "y": 0 }
  4640. ],
  4641. "scale": [
  4642. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4643. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4644. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4645. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4646. { "time": 2, "x": 1, "y": 1 }
  4647. ]
  4648. },
  4649. "bone7": {
  4650. "rotate": [
  4651. { "time": 0, "angle": -7.54 },
  4652. { "time": 0.5, "angle": 4.12 },
  4653. { "time": 1, "angle": -7.54 },
  4654. { "time": 1.5, "angle": 4.12 },
  4655. { "time": 2, "angle": -7.54 }
  4656. ],
  4657. "translate": [
  4658. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4659. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4660. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4661. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4662. { "time": 2, "x": 0, "y": 0 }
  4663. ],
  4664. "scale": [
  4665. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4666. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4667. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4668. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4669. { "time": 2, "x": 1, "y": 1 }
  4670. ]
  4671. },
  4672. "bone8": {
  4673. "rotate": [
  4674. { "time": 0, "angle": -11.53, "curve": "stepped" },
  4675. { "time": 0.1667, "angle": -11.53, "curve": "stepped" },
  4676. { "time": 0.3333, "angle": -11.53 },
  4677. { "time": 0.5, "angle": 4.16 },
  4678. { "time": 0.6667, "angle": -11.53, "curve": "stepped" },
  4679. { "time": 0.8333, "angle": -11.53, "curve": "stepped" },
  4680. { "time": 1, "angle": -11.53, "curve": "stepped" },
  4681. { "time": 1.1667, "angle": -11.53, "curve": "stepped" },
  4682. { "time": 1.3333, "angle": -11.53 },
  4683. { "time": 1.5, "angle": 4.16 },
  4684. { "time": 1.6667, "angle": -11.53, "curve": "stepped" },
  4685. { "time": 1.8333, "angle": -11.53, "curve": "stepped" },
  4686. { "time": 2, "angle": -11.53 }
  4687. ],
  4688. "translate": [
  4689. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4690. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4691. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4692. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4693. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4694. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4695. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4696. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4697. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4698. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4699. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4700. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4701. { "time": 2, "x": 0, "y": 0 }
  4702. ],
  4703. "scale": [
  4704. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4705. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4706. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4707. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4708. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4709. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4710. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4711. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4712. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4713. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4714. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4715. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4716. { "time": 2, "x": 1, "y": 1 }
  4717. ]
  4718. },
  4719. "bone9": {
  4720. "rotate": [
  4721. { "time": 0, "angle": 0, "curve": "stepped" },
  4722. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4723. { "time": 1, "angle": 0, "curve": "stepped" },
  4724. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4725. { "time": 2, "angle": 0 }
  4726. ],
  4727. "translate": [
  4728. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4729. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4730. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4731. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4732. { "time": 2, "x": 0, "y": 0 }
  4733. ],
  4734. "scale": [
  4735. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4736. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4737. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4738. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4739. { "time": 2, "x": 1, "y": 1 }
  4740. ]
  4741. },
  4742. "bone10": {
  4743. "rotate": [
  4744. { "time": 0, "angle": 0 },
  4745. { "time": 0.5, "angle": -15.62 },
  4746. { "time": 1, "angle": 0 },
  4747. { "time": 1.5, "angle": -15.62 },
  4748. { "time": 2, "angle": 0 }
  4749. ],
  4750. "translate": [
  4751. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4752. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4753. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4754. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4755. { "time": 2, "x": 0, "y": 0 }
  4756. ],
  4757. "scale": [
  4758. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4759. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4760. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4761. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4762. { "time": 2, "x": 1, "y": 1 }
  4763. ]
  4764. },
  4765. "bone11": {
  4766. "rotate": [
  4767. { "time": 0, "angle": 0 },
  4768. { "time": 0.5, "angle": -11.81 },
  4769. { "time": 1, "angle": 0 },
  4770. { "time": 1.5, "angle": -11.81 },
  4771. { "time": 2, "angle": 0 }
  4772. ],
  4773. "translate": [
  4774. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4775. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4776. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4777. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4778. { "time": 2, "x": 0, "y": 0 }
  4779. ],
  4780. "scale": [
  4781. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4782. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4783. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4784. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4785. { "time": 2, "x": 1, "y": 1 }
  4786. ]
  4787. },
  4788. "bone12": {
  4789. "rotate": [
  4790. { "time": 0, "angle": 0, "curve": "stepped" },
  4791. { "time": 0.5, "angle": 0, "curve": "stepped" },
  4792. { "time": 1, "angle": 0, "curve": "stepped" },
  4793. { "time": 1.5, "angle": 0, "curve": "stepped" },
  4794. { "time": 2, "angle": 0 }
  4795. ],
  4796. "translate": [
  4797. { "time": 0, "x": 0, "y": 0 },
  4798. { "time": 0.5, "x": -0.87, "y": -0.97 },
  4799. { "time": 1, "x": 0, "y": 0 },
  4800. { "time": 1.5, "x": -0.87, "y": -0.97 },
  4801. { "time": 2, "x": 0, "y": 0 }
  4802. ],
  4803. "scale": [
  4804. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4805. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4806. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4807. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4808. { "time": 2, "x": 1, "y": 1 }
  4809. ]
  4810. },
  4811. "bone13": {
  4812. "rotate": [
  4813. { "time": 0, "angle": 0 },
  4814. { "time": 0.5, "angle": 24.22 },
  4815. { "time": 1, "angle": 0 },
  4816. { "time": 1.5, "angle": 24.22 },
  4817. { "time": 2, "angle": 0 }
  4818. ],
  4819. "translate": [
  4820. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4821. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4822. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4823. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4824. { "time": 2, "x": 0, "y": 0 }
  4825. ],
  4826. "scale": [
  4827. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4828. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4829. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4830. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4831. { "time": 2, "x": 1, "y": 1 }
  4832. ]
  4833. },
  4834. "bone14": {
  4835. "rotate": [
  4836. { "time": 0, "angle": 0, "curve": "stepped" },
  4837. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  4838. { "time": 0.3333, "angle": 0 },
  4839. { "time": 0.5, "angle": 25.92 },
  4840. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  4841. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  4842. { "time": 1, "angle": 0, "curve": "stepped" },
  4843. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  4844. { "time": 1.3333, "angle": 0 },
  4845. { "time": 1.5, "angle": 25.92 },
  4846. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  4847. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  4848. { "time": 2, "angle": 0 }
  4849. ],
  4850. "translate": [
  4851. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4852. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  4853. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  4854. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4855. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  4856. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  4857. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4858. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  4859. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  4860. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4861. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  4862. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  4863. { "time": 2, "x": 0, "y": 0 }
  4864. ],
  4865. "scale": [
  4866. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4867. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  4868. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  4869. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4870. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  4871. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  4872. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4873. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  4874. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  4875. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4876. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  4877. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  4878. { "time": 2, "x": 1, "y": 1 }
  4879. ]
  4880. },
  4881. "bone15": {
  4882. "rotate": [
  4883. { "time": 0, "angle": -1.83 },
  4884. { "time": 0.5, "angle": -6.18 },
  4885. { "time": 1, "angle": -1.83 },
  4886. { "time": 1.5, "angle": -6.18 },
  4887. { "time": 2, "angle": -1.83 }
  4888. ],
  4889. "translate": [
  4890. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4891. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4892. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4893. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4894. { "time": 2, "x": 0, "y": 0 }
  4895. ],
  4896. "scale": [
  4897. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4898. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4899. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4900. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4901. { "time": 2, "x": 1, "y": 1 }
  4902. ]
  4903. },
  4904. "bone16": {
  4905. "rotate": [
  4906. { "time": 0, "angle": 12.51 },
  4907. { "time": 0.5, "angle": 0 },
  4908. { "time": 1, "angle": 12.51 },
  4909. { "time": 1.5, "angle": 0 },
  4910. { "time": 2, "angle": 12.51 }
  4911. ],
  4912. "translate": [
  4913. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4914. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4915. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4916. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4917. { "time": 2, "x": 0, "y": 0 }
  4918. ],
  4919. "scale": [
  4920. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4921. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4922. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4923. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4924. { "time": 2, "x": 1, "y": 1 }
  4925. ]
  4926. },
  4927. "bone17": {
  4928. "rotate": [
  4929. { "time": 0, "angle": 27.37 },
  4930. { "time": 0.5, "angle": 0 },
  4931. { "time": 1, "angle": 27.37 },
  4932. { "time": 1.5, "angle": 0 },
  4933. { "time": 2, "angle": 27.37 }
  4934. ],
  4935. "translate": [
  4936. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4937. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4938. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4939. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4940. { "time": 2, "x": 0, "y": 0 }
  4941. ],
  4942. "scale": [
  4943. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4944. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4945. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4946. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4947. { "time": 2, "x": 1, "y": 1 }
  4948. ]
  4949. },
  4950. "bone18": {
  4951. "rotate": [
  4952. { "time": 0, "angle": -0.68 },
  4953. { "time": 0.5, "angle": 4.05 },
  4954. { "time": 1, "angle": -0.68 },
  4955. { "time": 1.5, "angle": 4.05 },
  4956. { "time": 2, "angle": -0.68 }
  4957. ],
  4958. "translate": [
  4959. { "time": 0, "x": 2.49, "y": -1.05 },
  4960. { "time": 0.5, "x": 0, "y": 0 },
  4961. { "time": 1, "x": 2.49, "y": -1.05 },
  4962. { "time": 1.5, "x": 0, "y": 0 },
  4963. { "time": 2, "x": 2.49, "y": -1.05 }
  4964. ],
  4965. "scale": [
  4966. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4967. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4968. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4969. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4970. { "time": 2, "x": 1, "y": 1 }
  4971. ]
  4972. },
  4973. "bone19": {
  4974. "rotate": [
  4975. { "time": 0, "angle": 0 },
  4976. { "time": 0.5, "angle": 13.67 },
  4977. { "time": 1, "angle": 0 },
  4978. { "time": 1.5, "angle": 13.67 },
  4979. { "time": 2, "angle": 0 }
  4980. ],
  4981. "translate": [
  4982. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  4983. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  4984. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  4985. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  4986. { "time": 2, "x": 0, "y": 0 }
  4987. ],
  4988. "scale": [
  4989. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  4990. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  4991. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  4992. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  4993. { "time": 2, "x": 1, "y": 1 }
  4994. ]
  4995. },
  4996. "bone20": {
  4997. "rotate": [
  4998. { "time": 0, "angle": 0 },
  4999. { "time": 0.5, "angle": 14.34 },
  5000. { "time": 1, "angle": 0 },
  5001. { "time": 1.5, "angle": 14.34 },
  5002. { "time": 2, "angle": 0 }
  5003. ],
  5004. "translate": [
  5005. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5006. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5007. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5008. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5009. { "time": 2, "x": 0, "y": 0 }
  5010. ],
  5011. "scale": [
  5012. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5013. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5014. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5015. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5016. { "time": 2, "x": 1, "y": 1 }
  5017. ]
  5018. },
  5019. "bone21": {
  5020. "rotate": [
  5021. { "time": 0, "angle": 0, "curve": "stepped" },
  5022. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5023. { "time": 1, "angle": 0, "curve": "stepped" },
  5024. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5025. { "time": 2, "angle": 0 }
  5026. ],
  5027. "translate": [
  5028. { "time": 0, "x": 0, "y": 3.21 },
  5029. { "time": 0.5, "x": -3.25, "y": 0.72 },
  5030. { "time": 1, "x": 0, "y": 3.21 },
  5031. { "time": 1.5, "x": -3.25, "y": 0.72 },
  5032. { "time": 2, "x": 0, "y": 3.21 }
  5033. ],
  5034. "scale": [
  5035. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5036. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5037. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5038. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5039. { "time": 2, "x": 1, "y": 1 }
  5040. ]
  5041. },
  5042. "bone22": {
  5043. "rotate": [
  5044. { "time": 0, "angle": 0 },
  5045. { "time": 0.5, "angle": 328.56 },
  5046. { "time": 1, "angle": 0 },
  5047. { "time": 1.5, "angle": 328.56 },
  5048. { "time": 2, "angle": 0 }
  5049. ],
  5050. "translate": [
  5051. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5052. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5053. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5054. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5055. { "time": 2, "x": 0, "y": 0 }
  5056. ],
  5057. "scale": [
  5058. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5059. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5060. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5061. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5062. { "time": 2, "x": 1, "y": 1 }
  5063. ]
  5064. },
  5065. "bone23": {
  5066. "rotate": [
  5067. { "time": 0, "angle": 0 },
  5068. { "time": 0.5, "angle": -328.09 },
  5069. { "time": 1, "angle": 0 },
  5070. { "time": 1.5, "angle": -328.09 },
  5071. { "time": 2, "angle": 0 }
  5072. ],
  5073. "translate": [
  5074. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5075. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5076. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5077. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5078. { "time": 2, "x": 0, "y": 0 }
  5079. ],
  5080. "scale": [
  5081. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5082. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5083. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5084. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5085. { "time": 2, "x": 1, "y": 1 }
  5086. ]
  5087. },
  5088. "bone24": {
  5089. "rotate": [
  5090. { "time": 0, "angle": 0, "curve": "stepped" },
  5091. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5092. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5093. { "time": 1.4333, "angle": 0 }
  5094. ],
  5095. "translate": [
  5096. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5097. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5098. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5099. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  5100. { "time": 1.5333, "x": 0, "y": 0 }
  5101. ],
  5102. "scale": [
  5103. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5104. { "time": 1.2667, "x": 1, "y": 1 },
  5105. { "time": 1.3333, "x": 0.483, "y": 1, "curve": "stepped" },
  5106. { "time": 1.4333, "x": 0.483, "y": 1 },
  5107. { "time": 1.5333, "x": 1, "y": 1 }
  5108. ]
  5109. },
  5110. "bone25": {
  5111. "rotate": [
  5112. { "time": 0, "angle": 0, "curve": "stepped" },
  5113. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5114. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5115. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  5116. { "time": 1.5333, "angle": 0 }
  5117. ],
  5118. "translate": [
  5119. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5120. { "time": 1.2667, "x": 0, "y": 0, "curve": "stepped" },
  5121. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5122. { "time": 1.4333, "x": 0, "y": 0, "curve": "stepped" },
  5123. { "time": 1.5333, "x": 0, "y": 0 }
  5124. ],
  5125. "scale": [
  5126. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5127. { "time": 1.2667, "x": 1, "y": 1 },
  5128. { "time": 1.3333, "x": 0.413, "y": 1, "curve": "stepped" },
  5129. { "time": 1.4333, "x": 0.413, "y": 1 },
  5130. { "time": 1.5333, "x": 1, "y": 1 }
  5131. ]
  5132. },
  5133. "bone27": {
  5134. "rotate": [
  5135. { "time": 0, "angle": 0, "curve": "stepped" },
  5136. { "time": 1.2667, "angle": 0, "curve": "stepped" },
  5137. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5138. { "time": 1.4333, "angle": 0, "curve": "stepped" },
  5139. { "time": 1.5333, "angle": 0 }
  5140. ],
  5141. "translate": [
  5142. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5143. { "time": 1.2667, "x": 0, "y": 0 },
  5144. { "time": 1.3333, "x": -3.5, "y": 0.3, "curve": "stepped" },
  5145. { "time": 1.4333, "x": -3.5, "y": 0.3 },
  5146. { "time": 1.5333, "x": 0, "y": 0 }
  5147. ],
  5148. "scale": [
  5149. { "time": 0, "x": 1, "y": 1 }
  5150. ]
  5151. },
  5152. "bone28": {
  5153. "rotate": [
  5154. { "time": 0, "angle": -335.33 },
  5155. { "time": 0.1667, "angle": 17.02 },
  5156. { "time": 0.3333, "angle": 9.37 },
  5157. { "time": 0.5, "angle": 1.72 },
  5158. { "time": 0.6667, "angle": 9.37 },
  5159. { "time": 0.8333, "angle": 17.02 },
  5160. { "time": 1, "angle": -335.33 },
  5161. { "time": 1.1667, "angle": 17.02 },
  5162. { "time": 1.3333, "angle": 9.37 },
  5163. { "time": 1.5, "angle": 1.72 },
  5164. { "time": 1.6667, "angle": 9.37 },
  5165. { "time": 1.8333, "angle": 17.02 },
  5166. { "time": 2, "angle": -335.33 }
  5167. ],
  5168. "translate": [
  5169. { "time": 0, "x": -1.92, "y": -12.79 },
  5170. { "time": 0.1667, "x": -3.13, "y": -9.13 },
  5171. { "time": 0.3333, "x": -4.35, "y": -5.46 },
  5172. { "time": 0.5, "x": -5.56, "y": -1.79 },
  5173. { "time": 0.6667, "x": -4.35, "y": -5.46 },
  5174. { "time": 0.8333, "x": -3.13, "y": -9.13 },
  5175. { "time": 1, "x": -1.92, "y": -12.79 },
  5176. { "time": 1.1667, "x": -3.13, "y": -9.13 },
  5177. { "time": 1.3333, "x": -4.35, "y": -5.46 },
  5178. { "time": 1.5, "x": -5.56, "y": -1.79 },
  5179. { "time": 1.6667, "x": -4.35, "y": -5.46 },
  5180. { "time": 1.8333, "x": -3.13, "y": -9.13 },
  5181. { "time": 2, "x": -1.92, "y": -12.79 }
  5182. ],
  5183. "scale": [
  5184. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5185. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5186. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5187. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5188. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5189. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5190. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5191. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5192. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5193. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5194. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5195. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5196. { "time": 2, "x": 1, "y": 1 }
  5197. ]
  5198. },
  5199. "bone29": {
  5200. "rotate": [
  5201. { "time": 0, "angle": -21.24 },
  5202. { "time": 0.5, "angle": -7.83 },
  5203. { "time": 1, "angle": -21.24 },
  5204. { "time": 1.5, "angle": -7.83 },
  5205. { "time": 2, "angle": -21.24 }
  5206. ],
  5207. "translate": [
  5208. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5209. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5210. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5211. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5212. { "time": 2, "x": 0, "y": 0 }
  5213. ],
  5214. "scale": [
  5215. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5216. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5217. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5218. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5219. { "time": 2, "x": 1, "y": 1 }
  5220. ]
  5221. },
  5222. "bone30": {
  5223. "rotate": [
  5224. { "time": 0, "angle": 0, "curve": "stepped" },
  5225. { "time": 1, "angle": 0 }
  5226. ],
  5227. "translate": [
  5228. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5229. { "time": 1, "x": 0, "y": 0 }
  5230. ],
  5231. "scale": [
  5232. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5233. { "time": 1, "x": 1, "y": 1 }
  5234. ]
  5235. },
  5236. "bone31": {
  5237. "rotate": [
  5238. { "time": 0, "angle": 333.98 },
  5239. { "time": 0.5, "angle": 7.45 },
  5240. { "time": 1, "angle": 333.98 },
  5241. { "time": 1.5, "angle": 7.45 },
  5242. { "time": 2, "angle": 333.98 }
  5243. ],
  5244. "translate": [
  5245. { "time": 0, "x": -2.04, "y": 0.44 },
  5246. { "time": 0.5, "x": -0.63, "y": 1.63 },
  5247. { "time": 1, "x": 0, "y": 0 },
  5248. { "time": 1.5, "x": -0.63, "y": 1.63 },
  5249. { "time": 2, "x": -2.04, "y": 0.44 }
  5250. ],
  5251. "scale": [
  5252. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5253. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5254. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5255. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5256. { "time": 2, "x": 1, "y": 1 }
  5257. ]
  5258. },
  5259. "bone32": {
  5260. "rotate": [
  5261. { "time": 0, "angle": -28.35 },
  5262. { "time": 0.5, "angle": -10.02 },
  5263. { "time": 1, "angle": -28.35 },
  5264. { "time": 1.5, "angle": -10.02 },
  5265. { "time": 2, "angle": -28.35 }
  5266. ],
  5267. "translate": [
  5268. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5269. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5270. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5271. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5272. { "time": 2, "x": 0, "y": 0 }
  5273. ],
  5274. "scale": [
  5275. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5276. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5277. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5278. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5279. { "time": 2, "x": 1, "y": 1 }
  5280. ]
  5281. },
  5282. "bone33": {
  5283. "rotate": [
  5284. { "time": 0, "angle": 0, "curve": "stepped" },
  5285. { "time": 1, "angle": 0, "curve": "stepped" },
  5286. { "time": 2, "angle": 0 }
  5287. ],
  5288. "translate": [
  5289. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5290. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5291. { "time": 2, "x": 0, "y": 0 }
  5292. ],
  5293. "scale": [
  5294. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5295. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5296. { "time": 2, "x": 1, "y": 1 }
  5297. ]
  5298. },
  5299. "bone34": {
  5300. "rotate": [
  5301. { "time": 0, "angle": 0, "curve": "stepped" },
  5302. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5303. { "time": 1, "angle": 0, "curve": "stepped" },
  5304. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5305. { "time": 2, "angle": 0 }
  5306. ],
  5307. "translate": [
  5308. {
  5309. "time": 0,
  5310. "x": 0.12,
  5311. "y": 2.63,
  5312. "curve": [ 0.25, 0, 0.75, 1 ]
  5313. },
  5314. { "time": 0.5, "x": 0, "y": -2.01 },
  5315. {
  5316. "time": 1,
  5317. "x": 0.12,
  5318. "y": 2.63,
  5319. "curve": [ 0.25, 0, 0.75, 1 ]
  5320. },
  5321. { "time": 1.5, "x": 0, "y": -2.01 },
  5322. { "time": 2, "x": 0.12, "y": 2.63 }
  5323. ],
  5324. "scale": [
  5325. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5326. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5327. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5328. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5329. { "time": 2, "x": 1, "y": 1 }
  5330. ]
  5331. },
  5332. "bone35": {
  5333. "rotate": [
  5334. { "time": 0, "angle": 0, "curve": "stepped" },
  5335. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5336. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5337. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5338. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5339. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5340. { "time": 1, "angle": 0, "curve": "stepped" },
  5341. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5342. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5343. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5344. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5345. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5346. { "time": 2, "angle": 0 }
  5347. ],
  5348. "translate": [
  5349. { "time": 0, "x": 0.92, "y": -0.11 },
  5350. { "time": 0.5, "x": -0.19, "y": -1.55 },
  5351. { "time": 1, "x": 0.92, "y": -0.11 },
  5352. { "time": 1.5, "x": -0.19, "y": -1.55 },
  5353. { "time": 2, "x": 0.92, "y": -0.11 }
  5354. ],
  5355. "scale": [
  5356. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5357. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5358. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5359. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5360. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5361. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5362. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5363. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5364. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5365. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5366. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5367. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5368. { "time": 2, "x": 1, "y": 1 }
  5369. ]
  5370. },
  5371. "bone36": {
  5372. "rotate": [
  5373. { "time": 0, "angle": 0, "curve": "stepped" },
  5374. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5375. { "time": 1, "angle": 0, "curve": "stepped" },
  5376. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5377. { "time": 2, "angle": 0 }
  5378. ],
  5379. "translate": [
  5380. { "time": 0, "x": -0.97, "y": 0.02 },
  5381. { "time": 0.1667, "x": 2.22, "y": -0.05 },
  5382. { "time": 0.5, "x": 0, "y": 0 },
  5383. { "time": 0.6667, "x": 2.22, "y": -0.05 },
  5384. { "time": 1, "x": -0.97, "y": 0.02 },
  5385. { "time": 1.1667, "x": 2.22, "y": -0.05 },
  5386. { "time": 1.5, "x": 0, "y": 0 },
  5387. { "time": 1.6667, "x": 2.22, "y": -0.05 },
  5388. { "time": 2, "x": 0, "y": 0 }
  5389. ],
  5390. "scale": [
  5391. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5392. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5393. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5394. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5395. { "time": 2, "x": 1, "y": 1 }
  5396. ]
  5397. },
  5398. "bone37": {
  5399. "rotate": [
  5400. { "time": 0, "angle": 19.05 },
  5401. { "time": 0.1667, "angle": 2.42 },
  5402. { "time": 0.3333, "angle": 335.5 },
  5403. { "time": 0.5, "angle": 334.89 },
  5404. { "time": 0.6667, "angle": -12.58 },
  5405. { "time": 0.8333, "angle": 7.87 },
  5406. { "time": 1, "angle": 19.05 },
  5407. { "time": 1.1667, "angle": 2.42 },
  5408. { "time": 1.3333, "angle": 335.5 },
  5409. { "time": 1.5, "angle": 334.89 },
  5410. { "time": 1.6667, "angle": -12.58 },
  5411. { "time": 1.8333, "angle": 7.87 },
  5412. { "time": 2, "angle": 19.05 }
  5413. ],
  5414. "translate": [
  5415. { "time": 0, "x": 0, "y": 0 },
  5416. { "time": 0.1667, "x": -1.94, "y": 8.42 },
  5417. { "time": 0.3333, "x": -3.2, "y": 10.68 },
  5418. { "time": 0.5, "x": -4.8, "y": 16.01 },
  5419. { "time": 0.6667, "x": -3.2, "y": 10.68 },
  5420. { "time": 0.8333, "x": -1.6, "y": 5.34 },
  5421. { "time": 1, "x": 0, "y": 0 },
  5422. { "time": 1.1667, "x": -1.94, "y": 8.42 },
  5423. { "time": 1.3333, "x": -3.2, "y": 10.68 },
  5424. { "time": 1.5, "x": -4.8, "y": 16.01 },
  5425. { "time": 1.6667, "x": -3.2, "y": 10.68 },
  5426. { "time": 1.8333, "x": -1.6, "y": 5.34 },
  5427. { "time": 2, "x": 0, "y": 0 }
  5428. ],
  5429. "scale": [
  5430. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5431. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5432. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5433. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5434. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5435. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5436. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5437. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5438. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5439. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5440. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5441. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5442. { "time": 2, "x": 1, "y": 1 }
  5443. ]
  5444. },
  5445. "bone38": {
  5446. "rotate": [
  5447. { "time": 0, "angle": 10.27 },
  5448. { "time": 0.1667, "angle": 37.58 },
  5449. { "time": 0.3333, "angle": 37.27 },
  5450. { "time": 0.5, "angle": 10.27, "curve": "stepped" },
  5451. { "time": 0.6667, "angle": 10.27, "curve": "stepped" },
  5452. { "time": 0.8333, "angle": 10.27, "curve": "stepped" },
  5453. { "time": 1, "angle": 10.27 },
  5454. { "time": 1.1667, "angle": 37.58 },
  5455. { "time": 1.3333, "angle": 37.27 },
  5456. { "time": 1.5, "angle": 10.27, "curve": "stepped" },
  5457. { "time": 1.6667, "angle": 10.27, "curve": "stepped" },
  5458. { "time": 1.8333, "angle": 10.27, "curve": "stepped" },
  5459. { "time": 2, "angle": 10.27 }
  5460. ],
  5461. "translate": [
  5462. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5463. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5464. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5465. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5466. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5467. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5468. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5469. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5470. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5471. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5472. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5473. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5474. { "time": 2, "x": 0, "y": 0 }
  5475. ],
  5476. "scale": [
  5477. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5478. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5479. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5480. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5481. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5482. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5483. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5484. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5485. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5486. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5487. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5488. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5489. { "time": 2, "x": 1, "y": 1 }
  5490. ]
  5491. },
  5492. "bone39": {
  5493. "rotate": [
  5494. { "time": 0, "angle": 0, "curve": "stepped" },
  5495. { "time": 0.1667, "angle": 0 },
  5496. { "time": 0.3333, "angle": 1.47 },
  5497. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5498. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5499. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5500. { "time": 1, "angle": 0, "curve": "stepped" },
  5501. { "time": 1.1667, "angle": 0 },
  5502. { "time": 1.3333, "angle": 1.47 },
  5503. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5504. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5505. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5506. { "time": 2, "angle": 0 }
  5507. ],
  5508. "translate": [
  5509. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5510. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5511. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5512. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5513. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5514. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5515. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5516. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5517. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5518. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5519. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5520. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5521. { "time": 2, "x": 0, "y": 0 }
  5522. ],
  5523. "scale": [
  5524. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5525. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5526. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5527. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5528. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5529. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5530. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5531. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5532. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5533. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5534. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5535. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5536. { "time": 2, "x": 1, "y": 1 }
  5537. ]
  5538. },
  5539. "bone40": {
  5540. "rotate": [
  5541. { "time": 0, "angle": 345.45 },
  5542. { "time": 0.1667, "angle": 351.05 },
  5543. { "time": 0.3333, "angle": 20.94 },
  5544. { "time": 0.5, "angle": 20.97 },
  5545. { "time": 0.6667, "angle": 17.67 },
  5546. { "time": 0.8333, "angle": 351.15 },
  5547. { "time": 1, "angle": 353.66 },
  5548. { "time": 1.1667, "angle": 351.05 },
  5549. { "time": 1.3333, "angle": 20.94 },
  5550. { "time": 1.5, "angle": 20.97 },
  5551. { "time": 1.6667, "angle": 17.67 },
  5552. { "time": 1.8333, "angle": 351.15 },
  5553. { "time": 2, "angle": 345.45 }
  5554. ],
  5555. "translate": [
  5556. { "time": 0, "x": 0, "y": 0 },
  5557. { "time": 0.1667, "x": 1.41, "y": -5.63 },
  5558. { "time": 0.3333, "x": 2.83, "y": -11.25 },
  5559. { "time": 0.5, "x": 4.24, "y": -16.88 },
  5560. { "time": 0.6667, "x": 3.54, "y": -8.24 },
  5561. { "time": 0.8333, "x": 1.41, "y": -5.63 },
  5562. { "time": 1, "x": 0, "y": 0 },
  5563. { "time": 1.1667, "x": 1.41, "y": -5.63 },
  5564. { "time": 1.3333, "x": 2.83, "y": -11.25 },
  5565. { "time": 1.5, "x": 4.24, "y": -16.88 },
  5566. { "time": 1.6667, "x": 3.54, "y": -8.24 },
  5567. { "time": 1.8333, "x": 1.41, "y": -5.63 },
  5568. { "time": 2, "x": 0, "y": 0 }
  5569. ],
  5570. "scale": [
  5571. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5572. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5573. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5574. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5575. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5576. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5577. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5578. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5579. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5580. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5581. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5582. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5583. { "time": 2, "x": 1, "y": 1 }
  5584. ]
  5585. },
  5586. "bone41": {
  5587. "rotate": [
  5588. { "time": 0, "angle": 0 },
  5589. { "time": 0.1667, "angle": 11.21 },
  5590. { "time": 0.3333, "angle": 0 },
  5591. { "time": 0.5, "angle": 9.49 },
  5592. { "time": 0.6667, "angle": 22.92 },
  5593. { "time": 0.8333, "angle": 48.66 },
  5594. { "time": 1, "angle": 11.6 },
  5595. { "time": 1.1667, "angle": 11.21 },
  5596. { "time": 1.3333, "angle": 0 },
  5597. { "time": 1.5, "angle": 9.49 },
  5598. { "time": 1.6667, "angle": 22.92 },
  5599. { "time": 1.8333, "angle": 48.66 },
  5600. { "time": 2, "angle": 0 }
  5601. ],
  5602. "translate": [
  5603. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5604. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5605. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5606. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5607. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5608. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5609. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5610. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5611. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5612. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5613. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5614. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5615. { "time": 2, "x": 0, "y": 0 }
  5616. ],
  5617. "scale": [
  5618. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5619. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5620. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5621. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5622. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5623. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5624. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5625. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5626. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5627. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5628. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5629. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5630. { "time": 2, "x": 1, "y": 1 }
  5631. ]
  5632. },
  5633. "bone42": {
  5634. "rotate": [
  5635. { "time": 0, "angle": 0, "curve": "stepped" },
  5636. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5637. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5638. { "time": 0.5, "angle": 0 },
  5639. { "time": 0.8333, "angle": -15.61 },
  5640. { "time": 1, "angle": 0, "curve": "stepped" },
  5641. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5642. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5643. { "time": 1.5, "angle": 0 },
  5644. { "time": 1.8333, "angle": -15.61 },
  5645. { "time": 2, "angle": 0 }
  5646. ],
  5647. "translate": [
  5648. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5649. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5650. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5651. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5652. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5653. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5654. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5655. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5656. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5657. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5658. { "time": 2, "x": 0, "y": 0 }
  5659. ],
  5660. "scale": [
  5661. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5662. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5663. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5664. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5665. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5666. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5667. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5668. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5669. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5670. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5671. { "time": 2, "x": 1, "y": 1 }
  5672. ]
  5673. },
  5674. "bone43": {
  5675. "rotate": [
  5676. { "time": 0, "angle": 0, "curve": "stepped" },
  5677. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5678. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5679. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5680. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5681. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5682. { "time": 1, "angle": 0, "curve": "stepped" },
  5683. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5684. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5685. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5686. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5687. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5688. { "time": 2, "angle": 0 }
  5689. ],
  5690. "translate": [
  5691. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5692. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5693. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5694. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5695. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5696. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5697. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5698. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5699. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5700. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5701. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5702. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5703. { "time": 2, "x": 0, "y": 0 }
  5704. ],
  5705. "scale": [
  5706. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5707. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5708. { "time": 0.3333, "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.8333, "x": 1, "y": 1, "curve": "stepped" },
  5712. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5713. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5714. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5715. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5716. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5717. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5718. { "time": 2, "x": 1, "y": 1 }
  5719. ]
  5720. },
  5721. "bone44": {
  5722. "rotate": [
  5723. { "time": 0, "angle": 0, "curve": "stepped" },
  5724. { "time": 0.1667, "angle": 0, "curve": "stepped" },
  5725. { "time": 0.3333, "angle": 0, "curve": "stepped" },
  5726. { "time": 0.5, "angle": 0, "curve": "stepped" },
  5727. { "time": 0.6667, "angle": 0, "curve": "stepped" },
  5728. { "time": 0.8333, "angle": 0, "curve": "stepped" },
  5729. { "time": 1, "angle": 0, "curve": "stepped" },
  5730. { "time": 1.1667, "angle": 0, "curve": "stepped" },
  5731. { "time": 1.3333, "angle": 0, "curve": "stepped" },
  5732. { "time": 1.5, "angle": 0, "curve": "stepped" },
  5733. { "time": 1.6667, "angle": 0, "curve": "stepped" },
  5734. { "time": 1.8333, "angle": 0, "curve": "stepped" },
  5735. { "time": 2, "angle": 0 }
  5736. ],
  5737. "translate": [
  5738. { "time": 0, "x": 0, "y": 0, "curve": "stepped" },
  5739. { "time": 0.1667, "x": 0, "y": 0, "curve": "stepped" },
  5740. { "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
  5741. { "time": 0.5, "x": 0, "y": 0, "curve": "stepped" },
  5742. { "time": 0.6667, "x": 0, "y": 0, "curve": "stepped" },
  5743. { "time": 0.8333, "x": 0, "y": 0, "curve": "stepped" },
  5744. { "time": 1, "x": 0, "y": 0, "curve": "stepped" },
  5745. { "time": 1.1667, "x": 0, "y": 0, "curve": "stepped" },
  5746. { "time": 1.3333, "x": 0, "y": 0, "curve": "stepped" },
  5747. { "time": 1.5, "x": 0, "y": 0, "curve": "stepped" },
  5748. { "time": 1.6667, "x": 0, "y": 0, "curve": "stepped" },
  5749. { "time": 1.8333, "x": 0, "y": 0, "curve": "stepped" },
  5750. { "time": 2, "x": 0, "y": 0 }
  5751. ],
  5752. "scale": [
  5753. { "time": 0, "x": 1, "y": 1, "curve": "stepped" },
  5754. { "time": 0.1667, "x": 1, "y": 1, "curve": "stepped" },
  5755. { "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
  5756. { "time": 0.5, "x": 1, "y": 1, "curve": "stepped" },
  5757. { "time": 0.6667, "x": 1, "y": 1, "curve": "stepped" },
  5758. { "time": 0.8333, "x": 1, "y": 1, "curve": "stepped" },
  5759. { "time": 1, "x": 1, "y": 1, "curve": "stepped" },
  5760. { "time": 1.1667, "x": 1, "y": 1, "curve": "stepped" },
  5761. { "time": 1.3333, "x": 1, "y": 1, "curve": "stepped" },
  5762. { "time": 1.5, "x": 1, "y": 1, "curve": "stepped" },
  5763. { "time": 1.6667, "x": 1, "y": 1, "curve": "stepped" },
  5764. { "time": 1.8333, "x": 1, "y": 1, "curve": "stepped" },
  5765. { "time": 2, "x": 1, "y": 1 }
  5766. ]
  5767. }
  5768. },
  5769. "deform": {
  5770. "default": {
  5771. "qunzi": {
  5772. "qunzi": [
  5773. { "time": 0 },
  5774. {
  5775. "time": 0.1667,
  5776. "vertices": [ 0.24998, -1.47495, 0.28348, -1.46888, 0.34088, -2.01131, 0.38657, -2.00303, 0.31816, -1.87722, 0.36079, -1.86949, 0.59087, -3.48628, 0.67004, -3.47193, 0.56814, -3.3522, 0.64429, -3.3384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.49131, 2.89865, -0.55708, 2.88673, -0.49131, 2.89865, -0.55708, 2.88673, -0.16787, 2.45648, -0.22366, 2.45203, -0.36365, 2.14539, -0.4123, 2.13658, -0.13637, 0.80451, -0.15461, 0.80121, -0.18182, 1.07269, -0.20615, 1.06828 ]
  5777. },
  5778. { "time": 0.5 },
  5779. {
  5780. "time": 0.6667,
  5781. "vertices": [ 0.24998, -1.47495, 0.28348, -1.46888, 0.34088, -2.01131, 0.38657, -2.00303, 0.31816, -1.87722, 0.36079, -1.86949, 0.59087, -3.48628, 0.67004, -3.47193, 0.56814, -3.3522, 0.64429, -3.3384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.49131, 2.89865, -0.55708, 2.88673, -0.49131, 2.89865, -0.55708, 2.88673, -0.16787, 2.45648, -0.22366, 2.45203, -0.36365, 2.14539, -0.4123, 2.13658, -0.13637, 0.80451, -0.15461, 0.80121, -0.18182, 1.07269, -0.20615, 1.06828 ]
  5782. },
  5783. { "time": 1 },
  5784. {
  5785. "time": 1.1667,
  5786. "vertices": [ 0.24998, -1.47495, 0.28348, -1.46888, 0.34088, -2.01131, 0.38657, -2.00303, 0.31816, -1.87722, 0.36079, -1.86949, 0.59087, -3.48628, 0.67004, -3.47193, 0.56814, -3.3522, 0.64429, -3.3384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.49131, 2.89865, -0.55708, 2.88673, -0.49131, 2.89865, -0.55708, 2.88673, -0.16787, 2.45648, -0.22366, 2.45203, -0.36365, 2.14539, -0.4123, 2.13658, -0.13637, 0.80451, -0.15461, 0.80121, -0.18182, 1.07269, -0.20615, 1.06828 ]
  5787. },
  5788. { "time": 1.5 },
  5789. {
  5790. "time": 1.6667,
  5791. "vertices": [ 0.24998, -1.47495, 0.28348, -1.46888, 0.34088, -2.01131, 0.38657, -2.00303, 0.31816, -1.87722, 0.36079, -1.86949, 0.59087, -3.48628, 0.67004, -3.47193, 0.56814, -3.3522, 0.64429, -3.3384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.49131, 2.89865, -0.55708, 2.88673, -0.49131, 2.89865, -0.55708, 2.88673, -0.16787, 2.45648, -0.22366, 2.45203, -0.36365, 2.14539, -0.4123, 2.13658, -0.13637, 0.80451, -0.15461, 0.80121, -0.18182, 1.07269, -0.20615, 1.06828 ]
  5792. },
  5793. { "time": 2 }
  5794. ]
  5795. },
  5796. "shuyao": {
  5797. "shuyao": [
  5798. {
  5799. "time": 0,
  5800. "vertices": [ 0.00607, 2.77511, -0.27316, 6.0108, 0, 0, 3.31154, 0.15052, -0.27316, 6.0108, -0.42549, 3.54837, -0.27316, 6.0108 ]
  5801. },
  5802. {
  5803. "time": 0.5,
  5804. "offset": 4,
  5805. "vertices": [ 0.09594, -2.10981, 3.40748, -1.95929 ]
  5806. },
  5807. {
  5808. "time": 1,
  5809. "vertices": [ 0.00607, 2.77511, -0.27316, 6.0108, 0, 0, 3.31154, 0.15052, -0.27316, 6.0108, -0.42549, 3.54837, -0.27316, 6.0108 ]
  5810. },
  5811. {
  5812. "time": 1.5,
  5813. "offset": 4,
  5814. "vertices": [ 0.09594, -2.10981, 3.40748, -1.95929 ]
  5815. },
  5816. {
  5817. "time": 2,
  5818. "vertices": [ 0.00607, 2.77511, -0.27316, 6.0108, 0, 0, 3.31154, 0.15052, -0.27316, 6.0108, -0.42549, 3.54837, -0.27316, 6.0108 ]
  5819. }
  5820. ]
  5821. },
  5822. "toufa8": {
  5823. "toufa8": [
  5824. {
  5825. "time": 0,
  5826. "vertices": [ 0.92887, 3.36991, -0.28065, 5.78093 ]
  5827. },
  5828. {
  5829. "time": 0.5,
  5830. "vertices": [ -0.1218, -5.87908, 0.37101, -5.47408, 1.22852, 3.15022, 3.45831, 2.42293 ]
  5831. },
  5832. {
  5833. "time": 1,
  5834. "vertices": [ 0.92887, 3.36991, -0.28065, 5.78093 ]
  5835. },
  5836. {
  5837. "time": 1.5,
  5838. "vertices": [ -0.1218, -5.87908, 0.37101, -5.47408, 1.22852, 3.15022, 3.45831, 2.42293 ]
  5839. },
  5840. {
  5841. "time": 2,
  5842. "vertices": [ 0.92887, 3.36991, -0.28065, 5.78093 ]
  5843. }
  5844. ]
  5845. },
  5846. "xiong": {
  5847. "xiong": [
  5848. {
  5849. "time": 0,
  5850. "offset": 2,
  5851. "vertices": [ -0.46925, 2.39815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.37972, 4.33137, 0.08154, 4.25737, 0.52453, 1.52768, 0, 0, 0.36541, 1.01982, 0.12183, 3.79712 ]
  5852. },
  5853. {
  5854. "time": 0.5,
  5855. "offset": 2,
  5856. "vertices": [ 0.35611, -1.95137, 0, 0, 0, 0, 0, 0, 0, 0, 0.13754, -1.56698, 0, 0, 0.13754, -1.56698, 0.37885, -0.13843, 0, 0, 0, 0, -0.49815, -0.72634, 0.45248, 1.76829 ]
  5857. },
  5858. {
  5859. "time": 1,
  5860. "offset": 2,
  5861. "vertices": [ -0.46925, 2.39815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.37972, 4.33137, 0.08154, 4.25737, 0.52453, 1.52768, 0, 0, 0.36541, 1.01982, 0.12183, 3.79712 ]
  5862. },
  5863. {
  5864. "time": 1.5,
  5865. "offset": 2,
  5866. "vertices": [ 0.35611, -1.95137, 0, 0, 0, 0, 0, 0, 0, 0, 0.13754, -1.56698, 0, 0, 0.13754, -1.56698, 0.37885, -0.13843, 0, 0, 0, 0, -0.49815, -0.72634, 0.45248, 1.76829 ]
  5867. },
  5868. {
  5869. "time": 2,
  5870. "offset": 2,
  5871. "vertices": [ -0.46925, 2.39815, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.37972, 4.33137, 0.08154, 4.25737, 0.52453, 1.52768, 0, 0, 0.36541, 1.01982, 0.12183, 3.79712 ]
  5872. }
  5873. ]
  5874. }
  5875. }
  5876. }
  5877. }
  5878. }
  5879. }