MV_01.json 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226
  1. {
  2. "skeleton": { "hash": "XCYpAhDxUn0", "spine": "4.2.33", "x": -266, "y": -265, "width": 531, "height": 531 },
  3. "bones": [
  4. { "name": "root" },
  5. { "name": "all", "parent": "root" },
  6. { "name": "quan01", "parent": "all" },
  7. { "name": "quan02", "parent": "all" },
  8. { "name": "quan03", "parent": "all" },
  9. { "name": "quan04", "parent": "all" },
  10. { "name": "quan05", "parent": "all" },
  11. { "name": "quan06", "parent": "all" },
  12. { "name": "quan07", "parent": "all" },
  13. { "name": "quan08", "parent": "all" },
  14. { "name": "quan9", "parent": "all" },
  15. { "name": "quan10", "parent": "all" },
  16. { "name": "zi1", "parent": "root" },
  17. { "name": "bone", "parent": "zi1", "x": -206.49 },
  18. { "name": "bone2", "parent": "zi1", "x": -185.13 },
  19. { "name": "bone3", "parent": "zi1", "x": -162.36 },
  20. { "name": "bone4", "parent": "zi1", "x": -142.35 },
  21. { "name": "bone5", "parent": "zi1", "x": -121.31 },
  22. { "name": "bone6", "parent": "zi1", "x": -99.23 },
  23. { "name": "bone7", "parent": "zi1", "x": -78.18 },
  24. { "name": "bone8", "parent": "zi1", "x": -56.79 },
  25. { "name": "bone9", "parent": "zi1", "x": -34.37 },
  26. { "name": "quan0101", "parent": "root", "scaleX": 8, "scaleY": 8 },
  27. { "name": "zi2", "parent": "root", "scaleX": -1 },
  28. { "name": "bone10", "parent": "zi2", "x": -206.49, "scaleX": -1 },
  29. { "name": "bone11", "parent": "zi2", "x": -185.13, "scaleX": -1 },
  30. { "name": "bone12", "parent": "zi2", "x": -162.36, "scaleX": -1 },
  31. { "name": "bone13", "parent": "zi2", "x": -142.35, "scaleX": -1 },
  32. { "name": "bone14", "parent": "zi2", "x": -121.31, "scaleX": -1 },
  33. { "name": "bone15", "parent": "zi2", "x": -99.23, "scaleX": -1 },
  34. { "name": "bone16", "parent": "zi2", "x": -78.18, "scaleX": -1 },
  35. { "name": "bone17", "parent": "zi2", "x": -56.79, "scaleX": -1 },
  36. { "name": "bone18", "parent": "zi2", "x": -34.37, "scaleX": -1 },
  37. { "name": "zi3", "parent": "root", "rotation": -89.98, "scaleX": -1 },
  38. { "name": "bone19", "parent": "zi3", "rotation": -90.18, "x": -205.9, "scaleX": -1 },
  39. { "name": "bone20", "parent": "zi3", "rotation": -91.18, "x": -183.66, "scaleX": -1 },
  40. { "name": "bone21", "parent": "zi3", "rotation": 269.29, "x": -162.36, "scaleX": -1 },
  41. { "name": "bone22", "parent": "zi3", "rotation": 269.29, "x": -140.29, "y": 0.59, "scaleX": -1 },
  42. { "name": "bone23", "parent": "zi3", "rotation": 269.29, "x": -120.13, "scaleX": -1 },
  43. { "name": "bone24", "parent": "zi3", "rotation": 269.29, "x": -97.76, "y": -0.29, "scaleX": -1 },
  44. { "name": "bone25", "parent": "zi3", "rotation": 269.29, "x": -77.01, "scaleX": -1 },
  45. { "name": "bone26", "parent": "zi3", "rotation": 269.29, "x": -54.73, "scaleX": -1 },
  46. { "name": "bone27", "parent": "zi3", "rotation": 269.29, "x": -33.19, "scaleX": -1 },
  47. { "name": "zi4", "parent": "root", "rotation": 90, "scaleX": -1 },
  48. { "name": "bone28", "parent": "zi4", "rotation": 89.65, "x": -206.37, "y": -0.31, "scaleX": -1 },
  49. { "name": "bone29", "parent": "zi4", "rotation": 89.34, "x": -185.25, "scaleX": -1 },
  50. { "name": "bone30", "parent": "zi4", "rotation": 92.36, "x": -163.3, "y": -0.94, "scaleX": -1 },
  51. { "name": "bone31", "parent": "zi4", "rotation": 448.58, "x": -141.86, "y": -1.3, "scaleX": -1 },
  52. { "name": "bone32", "parent": "zi4", "rotation": 448.58, "x": -121.23, "y": -0.63, "scaleX": -1 },
  53. { "name": "bone33", "parent": "zi4", "rotation": 448.58, "x": -99.96, "y": -0.14, "scaleX": -1 },
  54. { "name": "bone34", "parent": "zi4", "rotation": 448.58, "x": -79.2, "y": -0.47, "scaleX": -1 },
  55. { "name": "bone35", "parent": "zi4", "rotation": 448.58, "x": -57.09, "y": -0.16, "scaleX": -1 },
  56. { "name": "bone36", "parent": "zi4", "rotation": 448.58, "x": -34.76, "scaleX": -1 },
  57. { "name": "xian", "parent": "root" },
  58. { "name": "quan101", "parent": "xian", "scaleX": 8, "scaleY": 8 },
  59. { "name": "quan102", "parent": "xian", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  60. { "name": "quan103", "parent": "xian", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  61. { "name": "quan104", "parent": "xian", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  62. { "name": "xian2", "parent": "root", "rotation": 143.46 },
  63. { "name": "quan105", "parent": "xian2", "scaleX": 8, "scaleY": 8 },
  64. { "name": "quan106", "parent": "xian2", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  65. { "name": "quan107", "parent": "xian2", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  66. { "name": "quan108", "parent": "xian2", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  67. { "name": "xian3", "parent": "root", "rotation": 143.46, "scaleX": -1 },
  68. { "name": "quan109", "parent": "xian3", "scaleX": 8, "scaleY": 8 },
  69. { "name": "quan110", "parent": "xian3", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  70. { "name": "quan111", "parent": "xian3", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  71. { "name": "quan112", "parent": "xian3", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  72. { "name": "xian4", "parent": "root", "rotation": 143.46, "scaleX": -1 },
  73. { "name": "quan113", "parent": "xian4", "scaleX": 8, "scaleY": 8 },
  74. { "name": "quan114", "parent": "xian4", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  75. { "name": "quan115", "parent": "xian4", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  76. { "name": "quan116", "parent": "xian4", "rotation": 90.67, "scaleX": 8, "scaleY": 8 },
  77. { "name": "quan117", "parent": "root", "scaleX": 8, "scaleY": 8 }
  78. ],
  79. "slots": [
  80. { "name": "quan10", "bone": "quan10", "attachment": "quan10" },
  81. { "name": "quan09", "bone": "quan9", "attachment": "quan09" },
  82. { "name": "quan08", "bone": "quan08", "attachment": "quan08" },
  83. { "name": "quan8", "bone": "quan07", "attachment": "quan08" },
  84. { "name": "quan9", "bone": "quan06", "attachment": "quan08" },
  85. { "name": "quan12", "bone": "quan05", "attachment": "quan08" },
  86. { "name": "quan04", "bone": "quan04", "attachment": "quan04" },
  87. { "name": "quan03", "bone": "quan03", "attachment": "quan03" },
  88. { "name": "quan02", "bone": "quan02", "attachment": "quan02" },
  89. { "name": "quan2", "bone": "quan01", "attachment": "quan02" },
  90. { "name": "red", "bone": "all", "attachment": "red" },
  91. { "name": "l1", "bone": "bone", "attachment": "l1" },
  92. { "name": "l10", "bone": "bone10", "attachment": "l1" },
  93. { "name": "l19", "bone": "bone19", "attachment": "l1" },
  94. { "name": "l28", "bone": "bone28", "attachment": "l1" },
  95. { "name": "l2", "bone": "bone2", "attachment": "l2" },
  96. { "name": "l11", "bone": "bone11", "attachment": "l2" },
  97. { "name": "l20", "bone": "bone20", "attachment": "l2" },
  98. { "name": "l29", "bone": "bone29", "attachment": "l2" },
  99. { "name": "l3", "bone": "bone3", "attachment": "l3" },
  100. { "name": "l12", "bone": "bone12", "attachment": "l3" },
  101. { "name": "l21", "bone": "bone21", "attachment": "l3" },
  102. { "name": "l30", "bone": "bone30", "attachment": "l3" },
  103. { "name": "l4", "bone": "bone4", "attachment": "l4" },
  104. { "name": "l13", "bone": "bone13", "attachment": "l4" },
  105. { "name": "l22", "bone": "bone22", "attachment": "l4" },
  106. { "name": "l31", "bone": "bone31", "attachment": "l4" },
  107. { "name": "l5", "bone": "bone5", "attachment": "l5" },
  108. { "name": "l14", "bone": "bone14", "attachment": "l5" },
  109. { "name": "l23", "bone": "bone23", "attachment": "l5" },
  110. { "name": "l32", "bone": "bone32", "attachment": "l5" },
  111. { "name": "l6", "bone": "bone6", "attachment": "l6" },
  112. { "name": "l15", "bone": "bone15", "attachment": "l6" },
  113. { "name": "l24", "bone": "bone24", "attachment": "l6" },
  114. { "name": "l33", "bone": "bone33", "attachment": "l6" },
  115. { "name": "l7", "bone": "bone7", "attachment": "l7" },
  116. { "name": "l16", "bone": "bone16", "attachment": "l7" },
  117. { "name": "l25", "bone": "bone25", "attachment": "l7" },
  118. { "name": "l34", "bone": "bone34", "attachment": "l7" },
  119. { "name": "l8", "bone": "bone8", "attachment": "l8" },
  120. { "name": "l17", "bone": "bone17", "attachment": "l8" },
  121. { "name": "l26", "bone": "bone26", "attachment": "l8" },
  122. { "name": "l35", "bone": "bone35", "attachment": "l8" },
  123. { "name": "l9", "bone": "bone9", "attachment": "l9" },
  124. { "name": "l18", "bone": "bone18", "attachment": "l9" },
  125. { "name": "l27", "bone": "bone27", "attachment": "l9" },
  126. { "name": "l36", "bone": "bone36", "attachment": "l9" },
  127. { "name": "root", "bone": "root" },
  128. { "name": "quan01", "bone": "quan0101", "blend": "additive" },
  129. { "name": "quan22", "bone": "quan117", "blend": "additive" },
  130. { "name": "quan1", "bone": "quan101", "attachment": "quan01", "blend": "additive" },
  131. { "name": "quan6", "bone": "quan105", "attachment": "quan01", "blend": "additive" },
  132. { "name": "quan14", "bone": "quan109", "attachment": "quan01", "blend": "additive" },
  133. { "name": "quan18", "bone": "quan113", "color": "ce00ffff", "attachment": "quan01", "blend": "additive" },
  134. { "name": "quan3", "bone": "quan102", "attachment": "quan01", "blend": "additive" },
  135. { "name": "quan7", "bone": "quan106", "attachment": "quan01", "blend": "additive" },
  136. { "name": "quan15", "bone": "quan110", "attachment": "quan01", "blend": "additive" },
  137. { "name": "quan19", "bone": "quan114", "attachment": "quan01", "blend": "additive" },
  138. { "name": "quan4", "bone": "quan103", "attachment": "quan01", "blend": "additive" },
  139. { "name": "quan11", "bone": "quan107", "attachment": "quan01", "blend": "additive" },
  140. { "name": "quan16", "bone": "quan111", "attachment": "quan01", "blend": "additive" },
  141. { "name": "quan20", "bone": "quan115", "attachment": "quan01", "blend": "additive" },
  142. { "name": "quan5", "bone": "quan104", "attachment": "quan01", "blend": "additive" },
  143. { "name": "quan13", "bone": "quan108", "attachment": "quan01", "blend": "additive" },
  144. { "name": "quan17", "bone": "quan112", "attachment": "quan01", "blend": "additive" },
  145. { "name": "quan21", "bone": "quan116", "attachment": "quan01", "blend": "additive" }
  146. ],
  147. "skins": [
  148. {
  149. "name": "default",
  150. "attachments": {
  151. "l1": {
  152. "l1": { "x": -2.01, "y": -1, "width": 9, "height": 18 }
  153. },
  154. "l2": {
  155. "l2": { "x": 0.13, "y": -1, "width": 12, "height": 18 }
  156. },
  157. "l3": {
  158. "l3": { "x": -0.64, "y": -1, "width": 12, "height": 18 }
  159. },
  160. "l4": {
  161. "l4": { "x": -1.15, "y": -1, "width": 13, "height": 18 }
  162. },
  163. "l5": {
  164. "l5": { "x": -0.69, "y": -1, "width": 12, "height": 18 }
  165. },
  166. "l6": {
  167. "l6": { "x": 0.23, "y": -1, "width": 12, "height": 18 }
  168. },
  169. "l7": {
  170. "l7": { "x": 0.18, "y": -1, "width": 12, "height": 18 }
  171. },
  172. "l8": {
  173. "l8": { "x": -0.21, "y": -1, "width": 12, "height": 18 }
  174. },
  175. "l9": {
  176. "l9": { "x": 0.37, "y": -1, "width": 12, "height": 18 }
  177. },
  178. "l10": {
  179. "l1": { "x": -2.01, "y": -1, "width": 9, "height": 18 }
  180. },
  181. "l11": {
  182. "l2": { "x": 0.13, "y": -1, "width": 12, "height": 18 }
  183. },
  184. "l12": {
  185. "l3": { "x": -0.64, "y": -1, "width": 12, "height": 18 }
  186. },
  187. "l13": {
  188. "l4": { "x": -1.15, "y": -1, "width": 13, "height": 18 }
  189. },
  190. "l14": {
  191. "l5": { "x": -0.69, "y": -1, "width": 12, "height": 18 }
  192. },
  193. "l15": {
  194. "l6": { "x": 0.23, "y": -1, "width": 12, "height": 18 }
  195. },
  196. "l16": {
  197. "l7": { "x": 0.18, "y": -1, "width": 12, "height": 18 }
  198. },
  199. "l17": {
  200. "l8": { "x": -0.21, "y": -1, "width": 12, "height": 18 }
  201. },
  202. "l18": {
  203. "l9": { "x": 0.37, "y": -1, "width": 12, "height": 18 }
  204. },
  205. "l19": {
  206. "l1": { "x": -2.01, "y": -1, "width": 9, "height": 18 }
  207. },
  208. "l20": {
  209. "l2": { "x": 0.13, "y": -1, "width": 12, "height": 18 }
  210. },
  211. "l21": {
  212. "l3": { "x": -0.64, "y": -1, "width": 12, "height": 18 }
  213. },
  214. "l22": {
  215. "l4": { "x": -1.15, "y": -1, "width": 13, "height": 18 }
  216. },
  217. "l23": {
  218. "l5": { "x": -0.69, "y": -1, "width": 12, "height": 18 }
  219. },
  220. "l24": {
  221. "l6": { "x": 0.23, "y": -1, "width": 12, "height": 18 }
  222. },
  223. "l25": {
  224. "l7": { "x": 0.18, "y": -1, "width": 12, "height": 18 }
  225. },
  226. "l26": {
  227. "l8": { "x": -0.21, "y": -1, "width": 12, "height": 18 }
  228. },
  229. "l27": {
  230. "l9": { "x": 0.37, "y": -1, "width": 12, "height": 18 }
  231. },
  232. "l28": {
  233. "l1": { "x": -2.01, "y": -1, "width": 9, "height": 18 }
  234. },
  235. "l29": {
  236. "l2": { "x": 0.13, "y": -1, "width": 12, "height": 18 }
  237. },
  238. "l30": {
  239. "l3": { "x": -0.64, "y": -1, "width": 12, "height": 18 }
  240. },
  241. "l31": {
  242. "l4": { "x": -1.15, "y": -1, "width": 13, "height": 18 }
  243. },
  244. "l32": {
  245. "l5": { "x": -0.69, "y": -1, "width": 12, "height": 18 }
  246. },
  247. "l33": {
  248. "l6": { "x": 0.23, "y": -1, "width": 12, "height": 18 }
  249. },
  250. "l34": {
  251. "l7": { "x": 0.18, "y": -1, "width": 12, "height": 18 }
  252. },
  253. "l35": {
  254. "l8": { "x": -0.21, "y": -1, "width": 12, "height": 18 }
  255. },
  256. "l36": {
  257. "l9": { "x": 0.37, "y": -1, "width": 12, "height": 18 }
  258. },
  259. "quan1": {
  260. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  261. },
  262. "quan01": {
  263. "quan01": { "width": 94, "height": 94 }
  264. },
  265. "quan2": {
  266. "quan02": { "x": -0.5, "y": 0.5, "scaleX": 0.6593, "scaleY": 0.66, "width": 139, "height": 139 }
  267. },
  268. "quan02": {
  269. "quan02": { "x": -0.5, "y": 0.5, "width": 139, "height": 139 }
  270. },
  271. "quan3": {
  272. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  273. },
  274. "quan03": {
  275. "quan03": { "x": -0.5, "y": 0.5, "width": 177, "height": 177 }
  276. },
  277. "quan4": {
  278. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  279. },
  280. "quan04": {
  281. "quan04": { "width": 224, "height": 224 }
  282. },
  283. "quan5": {
  284. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  285. },
  286. "quan6": {
  287. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  288. },
  289. "quan7": {
  290. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  291. },
  292. "quan8": {
  293. "quan08": { "scaleX": 0.89, "scaleY": 0.89, "width": 394, "height": 394 }
  294. },
  295. "quan08": {
  296. "quan08": { "width": 394, "height": 394 }
  297. },
  298. "quan9": {
  299. "quan08": { "scaleX": 0.78, "scaleY": 0.78, "width": 394, "height": 394 }
  300. },
  301. "quan09": {
  302. "quan09": { "width": 440, "height": 440 }
  303. },
  304. "quan10": {
  305. "quan10": { "x": -0.5, "y": 0.5, "width": 531, "height": 531 }
  306. },
  307. "quan11": {
  308. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  309. },
  310. "quan12": {
  311. "quan08": { "scaleX": 0.67, "scaleY": 0.67, "width": 394, "height": 394 }
  312. },
  313. "quan13": {
  314. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  315. },
  316. "quan14": {
  317. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  318. },
  319. "quan15": {
  320. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  321. },
  322. "quan16": {
  323. "quan01": { "y": -4.06, "scaleX": 0.05, "scaleY": 0.1, "width": 94, "height": 94 }
  324. },
  325. "quan17": {
  326. "quan01": { "y": -4.06, "scaleX": 0.01, "scaleY": 0.1, "width": 94, "height": 94 }
  327. },
  328. "quan18": {
  329. "quan01": { "y": -4.06, "scaleX": 0.05, "scaleY": 0.1, "width": 94, "height": 94 }
  330. },
  331. "quan19": {
  332. "quan01": { "y": -4.06, "scaleX": 0.02, "scaleY": 0.1, "width": 94, "height": 94 }
  333. },
  334. "quan20": {
  335. "quan01": { "y": -4.06, "scaleX": 0.05, "scaleY": 0.1, "width": 94, "height": 94 }
  336. },
  337. "quan21": {
  338. "quan01": { "y": -4.06, "scaleX": 0.03, "scaleY": 0.1, "width": 94, "height": 94 }
  339. },
  340. "quan22": {
  341. "quan01": { "width": 94, "height": 94 }
  342. },
  343. "red": {
  344. "red": { "width": 50, "height": 50 }
  345. },
  346. "root": {
  347. "root": {
  348. "type": "boundingbox",
  349. "vertexCount": 4,
  350. "vertices": [ -340.1, -591.09, -332.06, 859.33, 343.56, 856.65, 343.56, -588.41 ]
  351. }
  352. }
  353. }
  354. }
  355. ],
  356. "animations": {
  357. "animation_01": {
  358. "slots": {
  359. "quan1": {
  360. "attachment": [
  361. {}
  362. ]
  363. },
  364. "quan3": {
  365. "attachment": [
  366. {}
  367. ]
  368. },
  369. "quan4": {
  370. "attachment": [
  371. {}
  372. ]
  373. },
  374. "quan5": {
  375. "attachment": [
  376. {}
  377. ]
  378. },
  379. "quan6": {
  380. "attachment": [
  381. {}
  382. ]
  383. },
  384. "quan7": {
  385. "attachment": [
  386. {}
  387. ]
  388. },
  389. "quan10": {
  390. "attachment": [
  391. {}
  392. ]
  393. },
  394. "quan11": {
  395. "attachment": [
  396. {}
  397. ]
  398. },
  399. "quan13": {
  400. "attachment": [
  401. {}
  402. ]
  403. },
  404. "quan14": {
  405. "attachment": [
  406. {}
  407. ]
  408. },
  409. "quan15": {
  410. "attachment": [
  411. {}
  412. ]
  413. },
  414. "quan16": {
  415. "attachment": [
  416. {}
  417. ]
  418. },
  419. "quan17": {
  420. "attachment": [
  421. {}
  422. ]
  423. },
  424. "quan18": {
  425. "attachment": [
  426. {}
  427. ]
  428. },
  429. "quan19": {
  430. "attachment": [
  431. {}
  432. ]
  433. },
  434. "quan20": {
  435. "attachment": [
  436. {}
  437. ]
  438. },
  439. "quan21": {
  440. "attachment": [
  441. {}
  442. ]
  443. }
  444. }
  445. },
  446. "animation_02": {
  447. "slots": {
  448. "l1": {
  449. "rgba": [
  450. {
  451. "time": 0.0667,
  452. "color": "ffffffff",
  453. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  454. },
  455. { "time": 0.2333, "color": "ffffff00" }
  456. ],
  457. "attachment": [
  458. {}
  459. ]
  460. },
  461. "l2": {
  462. "rgba": [
  463. {
  464. "time": 0.0667,
  465. "color": "ffffffff",
  466. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  467. },
  468. { "time": 0.2333, "color": "ffffff00" }
  469. ],
  470. "attachment": [
  471. {}
  472. ]
  473. },
  474. "l3": {
  475. "rgba": [
  476. {
  477. "time": 0.0667,
  478. "color": "ffffffff",
  479. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  480. },
  481. { "time": 0.2333, "color": "ffffff00" }
  482. ],
  483. "attachment": [
  484. {}
  485. ]
  486. },
  487. "l4": {
  488. "rgba": [
  489. {
  490. "time": 0.0667,
  491. "color": "ffffffff",
  492. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  493. },
  494. { "time": 0.2333, "color": "ffffff00" }
  495. ],
  496. "attachment": [
  497. {}
  498. ]
  499. },
  500. "l5": {
  501. "rgba": [
  502. {
  503. "time": 0.0667,
  504. "color": "ffffffff",
  505. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  506. },
  507. { "time": 0.2333, "color": "ffffff00" }
  508. ],
  509. "attachment": [
  510. {}
  511. ]
  512. },
  513. "l6": {
  514. "rgba": [
  515. {
  516. "time": 0.0667,
  517. "color": "ffffffff",
  518. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  519. },
  520. { "time": 0.2333, "color": "ffffff00" }
  521. ],
  522. "attachment": [
  523. {}
  524. ]
  525. },
  526. "l7": {
  527. "rgba": [
  528. {
  529. "time": 0.0667,
  530. "color": "ffffffff",
  531. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  532. },
  533. { "time": 0.2333, "color": "ffffff00" }
  534. ],
  535. "attachment": [
  536. {}
  537. ]
  538. },
  539. "l8": {
  540. "rgba": [
  541. {
  542. "time": 0.0667,
  543. "color": "ffffffff",
  544. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  545. },
  546. { "time": 0.2333, "color": "ffffff00" }
  547. ],
  548. "attachment": [
  549. {}
  550. ]
  551. },
  552. "l9": {
  553. "rgba": [
  554. {
  555. "time": 0.0667,
  556. "color": "ffffffff",
  557. "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
  558. },
  559. { "time": 0.3, "color": "ffffff00" }
  560. ],
  561. "attachment": [
  562. {}
  563. ]
  564. },
  565. "l10": {
  566. "rgba": [
  567. {
  568. "time": 0.0667,
  569. "color": "ffffffff",
  570. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  571. },
  572. { "time": 0.2333, "color": "ffffff00" }
  573. ],
  574. "attachment": [
  575. {}
  576. ]
  577. },
  578. "l11": {
  579. "rgba": [
  580. {
  581. "time": 0.0667,
  582. "color": "ffffffff",
  583. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  584. },
  585. { "time": 0.2333, "color": "ffffff00" }
  586. ],
  587. "attachment": [
  588. {}
  589. ]
  590. },
  591. "l12": {
  592. "rgba": [
  593. {
  594. "time": 0.0667,
  595. "color": "ffffffff",
  596. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  597. },
  598. { "time": 0.2333, "color": "ffffff00" }
  599. ],
  600. "attachment": [
  601. {}
  602. ]
  603. },
  604. "l13": {
  605. "rgba": [
  606. {
  607. "time": 0.0667,
  608. "color": "ffffffff",
  609. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  610. },
  611. { "time": 0.2333, "color": "ffffff00" }
  612. ],
  613. "attachment": [
  614. {}
  615. ]
  616. },
  617. "l14": {
  618. "rgba": [
  619. {
  620. "time": 0.0667,
  621. "color": "ffffffff",
  622. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  623. },
  624. { "time": 0.2333, "color": "ffffff00" }
  625. ],
  626. "attachment": [
  627. {}
  628. ]
  629. },
  630. "l15": {
  631. "rgba": [
  632. {
  633. "time": 0.0667,
  634. "color": "ffffffff",
  635. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  636. },
  637. { "time": 0.2333, "color": "ffffff00" }
  638. ],
  639. "attachment": [
  640. {}
  641. ]
  642. },
  643. "l16": {
  644. "rgba": [
  645. {
  646. "time": 0.0667,
  647. "color": "ffffffff",
  648. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  649. },
  650. { "time": 0.2333, "color": "ffffff00" }
  651. ],
  652. "attachment": [
  653. {}
  654. ]
  655. },
  656. "l17": {
  657. "rgba": [
  658. {
  659. "time": 0.0667,
  660. "color": "ffffffff",
  661. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  662. },
  663. { "time": 0.2333, "color": "ffffff00" }
  664. ],
  665. "attachment": [
  666. {}
  667. ]
  668. },
  669. "l18": {
  670. "rgba": [
  671. {
  672. "time": 0.0667,
  673. "color": "ffffffff",
  674. "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
  675. },
  676. { "time": 0.3, "color": "ffffff00" }
  677. ],
  678. "attachment": [
  679. {}
  680. ]
  681. },
  682. "l19": {
  683. "rgba": [
  684. {
  685. "time": 0.1,
  686. "color": "ffffffff",
  687. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  688. },
  689. { "time": 0.3333, "color": "ffffff00" }
  690. ],
  691. "attachment": [
  692. {}
  693. ]
  694. },
  695. "l20": {
  696. "rgba": [
  697. {
  698. "time": 0.1,
  699. "color": "ffffffff",
  700. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  701. },
  702. { "time": 0.3333, "color": "ffffff00" }
  703. ],
  704. "attachment": [
  705. {}
  706. ]
  707. },
  708. "l21": {
  709. "rgba": [
  710. {
  711. "time": 0.1,
  712. "color": "ffffffff",
  713. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  714. },
  715. { "time": 0.3333, "color": "ffffff00" }
  716. ],
  717. "attachment": [
  718. {}
  719. ]
  720. },
  721. "l22": {
  722. "rgba": [
  723. {
  724. "time": 0.1,
  725. "color": "ffffffff",
  726. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  727. },
  728. { "time": 0.3333, "color": "ffffff00" }
  729. ],
  730. "attachment": [
  731. {}
  732. ]
  733. },
  734. "l23": {
  735. "rgba": [
  736. {
  737. "time": 0.1,
  738. "color": "ffffffff",
  739. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  740. },
  741. { "time": 0.3333, "color": "ffffff00" }
  742. ],
  743. "attachment": [
  744. {}
  745. ]
  746. },
  747. "l24": {
  748. "rgba": [
  749. {
  750. "time": 0.1,
  751. "color": "ffffffff",
  752. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  753. },
  754. { "time": 0.3333, "color": "ffffff00" }
  755. ],
  756. "attachment": [
  757. {}
  758. ]
  759. },
  760. "l25": {
  761. "rgba": [
  762. {
  763. "time": 0.1,
  764. "color": "ffffffff",
  765. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  766. },
  767. { "time": 0.3333, "color": "ffffff00" }
  768. ],
  769. "attachment": [
  770. {}
  771. ]
  772. },
  773. "l26": {
  774. "rgba": [
  775. {
  776. "time": 0.1,
  777. "color": "ffffffff",
  778. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  779. },
  780. { "time": 0.3333, "color": "ffffff00" }
  781. ],
  782. "attachment": [
  783. {}
  784. ]
  785. },
  786. "l27": {
  787. "rgba": [
  788. {
  789. "time": 0.1,
  790. "color": "ffffffff",
  791. "curve": [ 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 0 ]
  792. },
  793. { "time": 0.4, "color": "ffffff00" }
  794. ],
  795. "attachment": [
  796. {}
  797. ]
  798. },
  799. "l28": {
  800. "rgba": [
  801. {
  802. "time": 0.0667,
  803. "color": "ffffffff",
  804. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  805. },
  806. { "time": 0.2333, "color": "ffffff00" }
  807. ],
  808. "attachment": [
  809. {}
  810. ]
  811. },
  812. "l29": {
  813. "rgba": [
  814. {
  815. "time": 0.0667,
  816. "color": "ffffffff",
  817. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  818. },
  819. { "time": 0.2333, "color": "ffffff00" }
  820. ],
  821. "attachment": [
  822. {}
  823. ]
  824. },
  825. "l30": {
  826. "rgba": [
  827. {
  828. "time": 0.0667,
  829. "color": "ffffffff",
  830. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  831. },
  832. { "time": 0.2333, "color": "ffffff00" }
  833. ],
  834. "attachment": [
  835. {}
  836. ]
  837. },
  838. "l31": {
  839. "rgba": [
  840. {
  841. "time": 0.0667,
  842. "color": "ffffffff",
  843. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  844. },
  845. { "time": 0.2333, "color": "ffffff00" }
  846. ],
  847. "attachment": [
  848. {}
  849. ]
  850. },
  851. "l32": {
  852. "rgba": [
  853. {
  854. "time": 0.0667,
  855. "color": "ffffffff",
  856. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  857. },
  858. { "time": 0.2333, "color": "ffffff00" }
  859. ],
  860. "attachment": [
  861. {}
  862. ]
  863. },
  864. "l33": {
  865. "rgba": [
  866. {
  867. "time": 0.0667,
  868. "color": "ffffffff",
  869. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  870. },
  871. { "time": 0.2333, "color": "ffffff00" }
  872. ],
  873. "attachment": [
  874. {}
  875. ]
  876. },
  877. "l34": {
  878. "rgba": [
  879. {
  880. "time": 0.0667,
  881. "color": "ffffffff",
  882. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  883. },
  884. { "time": 0.2333, "color": "ffffff00" }
  885. ],
  886. "attachment": [
  887. {}
  888. ]
  889. },
  890. "l35": {
  891. "rgba": [
  892. {
  893. "time": 0.0667,
  894. "color": "ffffffff",
  895. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  896. },
  897. { "time": 0.2333, "color": "ffffff00" }
  898. ],
  899. "attachment": [
  900. {}
  901. ]
  902. },
  903. "l36": {
  904. "rgba": [
  905. {
  906. "time": 0.0667,
  907. "color": "ffffffff",
  908. "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
  909. },
  910. { "time": 0.3, "color": "ffffff00" }
  911. ],
  912. "attachment": [
  913. {}
  914. ]
  915. },
  916. "quan1": {
  917. "attachment": [
  918. {}
  919. ]
  920. },
  921. "quan01": {
  922. "rgba": [
  923. { "color": "ffffffb9" },
  924. { "time": 0.0667, "color": "fc4444ff" },
  925. { "time": 0.1667, "color": "fcae6ec4" },
  926. { "time": 0.3333, "color": "fff9c900" }
  927. ],
  928. "attachment": [
  929. { "name": "quan01" },
  930. { "time": 0.4 }
  931. ]
  932. },
  933. "quan2": {
  934. "attachment": [
  935. { "time": 0.1333 }
  936. ]
  937. },
  938. "quan02": {
  939. "rgba": [
  940. { "time": 0.0667, "color": "ffffffff" },
  941. { "time": 0.2333, "color": "ffffff01" }
  942. ],
  943. "attachment": [
  944. { "time": 0.4 }
  945. ]
  946. },
  947. "quan3": {
  948. "attachment": [
  949. {}
  950. ]
  951. },
  952. "quan03": {
  953. "rgba": [
  954. { "time": 0.0667, "color": "ffffffff" },
  955. { "time": 0.2333, "color": "ffffff00" }
  956. ],
  957. "attachment": [
  958. { "time": 0.4 }
  959. ]
  960. },
  961. "quan4": {
  962. "attachment": [
  963. {}
  964. ]
  965. },
  966. "quan04": {
  967. "rgba": [
  968. {
  969. "time": 0.1333,
  970. "color": "ffffffff",
  971. "curve": [ 0.133, 1, 0.333, 1, 0.133, 1, 0.333, 1, 0.133, 1, 0.333, 1, 0.133, 0.68, 0.333, 0 ]
  972. },
  973. { "time": 0.4, "color": "ffffff00" }
  974. ],
  975. "attachment": [
  976. { "time": 0.4 }
  977. ]
  978. },
  979. "quan5": {
  980. "attachment": [
  981. {}
  982. ]
  983. },
  984. "quan6": {
  985. "attachment": [
  986. {}
  987. ]
  988. },
  989. "quan7": {
  990. "attachment": [
  991. {}
  992. ]
  993. },
  994. "quan8": {
  995. "rgba": [
  996. { "time": 0.0667, "color": "ffffffff" },
  997. { "time": 0.2667, "color": "ffffff00" }
  998. ],
  999. "attachment": [
  1000. { "time": 0.4 }
  1001. ]
  1002. },
  1003. "quan08": {
  1004. "rgba": [
  1005. { "time": 0.0667, "color": "ffffffff" },
  1006. { "time": 0.2, "color": "ffffff00" }
  1007. ],
  1008. "attachment": [
  1009. { "time": 0.2 }
  1010. ]
  1011. },
  1012. "quan9": {
  1013. "rgba": [
  1014. {
  1015. "time": 0.1333,
  1016. "color": "ffffffff",
  1017. "curve": [ 0.133, 1, 0.283, 1, 0.133, 1, 0.283, 1, 0.133, 1, 0.283, 1, 0.133, 0.7, 0.283, 0 ]
  1018. },
  1019. { "time": 0.3333, "color": "ffffff00" }
  1020. ],
  1021. "attachment": [
  1022. { "time": 0.4 }
  1023. ]
  1024. },
  1025. "quan09": {
  1026. "rgba": [
  1027. { "time": 0.0667, "color": "ffffffff" },
  1028. { "time": 0.1667, "color": "ffffff01" }
  1029. ],
  1030. "attachment": [
  1031. { "time": 0.1667 }
  1032. ]
  1033. },
  1034. "quan10": {
  1035. "rgba": [
  1036. { "time": 0.0667, "color": "ffffffff" },
  1037. { "time": 0.3333, "color": "ffffff00" }
  1038. ],
  1039. "attachment": [
  1040. { "time": 0.3333 }
  1041. ]
  1042. },
  1043. "quan11": {
  1044. "attachment": [
  1045. {}
  1046. ]
  1047. },
  1048. "quan12": {
  1049. "rgba": [
  1050. { "time": 0.0667, "color": "ffffffff" },
  1051. { "time": 0.3333, "color": "ffffff00" }
  1052. ],
  1053. "attachment": [
  1054. { "time": 0.4 }
  1055. ]
  1056. },
  1057. "quan13": {
  1058. "attachment": [
  1059. {}
  1060. ]
  1061. },
  1062. "quan14": {
  1063. "attachment": [
  1064. {}
  1065. ]
  1066. },
  1067. "quan15": {
  1068. "attachment": [
  1069. {}
  1070. ]
  1071. },
  1072. "quan16": {
  1073. "attachment": [
  1074. {}
  1075. ]
  1076. },
  1077. "quan17": {
  1078. "attachment": [
  1079. {}
  1080. ]
  1081. },
  1082. "quan18": {
  1083. "attachment": [
  1084. {}
  1085. ]
  1086. },
  1087. "quan19": {
  1088. "attachment": [
  1089. {}
  1090. ]
  1091. },
  1092. "quan20": {
  1093. "attachment": [
  1094. {}
  1095. ]
  1096. },
  1097. "quan21": {
  1098. "attachment": [
  1099. {}
  1100. ]
  1101. },
  1102. "quan22": {
  1103. "rgba": [
  1104. { "color": "fff9c900" }
  1105. ]
  1106. },
  1107. "red": {
  1108. "attachment": [
  1109. { "time": 0.1 }
  1110. ]
  1111. }
  1112. },
  1113. "bones": {
  1114. "bone9": {
  1115. "translate": [
  1116. {
  1117. "time": 0.0667,
  1118. "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
  1119. },
  1120. { "time": 0.3, "x": -140.4 }
  1121. ],
  1122. "scale": [
  1123. {
  1124. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1125. },
  1126. {
  1127. "time": 0.0667,
  1128. "x": 0.8,
  1129. "y": 0.8,
  1130. "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
  1131. },
  1132. { "time": 0.3, "x": 20, "y": 20 }
  1133. ]
  1134. },
  1135. "bone8": {
  1136. "translate": [
  1137. {
  1138. "time": 0.0667,
  1139. "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
  1140. },
  1141. { "time": 0.2333, "x": -218.86 }
  1142. ],
  1143. "scale": [
  1144. {
  1145. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1146. },
  1147. {
  1148. "time": 0.0667,
  1149. "x": 0.8,
  1150. "y": 0.8,
  1151. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1152. },
  1153. { "time": 0.2333, "x": 10, "y": 10 }
  1154. ]
  1155. },
  1156. "bone7": {
  1157. "translate": [
  1158. {
  1159. "time": 0.0667,
  1160. "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
  1161. },
  1162. { "time": 0.2333, "x": -468.55 }
  1163. ],
  1164. "scale": [
  1165. {
  1166. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1167. },
  1168. {
  1169. "time": 0.0667,
  1170. "x": 0.8,
  1171. "y": 0.8,
  1172. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1173. },
  1174. { "time": 0.2333, "x": 10, "y": 10 }
  1175. ]
  1176. },
  1177. "bone6": {
  1178. "translate": [
  1179. {
  1180. "time": 0.0667,
  1181. "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
  1182. },
  1183. { "time": 0.2333, "x": -634 }
  1184. ],
  1185. "scale": [
  1186. {
  1187. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1188. },
  1189. {
  1190. "time": 0.0667,
  1191. "x": 0.8,
  1192. "y": 0.8,
  1193. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1194. },
  1195. { "time": 0.2333, "x": 10, "y": 10 }
  1196. ]
  1197. },
  1198. "bone5": {
  1199. "translate": [
  1200. {
  1201. "time": 0.0667,
  1202. "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
  1203. },
  1204. { "time": 0.2333, "x": -450.63 }
  1205. ],
  1206. "scale": [
  1207. {
  1208. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1209. },
  1210. {
  1211. "time": 0.0667,
  1212. "x": 0.8,
  1213. "y": 0.8,
  1214. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1215. },
  1216. { "time": 0.2333, "x": 10, "y": 10 }
  1217. ]
  1218. },
  1219. "bone4": {
  1220. "translate": [
  1221. {
  1222. "time": 0.0667,
  1223. "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
  1224. },
  1225. { "time": 0.2333, "x": -578.32 }
  1226. ],
  1227. "scale": [
  1228. {
  1229. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1230. },
  1231. {
  1232. "time": 0.0667,
  1233. "x": 0.8,
  1234. "y": 0.8,
  1235. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1236. },
  1237. { "time": 0.2333, "x": 10, "y": 10 }
  1238. ]
  1239. },
  1240. "bone3": {
  1241. "translate": [
  1242. {
  1243. "time": 0.0667,
  1244. "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
  1245. },
  1246. { "time": 0.2333, "x": -718.09 }
  1247. ],
  1248. "scale": [
  1249. {
  1250. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1251. },
  1252. {
  1253. "time": 0.0667,
  1254. "x": 0.8,
  1255. "y": 0.8,
  1256. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1257. },
  1258. { "time": 0.2333, "x": 10, "y": 10 }
  1259. ]
  1260. },
  1261. "bone2": {
  1262. "translate": [
  1263. {
  1264. "time": 0.0667,
  1265. "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
  1266. },
  1267. { "time": 0.2333, "x": -844.54 }
  1268. ],
  1269. "scale": [
  1270. {
  1271. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1272. },
  1273. {
  1274. "time": 0.0667,
  1275. "x": 0.8,
  1276. "y": 0.8,
  1277. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1278. },
  1279. { "time": 0.2333, "x": 10, "y": 10 }
  1280. ]
  1281. },
  1282. "bone": {
  1283. "translate": [
  1284. {
  1285. "time": 0.0667,
  1286. "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
  1287. },
  1288. { "time": 0.2333, "x": -949.43 }
  1289. ],
  1290. "scale": [
  1291. {
  1292. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1293. },
  1294. {
  1295. "time": 0.0667,
  1296. "x": 0.8,
  1297. "y": 0.8,
  1298. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1299. },
  1300. { "time": 0.2333, "x": 10, "y": 10 }
  1301. ]
  1302. },
  1303. "quan01": {
  1304. "scale": [
  1305. {
  1306. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  1307. },
  1308. {
  1309. "time": 0.0667,
  1310. "x": 0.95,
  1311. "y": 0.954,
  1312. "curve": [ 0.067, 1.724, 0.168, 2.638, 0.067, 1.727, 0.168, 2.64 ]
  1313. },
  1314. { "time": 0.3333, "x": 3.591, "y": 3.593 }
  1315. ]
  1316. },
  1317. "quan02": {
  1318. "scale": [
  1319. {
  1320. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  1321. },
  1322. {
  1323. "time": 0.0667,
  1324. "x": 0.95,
  1325. "y": 0.954,
  1326. "curve": [ 0.067, 1.724, 0.168, 2.638, 0.067, 1.727, 0.168, 2.64 ]
  1327. },
  1328. { "time": 0.3333, "x": 3.591, "y": 3.593 }
  1329. ]
  1330. },
  1331. "quan03": {
  1332. "scale": [
  1333. {
  1334. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  1335. },
  1336. {
  1337. "time": 0.0667,
  1338. "x": 0.95,
  1339. "y": 0.954,
  1340. "curve": [ 0.067, 2.25, 0.227, 4.139, 0.067, 2.253, 0.227, 4.14 ]
  1341. },
  1342. { "time": 0.4, "x": 5.56, "y": 5.561 }
  1343. ]
  1344. },
  1345. "quan04": {
  1346. "scale": [
  1347. {
  1348. "curve": [ 0, 0.982, 0.075, 0.95, 0, 0.984, 0.075, 0.954 ]
  1349. },
  1350. {
  1351. "time": 0.1,
  1352. "x": 0.95,
  1353. "y": 0.954,
  1354. "curve": [ 0.1, 0.689, 0.111, 0.415, 0.1, 0.692, 0.111, 0.417 ]
  1355. },
  1356. {
  1357. "time": 0.1333,
  1358. "x": 0.132,
  1359. "y": 0.132,
  1360. "curve": [ 0.17, 0.957, 0.266, 1.882, 0.17, 0.957, 0.266, 1.882 ]
  1361. },
  1362. { "time": 0.4, "x": 2.828, "y": 2.828 }
  1363. ]
  1364. },
  1365. "quan05": {
  1366. "scale": [
  1367. {
  1368. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  1369. },
  1370. {
  1371. "time": 0.0667,
  1372. "x": 0.95,
  1373. "y": 0.954,
  1374. "curve": [ 0.067, 3.1, 0.317, 7, 0.067, 3.102, 0.317, 7 ]
  1375. },
  1376. { "time": 0.4, "x": 7, "y": 7 }
  1377. ]
  1378. },
  1379. "quan06": {
  1380. "scale": [
  1381. {
  1382. "curve": [ 0, 0.982, 0.075, 0.95, 0, 0.984, 0.075, 0.954 ]
  1383. },
  1384. {
  1385. "time": 0.1,
  1386. "x": 0.95,
  1387. "y": 0.954,
  1388. "curve": [ 0.1, 0.788, 0.111, 0.619, 0.1, 0.79, 0.111, 0.618 ]
  1389. },
  1390. {
  1391. "time": 0.1333,
  1392. "x": 0.444,
  1393. "y": 0.44,
  1394. "curve": [ 0.168, 1.301, 0.266, 2.278, 0.168, 1.298, 0.266, 2.275 ]
  1395. },
  1396. { "time": 0.4, "x": 3.265, "y": 3.263 }
  1397. ]
  1398. },
  1399. "quan07": {
  1400. "scale": [
  1401. {
  1402. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  1403. },
  1404. {
  1405. "time": 0.0667,
  1406. "x": 0.95,
  1407. "y": 0.954,
  1408. "curve": [ 0.067, 1.894, 0.202, 3.087, 0.067, 1.898, 0.202, 3.089 ]
  1409. },
  1410. { "time": 0.4, "x": 4.269, "y": 4.271 }
  1411. ]
  1412. },
  1413. "quan08": {
  1414. "scale": [
  1415. {
  1416. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  1417. },
  1418. {
  1419. "time": 0.0667,
  1420. "x": 0.95,
  1421. "y": 0.954,
  1422. "curve": [ 0.067, 3.1, 0.167, 7, 0.067, 3.102, 0.167, 7 ]
  1423. },
  1424. { "time": 0.2, "x": 7, "y": 7 }
  1425. ]
  1426. },
  1427. "quan9": {
  1428. "scale": [
  1429. {},
  1430. { "time": 0.0667, "x": 0.95, "y": 0.954 }
  1431. ]
  1432. },
  1433. "quan10": {
  1434. "scale": [
  1435. {
  1436. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  1437. },
  1438. {
  1439. "time": 0.0667,
  1440. "x": 0.95,
  1441. "y": 0.954,
  1442. "curve": [ 0.068, 0.852, 0.08, 0.737, 0.068, 0.862, 0.08, 0.754 ]
  1443. },
  1444. {
  1445. "time": 0.1,
  1446. "x": 0.61,
  1447. "y": 0.634,
  1448. "curve": [ 0.172, 1.368, 0.262, 2.168, 0.172, 1.384, 0.262, 2.176 ]
  1449. },
  1450. { "time": 0.3667, "x": 3, "y": 3 }
  1451. ]
  1452. },
  1453. "quan0101": {
  1454. "scale": [
  1455. {},
  1456. { "time": 0.0667, "x": 0.875, "y": 0.875 },
  1457. {
  1458. "time": 0.1667,
  1459. "x": 1.483,
  1460. "y": 1.5,
  1461. "curve": [ 0.167, 1.399, 0.292, 1, 0.167, 1.413, 0.292, 1 ]
  1462. },
  1463. { "time": 0.3333 }
  1464. ]
  1465. },
  1466. "bone10": {
  1467. "translate": [
  1468. {
  1469. "time": 0.0667,
  1470. "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
  1471. },
  1472. { "time": 0.2333, "x": -949.43 }
  1473. ],
  1474. "scale": [
  1475. {
  1476. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1477. },
  1478. {
  1479. "time": 0.0667,
  1480. "x": 0.8,
  1481. "y": 0.8,
  1482. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1483. },
  1484. { "time": 0.2333, "x": 10, "y": 10 }
  1485. ]
  1486. },
  1487. "bone11": {
  1488. "translate": [
  1489. {
  1490. "time": 0.0667,
  1491. "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
  1492. },
  1493. { "time": 0.2333, "x": -844.54 }
  1494. ],
  1495. "scale": [
  1496. {
  1497. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1498. },
  1499. {
  1500. "time": 0.0667,
  1501. "x": 0.8,
  1502. "y": 0.8,
  1503. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1504. },
  1505. { "time": 0.2333, "x": 10, "y": 10 }
  1506. ]
  1507. },
  1508. "bone12": {
  1509. "translate": [
  1510. {
  1511. "time": 0.0667,
  1512. "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
  1513. },
  1514. { "time": 0.2333, "x": -718.09 }
  1515. ],
  1516. "scale": [
  1517. {
  1518. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1519. },
  1520. {
  1521. "time": 0.0667,
  1522. "x": 0.8,
  1523. "y": 0.8,
  1524. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1525. },
  1526. { "time": 0.2333, "x": 10, "y": 10 }
  1527. ]
  1528. },
  1529. "bone13": {
  1530. "translate": [
  1531. {
  1532. "time": 0.0667,
  1533. "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
  1534. },
  1535. { "time": 0.2333, "x": -578.32 }
  1536. ],
  1537. "scale": [
  1538. {
  1539. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1540. },
  1541. {
  1542. "time": 0.0667,
  1543. "x": 0.8,
  1544. "y": 0.8,
  1545. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1546. },
  1547. { "time": 0.2333, "x": 10, "y": 10 }
  1548. ]
  1549. },
  1550. "bone14": {
  1551. "translate": [
  1552. {
  1553. "time": 0.0667,
  1554. "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
  1555. },
  1556. { "time": 0.2333, "x": -450.63 }
  1557. ],
  1558. "scale": [
  1559. {
  1560. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1561. },
  1562. {
  1563. "time": 0.0667,
  1564. "x": 0.8,
  1565. "y": 0.8,
  1566. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1567. },
  1568. { "time": 0.2333, "x": 10, "y": 10 }
  1569. ]
  1570. },
  1571. "bone15": {
  1572. "translate": [
  1573. {
  1574. "time": 0.0667,
  1575. "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
  1576. },
  1577. { "time": 0.2333, "x": -634 }
  1578. ],
  1579. "scale": [
  1580. {
  1581. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1582. },
  1583. {
  1584. "time": 0.0667,
  1585. "x": 0.8,
  1586. "y": 0.8,
  1587. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1588. },
  1589. { "time": 0.2333, "x": 10, "y": 10 }
  1590. ]
  1591. },
  1592. "bone16": {
  1593. "translate": [
  1594. {
  1595. "time": 0.0667,
  1596. "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
  1597. },
  1598. { "time": 0.2333, "x": -468.55 }
  1599. ],
  1600. "scale": [
  1601. {
  1602. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1603. },
  1604. {
  1605. "time": 0.0667,
  1606. "x": 0.8,
  1607. "y": 0.8,
  1608. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1609. },
  1610. { "time": 0.2333, "x": 10, "y": 10 }
  1611. ]
  1612. },
  1613. "bone17": {
  1614. "translate": [
  1615. {
  1616. "time": 0.0667,
  1617. "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
  1618. },
  1619. { "time": 0.2333, "x": -218.86 }
  1620. ],
  1621. "scale": [
  1622. {
  1623. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1624. },
  1625. {
  1626. "time": 0.0667,
  1627. "x": 0.8,
  1628. "y": 0.8,
  1629. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1630. },
  1631. { "time": 0.2333, "x": 10, "y": 10 }
  1632. ]
  1633. },
  1634. "bone18": {
  1635. "translate": [
  1636. {
  1637. "time": 0.0667,
  1638. "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
  1639. },
  1640. { "time": 0.3, "x": -140.4 }
  1641. ],
  1642. "scale": [
  1643. {
  1644. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1645. },
  1646. {
  1647. "time": 0.0667,
  1648. "x": 0.8,
  1649. "y": 0.8,
  1650. "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
  1651. },
  1652. { "time": 0.3, "x": 20, "y": 20 }
  1653. ]
  1654. },
  1655. "bone19": {
  1656. "translate": [
  1657. {
  1658. "time": 0.1,
  1659. "curve": [ 0.158, 0, 0.275, -949.43, 0.158, 0, 0.275, 0 ]
  1660. },
  1661. { "time": 0.3333, "x": -949.43 },
  1662. { "time": 0.4, "x": -949.43 }
  1663. ],
  1664. "scale": [
  1665. {
  1666. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1667. },
  1668. {
  1669. "time": 0.1,
  1670. "x": 0.8,
  1671. "y": 0.8,
  1672. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  1673. },
  1674. { "time": 0.3333, "x": 10, "y": 10 }
  1675. ]
  1676. },
  1677. "bone20": {
  1678. "translate": [
  1679. {
  1680. "time": 0.1,
  1681. "curve": [ 0.158, 0, 0.275, -844.54, 0.158, 0, 0.275, 0 ]
  1682. },
  1683. { "time": 0.3333, "x": -844.54 },
  1684. { "time": 0.4, "x": -844.54 }
  1685. ],
  1686. "scale": [
  1687. {
  1688. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1689. },
  1690. {
  1691. "time": 0.1,
  1692. "x": 0.8,
  1693. "y": 0.8,
  1694. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  1695. },
  1696. { "time": 0.3333, "x": 10, "y": 10 }
  1697. ]
  1698. },
  1699. "bone21": {
  1700. "translate": [
  1701. {
  1702. "time": 0.1,
  1703. "curve": [ 0.158, 0, 0.275, -718.09, 0.158, 0, 0.275, 0 ]
  1704. },
  1705. { "time": 0.3333, "x": -718.09 }
  1706. ],
  1707. "scale": [
  1708. {
  1709. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1710. },
  1711. {
  1712. "time": 0.1,
  1713. "x": 0.8,
  1714. "y": 0.8,
  1715. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  1716. },
  1717. { "time": 0.3333, "x": 10, "y": 10 }
  1718. ]
  1719. },
  1720. "bone22": {
  1721. "translate": [
  1722. {
  1723. "time": 0.1,
  1724. "curve": [ 0.158, 0, 0.275, -578.32, 0.158, 0, 0.275, 0 ]
  1725. },
  1726. { "time": 0.3333, "x": -578.32 }
  1727. ],
  1728. "scale": [
  1729. {
  1730. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1731. },
  1732. {
  1733. "time": 0.1,
  1734. "x": 0.8,
  1735. "y": 0.8,
  1736. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  1737. },
  1738. { "time": 0.3333, "x": 10, "y": 10 }
  1739. ]
  1740. },
  1741. "bone23": {
  1742. "translate": [
  1743. {
  1744. "time": 0.1,
  1745. "curve": [ 0.158, 0, 0.275, -450.63, 0.158, 0, 0.275, 0 ]
  1746. },
  1747. { "time": 0.3333, "x": -450.63 },
  1748. { "time": 0.4, "x": -450.63 }
  1749. ],
  1750. "scale": [
  1751. {
  1752. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1753. },
  1754. {
  1755. "time": 0.1,
  1756. "x": 0.8,
  1757. "y": 0.8,
  1758. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  1759. },
  1760. { "time": 0.3333, "x": 10, "y": 10 }
  1761. ]
  1762. },
  1763. "bone24": {
  1764. "translate": [
  1765. {
  1766. "time": 0.1,
  1767. "curve": [ 0.158, 0, 0.275, -634, 0.158, 0, 0.275, 0 ]
  1768. },
  1769. { "time": 0.3333, "x": -634 }
  1770. ],
  1771. "scale": [
  1772. {
  1773. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1774. },
  1775. {
  1776. "time": 0.1,
  1777. "x": 0.8,
  1778. "y": 0.8,
  1779. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  1780. },
  1781. { "time": 0.3333, "x": 10, "y": 10 }
  1782. ]
  1783. },
  1784. "bone25": {
  1785. "translate": [
  1786. {
  1787. "time": 0.1,
  1788. "curve": [ 0.158, 0, 0.275, -468.55, 0.158, 0, 0.275, 0 ]
  1789. },
  1790. { "time": 0.3333, "x": -468.55 },
  1791. { "time": 0.4, "x": -468.55 }
  1792. ],
  1793. "scale": [
  1794. {
  1795. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1796. },
  1797. {
  1798. "time": 0.1,
  1799. "x": 0.8,
  1800. "y": 0.8,
  1801. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  1802. },
  1803. { "time": 0.3333, "x": 10, "y": 10 }
  1804. ]
  1805. },
  1806. "bone26": {
  1807. "translate": [
  1808. {
  1809. "time": 0.1,
  1810. "curve": [ 0.158, 0, 0.275, -218.86, 0.158, 0, 0.275, 0 ]
  1811. },
  1812. { "time": 0.3333, "x": -218.86 },
  1813. { "time": 0.4, "x": -218.86 }
  1814. ],
  1815. "scale": [
  1816. {
  1817. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1818. },
  1819. {
  1820. "time": 0.1,
  1821. "x": 0.8,
  1822. "y": 0.8,
  1823. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  1824. },
  1825. { "time": 0.3333, "x": 10, "y": 10 }
  1826. ]
  1827. },
  1828. "bone27": {
  1829. "translate": [
  1830. {
  1831. "time": 0.1,
  1832. "curve": [ 0.175, 0, 0.325, -140.4, 0.175, 0, 0.325, 0 ]
  1833. },
  1834. { "time": 0.4, "x": -140.4 }
  1835. ],
  1836. "scale": [
  1837. {
  1838. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  1839. },
  1840. {
  1841. "time": 0.1,
  1842. "x": 0.8,
  1843. "y": 0.8,
  1844. "curve": [ 0.181, 0.8, 0.286, 8.706, 0.181, 0.8, 0.286, 8.706 ]
  1845. },
  1846. { "time": 0.4, "x": 20, "y": 20 }
  1847. ]
  1848. },
  1849. "bone28": {
  1850. "translate": [
  1851. {
  1852. "time": 0.0667,
  1853. "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
  1854. },
  1855. { "time": 0.2333, "x": -949.43 },
  1856. { "time": 0.4, "x": -949.43 }
  1857. ],
  1858. "scale": [
  1859. {
  1860. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1861. },
  1862. {
  1863. "time": 0.0667,
  1864. "x": 0.8,
  1865. "y": 0.8,
  1866. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1867. },
  1868. { "time": 0.2333, "x": 10, "y": 10 }
  1869. ]
  1870. },
  1871. "bone29": {
  1872. "translate": [
  1873. {
  1874. "time": 0.0667,
  1875. "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
  1876. },
  1877. { "time": 0.2333, "x": -844.54 }
  1878. ],
  1879. "scale": [
  1880. {
  1881. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1882. },
  1883. {
  1884. "time": 0.0667,
  1885. "x": 0.8,
  1886. "y": 0.8,
  1887. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1888. },
  1889. { "time": 0.2333, "x": 10, "y": 10 }
  1890. ]
  1891. },
  1892. "bone30": {
  1893. "translate": [
  1894. {
  1895. "time": 0.0667,
  1896. "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
  1897. },
  1898. { "time": 0.2333, "x": -718.09 }
  1899. ],
  1900. "scale": [
  1901. {
  1902. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1903. },
  1904. {
  1905. "time": 0.0667,
  1906. "x": 0.8,
  1907. "y": 0.8,
  1908. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1909. },
  1910. { "time": 0.2333, "x": 10, "y": 10 }
  1911. ]
  1912. },
  1913. "bone31": {
  1914. "translate": [
  1915. {
  1916. "time": 0.0667,
  1917. "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
  1918. },
  1919. { "time": 0.2333, "x": -578.32 }
  1920. ],
  1921. "scale": [
  1922. {
  1923. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1924. },
  1925. {
  1926. "time": 0.0667,
  1927. "x": 0.8,
  1928. "y": 0.8,
  1929. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1930. },
  1931. { "time": 0.2333, "x": 10, "y": 10 }
  1932. ]
  1933. },
  1934. "bone32": {
  1935. "translate": [
  1936. {
  1937. "time": 0.0667,
  1938. "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
  1939. },
  1940. { "time": 0.2333, "x": -450.63 }
  1941. ],
  1942. "scale": [
  1943. {
  1944. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1945. },
  1946. {
  1947. "time": 0.0667,
  1948. "x": 0.8,
  1949. "y": 0.8,
  1950. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1951. },
  1952. { "time": 0.2333, "x": 10, "y": 10 }
  1953. ]
  1954. },
  1955. "bone33": {
  1956. "translate": [
  1957. {
  1958. "time": 0.0667,
  1959. "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
  1960. },
  1961. { "time": 0.2333, "x": -634 }
  1962. ],
  1963. "scale": [
  1964. {
  1965. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1966. },
  1967. {
  1968. "time": 0.0667,
  1969. "x": 0.8,
  1970. "y": 0.8,
  1971. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1972. },
  1973. { "time": 0.2333, "x": 10, "y": 10 }
  1974. ]
  1975. },
  1976. "bone34": {
  1977. "translate": [
  1978. {
  1979. "time": 0.0667,
  1980. "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
  1981. },
  1982. { "time": 0.2333, "x": -468.55 },
  1983. { "time": 0.4, "x": -468.55 }
  1984. ],
  1985. "scale": [
  1986. {
  1987. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  1988. },
  1989. {
  1990. "time": 0.0667,
  1991. "x": 0.8,
  1992. "y": 0.8,
  1993. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  1994. },
  1995. { "time": 0.2333, "x": 10, "y": 10 }
  1996. ]
  1997. },
  1998. "bone35": {
  1999. "translate": [
  2000. {
  2001. "time": 0.0667,
  2002. "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
  2003. },
  2004. { "time": 0.2333, "x": -218.86 }
  2005. ],
  2006. "scale": [
  2007. {
  2008. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  2009. },
  2010. {
  2011. "time": 0.0667,
  2012. "x": 0.8,
  2013. "y": 0.8,
  2014. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  2015. },
  2016. { "time": 0.2333, "x": 10, "y": 10 }
  2017. ]
  2018. },
  2019. "bone36": {
  2020. "translate": [
  2021. {
  2022. "time": 0.0667,
  2023. "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
  2024. },
  2025. { "time": 0.3, "x": -140.4 }
  2026. ],
  2027. "scale": [
  2028. {
  2029. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  2030. },
  2031. {
  2032. "time": 0.0667,
  2033. "x": 0.8,
  2034. "y": 0.8,
  2035. "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
  2036. },
  2037. { "time": 0.3, "x": 20, "y": 20 }
  2038. ]
  2039. },
  2040. "zi3": {
  2041. "translate": [
  2042. {},
  2043. { "time": 0.3667, "y": -243.1 }
  2044. ]
  2045. },
  2046. "zi4": {
  2047. "translate": [
  2048. { "time": 0.1333 },
  2049. { "time": 0.2333, "y": 184.41 }
  2050. ]
  2051. }
  2052. }
  2053. },
  2054. "animation_03": {
  2055. "slots": {
  2056. "l1": {
  2057. "rgba": [
  2058. { "color": "ffffff00", "curve": "stepped" },
  2059. {
  2060. "time": 0.6667,
  2061. "color": "ffffff00",
  2062. "curve": [ 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 0.27, 0.735, 0.62 ]
  2063. },
  2064. { "time": 0.8333, "color": "ffffffff" }
  2065. ]
  2066. },
  2067. "l2": {
  2068. "rgba": [
  2069. { "color": "ffffff00", "curve": "stepped" },
  2070. {
  2071. "time": 0.6333,
  2072. "color": "ffffff00",
  2073. "curve": [ 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 0.27, 0.702, 0.62 ]
  2074. },
  2075. { "time": 0.8, "color": "ffffffff" }
  2076. ]
  2077. },
  2078. "l3": {
  2079. "rgba": [
  2080. { "color": "ffffff00", "curve": "stepped" },
  2081. {
  2082. "time": 0.5667,
  2083. "color": "ffffff00",
  2084. "curve": [ 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 0.27, 0.635, 0.62 ]
  2085. },
  2086. { "time": 0.7333, "color": "ffffffff" }
  2087. ]
  2088. },
  2089. "l4": {
  2090. "rgba": [
  2091. { "color": "ffffff00", "curve": "stepped" },
  2092. {
  2093. "time": 0.5333,
  2094. "color": "ffffff00",
  2095. "curve": [ 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 0.27, 0.602, 0.62 ]
  2096. },
  2097. { "time": 0.7, "color": "ffffffff" }
  2098. ]
  2099. },
  2100. "l5": {
  2101. "rgba": [
  2102. { "color": "ffffff00", "curve": "stepped" },
  2103. {
  2104. "time": 0.5,
  2105. "color": "ffffff00",
  2106. "curve": [ 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 0.27, 0.569, 0.62 ]
  2107. },
  2108. { "time": 0.6667, "color": "ffffffff" }
  2109. ]
  2110. },
  2111. "l6": {
  2112. "rgba": [
  2113. { "color": "ffffff00", "curve": "stepped" },
  2114. {
  2115. "time": 0.4667,
  2116. "color": "ffffff00",
  2117. "curve": [ 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 0.27, 0.535, 0.62 ]
  2118. },
  2119. { "time": 0.6333, "color": "ffffffff" }
  2120. ]
  2121. },
  2122. "l7": {
  2123. "rgba": [
  2124. { "color": "ffffff00", "curve": "stepped" },
  2125. {
  2126. "time": 0.4,
  2127. "color": "ffffff00",
  2128. "curve": [ 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 0.27, 0.469, 0.62 ]
  2129. },
  2130. { "time": 0.5667, "color": "ffffffff" }
  2131. ]
  2132. },
  2133. "l8": {
  2134. "rgba": [
  2135. { "color": "ffffff00", "curve": "stepped" },
  2136. {
  2137. "time": 0.3667,
  2138. "color": "ffffff00",
  2139. "curve": [ 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 0.27, 0.435, 0.62 ]
  2140. },
  2141. { "time": 0.5333, "color": "ffffffff" }
  2142. ]
  2143. },
  2144. "l9": {
  2145. "rgba": [
  2146. { "color": "ffffff00", "curve": "stepped" },
  2147. {
  2148. "time": 0.3333,
  2149. "color": "ffffff00",
  2150. "curve": [ 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 0.27, 0.402, 0.62 ]
  2151. },
  2152. { "time": 0.5, "color": "ffffffff" }
  2153. ]
  2154. },
  2155. "l10": {
  2156. "rgba": [
  2157. { "color": "ffffff00", "curve": "stepped" },
  2158. {
  2159. "time": 0.6667,
  2160. "color": "ffffff00",
  2161. "curve": [ 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 0.27, 0.735, 0.62 ]
  2162. },
  2163. { "time": 0.8333, "color": "ffffffff" }
  2164. ]
  2165. },
  2166. "l11": {
  2167. "rgba": [
  2168. { "color": "ffffff00", "curve": "stepped" },
  2169. {
  2170. "time": 0.6333,
  2171. "color": "ffffff00",
  2172. "curve": [ 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 0.27, 0.702, 0.62 ]
  2173. },
  2174. { "time": 0.8, "color": "ffffffff" }
  2175. ]
  2176. },
  2177. "l12": {
  2178. "rgba": [
  2179. { "color": "ffffff00", "curve": "stepped" },
  2180. {
  2181. "time": 0.5667,
  2182. "color": "ffffff00",
  2183. "curve": [ 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 0.27, 0.635, 0.62 ]
  2184. },
  2185. { "time": 0.7333, "color": "ffffffff" }
  2186. ]
  2187. },
  2188. "l13": {
  2189. "rgba": [
  2190. { "color": "ffffff00", "curve": "stepped" },
  2191. {
  2192. "time": 0.5333,
  2193. "color": "ffffff00",
  2194. "curve": [ 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 0.27, 0.602, 0.62 ]
  2195. },
  2196. { "time": 0.7, "color": "ffffffff" }
  2197. ]
  2198. },
  2199. "l14": {
  2200. "rgba": [
  2201. { "color": "ffffff00", "curve": "stepped" },
  2202. {
  2203. "time": 0.5,
  2204. "color": "ffffff00",
  2205. "curve": [ 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 0.27, 0.569, 0.62 ]
  2206. },
  2207. { "time": 0.6667, "color": "ffffffff" }
  2208. ]
  2209. },
  2210. "l15": {
  2211. "rgba": [
  2212. { "color": "ffffff00", "curve": "stepped" },
  2213. {
  2214. "time": 0.4667,
  2215. "color": "ffffff00",
  2216. "curve": [ 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 0.27, 0.535, 0.62 ]
  2217. },
  2218. { "time": 0.6333, "color": "ffffffff" }
  2219. ]
  2220. },
  2221. "l16": {
  2222. "rgba": [
  2223. { "color": "ffffff00", "curve": "stepped" },
  2224. {
  2225. "time": 0.4,
  2226. "color": "ffffff00",
  2227. "curve": [ 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 0.27, 0.469, 0.62 ]
  2228. },
  2229. { "time": 0.5667, "color": "ffffffff" }
  2230. ]
  2231. },
  2232. "l17": {
  2233. "rgba": [
  2234. { "color": "ffffff00", "curve": "stepped" },
  2235. {
  2236. "time": 0.3667,
  2237. "color": "ffffff00",
  2238. "curve": [ 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 0.27, 0.435, 0.62 ]
  2239. },
  2240. { "time": 0.5333, "color": "ffffffff" }
  2241. ]
  2242. },
  2243. "l18": {
  2244. "rgba": [
  2245. { "color": "ffffff00", "curve": "stepped" },
  2246. {
  2247. "time": 0.3333,
  2248. "color": "ffffff00",
  2249. "curve": [ 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 0.27, 0.402, 0.62 ]
  2250. },
  2251. { "time": 0.5, "color": "ffffffff" }
  2252. ]
  2253. },
  2254. "l19": {
  2255. "rgba": [
  2256. { "color": "ffffff00", "curve": "stepped" },
  2257. {
  2258. "time": 0.6667,
  2259. "color": "ffffff00",
  2260. "curve": [ 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 0.27, 0.735, 0.62 ]
  2261. },
  2262. { "time": 0.8333, "color": "ffffffff" }
  2263. ]
  2264. },
  2265. "l20": {
  2266. "rgba": [
  2267. { "color": "ffffff00", "curve": "stepped" },
  2268. {
  2269. "time": 0.6333,
  2270. "color": "ffffff00",
  2271. "curve": [ 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 0.27, 0.702, 0.62 ]
  2272. },
  2273. { "time": 0.8, "color": "ffffffff" }
  2274. ]
  2275. },
  2276. "l21": {
  2277. "rgba": [
  2278. { "color": "ffffff00", "curve": "stepped" },
  2279. {
  2280. "time": 0.5667,
  2281. "color": "ffffff00",
  2282. "curve": [ 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 0.27, 0.635, 0.62 ]
  2283. },
  2284. { "time": 0.7333, "color": "ffffffff" }
  2285. ]
  2286. },
  2287. "l22": {
  2288. "rgba": [
  2289. { "color": "ffffff00", "curve": "stepped" },
  2290. {
  2291. "time": 0.5333,
  2292. "color": "ffffff00",
  2293. "curve": [ 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 0.27, 0.602, 0.62 ]
  2294. },
  2295. { "time": 0.7, "color": "ffffffff" }
  2296. ]
  2297. },
  2298. "l23": {
  2299. "rgba": [
  2300. { "color": "ffffff00", "curve": "stepped" },
  2301. {
  2302. "time": 0.5,
  2303. "color": "ffffff00",
  2304. "curve": [ 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 0.27, 0.569, 0.62 ]
  2305. },
  2306. { "time": 0.6667, "color": "ffffffff" }
  2307. ]
  2308. },
  2309. "l24": {
  2310. "rgba": [
  2311. { "color": "ffffff00", "curve": "stepped" },
  2312. {
  2313. "time": 0.4667,
  2314. "color": "ffffff00",
  2315. "curve": [ 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 0.27, 0.535, 0.62 ]
  2316. },
  2317. { "time": 0.6333, "color": "ffffffff" }
  2318. ]
  2319. },
  2320. "l25": {
  2321. "rgba": [
  2322. { "color": "ffffff00", "curve": "stepped" },
  2323. {
  2324. "time": 0.4,
  2325. "color": "ffffff00",
  2326. "curve": [ 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 0.27, 0.469, 0.62 ]
  2327. },
  2328. { "time": 0.5667, "color": "ffffffff" }
  2329. ]
  2330. },
  2331. "l26": {
  2332. "rgba": [
  2333. { "color": "ffffff00", "curve": "stepped" },
  2334. {
  2335. "time": 0.3667,
  2336. "color": "ffffff00",
  2337. "curve": [ 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 0.27, 0.435, 0.62 ]
  2338. },
  2339. { "time": 0.5333, "color": "ffffffff" }
  2340. ]
  2341. },
  2342. "l27": {
  2343. "rgba": [
  2344. { "color": "ffffff00", "curve": "stepped" },
  2345. {
  2346. "time": 0.3333,
  2347. "color": "ffffff00",
  2348. "curve": [ 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 0.27, 0.402, 0.62 ]
  2349. },
  2350. { "time": 0.5, "color": "ffffffff" }
  2351. ]
  2352. },
  2353. "l28": {
  2354. "rgba": [
  2355. { "color": "ffffff00", "curve": "stepped" },
  2356. {
  2357. "time": 0.6667,
  2358. "color": "ffffff00",
  2359. "curve": [ 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 1, 0.735, 1, 0.667, 0.27, 0.735, 0.62 ]
  2360. },
  2361. { "time": 0.8333, "color": "ffffffff" }
  2362. ]
  2363. },
  2364. "l29": {
  2365. "rgba": [
  2366. { "color": "ffffff00", "curve": "stepped" },
  2367. {
  2368. "time": 0.6333,
  2369. "color": "ffffff00",
  2370. "curve": [ 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 1, 0.702, 1, 0.633, 0.27, 0.702, 0.62 ]
  2371. },
  2372. { "time": 0.8, "color": "ffffffff" }
  2373. ]
  2374. },
  2375. "l30": {
  2376. "rgba": [
  2377. { "color": "ffffff00", "curve": "stepped" },
  2378. {
  2379. "time": 0.5667,
  2380. "color": "ffffff00",
  2381. "curve": [ 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 1, 0.635, 1, 0.567, 0.27, 0.635, 0.62 ]
  2382. },
  2383. { "time": 0.7333, "color": "ffffffff" }
  2384. ]
  2385. },
  2386. "l31": {
  2387. "rgba": [
  2388. { "color": "ffffff00", "curve": "stepped" },
  2389. {
  2390. "time": 0.5333,
  2391. "color": "ffffff00",
  2392. "curve": [ 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 1, 0.602, 1, 0.533, 0.27, 0.602, 0.62 ]
  2393. },
  2394. { "time": 0.7, "color": "ffffffff" }
  2395. ]
  2396. },
  2397. "l32": {
  2398. "rgba": [
  2399. { "color": "ffffff00", "curve": "stepped" },
  2400. {
  2401. "time": 0.5,
  2402. "color": "ffffff00",
  2403. "curve": [ 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 1, 0.569, 1, 0.5, 0.27, 0.569, 0.62 ]
  2404. },
  2405. { "time": 0.6667, "color": "ffffffff" }
  2406. ]
  2407. },
  2408. "l33": {
  2409. "rgba": [
  2410. { "color": "ffffff00", "curve": "stepped" },
  2411. {
  2412. "time": 0.4667,
  2413. "color": "ffffff00",
  2414. "curve": [ 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 1, 0.535, 1, 0.467, 0.27, 0.535, 0.62 ]
  2415. },
  2416. { "time": 0.6333, "color": "ffffffff" }
  2417. ]
  2418. },
  2419. "l34": {
  2420. "rgba": [
  2421. { "color": "ffffff00", "curve": "stepped" },
  2422. {
  2423. "time": 0.4,
  2424. "color": "ffffff00",
  2425. "curve": [ 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 1, 0.469, 1, 0.4, 0.27, 0.469, 0.62 ]
  2426. },
  2427. { "time": 0.5667, "color": "ffffffff" }
  2428. ]
  2429. },
  2430. "l35": {
  2431. "rgba": [
  2432. { "color": "ffffff00", "curve": "stepped" },
  2433. {
  2434. "time": 0.3667,
  2435. "color": "ffffff00",
  2436. "curve": [ 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 1, 0.435, 1, 0.367, 0.27, 0.435, 0.62 ]
  2437. },
  2438. { "time": 0.5333, "color": "ffffffff" }
  2439. ]
  2440. },
  2441. "l36": {
  2442. "rgba": [
  2443. { "color": "ffffff00", "curve": "stepped" },
  2444. {
  2445. "time": 0.3333,
  2446. "color": "ffffff00",
  2447. "curve": [ 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 1, 0.402, 1, 0.333, 0.27, 0.402, 0.62 ]
  2448. },
  2449. { "time": 0.5, "color": "ffffffff" }
  2450. ]
  2451. },
  2452. "quan1": {
  2453. "rgba": [
  2454. { "color": "ffffff00", "curve": "stepped" },
  2455. { "time": 0.0333, "color": "ffffff00" },
  2456. { "time": 0.0667, "color": "00f8ffff" },
  2457. { "time": 0.1333, "color": "00f4ffff" },
  2458. { "time": 0.2, "color": "ffffff00" }
  2459. ],
  2460. "attachment": [
  2461. { "time": 0.2333 }
  2462. ]
  2463. },
  2464. "quan01": {
  2465. "rgba": [
  2466. { "color": "b900ff21" },
  2467. { "time": 0.1667, "color": "ca44fcff" },
  2468. {
  2469. "time": 0.5,
  2470. "color": "b211ffc4",
  2471. "curve": [ 0.5, 0.79, 0.65, 0.88, 0.5, 0.04, 0.65, 0.01, 0.5, 1, 0.65, 1, 0.5, 0.46, 0.65, 0.15 ]
  2472. },
  2473. { "time": 0.8667, "color": "ec00ff00" }
  2474. ],
  2475. "attachment": [
  2476. { "name": "quan01" },
  2477. { "time": 0.8667 }
  2478. ]
  2479. },
  2480. "quan2": {
  2481. "rgba": [
  2482. { "color": "ffffff00", "curve": "stepped" },
  2483. {
  2484. "time": 0.1667,
  2485. "color": "ffffff00",
  2486. "curve": [ 0.208, 1, 0.292, 1, 0.208, 1, 0.292, 1, 0.208, 1, 0.292, 1, 0.208, 0, 0.292, 1 ]
  2487. },
  2488. { "time": 0.3333, "color": "ffffffff" }
  2489. ]
  2490. },
  2491. "quan02": {
  2492. "rgba": [
  2493. { "color": "ffffff00", "curve": "stepped" },
  2494. {
  2495. "time": 0.1667,
  2496. "color": "ffffff00",
  2497. "curve": [ 0.217, 1, 0.317, 1, 0.217, 1, 0.317, 1, 0.217, 1, 0.317, 1, 0.217, 0, 0.317, 1 ]
  2498. },
  2499. { "time": 0.3667, "color": "ffffffff" }
  2500. ]
  2501. },
  2502. "quan3": {
  2503. "rgba": [
  2504. { "color": "ffffff00", "curve": "stepped" },
  2505. { "time": 0.1, "color": "ffffff00" },
  2506. { "time": 0.1333, "color": "00f4ffff" },
  2507. { "time": 0.2, "color": "00fff8ff" },
  2508. { "time": 0.2667, "color": "00f8ff00" }
  2509. ],
  2510. "attachment": [
  2511. { "time": 0.3333 }
  2512. ]
  2513. },
  2514. "quan03": {
  2515. "rgba": [
  2516. { "color": "ffffff00", "curve": "stepped" },
  2517. {
  2518. "time": 0.2,
  2519. "color": "ffffff00",
  2520. "curve": [ 0.267, 1, 0.4, 1, 0.267, 1, 0.4, 1, 0.267, 1, 0.4, 1, 0.267, 0, 0.4, 1 ]
  2521. },
  2522. { "time": 0.4667, "color": "ffffffff" }
  2523. ]
  2524. },
  2525. "quan4": {
  2526. "rgba": [
  2527. { "color": "ffffff00", "curve": "stepped" },
  2528. { "time": 0.1, "color": "ffffff00" },
  2529. { "time": 0.1667, "color": "00ffe7ff" },
  2530. { "time": 0.2, "color": "00fff1ff" },
  2531. { "time": 0.2667, "color": "00fffb00" }
  2532. ],
  2533. "attachment": [
  2534. { "time": 0.3 }
  2535. ]
  2536. },
  2537. "quan04": {
  2538. "rgba": [
  2539. { "color": "ffffff00", "curve": "stepped" },
  2540. {
  2541. "time": 0.2333,
  2542. "color": "ffffff00",
  2543. "curve": [ 0.3, 1, 0.433, 1, 0.3, 1, 0.433, 1, 0.3, 1, 0.433, 1, 0.3, 0, 0.433, 1 ]
  2544. },
  2545. { "time": 0.5, "color": "ffffffff" }
  2546. ]
  2547. },
  2548. "quan5": {
  2549. "rgba": [
  2550. { "color": "ffffff00" },
  2551. { "time": 0.0333, "color": "fe42ffff" },
  2552. { "time": 0.1333, "color": "ff00f9ff" },
  2553. { "time": 0.2, "color": "ff2ffa00" }
  2554. ],
  2555. "attachment": [
  2556. { "time": 0.2333 }
  2557. ]
  2558. },
  2559. "quan6": {
  2560. "rgba": [
  2561. { "color": "ffffff00", "curve": "stepped" },
  2562. { "time": 0.0667, "color": "ffffff00" },
  2563. { "time": 0.1333, "color": "00f8ffff" },
  2564. { "time": 0.2333, "color": "04f4ffff" },
  2565. { "time": 0.3, "color": "00fbff00" }
  2566. ],
  2567. "attachment": [
  2568. { "time": 0.3667 }
  2569. ]
  2570. },
  2571. "quan7": {
  2572. "rgba": [
  2573. { "color": "ffffff00", "curve": "stepped" },
  2574. { "time": 0.1333, "color": "ffffff00" },
  2575. { "time": 0.2333, "color": "00fff1ff" },
  2576. { "time": 0.3333, "color": "00f8ffff" },
  2577. { "time": 0.4333, "color": "00fff400" }
  2578. ],
  2579. "attachment": [
  2580. { "time": 0.5 }
  2581. ]
  2582. },
  2583. "quan8": {
  2584. "rgba": [
  2585. { "color": "ffffff00", "curve": "stepped" },
  2586. {
  2587. "time": 0.3,
  2588. "color": "ffffff00",
  2589. "curve": [ 0.375, 1, 0.525, 1, 0.375, 1, 0.525, 1, 0.375, 1, 0.525, 1, 0.375, 0, 0.525, 1 ]
  2590. },
  2591. { "time": 0.6, "color": "ffffffff" }
  2592. ]
  2593. },
  2594. "quan08": {
  2595. "rgba": [
  2596. { "color": "ffffff00", "curve": "stepped" },
  2597. {
  2598. "time": 0.3333,
  2599. "color": "ffffff00",
  2600. "curve": [ 0.408, 1, 0.558, 1, 0.408, 1, 0.558, 1, 0.408, 1, 0.558, 1, 0.408, 0, 0.558, 1 ]
  2601. },
  2602. { "time": 0.6333, "color": "ffffffff" }
  2603. ]
  2604. },
  2605. "quan9": {
  2606. "rgba": [
  2607. { "color": "ffffff00", "curve": "stepped" },
  2608. {
  2609. "time": 0.2667,
  2610. "color": "ffffff00",
  2611. "curve": [ 0.342, 1, 0.492, 1, 0.342, 1, 0.492, 1, 0.342, 1, 0.492, 1, 0.342, 0, 0.492, 1 ]
  2612. },
  2613. { "time": 0.5667, "color": "ffffffff" }
  2614. ]
  2615. },
  2616. "quan09": {
  2617. "rgba": [
  2618. { "color": "ffffff00", "curve": "stepped" },
  2619. {
  2620. "time": 0.3667,
  2621. "color": "ffffff00",
  2622. "curve": [ 0.442, 1, 0.592, 1, 0.442, 1, 0.592, 1, 0.442, 1, 0.592, 1, 0.442, 0, 0.592, 1 ]
  2623. },
  2624. { "time": 0.6667, "color": "ffffffff" }
  2625. ]
  2626. },
  2627. "quan10": {
  2628. "rgba": [
  2629. { "color": "ffffff00", "curve": "stepped" },
  2630. {
  2631. "time": 0.4333,
  2632. "color": "ffffff00",
  2633. "curve": [ 0.5, 1, 0.633, 1, 0.5, 1, 0.633, 1, 0.5, 1, 0.633, 1, 0.5, 0, 0.633, 1 ]
  2634. },
  2635. { "time": 0.7, "color": "ffffffff" }
  2636. ],
  2637. "attachment": [
  2638. {},
  2639. { "time": 0.4333, "name": "quan10" }
  2640. ]
  2641. },
  2642. "quan11": {
  2643. "rgba": [
  2644. { "color": "ffffff00", "curve": "stepped" },
  2645. { "time": 0.1667, "color": "ffffff00" },
  2646. { "time": 0.2333, "color": "ff00f6ff", "curve": "stepped" },
  2647. { "time": 0.3333, "color": "ff00f6ff" },
  2648. { "time": 0.4, "color": "ff00f600" }
  2649. ],
  2650. "attachment": [
  2651. { "time": 0.4667 }
  2652. ]
  2653. },
  2654. "quan12": {
  2655. "rgba": [
  2656. { "color": "ffffff00", "curve": "stepped" },
  2657. {
  2658. "time": 0.2333,
  2659. "color": "ffffff00",
  2660. "curve": [ 0.308, 1, 0.458, 1, 0.308, 1, 0.458, 1, 0.308, 1, 0.458, 1, 0.308, 0, 0.458, 1 ]
  2661. },
  2662. { "time": 0.5333, "color": "ffffffff" }
  2663. ]
  2664. },
  2665. "quan13": {
  2666. "rgba": [
  2667. { "color": "ffffff00" },
  2668. { "time": 0.0667, "color": "f300ffff" },
  2669. { "time": 0.2, "color": "ff00f2ff" },
  2670. { "time": 0.3, "color": "ff00f900" }
  2671. ],
  2672. "attachment": [
  2673. { "time": 0.3667 }
  2674. ]
  2675. },
  2676. "quan14": {
  2677. "rgba": [
  2678. { "color": "ffffff00", "curve": "stepped" },
  2679. { "time": 0.1, "color": "ffffff00" },
  2680. { "time": 0.1667, "color": "00fff4ff" },
  2681. { "time": 0.3, "color": "00fffbff" },
  2682. { "time": 0.4333, "color": "00e0ff01" }
  2683. ],
  2684. "attachment": [
  2685. { "time": 0.5 }
  2686. ]
  2687. },
  2688. "quan15": {
  2689. "rgba": [
  2690. { "color": "ffffff00", "curve": "stepped" },
  2691. { "time": 0.1667, "color": "ffffff00" },
  2692. { "time": 0.3, "color": "fa00ffff" },
  2693. { "time": 0.4667, "color": "f900ffff" },
  2694. { "time": 0.6, "color": "f900ff00" }
  2695. ],
  2696. "attachment": [
  2697. { "time": 0.6667 }
  2698. ]
  2699. },
  2700. "quan16": {
  2701. "rgba": [
  2702. { "color": "ffffff00", "curve": "stepped" },
  2703. { "time": 0.2333, "color": "ffffff00" },
  2704. { "time": 0.3, "color": "f900ffff", "curve": "stepped" },
  2705. { "time": 0.4667, "color": "f900ffff" },
  2706. { "time": 0.5667, "color": "f900ff00" }
  2707. ],
  2708. "attachment": [
  2709. { "time": 0.6333 }
  2710. ]
  2711. },
  2712. "quan17": {
  2713. "rgba": [
  2714. { "color": "00f4ff00" },
  2715. { "time": 0.1, "color": "00f4ffff", "curve": "stepped" },
  2716. { "time": 0.3, "color": "00f4ffff" },
  2717. { "time": 0.4, "color": "00f4ff00" }
  2718. ],
  2719. "attachment": [
  2720. { "time": 0.5 }
  2721. ]
  2722. },
  2723. "quan18": {
  2724. "rgba": [
  2725. { "color": "ffffff00", "curve": "stepped" },
  2726. { "time": 0.1, "color": "ffffff00" },
  2727. { "time": 0.1333, "color": "ce00ffff", "curve": "stepped" },
  2728. { "time": 0.2333, "color": "ce00ffff" },
  2729. { "time": 0.4, "color": "f000ff00" }
  2730. ],
  2731. "attachment": [
  2732. { "time": 0.4333 }
  2733. ]
  2734. },
  2735. "quan19": {
  2736. "rgba": [
  2737. { "color": "ffffff00" },
  2738. { "time": 0.1333, "color": "00f4ff00" },
  2739. { "time": 0.2667, "color": "00eaffff" },
  2740. { "time": 0.4, "color": "00fff4ff" },
  2741. { "time": 0.5, "color": "00f1ff00" }
  2742. ],
  2743. "attachment": [
  2744. { "time": 0.5667 }
  2745. ]
  2746. },
  2747. "quan20": {
  2748. "rgba": [
  2749. { "color": "ffffff00", "curve": "stepped" },
  2750. { "time": 0.2, "color": "ffffff00" },
  2751. { "time": 0.2667, "color": "ce00ffff" }
  2752. ],
  2753. "attachment": [
  2754. { "time": 0.4667 }
  2755. ]
  2756. },
  2757. "quan21": {
  2758. "rgba": [
  2759. { "color": "ff00f600" },
  2760. { "time": 0.1, "color": "ff00f6ff", "curve": "stepped" },
  2761. { "time": 0.2667, "color": "ff00f6ff" },
  2762. { "time": 0.3667, "color": "ff00f600" }
  2763. ],
  2764. "attachment": [
  2765. { "time": 0.4333 }
  2766. ]
  2767. },
  2768. "quan22": {
  2769. "rgba": [
  2770. { "color": "ffffff85" },
  2771. { "time": 0.1667, "color": "ffffffff" },
  2772. {
  2773. "time": 0.3,
  2774. "color": "ffffff7e",
  2775. "curve": [ 0.3, 0.97, 0.532, 0.94, 0.3, 0.6, 0.532, 0.19, 0.3, 1, 0.532, 1, 0.3, 0.3, 0.532, 0.1 ]
  2776. },
  2777. { "time": 0.8667, "color": "ec00ff00" }
  2778. ],
  2779. "attachment": [
  2780. { "name": "quan01" },
  2781. { "time": 0.8667 }
  2782. ]
  2783. },
  2784. "red": {
  2785. "rgba": [
  2786. { "color": "ffffff00", "curve": "stepped" },
  2787. { "time": 0.1667, "color": "ffffff00" },
  2788. { "time": 0.5, "color": "ffffffff" }
  2789. ]
  2790. }
  2791. },
  2792. "bones": {
  2793. "bone6": {
  2794. "translate": [
  2795. { "time": 0.1667 },
  2796. { "time": 0.4667, "x": -9.18 },
  2797. { "time": 0.5667, "x": 4.17 },
  2798. { "time": 0.6333 }
  2799. ]
  2800. },
  2801. "bone28": {
  2802. "translate": [
  2803. { "time": 0.1667 },
  2804. { "time": 0.6667, "x": -6.68 },
  2805. { "time": 0.7667, "x": 1.67 },
  2806. { "time": 0.8333 }
  2807. ]
  2808. },
  2809. "bone19": {
  2810. "translate": [
  2811. { "time": 0.1667 },
  2812. { "time": 0.6667, "x": -8.35 },
  2813. { "time": 0.7667, "x": 2.51 },
  2814. { "time": 0.8333 }
  2815. ]
  2816. },
  2817. "bone3": {
  2818. "translate": [
  2819. { "time": 0.1667 },
  2820. { "time": 0.5667, "x": -9.18 },
  2821. { "time": 0.6667, "x": 4.17 },
  2822. { "time": 0.7333 }
  2823. ]
  2824. },
  2825. "bone25": {
  2826. "translate": [
  2827. { "time": 0.1667 },
  2828. { "time": 0.4, "x": -8.35 },
  2829. { "time": 0.5, "x": 2.51 },
  2830. { "time": 0.5667 }
  2831. ]
  2832. },
  2833. "bone7": {
  2834. "translate": [
  2835. { "time": 0.1667 },
  2836. { "time": 0.4, "x": -9.18 },
  2837. { "time": 0.5, "x": 4.17 },
  2838. { "time": 0.5667 }
  2839. ]
  2840. },
  2841. "bone10": {
  2842. "translate": [
  2843. { "time": 0.1667 },
  2844. { "time": 0.6667, "x": -10.02 },
  2845. { "time": 0.7667, "x": 3.34 },
  2846. { "time": 0.8333 }
  2847. ]
  2848. },
  2849. "bone27": {
  2850. "translate": [
  2851. { "time": 0.1667 },
  2852. { "time": 0.3333, "x": -8.35 },
  2853. { "time": 0.4333, "x": 2.51 },
  2854. { "time": 0.5 }
  2855. ]
  2856. },
  2857. "bone5": {
  2858. "translate": [
  2859. { "time": 0.1667 },
  2860. { "time": 0.5, "x": -9.18 },
  2861. { "time": 0.6, "x": 4.17 },
  2862. { "time": 0.6667 }
  2863. ]
  2864. },
  2865. "quan02": {
  2866. "scale": [
  2867. { "x": 5, "y": 5, "curve": "stepped" },
  2868. {
  2869. "time": 0.1667,
  2870. "x": 5,
  2871. "y": 5,
  2872. "curve": [ 0.217, 5, 0.317, 0.9, 0.217, 5, 0.317, 0.9 ]
  2873. },
  2874. {
  2875. "time": 0.3667,
  2876. "x": 0.9,
  2877. "y": 0.9,
  2878. "curve": [ 0.383, 0.9, 0.417, 1, 0.383, 0.9, 0.417, 1 ]
  2879. },
  2880. { "time": 0.4333 }
  2881. ]
  2882. },
  2883. "bone4": {
  2884. "translate": [
  2885. { "time": 0.1667 },
  2886. { "time": 0.5333, "x": -9.18 },
  2887. { "time": 0.6333, "x": 4.17 },
  2888. { "time": 0.7 }
  2889. ]
  2890. },
  2891. "bone34": {
  2892. "translate": [
  2893. { "time": 0.1667 },
  2894. { "time": 0.4, "x": -6.68 },
  2895. { "time": 0.5, "x": 1.67 },
  2896. { "time": 0.5667 }
  2897. ]
  2898. },
  2899. "bone24": {
  2900. "translate": [
  2901. { "time": 0.1667 },
  2902. { "time": 0.4667, "x": -8.35 },
  2903. { "time": 0.5667, "x": 2.51 },
  2904. { "time": 0.6333 }
  2905. ]
  2906. },
  2907. "bone14": {
  2908. "translate": [
  2909. { "time": 0.1667 },
  2910. { "time": 0.5, "x": -10.02 },
  2911. { "time": 0.6, "x": 3.34 },
  2912. { "time": 0.6667 }
  2913. ]
  2914. },
  2915. "bone36": {
  2916. "translate": [
  2917. { "time": 0.1667 },
  2918. { "time": 0.3333, "x": -6.68 },
  2919. { "time": 0.4333, "x": 1.67 },
  2920. { "time": 0.5 }
  2921. ]
  2922. },
  2923. "bone30": {
  2924. "translate": [
  2925. { "time": 0.1667 },
  2926. { "time": 0.5667, "x": -6.68 },
  2927. { "time": 0.6667, "x": 1.67 },
  2928. { "time": 0.7333 }
  2929. ]
  2930. },
  2931. "bone15": {
  2932. "translate": [
  2933. { "time": 0.1667 },
  2934. { "time": 0.4667, "x": -10.02 },
  2935. { "time": 0.5667, "x": 3.34 },
  2936. { "time": 0.6333 }
  2937. ]
  2938. },
  2939. "bone": {
  2940. "translate": [
  2941. { "time": 0.1667 },
  2942. { "time": 0.6667, "x": -9.18 },
  2943. { "time": 0.7667, "x": 4.17 },
  2944. { "time": 0.8333 }
  2945. ]
  2946. },
  2947. "quan0101": {
  2948. "scale": [
  2949. { "x": 0.5, "y": 0.5 },
  2950. { "time": 0.1667 },
  2951. { "time": 0.3, "x": 0.875, "y": 0.875 },
  2952. {
  2953. "time": 0.5,
  2954. "x": 1.483,
  2955. "y": 1.5,
  2956. "curve": [ 0.5, 1.29, 0.65, 1.093, 0.5, 1.3, 0.65, 1.096 ]
  2957. },
  2958. { "time": 0.8667 }
  2959. ]
  2960. },
  2961. "bone12": {
  2962. "translate": [
  2963. { "time": 0.1667 },
  2964. { "time": 0.5667, "x": -10.02 },
  2965. { "time": 0.6667, "x": 3.34 },
  2966. { "time": 0.7333 }
  2967. ]
  2968. },
  2969. "bone35": {
  2970. "translate": [
  2971. { "time": 0.1667 },
  2972. { "time": 0.3667, "x": -6.68 },
  2973. { "time": 0.4667, "x": 1.67 },
  2974. { "time": 0.5333 }
  2975. ]
  2976. },
  2977. "bone9": {
  2978. "translate": [
  2979. { "time": 0.1667 },
  2980. { "time": 0.3333, "x": -9.18 },
  2981. { "time": 0.4333, "x": 4.17 },
  2982. { "time": 0.5 }
  2983. ]
  2984. },
  2985. "bone2": {
  2986. "translate": [
  2987. { "time": 0.1667 },
  2988. { "time": 0.6333, "x": -9.18 },
  2989. { "time": 0.7333, "x": 4.17 },
  2990. { "time": 0.8 }
  2991. ]
  2992. },
  2993. "quan08": {
  2994. "scale": [
  2995. { "x": 5, "y": 5, "curve": "stepped" },
  2996. {
  2997. "time": 0.1667,
  2998. "x": 5,
  2999. "y": 5,
  3000. "curve": [ 0.267, 5, 0.467, 0.9, 0.267, 5, 0.467, 0.9 ]
  3001. },
  3002. {
  3003. "time": 0.5667,
  3004. "x": 0.9,
  3005. "y": 0.9,
  3006. "curve": [ 0.583, 0.9, 0.617, 1, 0.583, 0.9, 0.617, 1 ]
  3007. },
  3008. { "time": 0.6333 }
  3009. ]
  3010. },
  3011. "bone31": {
  3012. "translate": [
  3013. { "time": 0.1667 },
  3014. { "time": 0.5333, "x": -6.68 },
  3015. { "time": 0.6333, "x": 1.67 },
  3016. { "time": 0.7 }
  3017. ]
  3018. },
  3019. "bone21": {
  3020. "translate": [
  3021. { "time": 0.1667 },
  3022. { "time": 0.5667, "x": -8.35 },
  3023. { "time": 0.6667, "x": 2.51 },
  3024. { "time": 0.7333 }
  3025. ]
  3026. },
  3027. "quan06": {
  3028. "scale": [
  3029. { "x": 5, "y": 5, "curve": "stepped" },
  3030. {
  3031. "time": 0.1667,
  3032. "x": 5,
  3033. "y": 5,
  3034. "curve": [ 0.25, 5, 0.417, 0.9, 0.25, 5, 0.417, 0.9 ]
  3035. },
  3036. {
  3037. "time": 0.5,
  3038. "x": 0.9,
  3039. "y": 0.9,
  3040. "curve": [ 0.517, 0.9, 0.55, 1, 0.517, 0.9, 0.55, 1 ]
  3041. },
  3042. { "time": 0.5667 }
  3043. ]
  3044. },
  3045. "bone8": {
  3046. "translate": [
  3047. { "time": 0.1667 },
  3048. { "time": 0.3667, "x": -9.18 },
  3049. { "time": 0.4667, "x": 4.17 },
  3050. { "time": 0.5333 }
  3051. ]
  3052. },
  3053. "bone32": {
  3054. "translate": [
  3055. { "time": 0.1667 },
  3056. { "time": 0.5, "x": -6.68 },
  3057. { "time": 0.6, "x": 1.67 },
  3058. { "time": 0.6667 }
  3059. ]
  3060. },
  3061. "bone29": {
  3062. "translate": [
  3063. { "time": 0.1667 },
  3064. { "time": 0.6333, "x": -6.68 },
  3065. { "time": 0.7333, "x": 1.67 },
  3066. { "time": 0.8 }
  3067. ]
  3068. },
  3069. "bone17": {
  3070. "translate": [
  3071. { "time": 0.1667 },
  3072. { "time": 0.3667, "x": -10.02 },
  3073. { "time": 0.4667, "x": 3.34 },
  3074. { "time": 0.5333 }
  3075. ]
  3076. },
  3077. "bone33": {
  3078. "translate": [
  3079. { "time": 0.1667 },
  3080. { "time": 0.4667, "x": -6.68 },
  3081. { "time": 0.5667, "x": 1.67 },
  3082. { "time": 0.6333 }
  3083. ]
  3084. },
  3085. "quan03": {
  3086. "scale": [
  3087. { "x": 5, "y": 5, "curve": "stepped" },
  3088. {
  3089. "time": 0.1667,
  3090. "x": 5,
  3091. "y": 5,
  3092. "curve": [ 0.225, 5, 0.342, 0.9, 0.225, 5, 0.342, 0.9 ]
  3093. },
  3094. {
  3095. "time": 0.4,
  3096. "x": 0.9,
  3097. "y": 0.9,
  3098. "curve": [ 0.417, 0.9, 0.45, 1, 0.417, 0.9, 0.45, 1 ]
  3099. },
  3100. { "time": 0.4667 }
  3101. ]
  3102. },
  3103. "quan9": {
  3104. "scale": [
  3105. { "x": 5, "y": 5, "curve": "stepped" },
  3106. {
  3107. "time": 0.1667,
  3108. "x": 5,
  3109. "y": 5,
  3110. "curve": [ 0.275, 5, 0.492, 0.9, 0.275, 5, 0.492, 0.9 ]
  3111. },
  3112. {
  3113. "time": 0.6,
  3114. "x": 0.9,
  3115. "y": 0.9,
  3116. "curve": [ 0.617, 0.9, 0.65, 1, 0.617, 0.9, 0.65, 1 ]
  3117. },
  3118. { "time": 0.6667 }
  3119. ]
  3120. },
  3121. "quan10": {
  3122. "scale": [
  3123. { "x": 5, "y": 5, "curve": "stepped" },
  3124. {
  3125. "time": 0.1667,
  3126. "x": 5,
  3127. "y": 5,
  3128. "curve": [ 0.283, 5, 0.517, 0.9, 0.283, 5, 0.517, 0.9 ]
  3129. },
  3130. {
  3131. "time": 0.6333,
  3132. "x": 0.9,
  3133. "y": 0.9,
  3134. "curve": [ 0.65, 0.9, 0.683, 1, 0.65, 0.9, 0.683, 1 ]
  3135. },
  3136. { "time": 0.7 }
  3137. ]
  3138. },
  3139. "bone16": {
  3140. "translate": [
  3141. { "time": 0.1667 },
  3142. { "time": 0.4, "x": -10.02 },
  3143. { "time": 0.5, "x": 3.34 },
  3144. { "time": 0.5667 }
  3145. ]
  3146. },
  3147. "bone18": {
  3148. "translate": [
  3149. { "time": 0.1667 },
  3150. { "time": 0.3333, "x": -10.02 },
  3151. { "time": 0.4333, "x": 3.34 },
  3152. { "time": 0.5 }
  3153. ]
  3154. },
  3155. "quan01": {
  3156. "scale": [
  3157. { "x": 5, "y": 5, "curve": "stepped" },
  3158. {
  3159. "time": 0.1667,
  3160. "x": 5,
  3161. "y": 5,
  3162. "curve": [ 0.208, 5, 0.292, 0.9, 0.208, 5, 0.292, 0.9 ]
  3163. },
  3164. {
  3165. "time": 0.3333,
  3166. "x": 0.9,
  3167. "y": 0.9,
  3168. "curve": [ 0.35, 0.9, 0.383, 1, 0.35, 0.9, 0.383, 1 ]
  3169. },
  3170. { "time": 0.4 }
  3171. ]
  3172. },
  3173. "quan05": {
  3174. "scale": [
  3175. { "x": 5, "y": 5, "curve": "stepped" },
  3176. {
  3177. "time": 0.1667,
  3178. "x": 5,
  3179. "y": 5,
  3180. "curve": [ 0.242, 5, 0.392, 0.9, 0.242, 5, 0.392, 0.9 ]
  3181. },
  3182. {
  3183. "time": 0.4667,
  3184. "x": 0.9,
  3185. "y": 0.9,
  3186. "curve": [ 0.483, 0.9, 0.517, 1, 0.483, 0.9, 0.517, 1 ]
  3187. },
  3188. { "time": 0.5333 }
  3189. ]
  3190. },
  3191. "bone11": {
  3192. "translate": [
  3193. { "time": 0.1667 },
  3194. { "time": 0.6333, "x": -10.02 },
  3195. { "time": 0.7333, "x": 3.34 },
  3196. { "time": 0.8 }
  3197. ]
  3198. },
  3199. "bone20": {
  3200. "translate": [
  3201. { "time": 0.1667 },
  3202. { "time": 0.6333, "x": -8.35 },
  3203. { "time": 0.7333, "x": 2.51 },
  3204. { "time": 0.8 }
  3205. ]
  3206. },
  3207. "bone26": {
  3208. "translate": [
  3209. { "time": 0.1667 },
  3210. { "time": 0.3667, "x": -8.35 },
  3211. { "time": 0.4667, "x": 2.51 },
  3212. { "time": 0.5333 }
  3213. ]
  3214. },
  3215. "bone23": {
  3216. "translate": [
  3217. { "time": 0.1667 },
  3218. { "time": 0.5, "x": -8.35 },
  3219. { "time": 0.6, "x": 2.51 },
  3220. { "time": 0.6667 }
  3221. ]
  3222. },
  3223. "bone22": {
  3224. "translate": [
  3225. { "time": 0.1667 },
  3226. { "time": 0.5333, "x": -8.35 },
  3227. { "time": 0.6333, "x": 2.51 },
  3228. { "time": 0.7 }
  3229. ]
  3230. },
  3231. "bone13": {
  3232. "translate": [
  3233. { "time": 0.1667 },
  3234. { "time": 0.5333, "x": -10.02 },
  3235. { "time": 0.6333, "x": 3.34 },
  3236. { "time": 0.7 }
  3237. ]
  3238. },
  3239. "quan04": {
  3240. "scale": [
  3241. { "x": 5, "y": 5, "curve": "stepped" },
  3242. {
  3243. "time": 0.1667,
  3244. "x": 5,
  3245. "y": 5,
  3246. "curve": [ 0.233, 5, 0.367, 0.9, 0.233, 5, 0.367, 0.9 ]
  3247. },
  3248. {
  3249. "time": 0.4333,
  3250. "x": 0.9,
  3251. "y": 0.9,
  3252. "curve": [ 0.45, 0.9, 0.483, 1, 0.45, 0.9, 0.483, 1 ]
  3253. },
  3254. { "time": 0.5 }
  3255. ]
  3256. },
  3257. "quan07": {
  3258. "scale": [
  3259. { "x": 5, "y": 5, "curve": "stepped" },
  3260. {
  3261. "time": 0.1667,
  3262. "x": 5,
  3263. "y": 5,
  3264. "curve": [ 0.258, 5, 0.442, 0.9, 0.258, 5, 0.442, 0.9 ]
  3265. },
  3266. {
  3267. "time": 0.5333,
  3268. "x": 0.9,
  3269. "y": 0.9,
  3270. "curve": [ 0.55, 0.9, 0.583, 1, 0.55, 0.9, 0.583, 1 ]
  3271. },
  3272. { "time": 0.6 }
  3273. ]
  3274. },
  3275. "root": {
  3276. "scale": [
  3277. { "x": 0.8, "y": 0.8, "curve": "stepped" },
  3278. { "time": 0.1667, "x": 0.8, "y": 0.8 },
  3279. { "time": 0.6667 }
  3280. ]
  3281. },
  3282. "quan101": {
  3283. "translate": [
  3284. { "y": -1213.94, "curve": "stepped" },
  3285. {
  3286. "time": 0.0333,
  3287. "y": -1213.94,
  3288. "curve": [ 0.083, 0, 0.183, 0, 0.083, -1213.94, 0.183, 12.94 ]
  3289. },
  3290. { "time": 0.2333, "y": 12.94 }
  3291. ],
  3292. "scale": [
  3293. {
  3294. "time": 0.0333,
  3295. "curve": [ 0.033, 1, 0.133, 1, 0.033, 4.72, 0.133, 9.149 ]
  3296. },
  3297. { "time": 0.1667, "y": 9.149 },
  3298. { "time": 0.2333 }
  3299. ]
  3300. },
  3301. "quan102": {
  3302. "translate": [
  3303. { "x": 1166.81, "y": 9.37, "curve": "stepped" },
  3304. {
  3305. "time": 0.1,
  3306. "x": 1166.81,
  3307. "y": 9.37,
  3308. "curve": [ 0.158, 1166.81, 0.275, 0, 0.158, 9.37, 0.275, 12.94 ]
  3309. },
  3310. { "time": 0.3333, "y": 12.94 }
  3311. ],
  3312. "scale": [
  3313. {
  3314. "time": 0.1,
  3315. "curve": [ 0.1, 1, 0.2, 1, 0.1, 2.59, 0.2, 4.482 ]
  3316. },
  3317. { "time": 0.2333, "y": 4.482 },
  3318. { "time": 0.3333 }
  3319. ]
  3320. },
  3321. "quan103": {
  3322. "translate": [
  3323. { "x": -1401.29, "y": 9.37, "curve": "stepped" },
  3324. {
  3325. "time": 0.1,
  3326. "x": -1401.29,
  3327. "y": 9.37,
  3328. "curve": [ 0.15, -1401.29, 0.25, -116.47, 0.15, 9.37, 0.25, 12.94 ]
  3329. },
  3330. { "time": 0.3, "x": -116.47, "y": 12.94 }
  3331. ],
  3332. "scale": [
  3333. {
  3334. "time": 0.1,
  3335. "curve": [ 0.1, 1, 0.2, 1, 0.1, 2.59, 0.2, 4.482 ]
  3336. },
  3337. { "time": 0.2333, "y": 4.482 },
  3338. { "time": 0.3 }
  3339. ]
  3340. },
  3341. "quan104": {
  3342. "rotate": [
  3343. { "value": -90.96 }
  3344. ],
  3345. "translate": [
  3346. {
  3347. "x": -0.11,
  3348. "y": 1002.77,
  3349. "curve": [ 0.058, -0.11, 0.175, 0, 0.058, 1002.77, 0.175, 0 ]
  3350. },
  3351. { "time": 0.2333 }
  3352. ],
  3353. "scale": [
  3354. {
  3355. "curve": [ 0, 1, 0.05, 1, 0, 3.21, 0.05, 5.841 ]
  3356. },
  3357. { "time": 0.0667, "y": 5.841 },
  3358. { "time": 0.2333 }
  3359. ]
  3360. },
  3361. "quan105": {
  3362. "translate": [
  3363. { "y": -1213.94, "curve": "stepped" },
  3364. {
  3365. "time": 0.0667,
  3366. "y": -1213.94,
  3367. "curve": [ 0.142, 0, 0.292, 0, 0.142, -1213.94, 0.292, 12.94 ]
  3368. },
  3369. { "time": 0.3667, "y": 12.94 }
  3370. ],
  3371. "scale": [
  3372. {
  3373. "time": 0.0667,
  3374. "curve": [ 0.067, 1, 0.217, 1, 0.067, 4.72, 0.217, 9.149 ]
  3375. },
  3376. { "time": 0.2667, "y": 9.149 },
  3377. { "time": 0.3667 }
  3378. ]
  3379. },
  3380. "quan106": {
  3381. "translate": [
  3382. { "x": 1166.81, "y": 9.37, "curve": "stepped" },
  3383. {
  3384. "time": 0.1333,
  3385. "x": 1166.81,
  3386. "y": 9.37,
  3387. "curve": [ 0.225, 1166.81, 0.408, 0, 0.225, 9.37, 0.408, 12.94 ]
  3388. },
  3389. { "time": 0.5, "y": 12.94 }
  3390. ],
  3391. "scale": [
  3392. {
  3393. "time": 0.1333,
  3394. "curve": [ 0.133, 1, 0.333, 1, 0.133, 2.59, 0.333, 4.482 ]
  3395. },
  3396. { "time": 0.4, "y": 4.482 },
  3397. { "time": 0.5 }
  3398. ]
  3399. },
  3400. "quan107": {
  3401. "translate": [
  3402. { "x": -1401.29, "y": 9.37, "curve": "stepped" },
  3403. {
  3404. "time": 0.1667,
  3405. "x": -1401.29,
  3406. "y": 9.37,
  3407. "curve": [ 0.242, -1401.29, 0.392, -74.7, 0.242, 9.37, 0.392, -2.5 ]
  3408. },
  3409. { "time": 0.4667, "x": -74.7, "y": -2.5 }
  3410. ],
  3411. "scale": [
  3412. {
  3413. "time": 0.1667,
  3414. "curve": [ 0.167, 1, 0.342, 1, 0.167, 2.59, 0.342, 4.482 ]
  3415. },
  3416. { "time": 0.4, "y": 4.482 },
  3417. { "time": 0.4667 }
  3418. ]
  3419. },
  3420. "quan108": {
  3421. "rotate": [
  3422. { "value": -90.96 }
  3423. ],
  3424. "translate": [
  3425. {
  3426. "x": -0.11,
  3427. "y": 1002.77,
  3428. "curve": [ 0.092, -0.11, 0.275, 8.56, 0.092, 1002.77, 0.275, 195.42 ]
  3429. },
  3430. { "time": 0.3667, "x": 8.56, "y": 195.42 }
  3431. ],
  3432. "scale": [
  3433. {
  3434. "curve": [ 0, 1, 0.1, 1, 0, 3.21, 0.1, 5.841 ]
  3435. },
  3436. { "time": 0.1333, "y": 5.841 },
  3437. { "time": 0.3667 }
  3438. ]
  3439. },
  3440. "quan109": {
  3441. "translate": [
  3442. { "y": -1213.94, "curve": "stepped" },
  3443. {
  3444. "time": 0.1,
  3445. "y": -1213.94,
  3446. "curve": [ 0.2, 0, 0.4, 0, 0.2, -1213.94, 0.4, 12.94 ]
  3447. },
  3448. { "time": 0.5, "y": 12.94 }
  3449. ],
  3450. "scale": [
  3451. {
  3452. "time": 0.1,
  3453. "curve": [ 0.1, 1, 0.3, 1, 0.1, 4.72, 0.3, 9.149 ]
  3454. },
  3455. { "time": 0.3667, "y": 9.149 },
  3456. { "time": 0.5 }
  3457. ]
  3458. },
  3459. "quan110": {
  3460. "translate": [
  3461. { "x": 1166.81, "y": 9.37, "curve": "stepped" },
  3462. {
  3463. "time": 0.1667,
  3464. "x": 1166.81,
  3465. "y": 9.37,
  3466. "curve": [ 0.292, 1166.81, 0.542, 0, 0.292, 9.37, 0.542, 12.94 ]
  3467. },
  3468. { "time": 0.6667, "y": 12.94 }
  3469. ],
  3470. "scale": [
  3471. {
  3472. "time": 0.1667,
  3473. "curve": [ 0.167, 1, 0.442, 1, 0.167, 2.59, 0.442, 4.482 ]
  3474. },
  3475. { "time": 0.5333, "y": 4.482 },
  3476. { "time": 0.6667 }
  3477. ]
  3478. },
  3479. "quan111": {
  3480. "translate": [
  3481. { "x": -1401.29, "y": 9.37, "curve": "stepped" },
  3482. {
  3483. "time": 0.2333,
  3484. "x": -1401.29,
  3485. "y": 9.37,
  3486. "curve": [ 0.333, -1401.29, 0.533, -74.7, 0.333, 9.37, 0.533, -2.5 ]
  3487. },
  3488. { "time": 0.6333, "x": -74.7, "y": -2.5 }
  3489. ],
  3490. "scale": [
  3491. {
  3492. "time": 0.2333,
  3493. "curve": [ 0.233, 1, 0.458, 1, 0.233, 2.59, 0.458, 4.482 ]
  3494. },
  3495. { "time": 0.5333, "y": 4.482 },
  3496. { "time": 0.6333 }
  3497. ]
  3498. },
  3499. "quan112": {
  3500. "rotate": [
  3501. { "value": -90.96 }
  3502. ],
  3503. "translate": [
  3504. {
  3505. "x": -0.11,
  3506. "y": 1002.77,
  3507. "curve": [ 0.125, -0.11, 0.375, 8.56, 0.125, 1002.77, 0.375, 195.42 ]
  3508. },
  3509. { "time": 0.5, "x": 8.56, "y": 195.42 }
  3510. ],
  3511. "scale": [
  3512. {
  3513. "curve": [ 0, 1, 0.125, 1, 0, 3.21, 0.125, 5.841 ]
  3514. },
  3515. { "time": 0.1667, "y": 5.841 },
  3516. { "time": 0.5 }
  3517. ]
  3518. },
  3519. "xian3": {
  3520. "rotate": [
  3521. { "value": 159.05 }
  3522. ]
  3523. },
  3524. "quan113": {
  3525. "translate": [
  3526. { "y": -1213.94, "curve": "stepped" },
  3527. {
  3528. "time": 0.1,
  3529. "y": -1213.94,
  3530. "curve": [ 0.183, 0, 0.35, 0, 0.183, -1213.94, 0.35, 12.94 ]
  3531. },
  3532. { "time": 0.4333, "y": 12.94 }
  3533. ],
  3534. "scale": [
  3535. {
  3536. "time": 0.1,
  3537. "curve": [ 0.1, 1, 0.25, 1, 0.1, 4.72, 0.25, 9.149 ]
  3538. },
  3539. { "time": 0.3, "y": 9.149 },
  3540. { "time": 0.4333 }
  3541. ]
  3542. },
  3543. "quan114": {
  3544. "translate": [
  3545. { "x": 1166.81, "y": 9.37, "curve": "stepped" },
  3546. {
  3547. "time": 0.1333,
  3548. "x": 1166.81,
  3549. "y": 9.37,
  3550. "curve": [ 0.242, 1166.81, 0.458, 0, 0.242, 9.37, 0.458, 12.94 ]
  3551. },
  3552. { "time": 0.5667, "y": 12.94 }
  3553. ],
  3554. "scale": [
  3555. {
  3556. "time": 0.1333,
  3557. "curve": [ 0.133, 1, 0.383, 1, 0.133, 2.59, 0.383, 4.482 ]
  3558. },
  3559. { "time": 0.4667, "y": 4.482 },
  3560. { "time": 0.5667 }
  3561. ]
  3562. },
  3563. "quan115": {
  3564. "translate": [
  3565. { "x": -1401.29, "y": 9.37, "curve": "stepped" },
  3566. {
  3567. "time": 0.2,
  3568. "x": -1401.29,
  3569. "y": 9.37,
  3570. "curve": [ 0.283, -1401.29, 0.45, -74.7, 0.283, 9.37, 0.45, -2.5 ]
  3571. },
  3572. { "time": 0.5333, "x": -74.7, "y": -2.5 }
  3573. ],
  3574. "scale": [
  3575. {
  3576. "time": 0.2,
  3577. "curve": [ 0.2, 1, 0.4, 1, 0.2, 2.59, 0.4, 4.482 ]
  3578. },
  3579. { "time": 0.4667, "y": 4.482 },
  3580. { "time": 0.5333 }
  3581. ]
  3582. },
  3583. "quan116": {
  3584. "rotate": [
  3585. { "value": -90.96 }
  3586. ],
  3587. "translate": [
  3588. {
  3589. "x": -0.11,
  3590. "y": 1002.77,
  3591. "curve": [ 0.108, -0.11, 0.325, 8.56, 0.108, 1002.77, 0.325, 195.42 ]
  3592. },
  3593. { "time": 0.4333, "x": 8.56, "y": 195.42 }
  3594. ],
  3595. "scale": [
  3596. {
  3597. "curve": [ 0, 1, 0.1, 1, 0, 3.21, 0.1, 5.841 ]
  3598. },
  3599. { "time": 0.1333, "y": 5.841 },
  3600. { "time": 0.4333 }
  3601. ]
  3602. },
  3603. "xian4": {
  3604. "rotate": [
  3605. { "value": 27.67 }
  3606. ]
  3607. },
  3608. "quan117": {
  3609. "scale": [
  3610. { "x": 0.25, "y": 0.25 },
  3611. { "time": 0.1667, "x": 0.75, "y": 0.75 },
  3612. { "time": 0.4 }
  3613. ]
  3614. }
  3615. }
  3616. },
  3617. "animation_04": {
  3618. "slots": {
  3619. "l1": {
  3620. "rgba": [
  3621. {
  3622. "time": 0.0667,
  3623. "color": "ffffffff",
  3624. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3625. },
  3626. { "time": 0.2333, "color": "ffffff00" }
  3627. ],
  3628. "attachment": [
  3629. { "time": 0.4 }
  3630. ]
  3631. },
  3632. "l2": {
  3633. "rgba": [
  3634. {
  3635. "time": 0.0667,
  3636. "color": "ffffffff",
  3637. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3638. },
  3639. { "time": 0.2333, "color": "ffffff00" }
  3640. ],
  3641. "attachment": [
  3642. { "time": 0.4 }
  3643. ]
  3644. },
  3645. "l3": {
  3646. "rgba": [
  3647. {
  3648. "time": 0.0667,
  3649. "color": "ffffffff",
  3650. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3651. },
  3652. { "time": 0.2333, "color": "ffffff00" }
  3653. ],
  3654. "attachment": [
  3655. { "time": 0.4 }
  3656. ]
  3657. },
  3658. "l4": {
  3659. "rgba": [
  3660. {
  3661. "time": 0.0667,
  3662. "color": "ffffffff",
  3663. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3664. },
  3665. { "time": 0.2333, "color": "ffffff00" }
  3666. ],
  3667. "attachment": [
  3668. { "time": 0.4 }
  3669. ]
  3670. },
  3671. "l5": {
  3672. "rgba": [
  3673. {
  3674. "time": 0.0667,
  3675. "color": "ffffffff",
  3676. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3677. },
  3678. { "time": 0.2333, "color": "ffffff00" }
  3679. ],
  3680. "attachment": [
  3681. { "time": 0.4 }
  3682. ]
  3683. },
  3684. "l6": {
  3685. "rgba": [
  3686. {
  3687. "time": 0.0667,
  3688. "color": "ffffffff",
  3689. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3690. },
  3691. { "time": 0.2333, "color": "ffffff00" }
  3692. ],
  3693. "attachment": [
  3694. { "time": 0.4 }
  3695. ]
  3696. },
  3697. "l7": {
  3698. "rgba": [
  3699. {
  3700. "time": 0.0667,
  3701. "color": "ffffffff",
  3702. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3703. },
  3704. { "time": 0.2333, "color": "ffffff00" }
  3705. ],
  3706. "attachment": [
  3707. { "time": 0.4 }
  3708. ]
  3709. },
  3710. "l8": {
  3711. "rgba": [
  3712. {
  3713. "time": 0.0667,
  3714. "color": "ffffffff",
  3715. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3716. },
  3717. { "time": 0.2333, "color": "ffffff00" }
  3718. ],
  3719. "attachment": [
  3720. { "time": 0.4 }
  3721. ]
  3722. },
  3723. "l9": {
  3724. "rgba": [
  3725. {
  3726. "time": 0.0667,
  3727. "color": "ffffffff",
  3728. "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
  3729. },
  3730. { "time": 0.3, "color": "ffffff00" }
  3731. ],
  3732. "attachment": [
  3733. { "time": 0.4 }
  3734. ]
  3735. },
  3736. "l10": {
  3737. "rgba": [
  3738. {
  3739. "time": 0.0667,
  3740. "color": "ffffffff",
  3741. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3742. },
  3743. { "time": 0.2333, "color": "ffffff00" }
  3744. ],
  3745. "attachment": [
  3746. { "time": 0.4 }
  3747. ]
  3748. },
  3749. "l11": {
  3750. "rgba": [
  3751. {
  3752. "time": 0.0667,
  3753. "color": "ffffffff",
  3754. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3755. },
  3756. { "time": 0.2333, "color": "ffffff00" }
  3757. ],
  3758. "attachment": [
  3759. { "time": 0.4 }
  3760. ]
  3761. },
  3762. "l12": {
  3763. "rgba": [
  3764. {
  3765. "time": 0.0667,
  3766. "color": "ffffffff",
  3767. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3768. },
  3769. { "time": 0.2333, "color": "ffffff00" }
  3770. ],
  3771. "attachment": [
  3772. { "time": 0.4 }
  3773. ]
  3774. },
  3775. "l13": {
  3776. "rgba": [
  3777. {
  3778. "time": 0.0667,
  3779. "color": "ffffffff",
  3780. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3781. },
  3782. { "time": 0.2333, "color": "ffffff00" }
  3783. ],
  3784. "attachment": [
  3785. { "time": 0.4 }
  3786. ]
  3787. },
  3788. "l14": {
  3789. "rgba": [
  3790. {
  3791. "time": 0.0667,
  3792. "color": "ffffffff",
  3793. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3794. },
  3795. { "time": 0.2333, "color": "ffffff00" }
  3796. ],
  3797. "attachment": [
  3798. { "time": 0.4 }
  3799. ]
  3800. },
  3801. "l15": {
  3802. "rgba": [
  3803. {
  3804. "time": 0.0667,
  3805. "color": "ffffffff",
  3806. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3807. },
  3808. { "time": 0.2333, "color": "ffffff00" }
  3809. ],
  3810. "attachment": [
  3811. { "time": 0.4 }
  3812. ]
  3813. },
  3814. "l16": {
  3815. "rgba": [
  3816. {
  3817. "time": 0.0667,
  3818. "color": "ffffffff",
  3819. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3820. },
  3821. { "time": 0.2333, "color": "ffffff00" }
  3822. ],
  3823. "attachment": [
  3824. { "time": 0.4 }
  3825. ]
  3826. },
  3827. "l17": {
  3828. "rgba": [
  3829. {
  3830. "time": 0.0667,
  3831. "color": "ffffffff",
  3832. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3833. },
  3834. { "time": 0.2333, "color": "ffffff00" }
  3835. ],
  3836. "attachment": [
  3837. { "time": 0.4 }
  3838. ]
  3839. },
  3840. "l18": {
  3841. "rgba": [
  3842. {
  3843. "time": 0.0667,
  3844. "color": "ffffffff",
  3845. "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
  3846. },
  3847. { "time": 0.3, "color": "ffffff00" }
  3848. ],
  3849. "attachment": [
  3850. { "time": 0.4 }
  3851. ]
  3852. },
  3853. "l19": {
  3854. "rgba": [
  3855. {
  3856. "time": 0.1,
  3857. "color": "ffffffff",
  3858. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  3859. },
  3860. { "time": 0.3333, "color": "ffffff00" }
  3861. ],
  3862. "attachment": [
  3863. { "time": 0.4 }
  3864. ]
  3865. },
  3866. "l20": {
  3867. "rgba": [
  3868. {
  3869. "time": 0.1,
  3870. "color": "ffffffff",
  3871. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  3872. },
  3873. { "time": 0.3333, "color": "ffffff00" }
  3874. ],
  3875. "attachment": [
  3876. { "time": 0.4 }
  3877. ]
  3878. },
  3879. "l21": {
  3880. "rgba": [
  3881. {
  3882. "time": 0.1,
  3883. "color": "ffffffff",
  3884. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  3885. },
  3886. { "time": 0.3333, "color": "ffffff00" }
  3887. ],
  3888. "attachment": [
  3889. { "time": 0.4 }
  3890. ]
  3891. },
  3892. "l22": {
  3893. "rgba": [
  3894. {
  3895. "time": 0.1,
  3896. "color": "ffffffff",
  3897. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  3898. },
  3899. { "time": 0.3333, "color": "ffffff00" }
  3900. ],
  3901. "attachment": [
  3902. { "time": 0.4 }
  3903. ]
  3904. },
  3905. "l23": {
  3906. "rgba": [
  3907. {
  3908. "time": 0.1,
  3909. "color": "ffffffff",
  3910. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  3911. },
  3912. { "time": 0.3333, "color": "ffffff00" }
  3913. ],
  3914. "attachment": [
  3915. { "time": 0.4 }
  3916. ]
  3917. },
  3918. "l24": {
  3919. "rgba": [
  3920. {
  3921. "time": 0.1,
  3922. "color": "ffffffff",
  3923. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  3924. },
  3925. { "time": 0.3333, "color": "ffffff00" }
  3926. ],
  3927. "attachment": [
  3928. { "time": 0.4 }
  3929. ]
  3930. },
  3931. "l25": {
  3932. "rgba": [
  3933. {
  3934. "time": 0.1,
  3935. "color": "ffffffff",
  3936. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  3937. },
  3938. { "time": 0.3333, "color": "ffffff00" }
  3939. ],
  3940. "attachment": [
  3941. { "time": 0.4 }
  3942. ]
  3943. },
  3944. "l26": {
  3945. "rgba": [
  3946. {
  3947. "time": 0.1,
  3948. "color": "ffffffff",
  3949. "curve": [ 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 1, 0.158, 1, 0.275, 0 ]
  3950. },
  3951. { "time": 0.3333, "color": "ffffff00" }
  3952. ],
  3953. "attachment": [
  3954. { "time": 0.4 }
  3955. ]
  3956. },
  3957. "l27": {
  3958. "rgba": [
  3959. {
  3960. "time": 0.1,
  3961. "color": "ffffffff",
  3962. "curve": [ 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 1, 0.175, 1, 0.325, 0 ]
  3963. },
  3964. { "time": 0.4, "color": "ffffff00" }
  3965. ],
  3966. "attachment": [
  3967. { "time": 0.4 }
  3968. ]
  3969. },
  3970. "l28": {
  3971. "rgba": [
  3972. {
  3973. "time": 0.0667,
  3974. "color": "ffffffff",
  3975. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3976. },
  3977. { "time": 0.2333, "color": "ffffff00" }
  3978. ],
  3979. "attachment": [
  3980. { "time": 0.4 }
  3981. ]
  3982. },
  3983. "l29": {
  3984. "rgba": [
  3985. {
  3986. "time": 0.0667,
  3987. "color": "ffffffff",
  3988. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  3989. },
  3990. { "time": 0.2333, "color": "ffffff00" }
  3991. ],
  3992. "attachment": [
  3993. { "time": 0.4 }
  3994. ]
  3995. },
  3996. "l30": {
  3997. "rgba": [
  3998. {
  3999. "time": 0.0667,
  4000. "color": "ffffffff",
  4001. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  4002. },
  4003. { "time": 0.2333, "color": "ffffff00" }
  4004. ],
  4005. "attachment": [
  4006. { "time": 0.4 }
  4007. ]
  4008. },
  4009. "l31": {
  4010. "rgba": [
  4011. {
  4012. "time": 0.0667,
  4013. "color": "ffffffff",
  4014. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  4015. },
  4016. { "time": 0.2333, "color": "ffffff00" }
  4017. ],
  4018. "attachment": [
  4019. { "time": 0.4 }
  4020. ]
  4021. },
  4022. "l32": {
  4023. "rgba": [
  4024. {
  4025. "time": 0.0667,
  4026. "color": "ffffffff",
  4027. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  4028. },
  4029. { "time": 0.2333, "color": "ffffff00" }
  4030. ],
  4031. "attachment": [
  4032. { "time": 0.4 }
  4033. ]
  4034. },
  4035. "l33": {
  4036. "rgba": [
  4037. {
  4038. "time": 0.0667,
  4039. "color": "ffffffff",
  4040. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  4041. },
  4042. { "time": 0.2333, "color": "ffffff00" }
  4043. ],
  4044. "attachment": [
  4045. { "time": 0.4 }
  4046. ]
  4047. },
  4048. "l34": {
  4049. "rgba": [
  4050. {
  4051. "time": 0.0667,
  4052. "color": "ffffffff",
  4053. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  4054. },
  4055. { "time": 0.2333, "color": "ffffff00" }
  4056. ],
  4057. "attachment": [
  4058. { "time": 0.4 }
  4059. ]
  4060. },
  4061. "l35": {
  4062. "rgba": [
  4063. {
  4064. "time": 0.0667,
  4065. "color": "ffffffff",
  4066. "curve": [ 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 1, 0.108, 1, 0.192, 0 ]
  4067. },
  4068. { "time": 0.2333, "color": "ffffff00" }
  4069. ],
  4070. "attachment": [
  4071. { "time": 0.4 }
  4072. ]
  4073. },
  4074. "l36": {
  4075. "rgba": [
  4076. {
  4077. "time": 0.0667,
  4078. "color": "ffffffff",
  4079. "curve": [ 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 1, 0.125, 1, 0.242, 0 ]
  4080. },
  4081. { "time": 0.3, "color": "ffffff00" }
  4082. ],
  4083. "attachment": [
  4084. { "time": 0.4 }
  4085. ]
  4086. },
  4087. "quan1": {
  4088. "attachment": [
  4089. {}
  4090. ]
  4091. },
  4092. "quan01": {
  4093. "rgba": [
  4094. { "color": "ffffffb9" },
  4095. { "time": 0.0667, "color": "fc4444ff" },
  4096. { "time": 0.1667, "color": "fcae6ec4" },
  4097. { "time": 0.3333, "color": "fff9c900" }
  4098. ],
  4099. "attachment": [
  4100. { "name": "quan01" },
  4101. { "time": 0.4 }
  4102. ]
  4103. },
  4104. "quan2": {
  4105. "attachment": [
  4106. { "time": 0.1333 }
  4107. ]
  4108. },
  4109. "quan02": {
  4110. "rgba": [
  4111. { "time": 0.0667, "color": "ffffffff" },
  4112. { "time": 0.2333, "color": "ffffff01" }
  4113. ],
  4114. "attachment": [
  4115. { "time": 0.4 }
  4116. ]
  4117. },
  4118. "quan3": {
  4119. "attachment": [
  4120. {}
  4121. ]
  4122. },
  4123. "quan03": {
  4124. "rgba": [
  4125. { "time": 0.0667, "color": "ffffffff" },
  4126. { "time": 0.2333, "color": "ffffff00" }
  4127. ],
  4128. "attachment": [
  4129. { "time": 0.4 }
  4130. ]
  4131. },
  4132. "quan4": {
  4133. "attachment": [
  4134. {}
  4135. ]
  4136. },
  4137. "quan04": {
  4138. "rgba": [
  4139. {
  4140. "time": 0.1333,
  4141. "color": "ffffffff",
  4142. "curve": [ 0.133, 1, 0.333, 1, 0.133, 1, 0.333, 1, 0.133, 1, 0.333, 1, 0.133, 0.68, 0.333, 0 ]
  4143. },
  4144. { "time": 0.4, "color": "ffffff00" }
  4145. ],
  4146. "attachment": [
  4147. { "time": 0.4 }
  4148. ]
  4149. },
  4150. "quan5": {
  4151. "attachment": [
  4152. {}
  4153. ]
  4154. },
  4155. "quan6": {
  4156. "attachment": [
  4157. {}
  4158. ]
  4159. },
  4160. "quan7": {
  4161. "attachment": [
  4162. {}
  4163. ]
  4164. },
  4165. "quan8": {
  4166. "rgba": [
  4167. { "time": 0.0667, "color": "ffffffff" },
  4168. { "time": 0.2667, "color": "ffffff00" }
  4169. ],
  4170. "attachment": [
  4171. { "time": 0.4 }
  4172. ]
  4173. },
  4174. "quan08": {
  4175. "rgba": [
  4176. { "time": 0.0667, "color": "ffffffff" },
  4177. { "time": 0.2, "color": "ffffff00" }
  4178. ],
  4179. "attachment": [
  4180. { "time": 0.2 }
  4181. ]
  4182. },
  4183. "quan9": {
  4184. "rgba": [
  4185. {
  4186. "time": 0.1333,
  4187. "color": "ffffffff",
  4188. "curve": [ 0.133, 1, 0.283, 1, 0.133, 1, 0.283, 1, 0.133, 1, 0.283, 1, 0.133, 0.7, 0.283, 0 ]
  4189. },
  4190. { "time": 0.3333, "color": "ffffff00" }
  4191. ],
  4192. "attachment": [
  4193. { "time": 0.4 }
  4194. ]
  4195. },
  4196. "quan09": {
  4197. "rgba": [
  4198. { "time": 0.0667, "color": "ffffffff" },
  4199. { "time": 0.1667, "color": "ffffff01" }
  4200. ],
  4201. "attachment": [
  4202. { "time": 0.1667 }
  4203. ]
  4204. },
  4205. "quan10": {
  4206. "rgba": [
  4207. { "time": 0.0667, "color": "ffffffff" },
  4208. { "time": 0.3333, "color": "ffffff00" }
  4209. ],
  4210. "attachment": [
  4211. { "time": 0.3333 }
  4212. ]
  4213. },
  4214. "quan11": {
  4215. "attachment": [
  4216. {}
  4217. ]
  4218. },
  4219. "quan12": {
  4220. "rgba": [
  4221. { "time": 0.0667, "color": "ffffffff" },
  4222. { "time": 0.3333, "color": "ffffff00" }
  4223. ],
  4224. "attachment": [
  4225. { "time": 0.4 }
  4226. ]
  4227. },
  4228. "quan13": {
  4229. "attachment": [
  4230. {}
  4231. ]
  4232. },
  4233. "quan14": {
  4234. "attachment": [
  4235. {}
  4236. ]
  4237. },
  4238. "quan15": {
  4239. "attachment": [
  4240. {}
  4241. ]
  4242. },
  4243. "quan16": {
  4244. "attachment": [
  4245. {}
  4246. ]
  4247. },
  4248. "quan17": {
  4249. "attachment": [
  4250. {}
  4251. ]
  4252. },
  4253. "quan18": {
  4254. "attachment": [
  4255. {}
  4256. ]
  4257. },
  4258. "quan19": {
  4259. "attachment": [
  4260. {}
  4261. ]
  4262. },
  4263. "quan20": {
  4264. "attachment": [
  4265. {}
  4266. ]
  4267. },
  4268. "quan21": {
  4269. "attachment": [
  4270. {}
  4271. ]
  4272. },
  4273. "quan22": {
  4274. "rgba": [
  4275. { "color": "fff9c900" }
  4276. ]
  4277. },
  4278. "red": {
  4279. "attachment": [
  4280. { "time": 0.1 }
  4281. ]
  4282. }
  4283. },
  4284. "bones": {
  4285. "bone9": {
  4286. "translate": [
  4287. {
  4288. "time": 0.0667,
  4289. "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
  4290. },
  4291. { "time": 0.3, "x": -140.4 }
  4292. ],
  4293. "scale": [
  4294. {
  4295. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4296. },
  4297. {
  4298. "time": 0.0667,
  4299. "x": 0.8,
  4300. "y": 0.8,
  4301. "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
  4302. },
  4303. { "time": 0.3, "x": 20, "y": 20 }
  4304. ]
  4305. },
  4306. "bone8": {
  4307. "translate": [
  4308. {
  4309. "time": 0.0667,
  4310. "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
  4311. },
  4312. { "time": 0.2333, "x": -218.86 }
  4313. ],
  4314. "scale": [
  4315. {
  4316. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4317. },
  4318. {
  4319. "time": 0.0667,
  4320. "x": 0.8,
  4321. "y": 0.8,
  4322. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4323. },
  4324. { "time": 0.2333, "x": 10, "y": 10 }
  4325. ]
  4326. },
  4327. "bone7": {
  4328. "translate": [
  4329. {
  4330. "time": 0.0667,
  4331. "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
  4332. },
  4333. { "time": 0.2333, "x": -468.55 }
  4334. ],
  4335. "scale": [
  4336. {
  4337. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4338. },
  4339. {
  4340. "time": 0.0667,
  4341. "x": 0.8,
  4342. "y": 0.8,
  4343. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4344. },
  4345. { "time": 0.2333, "x": 10, "y": 10 }
  4346. ]
  4347. },
  4348. "bone6": {
  4349. "translate": [
  4350. {
  4351. "time": 0.0667,
  4352. "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
  4353. },
  4354. { "time": 0.2333, "x": -634 }
  4355. ],
  4356. "scale": [
  4357. {
  4358. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4359. },
  4360. {
  4361. "time": 0.0667,
  4362. "x": 0.8,
  4363. "y": 0.8,
  4364. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4365. },
  4366. { "time": 0.2333, "x": 10, "y": 10 }
  4367. ]
  4368. },
  4369. "bone5": {
  4370. "translate": [
  4371. {
  4372. "time": 0.0667,
  4373. "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
  4374. },
  4375. { "time": 0.2333, "x": -450.63 }
  4376. ],
  4377. "scale": [
  4378. {
  4379. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4380. },
  4381. {
  4382. "time": 0.0667,
  4383. "x": 0.8,
  4384. "y": 0.8,
  4385. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4386. },
  4387. { "time": 0.2333, "x": 10, "y": 10 }
  4388. ]
  4389. },
  4390. "bone4": {
  4391. "translate": [
  4392. {
  4393. "time": 0.0667,
  4394. "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
  4395. },
  4396. { "time": 0.2333, "x": -578.32 }
  4397. ],
  4398. "scale": [
  4399. {
  4400. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4401. },
  4402. {
  4403. "time": 0.0667,
  4404. "x": 0.8,
  4405. "y": 0.8,
  4406. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4407. },
  4408. { "time": 0.2333, "x": 10, "y": 10 }
  4409. ]
  4410. },
  4411. "bone3": {
  4412. "translate": [
  4413. {
  4414. "time": 0.0667,
  4415. "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
  4416. },
  4417. { "time": 0.2333, "x": -718.09 }
  4418. ],
  4419. "scale": [
  4420. {
  4421. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4422. },
  4423. {
  4424. "time": 0.0667,
  4425. "x": 0.8,
  4426. "y": 0.8,
  4427. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4428. },
  4429. { "time": 0.2333, "x": 10, "y": 10 }
  4430. ]
  4431. },
  4432. "bone2": {
  4433. "translate": [
  4434. {
  4435. "time": 0.0667,
  4436. "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
  4437. },
  4438. { "time": 0.2333, "x": -844.54 }
  4439. ],
  4440. "scale": [
  4441. {
  4442. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4443. },
  4444. {
  4445. "time": 0.0667,
  4446. "x": 0.8,
  4447. "y": 0.8,
  4448. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4449. },
  4450. { "time": 0.2333, "x": 10, "y": 10 }
  4451. ]
  4452. },
  4453. "bone": {
  4454. "translate": [
  4455. {
  4456. "time": 0.0667,
  4457. "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
  4458. },
  4459. { "time": 0.2333, "x": -949.43 }
  4460. ],
  4461. "scale": [
  4462. {
  4463. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4464. },
  4465. {
  4466. "time": 0.0667,
  4467. "x": 0.8,
  4468. "y": 0.8,
  4469. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4470. },
  4471. { "time": 0.2333, "x": 10, "y": 10 }
  4472. ]
  4473. },
  4474. "quan01": {
  4475. "scale": [
  4476. {
  4477. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  4478. },
  4479. {
  4480. "time": 0.0667,
  4481. "x": 0.95,
  4482. "y": 0.954,
  4483. "curve": [ 0.067, 1.724, 0.168, 2.638, 0.067, 1.727, 0.168, 2.64 ]
  4484. },
  4485. { "time": 0.3333, "x": 3.591, "y": 3.593 }
  4486. ]
  4487. },
  4488. "quan02": {
  4489. "scale": [
  4490. {
  4491. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  4492. },
  4493. {
  4494. "time": 0.0667,
  4495. "x": 0.95,
  4496. "y": 0.954,
  4497. "curve": [ 0.067, 1.724, 0.168, 2.638, 0.067, 1.727, 0.168, 2.64 ]
  4498. },
  4499. { "time": 0.3333, "x": 3.591, "y": 3.593 }
  4500. ]
  4501. },
  4502. "quan03": {
  4503. "scale": [
  4504. {
  4505. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  4506. },
  4507. {
  4508. "time": 0.0667,
  4509. "x": 0.95,
  4510. "y": 0.954,
  4511. "curve": [ 0.067, 2.25, 0.227, 4.139, 0.067, 2.253, 0.227, 4.14 ]
  4512. },
  4513. { "time": 0.4, "x": 5.56, "y": 5.561 }
  4514. ]
  4515. },
  4516. "quan04": {
  4517. "scale": [
  4518. {
  4519. "curve": [ 0, 0.982, 0.075, 0.95, 0, 0.984, 0.075, 0.954 ]
  4520. },
  4521. {
  4522. "time": 0.1,
  4523. "x": 0.95,
  4524. "y": 0.954,
  4525. "curve": [ 0.1, 0.689, 0.111, 0.415, 0.1, 0.692, 0.111, 0.417 ]
  4526. },
  4527. {
  4528. "time": 0.1333,
  4529. "x": 0.132,
  4530. "y": 0.132,
  4531. "curve": [ 0.17, 0.957, 0.266, 1.882, 0.17, 0.957, 0.266, 1.882 ]
  4532. },
  4533. { "time": 0.4, "x": 2.828, "y": 2.828 }
  4534. ]
  4535. },
  4536. "quan05": {
  4537. "scale": [
  4538. {
  4539. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  4540. },
  4541. {
  4542. "time": 0.0667,
  4543. "x": 0.95,
  4544. "y": 0.954,
  4545. "curve": [ 0.067, 3.1, 0.317, 7, 0.067, 3.102, 0.317, 7 ]
  4546. },
  4547. { "time": 0.4, "x": 7, "y": 7 }
  4548. ]
  4549. },
  4550. "quan06": {
  4551. "scale": [
  4552. {
  4553. "curve": [ 0, 0.982, 0.075, 0.95, 0, 0.984, 0.075, 0.954 ]
  4554. },
  4555. {
  4556. "time": 0.1,
  4557. "x": 0.95,
  4558. "y": 0.954,
  4559. "curve": [ 0.1, 0.788, 0.111, 0.619, 0.1, 0.79, 0.111, 0.618 ]
  4560. },
  4561. {
  4562. "time": 0.1333,
  4563. "x": 0.444,
  4564. "y": 0.44,
  4565. "curve": [ 0.168, 1.301, 0.266, 2.278, 0.168, 1.298, 0.266, 2.275 ]
  4566. },
  4567. { "time": 0.4, "x": 3.265, "y": 3.263 }
  4568. ]
  4569. },
  4570. "quan07": {
  4571. "scale": [
  4572. {
  4573. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  4574. },
  4575. {
  4576. "time": 0.0667,
  4577. "x": 0.95,
  4578. "y": 0.954,
  4579. "curve": [ 0.067, 1.894, 0.202, 3.087, 0.067, 1.898, 0.202, 3.089 ]
  4580. },
  4581. { "time": 0.4, "x": 4.269, "y": 4.271 }
  4582. ]
  4583. },
  4584. "quan08": {
  4585. "scale": [
  4586. {
  4587. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  4588. },
  4589. {
  4590. "time": 0.0667,
  4591. "x": 0.95,
  4592. "y": 0.954,
  4593. "curve": [ 0.067, 3.1, 0.167, 7, 0.067, 3.102, 0.167, 7 ]
  4594. },
  4595. { "time": 0.2, "x": 7, "y": 7 }
  4596. ]
  4597. },
  4598. "quan9": {
  4599. "scale": [
  4600. {},
  4601. { "time": 0.0667, "x": 0.95, "y": 0.954 }
  4602. ]
  4603. },
  4604. "quan10": {
  4605. "scale": [
  4606. {
  4607. "curve": [ 0, 0.982, 0.05, 0.95, 0, 0.984, 0.05, 0.954 ]
  4608. },
  4609. {
  4610. "time": 0.0667,
  4611. "x": 0.95,
  4612. "y": 0.954,
  4613. "curve": [ 0.068, 0.852, 0.08, 0.737, 0.068, 0.862, 0.08, 0.754 ]
  4614. },
  4615. {
  4616. "time": 0.1,
  4617. "x": 0.61,
  4618. "y": 0.634,
  4619. "curve": [ 0.172, 1.368, 0.262, 2.168, 0.172, 1.384, 0.262, 2.176 ]
  4620. },
  4621. { "time": 0.3667, "x": 3, "y": 3 }
  4622. ]
  4623. },
  4624. "quan0101": {
  4625. "scale": [
  4626. {},
  4627. { "time": 0.0667, "x": 0.875, "y": 0.875 },
  4628. {
  4629. "time": 0.1667,
  4630. "x": 1.483,
  4631. "y": 1.5,
  4632. "curve": [ 0.167, 1.399, 0.292, 1, 0.167, 1.413, 0.292, 1 ]
  4633. },
  4634. { "time": 0.3333 }
  4635. ]
  4636. },
  4637. "bone10": {
  4638. "translate": [
  4639. {
  4640. "time": 0.0667,
  4641. "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
  4642. },
  4643. { "time": 0.2333, "x": -949.43 }
  4644. ],
  4645. "scale": [
  4646. {
  4647. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4648. },
  4649. {
  4650. "time": 0.0667,
  4651. "x": 0.8,
  4652. "y": 0.8,
  4653. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4654. },
  4655. { "time": 0.2333, "x": 10, "y": 10 }
  4656. ]
  4657. },
  4658. "bone11": {
  4659. "translate": [
  4660. {
  4661. "time": 0.0667,
  4662. "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
  4663. },
  4664. { "time": 0.2333, "x": -844.54 }
  4665. ],
  4666. "scale": [
  4667. {
  4668. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4669. },
  4670. {
  4671. "time": 0.0667,
  4672. "x": 0.8,
  4673. "y": 0.8,
  4674. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4675. },
  4676. { "time": 0.2333, "x": 10, "y": 10 }
  4677. ]
  4678. },
  4679. "bone12": {
  4680. "translate": [
  4681. {
  4682. "time": 0.0667,
  4683. "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
  4684. },
  4685. { "time": 0.2333, "x": -718.09 }
  4686. ],
  4687. "scale": [
  4688. {
  4689. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4690. },
  4691. {
  4692. "time": 0.0667,
  4693. "x": 0.8,
  4694. "y": 0.8,
  4695. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4696. },
  4697. { "time": 0.2333, "x": 10, "y": 10 }
  4698. ]
  4699. },
  4700. "bone13": {
  4701. "translate": [
  4702. {
  4703. "time": 0.0667,
  4704. "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
  4705. },
  4706. { "time": 0.2333, "x": -578.32 }
  4707. ],
  4708. "scale": [
  4709. {
  4710. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4711. },
  4712. {
  4713. "time": 0.0667,
  4714. "x": 0.8,
  4715. "y": 0.8,
  4716. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4717. },
  4718. { "time": 0.2333, "x": 10, "y": 10 }
  4719. ]
  4720. },
  4721. "bone14": {
  4722. "translate": [
  4723. {
  4724. "time": 0.0667,
  4725. "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
  4726. },
  4727. { "time": 0.2333, "x": -450.63 }
  4728. ],
  4729. "scale": [
  4730. {
  4731. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4732. },
  4733. {
  4734. "time": 0.0667,
  4735. "x": 0.8,
  4736. "y": 0.8,
  4737. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4738. },
  4739. { "time": 0.2333, "x": 10, "y": 10 }
  4740. ]
  4741. },
  4742. "bone15": {
  4743. "translate": [
  4744. {
  4745. "time": 0.0667,
  4746. "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
  4747. },
  4748. { "time": 0.2333, "x": -634 }
  4749. ],
  4750. "scale": [
  4751. {
  4752. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4753. },
  4754. {
  4755. "time": 0.0667,
  4756. "x": 0.8,
  4757. "y": 0.8,
  4758. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4759. },
  4760. { "time": 0.2333, "x": 10, "y": 10 }
  4761. ]
  4762. },
  4763. "bone16": {
  4764. "translate": [
  4765. {
  4766. "time": 0.0667,
  4767. "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
  4768. },
  4769. { "time": 0.2333, "x": -468.55 }
  4770. ],
  4771. "scale": [
  4772. {
  4773. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4774. },
  4775. {
  4776. "time": 0.0667,
  4777. "x": 0.8,
  4778. "y": 0.8,
  4779. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4780. },
  4781. { "time": 0.2333, "x": 10, "y": 10 }
  4782. ]
  4783. },
  4784. "bone17": {
  4785. "translate": [
  4786. {
  4787. "time": 0.0667,
  4788. "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
  4789. },
  4790. { "time": 0.2333, "x": -218.86 }
  4791. ],
  4792. "scale": [
  4793. {
  4794. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4795. },
  4796. {
  4797. "time": 0.0667,
  4798. "x": 0.8,
  4799. "y": 0.8,
  4800. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  4801. },
  4802. { "time": 0.2333, "x": 10, "y": 10 }
  4803. ]
  4804. },
  4805. "bone18": {
  4806. "translate": [
  4807. {
  4808. "time": 0.0667,
  4809. "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
  4810. },
  4811. { "time": 0.3, "x": -140.4 }
  4812. ],
  4813. "scale": [
  4814. {
  4815. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  4816. },
  4817. {
  4818. "time": 0.0667,
  4819. "x": 0.8,
  4820. "y": 0.8,
  4821. "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
  4822. },
  4823. { "time": 0.3, "x": 20, "y": 20 }
  4824. ]
  4825. },
  4826. "bone19": {
  4827. "translate": [
  4828. {
  4829. "time": 0.1,
  4830. "curve": [ 0.158, 0, 0.275, -949.43, 0.158, 0, 0.275, 0 ]
  4831. },
  4832. { "time": 0.3333, "x": -949.43 },
  4833. { "time": 0.4, "x": -949.43 }
  4834. ],
  4835. "scale": [
  4836. {
  4837. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  4838. },
  4839. {
  4840. "time": 0.1,
  4841. "x": 0.8,
  4842. "y": 0.8,
  4843. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  4844. },
  4845. { "time": 0.3333, "x": 10, "y": 10 }
  4846. ]
  4847. },
  4848. "bone20": {
  4849. "translate": [
  4850. {
  4851. "time": 0.1,
  4852. "curve": [ 0.158, 0, 0.275, -844.54, 0.158, 0, 0.275, 0 ]
  4853. },
  4854. { "time": 0.3333, "x": -844.54 },
  4855. { "time": 0.4, "x": -844.54 }
  4856. ],
  4857. "scale": [
  4858. {
  4859. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  4860. },
  4861. {
  4862. "time": 0.1,
  4863. "x": 0.8,
  4864. "y": 0.8,
  4865. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  4866. },
  4867. { "time": 0.3333, "x": 10, "y": 10 }
  4868. ]
  4869. },
  4870. "bone21": {
  4871. "translate": [
  4872. {
  4873. "time": 0.1,
  4874. "curve": [ 0.158, 0, 0.275, -718.09, 0.158, 0, 0.275, 0 ]
  4875. },
  4876. { "time": 0.3333, "x": -718.09 }
  4877. ],
  4878. "scale": [
  4879. {
  4880. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  4881. },
  4882. {
  4883. "time": 0.1,
  4884. "x": 0.8,
  4885. "y": 0.8,
  4886. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  4887. },
  4888. { "time": 0.3333, "x": 10, "y": 10 }
  4889. ]
  4890. },
  4891. "bone22": {
  4892. "translate": [
  4893. {
  4894. "time": 0.1,
  4895. "curve": [ 0.158, 0, 0.275, -578.32, 0.158, 0, 0.275, 0 ]
  4896. },
  4897. { "time": 0.3333, "x": -578.32 }
  4898. ],
  4899. "scale": [
  4900. {
  4901. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  4902. },
  4903. {
  4904. "time": 0.1,
  4905. "x": 0.8,
  4906. "y": 0.8,
  4907. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  4908. },
  4909. { "time": 0.3333, "x": 10, "y": 10 }
  4910. ]
  4911. },
  4912. "bone23": {
  4913. "translate": [
  4914. {
  4915. "time": 0.1,
  4916. "curve": [ 0.158, 0, 0.275, -450.63, 0.158, 0, 0.275, 0 ]
  4917. },
  4918. { "time": 0.3333, "x": -450.63 },
  4919. { "time": 0.4, "x": -450.63 }
  4920. ],
  4921. "scale": [
  4922. {
  4923. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  4924. },
  4925. {
  4926. "time": 0.1,
  4927. "x": 0.8,
  4928. "y": 0.8,
  4929. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  4930. },
  4931. { "time": 0.3333, "x": 10, "y": 10 }
  4932. ]
  4933. },
  4934. "bone24": {
  4935. "translate": [
  4936. {
  4937. "time": 0.1,
  4938. "curve": [ 0.158, 0, 0.275, -634, 0.158, 0, 0.275, 0 ]
  4939. },
  4940. { "time": 0.3333, "x": -634 }
  4941. ],
  4942. "scale": [
  4943. {
  4944. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  4945. },
  4946. {
  4947. "time": 0.1,
  4948. "x": 0.8,
  4949. "y": 0.8,
  4950. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  4951. },
  4952. { "time": 0.3333, "x": 10, "y": 10 }
  4953. ]
  4954. },
  4955. "bone25": {
  4956. "translate": [
  4957. {
  4958. "time": 0.1,
  4959. "curve": [ 0.158, 0, 0.275, -468.55, 0.158, 0, 0.275, 0 ]
  4960. },
  4961. { "time": 0.3333, "x": -468.55 },
  4962. { "time": 0.4, "x": -468.55 }
  4963. ],
  4964. "scale": [
  4965. {
  4966. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  4967. },
  4968. {
  4969. "time": 0.1,
  4970. "x": 0.8,
  4971. "y": 0.8,
  4972. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  4973. },
  4974. { "time": 0.3333, "x": 10, "y": 10 }
  4975. ]
  4976. },
  4977. "bone26": {
  4978. "translate": [
  4979. {
  4980. "time": 0.1,
  4981. "curve": [ 0.158, 0, 0.275, -218.86, 0.158, 0, 0.275, 0 ]
  4982. },
  4983. { "time": 0.3333, "x": -218.86 },
  4984. { "time": 0.4, "x": -218.86 }
  4985. ],
  4986. "scale": [
  4987. {
  4988. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  4989. },
  4990. {
  4991. "time": 0.1,
  4992. "x": 0.8,
  4993. "y": 0.8,
  4994. "curve": [ 0.163, 0.8, 0.244, 4.588, 0.163, 0.8, 0.244, 4.588 ]
  4995. },
  4996. { "time": 0.3333, "x": 10, "y": 10 }
  4997. ]
  4998. },
  4999. "bone27": {
  5000. "translate": [
  5001. {
  5002. "time": 0.1,
  5003. "curve": [ 0.175, 0, 0.325, -140.4, 0.175, 0, 0.325, 0 ]
  5004. },
  5005. { "time": 0.4, "x": -140.4 }
  5006. ],
  5007. "scale": [
  5008. {
  5009. "curve": [ 0.027, 1, 0.062, 0.918, 0.027, 1, 0.062, 0.918 ]
  5010. },
  5011. {
  5012. "time": 0.1,
  5013. "x": 0.8,
  5014. "y": 0.8,
  5015. "curve": [ 0.181, 0.8, 0.286, 8.706, 0.181, 0.8, 0.286, 8.706 ]
  5016. },
  5017. { "time": 0.4, "x": 20, "y": 20 }
  5018. ]
  5019. },
  5020. "bone28": {
  5021. "translate": [
  5022. {
  5023. "time": 0.0667,
  5024. "curve": [ 0.108, 0, 0.192, -949.43, 0.108, 0, 0.192, 0 ]
  5025. },
  5026. { "time": 0.2333, "x": -949.43 },
  5027. { "time": 0.4, "x": -949.43 }
  5028. ],
  5029. "scale": [
  5030. {
  5031. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5032. },
  5033. {
  5034. "time": 0.0667,
  5035. "x": 0.8,
  5036. "y": 0.8,
  5037. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  5038. },
  5039. { "time": 0.2333, "x": 10, "y": 10 }
  5040. ]
  5041. },
  5042. "bone29": {
  5043. "translate": [
  5044. {
  5045. "time": 0.0667,
  5046. "curve": [ 0.108, 0, 0.192, -844.54, 0.108, 0, 0.192, 0 ]
  5047. },
  5048. { "time": 0.2333, "x": -844.54 }
  5049. ],
  5050. "scale": [
  5051. {
  5052. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5053. },
  5054. {
  5055. "time": 0.0667,
  5056. "x": 0.8,
  5057. "y": 0.8,
  5058. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  5059. },
  5060. { "time": 0.2333, "x": 10, "y": 10 }
  5061. ]
  5062. },
  5063. "bone30": {
  5064. "translate": [
  5065. {
  5066. "time": 0.0667,
  5067. "curve": [ 0.108, 0, 0.192, -718.09, 0.108, 0, 0.192, 0 ]
  5068. },
  5069. { "time": 0.2333, "x": -718.09 }
  5070. ],
  5071. "scale": [
  5072. {
  5073. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5074. },
  5075. {
  5076. "time": 0.0667,
  5077. "x": 0.8,
  5078. "y": 0.8,
  5079. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  5080. },
  5081. { "time": 0.2333, "x": 10, "y": 10 }
  5082. ]
  5083. },
  5084. "bone31": {
  5085. "translate": [
  5086. {
  5087. "time": 0.0667,
  5088. "curve": [ 0.108, 0, 0.192, -578.32, 0.108, 0, 0.192, 0 ]
  5089. },
  5090. { "time": 0.2333, "x": -578.32 }
  5091. ],
  5092. "scale": [
  5093. {
  5094. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5095. },
  5096. {
  5097. "time": 0.0667,
  5098. "x": 0.8,
  5099. "y": 0.8,
  5100. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  5101. },
  5102. { "time": 0.2333, "x": 10, "y": 10 }
  5103. ]
  5104. },
  5105. "bone32": {
  5106. "translate": [
  5107. {
  5108. "time": 0.0667,
  5109. "curve": [ 0.108, 0, 0.192, -450.63, 0.108, 0, 0.192, 0 ]
  5110. },
  5111. { "time": 0.2333, "x": -450.63 }
  5112. ],
  5113. "scale": [
  5114. {
  5115. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5116. },
  5117. {
  5118. "time": 0.0667,
  5119. "x": 0.8,
  5120. "y": 0.8,
  5121. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  5122. },
  5123. { "time": 0.2333, "x": 10, "y": 10 }
  5124. ]
  5125. },
  5126. "bone33": {
  5127. "translate": [
  5128. {
  5129. "time": 0.0667,
  5130. "curve": [ 0.108, 0, 0.192, -634, 0.108, 0, 0.192, 0 ]
  5131. },
  5132. { "time": 0.2333, "x": -634 }
  5133. ],
  5134. "scale": [
  5135. {
  5136. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5137. },
  5138. {
  5139. "time": 0.0667,
  5140. "x": 0.8,
  5141. "y": 0.8,
  5142. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  5143. },
  5144. { "time": 0.2333, "x": 10, "y": 10 }
  5145. ]
  5146. },
  5147. "bone34": {
  5148. "translate": [
  5149. {
  5150. "time": 0.0667,
  5151. "curve": [ 0.108, 0, 0.192, -468.55, 0.108, 0, 0.192, 0 ]
  5152. },
  5153. { "time": 0.2333, "x": -468.55 },
  5154. { "time": 0.4, "x": -468.55 }
  5155. ],
  5156. "scale": [
  5157. {
  5158. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5159. },
  5160. {
  5161. "time": 0.0667,
  5162. "x": 0.8,
  5163. "y": 0.8,
  5164. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  5165. },
  5166. { "time": 0.2333, "x": 10, "y": 10 }
  5167. ]
  5168. },
  5169. "bone35": {
  5170. "translate": [
  5171. {
  5172. "time": 0.0667,
  5173. "curve": [ 0.108, 0, 0.192, -218.86, 0.108, 0, 0.192, 0 ]
  5174. },
  5175. { "time": 0.2333, "x": -218.86 }
  5176. ],
  5177. "scale": [
  5178. {
  5179. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5180. },
  5181. {
  5182. "time": 0.0667,
  5183. "x": 0.8,
  5184. "y": 0.8,
  5185. "curve": [ 0.112, 0.8, 0.17, 4.588, 0.112, 0.8, 0.17, 4.588 ]
  5186. },
  5187. { "time": 0.2333, "x": 10, "y": 10 }
  5188. ]
  5189. },
  5190. "bone36": {
  5191. "translate": [
  5192. {
  5193. "time": 0.0667,
  5194. "curve": [ 0.125, 0, 0.242, -140.4, 0.125, 0, 0.242, 0 ]
  5195. },
  5196. { "time": 0.3, "x": -140.4 }
  5197. ],
  5198. "scale": [
  5199. {
  5200. "curve": [ 0.018, 1, 0.041, 0.918, 0.018, 1, 0.041, 0.918 ]
  5201. },
  5202. {
  5203. "time": 0.0667,
  5204. "x": 0.8,
  5205. "y": 0.8,
  5206. "curve": [ 0.13, 0.8, 0.211, 8.706, 0.13, 0.8, 0.211, 8.706 ]
  5207. },
  5208. { "time": 0.3, "x": 20, "y": 20 }
  5209. ]
  5210. },
  5211. "zi3": {
  5212. "translate": [
  5213. {},
  5214. { "time": 0.3667, "y": -243.1 }
  5215. ]
  5216. },
  5217. "zi4": {
  5218. "translate": [
  5219. { "time": 0.1333 },
  5220. { "time": 0.2333, "y": 184.41 }
  5221. ]
  5222. }
  5223. }
  5224. }
  5225. }
  5226. }