chibi-stickers.json 241 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597
  1. {
  2. "skeleton": {
  3. "hash": "B+1abJH59zk",
  4. "spine": "4.2.22",
  5. "x": -180,
  6. "y": -37.5,
  7. "width": 360,
  8. "height": 682.5,
  9. "images": "./images/",
  10. "audio": ""
  11. },
  12. "bones": [
  13. { "name": "root" },
  14. { "name": "hips", "parent": "root", "y": 155.08, "color": "ffcb42ff", "icon": "diamondB" },
  15. { "name": "body-up", "parent": "hips", "length": 116.24, "rotation": 90, "color": "ffcb42ff" },
  16. { "name": "head-base", "parent": "body-up", "length": 243.86, "x": 117.28, "color": "ffc20aff" },
  17. { "name": "leg-r", "parent": "hips", "x": -42.43, "y": 10.89, "color": "ba2c2cff" },
  18. { "name": "leg-up-r", "parent": "leg-r", "length": 82.42, "rotation": -90, "color": "ba2c2cff" },
  19. {
  20. "name": "leg-target-r",
  21. "parent": "root",
  22. "rotation": -90,
  23. "x": -42.43,
  24. "y": 1.14,
  25. "color": "ba2c2cff",
  26. "icon": "ik"
  27. },
  28. { "name": "leg-down-r", "parent": "leg-up-r", "length": 82.42, "x": 82.42, "color": "ba2c2cff" },
  29. { "name": "arm-holder-r", "parent": "body-up", "x": 104.34, "y": -46.44, "color": "227bdbff" },
  30. { "name": "arm-up-r", "parent": "arm-holder-r", "length": 69.47, "rotation": -180, "color": "227bdbff" },
  31. { "name": "arm-down-r", "parent": "arm-up-r", "length": 69.47, "x": 69.47, "color": "227bdbff" },
  32. { "name": "face-holder", "parent": "head-base", "x": 103.25, "color": "abe323ff", "icon": "arrowsB" },
  33. {
  34. "name": "eye-r",
  35. "parent": "face-holder",
  36. "x": -1.13,
  37. "y": -73.48,
  38. "scaleY": -1,
  39. "color": "7bffccff",
  40. "icon": "eye"
  41. },
  42. {
  43. "name": "eyebrow-r",
  44. "parent": "eye-r",
  45. "length": 39.49,
  46. "rotation": -91.46,
  47. "x": 38.21,
  48. "y": 15.22,
  49. "color": "ffc237ff"
  50. },
  51. { "name": "hair-front", "parent": "head-base", "length": 154.37, "x": 217.23, "skin": true, "color": "89f541a3" },
  52. { "name": "mouth", "parent": "face-holder", "rotation": -90, "x": -19.03, "icon": "mouth" },
  53. { "name": "eye-l", "parent": "face-holder", "x": -1.13, "y": 73.48, "color": "7bffccff", "icon": "eye" },
  54. {
  55. "name": "eyebrow-l",
  56. "parent": "eye-l",
  57. "length": 39.49,
  58. "rotation": -91.46,
  59. "x": 38.21,
  60. "y": 15.22,
  61. "color": "ffc237ff"
  62. },
  63. { "name": "leg-l", "parent": "hips", "x": 42.43, "y": 10.89, "scaleX": -1, "color": "4b308fff" },
  64. { "name": "leg-up-l", "parent": "leg-l", "length": 82.42, "rotation": -90, "color": "4b308fff" },
  65. { "name": "leg-down-l", "parent": "leg-up-l", "length": 82.42, "x": 82.42, "color": "4b308fff" },
  66. {
  67. "name": "leg-target-l",
  68. "parent": "root",
  69. "rotation": 90,
  70. "x": 42.43,
  71. "y": 1.14,
  72. "color": "4b308fff",
  73. "icon": "ik"
  74. },
  75. { "name": "arm-holder-l", "parent": "body-up", "x": 104.34, "y": 46.44, "scaleY": -1, "color": "ff4646ff" },
  76. { "name": "arm-up-l", "parent": "arm-holder-l", "length": 69.47, "rotation": -180, "color": "ff4646ff" },
  77. { "name": "arm-down-l", "parent": "arm-up-l", "length": 69.47, "x": 69.47, "color": "ff4646ff" },
  78. { "name": "head-inverse", "parent": "head-base", "x": 160.07, "color": "fc0c0c6a", "icon": "warning" },
  79. { "name": "effect-head", "parent": "root", "x": -118.11, "y": 376.01, "color": "279ba7ff", "icon": "particles" },
  80. { "name": "eye-animator-l", "parent": "eye-l", "color": "ffc142ff", "icon": "gear" },
  81. { "name": "eye-animator-r", "parent": "eye-r", "color": "ffc142ff", "icon": "gear" },
  82. {
  83. "name": "skirt-side-rotator-r",
  84. "parent": "body-up",
  85. "length": 141.46,
  86. "rotation": 127.09,
  87. "x": 83.19,
  88. "y": 28.19,
  89. "skin": true,
  90. "color": "b35affa2"
  91. },
  92. { "name": "skirt-side-r", "parent": "skirt-side-rotator-r", "x": 141.46, "skin": true, "color": "b35affa2", "icon": "arrowLeftRight" },
  93. {
  94. "name": "skirt-side-rotator-l",
  95. "parent": "body-up",
  96. "length": 142.13,
  97. "rotation": -126.54,
  98. "x": 85.12,
  99. "y": -26.22,
  100. "skin": true,
  101. "color": "b35affa2"
  102. },
  103. { "name": "skirt-side-l", "parent": "skirt-side-rotator-l", "x": 142.13, "skin": true, "color": "b35affa2", "icon": "arrowLeftRight" },
  104. {
  105. "name": "skirt-middle",
  106. "parent": "body-up",
  107. "x": -26.36,
  108. "y": 0.2,
  109. "skin": true,
  110. "color": "b35affa2",
  111. "icon": "arrowLeftRight"
  112. },
  113. { "name": "small-drop-line1", "parent": "root", "x": -54.33, "y": 448.98, "color": "3a98a5ff", "icon": "particles" },
  114. { "name": "small-drop-line2", "parent": "root", "x": -54.33, "y": 448.98, "color": "3a98a5ff", "icon": "particles" },
  115. { "name": "small-drop-line3", "parent": "root", "x": -54.33, "y": 448.98, "color": "3a98a5ff", "icon": "particles" },
  116. {
  117. "name": "hair-back-long-middle",
  118. "parent": "head-base",
  119. "length": 258.56,
  120. "rotation": -90,
  121. "x": 156.74,
  122. "inherit": "noRotationOrReflection",
  123. "skin": true,
  124. "color": "89f541a3"
  125. },
  126. { "name": "hair-back-long-middle-down", "parent": "hair-back-long-middle", "length": 129.28, "x": 258.56, "skin": true, "color": "89f541a3" },
  127. { "name": "blush-l", "parent": "eye-l", "x": -16.8, "y": 20.47, "color": "ff5792ff" },
  128. { "name": "blush-r", "parent": "eye-r", "x": -16.8, "y": 20.47, "color": "ff5792ff" },
  129. { "name": "tear-l", "parent": "eye-l", "x": -12.63, "y": 1.55, "color": "3e97d6ff" },
  130. { "name": "tear-r", "parent": "eye-r", "x": -12.63, "y": 1.55, "color": "3e97d6ff" },
  131. { "name": "shadow", "parent": "root", "x": -6.5, "y": -6.5 }
  132. ],
  133. "slots": [
  134. { "name": "shield", "bone": "body-up", "attachment": "shield" },
  135. { "name": "hat-border-back", "bone": "head-base", "attachment": "hat-border" },
  136. { "name": "shadow", "bone": "shadow", "attachment": "common/shadow" },
  137. { "name": "back-hair", "bone": "head-base", "attachment": "back-hair" },
  138. { "name": "hair-decoration", "bone": "head-base", "attachment": "hair-decoration" },
  139. { "name": "back-hair-long", "bone": "head-base", "attachment": "back-hair-long" },
  140. { "name": "sword", "bone": "body-up", "attachment": "sword" },
  141. { "name": "leg-r", "bone": "leg-r", "attachment": "leg" },
  142. { "name": "leg-decoration-r", "bone": "leg-down-r", "attachment": "leg-decoration" },
  143. { "name": "leg-l", "bone": "leg-l", "attachment": "leg" },
  144. { "name": "leg-decoration-l", "bone": "leg-down-l", "attachment": "leg-decoration" },
  145. { "name": "body", "bone": "hips", "attachment": "body" },
  146. { "name": "skirt", "bone": "body-up", "attachment": "skirt" },
  147. { "name": "belt", "bone": "body-up", "attachment": "belt" },
  148. { "name": "collar", "bone": "body-up", "attachment": "collar" },
  149. { "name": "body-decoration", "bone": "body-up", "attachment": "body-decoration" },
  150. { "name": "ear-r", "bone": "head-base", "attachment": "ear" },
  151. { "name": "ear-l", "bone": "head-base", "attachment": "ear" },
  152. { "name": "head-base", "bone": "head-base", "attachment": "head-base" },
  153. { "name": "blush-r", "bone": "blush-r", "attachment": "blush" },
  154. { "name": "blush-l", "bone": "blush-l", "attachment": "blush" },
  155. { "name": "beard", "bone": "head-base", "attachment": "beard" },
  156. { "name": "big-purple-fear", "bone": "head-base" },
  157. { "name": "purple-fear-lines", "bone": "face-holder" },
  158. { "name": "small-purple-fear", "bone": "face-holder" },
  159. { "name": "hair-side-r", "bone": "head-base", "attachment": "hair-side" },
  160. { "name": "hair-side-l", "bone": "head-base", "attachment": "hair-side" },
  161. { "name": "hair-front", "bone": "head-base", "attachment": "hair-front" },
  162. { "name": "glasses-side-l", "bone": "head-base", "attachment": "glasses-side" },
  163. { "name": "glasses-side-r", "bone": "head-base", "attachment": "glasses-side" },
  164. { "name": "hat-border", "bone": "head-base", "attachment": "hat-border" },
  165. { "name": "hat-top", "bone": "head-base", "attachment": "hat-top" },
  166. { "name": "strawberries-decoration", "bone": "head-base", "attachment": "strawberries-decoration" },
  167. { "name": "mouth", "bone": "mouth", "attachment": "mouth-neutral" },
  168. { "name": "eye-r", "bone": "eye-animator-r", "attachment": "eye-dafault" },
  169. { "name": "eye-sparkle-r", "bone": "eye-animator-r" },
  170. { "name": "eye-l", "bone": "eye-animator-l", "attachment": "eye-dafault" },
  171. { "name": "eye-sparkle-l", "bone": "eye-animator-l" },
  172. { "name": "eyebrow-r", "bone": "eyebrow-r", "attachment": "eyebrow" },
  173. { "name": "eyebrow-l", "bone": "eyebrow-l", "attachment": "eyebrow" },
  174. { "name": "glasses-shadow", "bone": "head-base", "attachment": "glasses-shadow", "blend": "multiply" },
  175. { "name": "face-cover", "bone": "face-holder", "attachment": "face-cover" },
  176. { "name": "glasses", "bone": "face-holder", "attachment": "glasses" },
  177. { "name": "arm-r", "bone": "arm-holder-r", "attachment": "arm" },
  178. { "name": "glove-r", "bone": "arm-down-r", "attachment": "glove" },
  179. { "name": "arm-l", "bone": "arm-holder-l", "attachment": "arm" },
  180. { "name": "arm-decoration-r", "bone": "arm-down-r", "attachment": "arm-decoration" },
  181. { "name": "glove-l", "bone": "arm-down-l", "attachment": "glove" },
  182. { "name": "arm-decoration-l", "bone": "arm-down-l", "attachment": "arm-decoration" },
  183. { "name": "bracelet-r", "bone": "arm-down-r", "attachment": "bracelet" },
  184. { "name": "arm-shoulder-decoration-r", "bone": "arm-up-r", "attachment": "arm-shoulder-decoration" },
  185. { "name": "bracelet-l", "bone": "arm-down-l", "attachment": "bracelet" },
  186. { "name": "arm-shoulder-decoration-l", "bone": "arm-up-l", "attachment": "arm-shoulder-decoration" },
  187. { "name": "big-tear", "bone": "effect-head" },
  188. { "name": "tear-l", "bone": "tear-l" },
  189. { "name": "tear-r", "bone": "tear-r" },
  190. { "name": "angry-mark", "bone": "effect-head" },
  191. { "name": "small-drop-line", "bone": "small-drop-line1" },
  192. { "name": "small-drop-line-l", "bone": "small-drop-line2" },
  193. { "name": "small-drop-line3", "bone": "small-drop-line3" },
  194. { "name": "lamp", "bone": "effect-head" }
  195. ],
  196. "ik": [
  197. {
  198. "name": "leg-target-l",
  199. "order": 1,
  200. "bones": [ "leg-up-l", "leg-down-l" ],
  201. "target": "leg-target-l"
  202. },
  203. {
  204. "name": "leg-target-r",
  205. "bones": [ "leg-up-r", "leg-down-r" ],
  206. "target": "leg-target-r"
  207. }
  208. ],
  209. "transform": [
  210. {
  211. "name": "face-holder",
  212. "order": 2,
  213. "bones": [ "head-inverse" ],
  214. "target": "face-holder",
  215. "x": 56.82,
  216. "mixRotate": 0,
  217. "mixX": -1,
  218. "mixScaleX": 0,
  219. "mixShearY": 0
  220. }
  221. ],
  222. "skins": [
  223. {
  224. "name": "default",
  225. "attachments": {
  226. "angry-mark": {
  227. "common/angry-mark": { "width": 84, "height": 82 }
  228. },
  229. "big-purple-fear": {
  230. "common/big-purple-fear": { "x": 176.14, "rotation": -90, "width": 267, "height": 144 }
  231. },
  232. "big-tear": {
  233. "common/big-tear": { "x": -1.39, "y": 44.49, "width": 66, "height": 164 }
  234. },
  235. "lamp": {
  236. "common/lamp": { "x": -14.08, "y": 47.52, "width": 94, "height": 130 }
  237. },
  238. "purple-fear-lines": {
  239. "common/purple-fear-lines": { "x": 38.88, "rotation": -90, "width": 96, "height": 56 }
  240. },
  241. "shadow": {
  242. "common/shadow": { "width": 226, "height": 62 }
  243. },
  244. "small-drop-line": {
  245. "common/eye-heart": { "x": 0.5, "width": 51, "height": 46 },
  246. "common/small-drop-line": { "x": 2.83, "y": 1.52, "width": 32, "height": 34 }
  247. },
  248. "small-drop-line-l": {
  249. "common/eye-heart": { "x": 0.5, "width": 51, "height": 46 },
  250. "common/small-drop-line": { "x": 2.83, "y": 1.52, "width": 32, "height": 34 }
  251. },
  252. "small-drop-line3": {
  253. "common/eye-heart": { "x": 0.5, "width": 51, "height": 46 },
  254. "common/small-drop-line": { "x": 2.83, "y": 1.52, "width": 32, "height": 34 }
  255. },
  256. "small-purple-fear": {
  257. "common/small-purple-fear": { "x": 35.38, "y": 1.5, "rotation": -90, "width": 107, "height": 75 }
  258. },
  259. "tear-l": {
  260. "common/tear": { "x": -16.36, "y": -0.54, "rotation": -90, "width": 39, "height": 38 }
  261. },
  262. "tear-r": {
  263. "common/tear": { "x": -16.36, "y": -0.54, "rotation": -90, "width": 39, "height": 38 }
  264. }
  265. }
  266. },
  267. {
  268. "name": "erikari",
  269. "bones": [ "hair-back-long-middle", "hair-back-long-middle-down", "skirt-middle", "skirt-side-l", "skirt-side-r", "skirt-side-rotator-l", "skirt-side-rotator-r" ],
  270. "attachments": {
  271. "arm-l": {
  272. "arm": { "name": "erikari/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  273. },
  274. "arm-r": {
  275. "arm": { "name": "erikari/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  276. },
  277. "arm-shoulder-decoration-l": {
  278. "arm-shoulder-decoration": { "name": "erikari/arm-shoulder-decoration", "x": 15.81, "y": 0.92, "rotation": 90, "width": 64, "height": 85 }
  279. },
  280. "arm-shoulder-decoration-r": {
  281. "arm-shoulder-decoration": { "name": "erikari/arm-shoulder-decoration", "x": 15.81, "y": 0.92, "rotation": 90, "width": 64, "height": 85 }
  282. },
  283. "back-hair": {
  284. "back-hair": { "name": "erikari/back-hair", "type": "linkedmesh", "skin": "spineboy", "parent": "back-hair", "width": 315, "height": 282 }
  285. },
  286. "back-hair-long": {
  287. "back-hair-long": {
  288. "name": "erikari/back-hair-long",
  289. "type": "mesh",
  290. "uvs": [ 1, 0.88917, 1, 1, 0, 1, 0, 0.89122, 0, 0.75, 0, 0.61415, 0, 0.5, 0, 0.25, 0, 0, 1, 0, 1, 0.25, 1, 0.5, 1, 0.63468, 1, 0.75 ],
  291. "triangles": [ 1, 2, 3, 6, 7, 10, 3, 4, 0, 4, 13, 0, 4, 12, 13, 4, 5, 12, 5, 11, 12, 5, 6, 11, 6, 10, 11, 1, 3, 0, 7, 9, 10, 7, 8, 9 ],
  292. "vertices": [ 4, 3, -181.06, -220, 0.01126, 25, -341.13, -220, 0.46746, 37, 337.8, 220, 0.19308, 38, 79.24, 220, 0.3282, 2, 25, -397.43, -220, 0.4122, 38, 135.54, 220, 0.5878, 2, 25, -397.43, 220, 0.4122, 38, 135.54, -220, 0.5878, 4, 3, -182.1, 220, 0.01128, 25, -342.17, 220, 0.4669, 37, 338.84, -220, 0.19362, 38, 80.28, -220, 0.3282, 4, 3, -110.36, 220, 0.04098, 25, -270.43, 220, 0.51701, 37, 267.1, -220, 0.25882, 38, 8.54, -220, 0.1832, 4, 3, -41.35, 220, 0.10536, 25, -201.42, 220, 0.54864, 37, 198.09, -220, 0.2544, 38, -60.47, -220, 0.0916, 3, 3, 16.64, 220, 0.1985, 25, -143.43, 220, 0.5802, 37, 140.1, -220, 0.2213, 2, 3, 143.64, 220, 0.5878, 25, -16.43, 220, 0.4122, 2, 3, 270.64, 220, 0.5878, 25, 110.57, 220, 0.4122, 2, 3, 270.64, -220, 0.5878, 25, 110.57, -220, 0.4122, 2, 3, 143.64, -220, 0.5878, 25, -16.43, -220, 0.4122, 3, 3, 16.64, -220, 0.1985, 25, -143.43, -220, 0.5802, 37, 140.1, 220, 0.2213, 4, 3, -51.78, -220, 0.10533, 25, -211.85, -220, 0.5491, 37, 208.52, 220, 0.25397, 38, -50.04, 220, 0.0916, 4, 3, -110.36, -220, 0.04093, 25, -270.43, -220, 0.51792, 37, 267.1, 220, 0.25795, 38, 8.54, 220, 0.1832 ],
  293. "hull": 14,
  294. "edges": [ 12, 14, 14, 16, 18, 20, 20, 22, 2, 4, 16, 18, 8, 10, 10, 12, 22, 24, 24, 26, 4, 6, 6, 8, 2, 0, 0, 26 ],
  295. "width": 440,
  296. "height": 508
  297. }
  298. },
  299. "blush-l": {
  300. "blush": { "name": "erikari/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  301. },
  302. "blush-r": {
  303. "blush": { "name": "erikari/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  304. },
  305. "body": {
  306. "body": { "name": "erikari/body", "type": "linkedmesh", "skin": "spineboy", "parent": "body", "width": 140, "height": 195 }
  307. },
  308. "bracelet-l": {
  309. "bracelet": {
  310. "name": "erikari/bracelet",
  311. "type": "mesh",
  312. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  313. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  314. "vertices": [ 2, 24, 47.95, 33, 0.83, 23, 117.42, 33, 0.17, 2, 24, 47.95, -33, 0.83, 23, 117.42, -33, 0.17, 2, 24, 25.95, -33, 0.83, 23, 95.42, -33, 0.17, 2, 24, 25.95, 33, 0.83, 23, 95.42, 33, 0.17 ],
  315. "hull": 4,
  316. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  317. "width": 66,
  318. "height": 22
  319. }
  320. },
  321. "bracelet-r": {
  322. "bracelet": {
  323. "name": "erikari/bracelet",
  324. "type": "mesh",
  325. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  326. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  327. "vertices": [ 2, 10, 47.95, 33, 0.8397, 9, 117.42, 33, 0.1603, 2, 10, 47.95, -33, 0.8397, 9, 117.42, -33, 0.1603, 2, 10, 25.95, -33, 0.8397, 9, 95.42, -33, 0.1603, 2, 10, 25.95, 33, 0.8397, 9, 95.42, 33, 0.1603 ],
  328. "hull": 4,
  329. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  330. "width": 66,
  331. "height": 22
  332. }
  333. },
  334. "collar": {
  335. "collar": { "name": "erikari/collar", "x": 104.92, "rotation": -90, "width": 121, "height": 123 }
  336. },
  337. "ear-l": {
  338. "ear": { "name": "erikari/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  339. },
  340. "ear-r": {
  341. "ear": { "name": "erikari/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  342. },
  343. "eye-l": {
  344. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  345. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  346. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  347. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  348. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  349. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  350. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  351. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  352. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  353. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  354. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  355. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  356. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  357. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  358. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  359. },
  360. "eye-r": {
  361. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  362. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  363. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  364. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  365. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  366. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  367. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  368. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  369. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  370. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  371. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  372. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  373. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  374. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  375. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  376. },
  377. "eye-sparkle-l": {
  378. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  379. },
  380. "eye-sparkle-r": {
  381. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  382. },
  383. "eyebrow-l": {
  384. "eyebrow": { "name": "erikari/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 39, "height": 23 }
  385. },
  386. "eyebrow-r": {
  387. "eyebrow": { "name": "erikari/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 39, "height": 23 }
  388. },
  389. "hair-front": {
  390. "hair-front": {
  391. "name": "erikari/hair-front",
  392. "type": "mesh",
  393. "uvs": [ 1, 1, 0.66667, 1, 0.33333, 1, 0, 1, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0 ],
  394. "triangles": [ 1, 2, 6, 2, 3, 5, 3, 4, 5, 2, 5, 6, 1, 6, 7, 0, 1, 7 ],
  395. "vertices": [ 2, 3, 143.14, -129.5, 0.6794, 11, 39.88, -129.5, 0.3206, 1, 11, 39.88, -43.17, 1, 1, 11, 39.88, 43.17, 1, 2, 3, 143.14, 129.5, 0.6794, 11, 39.88, 129.5, 0.3206, 1, 3, 272.14, 129.5, 1, 1, 3, 272.14, 43.17, 1, 1, 3, 272.14, -43.17, 1, 1, 3, 272.14, -129.5, 1 ],
  396. "hull": 8,
  397. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 0 ],
  398. "width": 259,
  399. "height": 129
  400. }
  401. },
  402. "hair-side-l": {
  403. "hair-side": {
  404. "name": "erikari/hair-side",
  405. "type": "mesh",
  406. "uvs": [ 1, 0.53107, 1, 1, 0, 1, 0, 0.52648, 0, 0, 1, 0 ],
  407. "triangles": [ 2, 0, 1, 3, 4, 5, 0, 3, 5, 2, 3, 0 ],
  408. "vertices": [ 1, 11, 17.68, -76, 1, 1, 11, -106.12, -76, 1, 1, 3, -2.86, -162, 1, 1, 3, 122.15, -162, 1, 1, 3, 261.14, -162, 1, 1, 3, 261.14, -76, 1 ],
  409. "hull": 6,
  410. "edges": [ 2, 4, 8, 10, 2, 0, 0, 10, 4, 6, 6, 8 ],
  411. "width": 86,
  412. "height": 264
  413. }
  414. },
  415. "hair-side-r": {
  416. "hair-side": {
  417. "name": "erikari/hair-side",
  418. "type": "mesh",
  419. "uvs": [ 1, 1, 0, 1, 0, 0.5, 0, 0, 1, 0, 1, 0.5 ],
  420. "triangles": [ 0, 1, 5, 1, 2, 5, 5, 2, 4, 2, 3, 4 ],
  421. "vertices": [ 1, 11, -106.12, 76, 1, 1, 3, -2.86, 162, 1, 1, 3, 129.14, 162, 1, 1, 3, 261.14, 162, 1, 1, 3, 261.14, 76, 1, 1, 11, 25.88, 76, 1 ],
  422. "hull": 6,
  423. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 0 ],
  424. "width": 86,
  425. "height": 264
  426. }
  427. },
  428. "hat-border": {
  429. "hat-border": {
  430. "name": "erikari/hat-border",
  431. "type": "mesh",
  432. "uvs": [ 1, 1, 0.79729, 1, 0.59815, 1, 0.37512, 1, 0.20944, 1, 0, 1, 0, 0, 0.21422, 0, 0.36716, 0, 0.59975, 0, 0.78455, 0, 1, 0 ],
  433. "triangles": [ 1, 2, 10, 3, 8, 9, 3, 4, 8, 2, 3, 9, 2, 9, 10, 4, 7, 8, 0, 10, 11, 0, 1, 10, 4, 5, 7, 5, 6, 7 ],
  434. "vertices": [ 2, 3, 165.14, -254, 0.7481, 11, 61.88, -254, 0.2519, 2, 3, 165.14, -151.02, 0.39187, 11, 61.88, -151.02, 0.60813, 1, 11, 61.88, -49.86, 1, 1, 11, 61.88, 63.44, 1, 2, 3, 165.14, 147.6, 0.37168, 11, 61.88, 147.6, 0.62832, 2, 3, 165.14, 254, 0.7481, 11, 61.88, 254, 0.2519, 1, 3, 243.14, 254, 1, 1, 3, 243.14, 145.18, 1, 2, 3, 243.14, 67.48, 0.67818, 11, 139.88, 67.48, 0.32182, 2, 3, 243.14, -50.67, 0.67742, 11, 139.88, -50.67, 0.32258, 1, 3, 243.14, -144.55, 1, 1, 3, 243.14, -254, 1 ],
  435. "hull": 12,
  436. "edges": [ 10, 12, 22, 0, 20, 22, 0, 2, 12, 14, 8, 10, 14, 16, 16, 18, 18, 20, 6, 8, 2, 4, 4, 6, 14, 10, 20, 0 ],
  437. "width": 508,
  438. "height": 78
  439. }
  440. },
  441. "hat-border-back": {
  442. "hat-border": {
  443. "name": "erikari/hat-border",
  444. "type": "mesh",
  445. "uvs": [ 1, 1, 0.79729, 1, 0.59815, 1, 0.37512, 1, 0.20944, 1, 0, 1, 0, 0, 0.21422, 0, 0.36716, 0, 0.59975, 0, 0.78455, 0, 1, 0 ],
  446. "triangles": [ 2, 3, 9, 3, 4, 8, 1, 2, 10, 5, 6, 7, 4, 5, 7, 0, 1, 10, 0, 10, 11, 4, 7, 8, 2, 9, 10, 3, 8, 9 ],
  447. "vertices": [ 2, 3, 165.14, -254, 0.7481, 11, 61.88, -254, 0.2519, 2, 3, 165.14, -151.02, 0.39187, 25, 5.07, -151.02, 0.60813, 1, 25, 5.07, -49.86, 1, 1, 25, 5.07, 63.44, 1, 2, 3, 165.14, 147.6, 0.37168, 25, 5.07, 147.6, 0.62832, 2, 3, 165.14, 254, 0.7481, 11, 61.88, 254, 0.2519, 1, 3, 243.14, 254, 1, 1, 3, 243.14, 145.18, 1, 2, 3, 243.14, 67.48, 0.67818, 11, 139.88, 67.48, 0.32182, 2, 3, 243.14, -50.67, 0.67742, 11, 139.88, -50.67, 0.32258, 1, 3, 243.14, -144.55, 1, 1, 3, 243.14, -254, 1 ],
  448. "hull": 12,
  449. "edges": [ 10, 12, 22, 0, 20, 22, 0, 2, 12, 14, 8, 10, 14, 16, 16, 18, 18, 20, 6, 8, 2, 4, 4, 6, 14, 10, 20, 0 ],
  450. "width": 508,
  451. "height": 78
  452. }
  453. },
  454. "hat-top": {
  455. "hat-top": {
  456. "name": "erikari/hat-top",
  457. "type": "mesh",
  458. "uvs": [ 1, 1, 0.66667, 1, 0.33333, 1, 0, 1, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0 ],
  459. "triangles": [ 2, 3, 4, 5, 2, 4, 1, 5, 6, 2, 5, 1, 6, 7, 0, 1, 6, 0 ],
  460. "vertices": [ 1, 3, 222.14, -159.5, 1, 2, 3, 222.14, -53.17, 0.5038, 11, 118.88, -53.17, 0.4962, 2, 3, 222.14, 53.17, 0.5038, 11, 118.88, 53.17, 0.4962, 1, 3, 222.14, 159.5, 1, 1, 3, 341.14, 159.5, 1, 1, 3, 341.14, 53.17, 1, 1, 3, 341.14, -53.17, 1, 1, 3, 341.14, -159.5, 1 ],
  461. "hull": 8,
  462. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 0, 12, 0 ],
  463. "width": 319,
  464. "height": 119
  465. }
  466. },
  467. "head-base": {
  468. "head-base": { "name": "erikari/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  469. },
  470. "leg-decoration-l": {
  471. "leg-decoration": { "name": "erikari/leg-decoration", "x": 51.56, "rotation": 90, "width": 71, "height": 25 }
  472. },
  473. "leg-decoration-r": {
  474. "leg-decoration": { "name": "erikari/leg-decoration", "x": 51.56, "y": 0.93, "rotation": 90, "width": 71, "height": 25 }
  475. },
  476. "leg-l": {
  477. "leg": { "name": "erikari/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  478. },
  479. "leg-r": {
  480. "leg": { "name": "erikari/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  481. },
  482. "mouth": {
  483. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  484. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  485. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  486. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  487. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  488. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  489. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  490. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  491. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  492. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  493. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  494. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  495. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  496. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  497. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  498. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  499. },
  500. "skirt": {
  501. "skirt": {
  502. "name": "erikari/skirt",
  503. "type": "mesh",
  504. "uvs": [ 1, 0.71699, 1, 1, 0.75891, 1, 0.24881, 1, 0, 1, 0, 0.70082, 0, 0, 0.34785, 0, 0.64748, 0, 1, 0, 0.06804, 0.41393, 0.18938, 0.14319, 0.93472, 0.4018, 0.81834, 0.14319, 0.29833, 0.50282, 0.70691, 0.51091, 0.3429, 0.21593, 0.65243, 0.22805 ],
  505. "triangles": [ 2, 3, 15, 12, 13, 9, 14, 17, 15, 15, 13, 12, 12, 9, 0, 2, 0, 1, 0, 2, 15, 0, 15, 12, 15, 17, 13, 14, 16, 17, 10, 6, 11, 5, 6, 10, 14, 3, 5, 14, 5, 10, 5, 3, 4, 10, 11, 14, 14, 11, 16, 3, 14, 15, 17, 16, 8, 16, 7, 8, 16, 11, 7, 11, 6, 7, 17, 8, 13, 13, 8, 9 ],
  506. "vertices": [ 1, 32, 49.14, -26.67, 1, 1, 32, 83.01, -72.37, 1, 3, 2, -107.08, -84.92, 8.0E-5, 32, 19.48, -119.46, 0.48863, 33, -80.72, -85.12, 0.51129, 3, 2, -107.08, 82.39, 1.8E-4, 30, 16.52, 119.1, 0.4788, 33, -80.72, 82.19, 0.52103, 2, 30, 81.62, 69.88, 0.76966, 33, -80.72, 163.8, 0.23034, 1, 30, 45.36, 21.91, 1, 1, 2, 93.92, 164, 1, 1, 2, 93.92, 49.9, 1, 1, 2, 93.92, -48.37, 1, 1, 2, 93.92, -164, 1, 1, 30, -7.22, -10.63, 1, 2, 2, 65.14, 101.88, 0.29143, 30, -71.78, -30.04, 0.70857, 1, 32, -5.79, 11.48, 1, 2, 2, 65.14, -104.41, 0.31429, 32, -67.41, 30.51, 0.68571, 2, 30, -56.7, 49.17, 0.75143, 33, 19.21, 65.95, 0.24857, 2, 32, -52.76, -50.63, 0.75302, 33, 17.59, -68.06, 0.24698, 2, 2, 50.52, 51.53, 0.52286, 30, -103.14, 11.99, 0.47714, 2, 2, 48.08, -50, 0.47429, 32, -100.97, -15.6, 0.52571 ],
  507. "hull": 10,
  508. "edges": [ 12, 14, 14, 16, 16, 18, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 2, 0, 0, 18 ],
  509. "width": 328,
  510. "height": 201
  511. }
  512. },
  513. "strawberries-decoration": {
  514. "strawberries-decoration": {
  515. "name": "erikari/strawberries-decoration",
  516. "type": "mesh",
  517. "uvs": [ 1, 1, 0.48732, 1, 0, 1, 0, 0, 0.51893, 0, 1, 0, 0.55054, 0.37951, 0.23974, 0.56831 ],
  518. "triangles": [ 2, 7, 1, 6, 5, 0, 2, 3, 7, 7, 4, 6, 7, 3, 4, 6, 4, 5, 1, 7, 6, 1, 6, 0 ],
  519. "vertices": [ 2, 3, 204.14, -15, 0.49429, 11, 100.88, -15, 0.50571, 2, 3, 204.14, 99.33, 0.5496, 11, 100.88, 99.33, 0.4504, 1, 3, 204.14, 208, 1, 1, 3, 316.14, 208, 1, 2, 3, 316.14, 92.28, 0.85501, 11, 212.88, 92.28, 0.14499, 2, 3, 316.14, -15, 0.58206, 11, 212.88, -15, 0.41794, 2, 3, 273.63, 85.23, 0.57836, 11, 170.38, 85.23, 0.42164, 2, 3, 252.49, 154.54, 0.64976, 11, 149.23, 154.54, 0.35024 ],
  520. "hull": 6,
  521. "edges": [ 4, 6, 0, 10, 6, 8, 8, 10, 0, 2, 2, 4 ],
  522. "width": 223,
  523. "height": 112
  524. }
  525. }
  526. }
  527. },
  528. {
  529. "name": "harri",
  530. "bones": [ "hair-back-long-middle" ],
  531. "attachments": {
  532. "arm-l": {
  533. "arm": { "name": "harri/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  534. },
  535. "arm-r": {
  536. "arm": { "name": "harri/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  537. },
  538. "back-hair": {
  539. "back-hair": { "name": "harri/back-hair", "type": "linkedmesh", "skin": "spineboy", "parent": "back-hair", "width": 315, "height": 282 }
  540. },
  541. "back-hair-long": {
  542. "back-hair-long": {
  543. "name": "harri/back-hair-long",
  544. "type": "mesh",
  545. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  546. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  547. "vertices": [ 1, 37, 260.6, 40, 1, 1, 37, 260.6, -40, 1, 2, 37, 101.6, -40, 0.8931, 25, -104.93, 40, 0.1069, 2, 37, 101.6, 40, 0.8931, 25, -104.93, -40, 0.1069 ],
  548. "hull": 4,
  549. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  550. "width": 80,
  551. "height": 159
  552. }
  553. },
  554. "beard": {
  555. "beard": {
  556. "name": "harri/beard",
  557. "type": "mesh",
  558. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  559. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  560. "vertices": [ 1, 11, -57.12, -10, 1, 1, 11, -57.12, 10, 1, 1, 11, -36.12, 10, 1, 1, 11, -36.12, -10, 1 ],
  561. "hull": 4,
  562. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  563. "width": 20,
  564. "height": 21
  565. }
  566. },
  567. "blush-l": {
  568. "blush": { "name": "harri/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  569. },
  570. "blush-r": {
  571. "blush": {
  572. "name": "harri/blush",
  573. "x": 0.81,
  574. "y": -1.45,
  575. "scaleX": -1,
  576. "rotation": -90,
  577. "width": 57,
  578. "height": 36
  579. }
  580. },
  581. "body": {
  582. "body": { "name": "harri/body", "type": "linkedmesh", "skin": "spineboy", "parent": "body", "width": 140, "height": 195 }
  583. },
  584. "body-decoration": {
  585. "body-decoration": { "name": "harri/body-decoration", "x": 60.92, "y": 12, "rotation": -90, "width": 140, "height": 133 }
  586. },
  587. "ear-l": {
  588. "ear": { "name": "harri/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  589. },
  590. "ear-r": {
  591. "ear": { "name": "harri/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  592. },
  593. "eye-l": {
  594. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  595. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  596. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  597. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  598. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  599. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  600. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  601. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  602. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  603. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  604. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  605. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  606. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  607. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  608. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  609. },
  610. "eye-r": {
  611. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  612. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  613. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  614. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  615. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  616. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  617. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  618. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  619. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  620. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  621. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  622. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  623. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  624. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  625. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  626. },
  627. "eye-sparkle-l": {
  628. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  629. },
  630. "eye-sparkle-r": {
  631. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  632. },
  633. "eyebrow-l": {
  634. "eyebrow": { "name": "harri/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 44, "height": 23 }
  635. },
  636. "eyebrow-r": {
  637. "eyebrow": { "name": "harri/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 44, "height": 23 }
  638. },
  639. "hair-front": {
  640. "hair-front": {
  641. "name": "harri/hair-front",
  642. "type": "mesh",
  643. "uvs": [ 1, 0.65338, 1, 1, 0.93289, 1, 0.8272, 0.46232, 0.16985, 0.45411, 0.07704, 1, 0, 1, 0, 0.68621, 0.14694, 0.19701, 0.47661, 0, 0.53848, 0, 0.89689, 0.25858, 0.47403, 0.35786, 0.54879, 0.36196, 0.47572, 0.17319, 0.53434, 0.16921, 0.47263, 0.10697, 0.53274, 0.10108 ],
  644. "triangles": [ 17, 9, 10, 16, 9, 17, 11, 15, 17, 14, 16, 17, 15, 14, 17, 16, 8, 9, 8, 16, 14, 11, 17, 10, 12, 8, 14, 3, 13, 15, 4, 8, 12, 11, 3, 15, 12, 14, 15, 13, 12, 15, 4, 12, 13, 4, 13, 3, 3, 11, 0, 7, 8, 4, 5, 6, 7, 4, 5, 7, 2, 3, 0, 2, 0, 1 ],
  645. "vertices": [ 1, 3, 161.68, -142.5, 1, 1, 3, 99.64, -142.5, 1, 1, 3, 99.64, -123.37, 1, 1, 3, 195.88, -93.25, 1, 1, 3, 197.35, 94.09, 1, 1, 3, 99.64, 120.54, 1, 1, 3, 99.64, 142.5, 1, 1, 3, 155.81, 142.5, 1, 1, 3, 243.37, 100.62, 1, 2, 3, 278.64, 6.67, 0.626, 25, 118.57, 6.67, 0.374, 2, 3, 278.64, -10.97, 0.626, 25, 118.57, -10.97, 0.374, 1, 3, 232.35, -113.11, 1, 1, 3, 214.58, 7.4, 1, 1, 3, 213.85, -13.91, 1, 2, 3, 247.64, 6.92, 0.9389, 25, 87.57, 6.92, 0.0611, 2, 3, 248.35, -9.79, 0.9389, 25, 88.28, -9.79, 0.0611, 2, 3, 259.49, 7.8, 0.8626, 25, 99.42, 7.8, 0.1374, 2, 3, 260.54, -9.33, 0.8626, 25, 100.47, -9.33, 0.1374 ],
  646. "hull": 12,
  647. "edges": [ 10, 12, 2, 4, 8, 10, 4, 6, 6, 8, 16, 18, 18, 20, 20, 22, 12, 14, 14, 16, 2, 0, 0, 22 ],
  648. "width": 285,
  649. "height": 179
  650. }
  651. },
  652. "head-base": {
  653. "head-base": { "name": "harri/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  654. },
  655. "leg-l": {
  656. "leg": { "name": "harri/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  657. },
  658. "leg-r": {
  659. "leg": { "name": "harri/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  660. },
  661. "mouth": {
  662. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  663. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  664. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  665. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  666. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  667. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  668. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  669. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  670. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  671. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  672. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  673. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  674. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  675. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  676. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  677. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  678. },
  679. "sword": {
  680. "sword": { "name": "harri/sword", "x": 80.92, "y": -8, "rotation": -90, "width": 369, "height": 163 }
  681. }
  682. }
  683. },
  684. {
  685. "name": "luke",
  686. "attachments": {
  687. "arm-l": {
  688. "arm": { "name": "luke/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  689. },
  690. "arm-r": {
  691. "arm": { "name": "luke/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  692. },
  693. "arm-shoulder-decoration-l": {
  694. "arm-shoulder-decoration": { "name": "luke/arm-shoulder-decoration", "x": 0.15, "y": 0.92, "rotation": 90, "width": 61, "height": 53 }
  695. },
  696. "arm-shoulder-decoration-r": {
  697. "arm-shoulder-decoration": { "name": "luke/arm-shoulder-decoration", "x": 0.15, "y": 0.92, "rotation": 90, "width": 61, "height": 53 }
  698. },
  699. "back-hair": {
  700. "back-hair": { "name": "luke/back-hair", "type": "linkedmesh", "skin": "spineboy", "parent": "back-hair", "width": 315, "height": 282 }
  701. },
  702. "blush-l": {
  703. "blush": { "name": "luke/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  704. },
  705. "blush-r": {
  706. "blush": {
  707. "name": "luke/blush",
  708. "x": 0.81,
  709. "y": -1.45,
  710. "scaleX": -1,
  711. "rotation": -90,
  712. "width": 57,
  713. "height": 36
  714. }
  715. },
  716. "body": {
  717. "body": { "name": "luke/body", "type": "linkedmesh", "skin": "spineboy", "parent": "body", "width": 140, "height": 195 }
  718. },
  719. "eye-l": {
  720. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  721. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  722. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  723. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  724. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  725. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  726. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  727. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  728. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  729. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  730. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  731. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  732. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  733. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  734. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  735. },
  736. "eye-r": {
  737. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  738. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  739. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  740. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  741. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  742. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  743. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  744. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  745. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  746. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  747. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  748. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  749. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  750. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  751. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  752. },
  753. "eye-sparkle-l": {
  754. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  755. },
  756. "eye-sparkle-r": {
  757. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  758. },
  759. "eyebrow-l": {
  760. "eyebrow": { "name": "luke/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 54, "height": 23 }
  761. },
  762. "eyebrow-r": {
  763. "eyebrow": { "name": "luke/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 54, "height": 23 }
  764. },
  765. "face-cover": {
  766. "face-cover": {
  767. "name": "luke/face-cover",
  768. "type": "mesh",
  769. "uvs": [ 0.8, 0.90884, 0.6, 1, 0.50332, 1, 0.4, 1, 0.2, 0.90884, 0, 0.75, 0, 0.42942, 0.2, 0.17354, 0.49891, 0, 0.8, 0.17354, 1, 0.42942, 1, 0.75, 0.8, 0.629, 0.2, 0.629, 0.8, 0.5, 0.6, 0.42648, 0.4, 0.42648, 0.2, 0.5, 0.0917, 0.58571, 0.91676, 0.58865, 0.50332, 0.72235, 0.5042, 0.90303, 0.20146, 0.7792, 0.78695, 0.7792, 0.20256, 0.84568, 0.79689, 0.84732, 0.50195, 0.96195 ],
  770. "triangles": [ 16, 7, 8, 15, 16, 8, 9, 15, 8, 14, 15, 9, 16, 17, 7, 12, 15, 14, 20, 16, 15, 20, 15, 12, 23, 20, 12, 13, 16, 20, 16, 13, 17, 22, 13, 20, 21, 24, 22, 21, 20, 23, 21, 23, 25, 21, 22, 20, 17, 6, 7, 10, 14, 9, 22, 18, 13, 12, 11, 23, 12, 14, 19, 13, 18, 17, 18, 6, 17, 19, 14, 10, 5, 6, 18, 19, 10, 11, 11, 25, 23, 12, 19, 11, 22, 5, 18, 24, 3, 4, 5, 22, 24, 4, 5, 24, 0, 25, 11, 26, 21, 25, 21, 26, 24, 25, 1, 26, 26, 3, 24, 1, 2, 26, 3, 26, 2, 25, 0, 1 ],
  771. "vertices": [ 1, 3, 13.94, -101.1, 1, 1, 3, -13.86, -33.7, 1, 1, 3, -13.86, -1.12, 1, 1, 3, -13.86, 33.7, 1, 1, 3, 13.94, 101.1, 1, 1, 3, 62.39, 168.5, 1, 2, 3, 160.16, 168.5, 0.5496, 25, 0.09, 168.5, 0.4504, 2, 3, 238.21, 101.1, 0.3435, 11, 134.95, 101.1, 0.6565, 1, 11, 187.88, 0.37, 1, 2, 3, 238.21, -101.1, 0.3435, 11, 134.95, -101.1, 0.6565, 2, 3, 160.16, -168.5, 0.5496, 25, 0.09, -168.5, 0.4504, 1, 3, 62.39, -168.5, 1, 2, 3, 99.29, -101.1, 0.3893, 11, -3.96, -101.1, 0.6107, 2, 3, 99.29, 101.1, 0.3893, 11, -3.96, 101.1, 0.6107, 2, 3, 138.64, -101.1, 0.3588, 11, 35.38, -101.1, 0.6412, 1, 11, 57.81, -33.7, 1, 1, 11, 57.81, 33.7, 1, 2, 3, 138.64, 101.1, 0.3588, 11, 35.38, 101.1, 0.6412, 1, 3, 112.5, 137.6, 1, 1, 3, 111.6, -140.45, 1, 1, 11, -32.43, -1.12, 1, 1, 11, -87.54, -1.41, 1, 2, 3, 53.48, 100.61, 0.3359, 11, -49.77, 100.61, 0.6641, 2, 3, 53.48, -96.7, 0.3359, 11, -49.77, -96.7, 0.6641, 2, 3, 33.21, 100.24, 0.8473, 11, -70.05, 100.24, 0.1527, 2, 3, 32.71, -100.05, 0.8473, 11, -70.55, -100.05, 0.1527, 2, 3, -2.26, -0.66, 0.7481, 11, -105.51, -0.66, 0.2519 ],
  772. "hull": 12,
  773. "edges": [ 0, 2, 6, 8, 10, 12, 20, 22, 22, 0, 8, 10, 2, 4, 4, 6, 18, 20, 12, 14, 42, 44, 42, 46, 14, 16, 16, 18, 52, 48, 52, 50 ],
  774. "width": 337,
  775. "height": 305
  776. }
  777. },
  778. "glasses-shadow": {
  779. "glasses-shadow": {
  780. "name": "luke/glasses-shadow",
  781. "type": "mesh",
  782. "uvs": [ 1, 0.48569, 1, 1, 0.66667, 1, 0.33333, 1, 0, 1, 0, 0.4764, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0, 0.66667, 0.33706, 0.33333, 0.31383, 0.33333, 0.67149, 0.66667, 0.68078 ],
  783. "triangles": [ 3, 13, 2, 3, 12, 13, 13, 12, 10, 12, 11, 10, 10, 11, 8, 11, 7, 8, 1, 13, 0, 4, 5, 12, 10, 9, 0, 5, 6, 11, 1, 2, 13, 4, 12, 3, 13, 10, 0, 12, 5, 11, 10, 8, 9, 11, 6, 7 ],
  784. "vertices": [ 1, 3, 112.96, -146.5, 1, 1, 3, 29.64, -146.5, 1, 2, 3, 29.64, -48.83, 0.2901, 11, -73.62, -48.83, 0.7099, 2, 3, 29.64, 48.83, 0.2901, 11, -73.62, 48.83, 0.7099, 1, 3, 29.64, 146.5, 1, 1, 3, 114.46, 146.5, 1, 1, 3, 191.64, 146.5, 1, 2, 3, 191.64, 48.83, 0.2901, 11, 88.38, 48.83, 0.7099, 2, 3, 191.64, -48.83, 0.2901, 11, 88.38, -48.83, 0.7099, 1, 3, 191.64, -146.5, 1, 2, 3, 137.03, -48.83, 0.2901, 11, 33.78, -48.83, 0.7099, 2, 3, 140.8, 48.83, 0.2901, 11, 37.54, 48.83, 0.7099, 2, 3, 82.86, 48.83, 0.2901, 11, -20.4, 48.83, 0.7099, 2, 3, 81.35, -48.83, 0.2901, 11, -21.9, -48.83, 0.7099 ],
  785. "hull": 10,
  786. "edges": [ 2, 4, 4, 6, 6, 8, 12, 14, 14, 16, 16, 18, 20, 16, 22, 14, 6, 24, 24, 22, 4, 26, 26, 20, 8, 10, 10, 12, 2, 0, 0, 18 ],
  787. "width": 293,
  788. "height": 162
  789. }
  790. },
  791. "hair-decoration": {
  792. "hair-decoration": {
  793. "name": "luke/hair-decoration",
  794. "type": "mesh",
  795. "uvs": [ 1, 1, 0, 1, 0, 0.66667, 0, 0.33333, 0, 0, 0.25, 0, 0.50335, 0, 0.75, 0, 1, 0, 1, 0.33333, 1, 0.66667, 0.75, 0.66667, 0.25, 0.66667, 0.75, 0.33333, 0.25, 0.33333 ],
  796. "triangles": [ 14, 6, 13, 12, 14, 13, 2, 14, 12, 11, 13, 9, 12, 13, 11, 1, 12, 11, 3, 4, 5, 14, 5, 6, 3, 5, 14, 9, 13, 7, 6, 7, 13, 9, 7, 8, 2, 3, 14, 11, 9, 10, 1, 2, 12, 11, 10, 0, 0, 1, 11 ],
  797. "vertices": [ 1, 3, 95.14, -129.5, 1, 1, 3, 95.14, 129.5, 1, 1, 3, 166.47, 129.5, 1, 2, 3, 237.8, 129.5, 0.8092, 25, 77.73, 129.5, 0.1908, 2, 3, 309.14, 129.5, 0.8092, 25, 149.07, 129.5, 0.1908, 2, 3, 309.14, 64.75, 0.9618, 25, 149.07, 64.75, 0.0382, 2, 3, 309.14, -0.87, 0.7634, 11, 205.88, -0.87, 0.2366, 2, 3, 309.14, -64.75, 0.9618, 25, 149.07, -64.75, 0.0382, 2, 3, 309.14, -129.5, 0.8092, 25, 149.07, -129.5, 0.1908, 2, 3, 237.8, -129.5, 0.8092, 25, 77.73, -129.5, 0.1908, 1, 3, 166.47, -129.5, 1, 1, 11, 63.22, -64.75, 1, 1, 11, 63.22, 64.75, 1, 2, 3, 237.8, -64.75, 0.3588, 11, 134.55, -64.75, 0.6412, 2, 3, 237.8, 64.75, 0.3588, 11, 134.55, 64.75, 0.6412 ],
  798. "hull": 11,
  799. "edges": [ 2, 4, 4, 6, 6, 8, 8, 10, 14, 16, 16, 18, 18, 20, 20, 0, 14, 18, 10, 12, 12, 14, 0, 2 ],
  800. "width": 259,
  801. "height": 214
  802. }
  803. },
  804. "hair-front": {
  805. "hair-front": {
  806. "name": "luke/hair-front",
  807. "type": "mesh",
  808. "uvs": [ 1, 1, 0.66667, 1, 0.33333, 1, 0, 1, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0 ],
  809. "triangles": [ 1, 2, 6, 2, 5, 6, 2, 3, 5, 1, 6, 7, 3, 4, 5, 0, 1, 7 ],
  810. "vertices": [ 1, 3, 135.64, -122, 1, 1, 11, 32.38, -40.67, 1, 1, 11, 32.38, 40.67, 1, 1, 3, 135.64, 122, 1, 1, 3, 248.64, 122, 1, 1, 3, 248.64, 40.67, 1, 1, 3, 248.64, -40.67, 1, 1, 3, 248.64, -122, 1 ],
  811. "hull": 8,
  812. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 0 ],
  813. "width": 244,
  814. "height": 113
  815. }
  816. },
  817. "head-base": {
  818. "head-base": { "name": "luke/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  819. },
  820. "leg-l": {
  821. "leg": { "name": "luke/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  822. },
  823. "leg-r": {
  824. "leg": { "name": "luke/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  825. },
  826. "mouth": {
  827. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  828. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  829. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  830. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  831. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  832. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  833. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  834. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  835. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  836. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  837. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  838. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  839. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  840. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  841. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  842. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  843. },
  844. "shield": {
  845. "shield": { "name": "luke/shield", "x": 68.92, "rotation": -90, "width": 176, "height": 208 }
  846. },
  847. "skirt": {
  848. "skirt": { "name": "luke/skirt", "x": 3.92, "rotation": -90, "width": 161, "height": 61 }
  849. },
  850. "sword": {
  851. "sword": { "name": "luke/sword", "x": 60.92, "y": -8.5, "rotation": -90, "width": 208, "height": 142 }
  852. }
  853. }
  854. },
  855. {
  856. "name": "mario",
  857. "bones": [ "hair-front" ],
  858. "attachments": {
  859. "arm-l": {
  860. "arm": { "name": "mario/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  861. },
  862. "arm-r": {
  863. "arm": { "name": "mario/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  864. },
  865. "back-hair": {
  866. "back-hair": { "name": "mario/back-hair", "type": "linkedmesh", "skin": "spineboy", "parent": "back-hair", "width": 335, "height": 295 }
  867. },
  868. "back-hair-long": {
  869. "back-hair-long": {
  870. "name": "mario/back-hair-long",
  871. "type": "mesh",
  872. "uvs": [ 1, 0.60295, 1, 1, 0, 1, 0, 0.60748, 0, 0, 1, 0 ],
  873. "triangles": [ 1, 3, 0, 1, 2, 3, 3, 4, 0, 4, 5, 0 ],
  874. "vertices": [ 3, 14, 66.31, -86, 0.1297, 25, 123.46, -86, 0.2672, 3, 283.54, -86, 0.6031, 3, 14, 138.18, -86, 0.1679, 25, 195.33, -86, 0.2672, 3, 355.4, -86, 0.5649, 3, 14, 138.18, 86, 0.1679, 25, 195.33, 86, 0.2672, 3, 355.4, 86, 0.5649, 3, 14, 67.13, 86, 0.1297, 25, 124.28, 86, 0.2672, 3, 284.36, 86, 0.6031, 3, 14, -42.82, 86, 0.1297, 25, 14.33, 86, 0.2672, 3, 174.4, 86, 0.6031, 3, 14, -42.82, -86, 0.1297, 25, 14.33, -86, 0.2672, 3, 174.4, -86, 0.6031 ],
  875. "hull": 6,
  876. "edges": [ 2, 4, 8, 10, 4, 6, 6, 8, 2, 0, 0, 10 ],
  877. "width": 172,
  878. "height": 181
  879. }
  880. },
  881. "beard": {
  882. "beard": {
  883. "name": "mario/beard",
  884. "type": "mesh",
  885. "uvs": [ 0.04129, 0, 0, 0.38628, 0, 0.7294, 0.31427, 1, 0.66741, 1, 1, 0.77058, 1, 0.35883, 0.94472, 0, 0.84073, 0, 0.87973, 0.41029, 0.69558, 0.61617, 0.64575, 0.35196, 0.33377, 0.34167, 0.30344, 0.61274, 0.11279, 0.42745, 0.14312, 0, 0.28611, 0.80489, 0.05646, 0.58872, 0.68691, 0.82891, 0.92739, 0.59215, 0.48779, 0.87331 ],
  886. "triangles": [ 4, 20, 18, 3, 16, 20, 18, 10, 19, 10, 18, 20, 20, 16, 13, 10, 20, 13, 16, 17, 13, 10, 13, 11, 13, 12, 11, 10, 9, 19, 17, 14, 13, 4, 18, 5, 18, 19, 5, 3, 20, 4, 3, 2, 16, 2, 17, 16, 19, 6, 5, 2, 1, 17, 19, 9, 6, 17, 1, 14, 1, 0, 14, 14, 0, 15, 9, 7, 6, 9, 8, 7 ],
  887. "vertices": [ 1, 3, 180.64, 134.4, 1, 1, 3, 109.18, 146.5, 1, 1, 3, 45.7, 146.5, 1, 1, 3, -4.36, 54.42, 1, 1, 3, -4.36, -49.05, 1, 1, 3, 38.08, -146.5, 1, 1, 3, 114.26, -146.5, 1, 1, 3, 180.64, -130.3, 1, 2, 3, 180.64, -99.83, 0.5954, 11, 77.38, -99.83, 0.4046, 2, 3, 104.73, -111.26, 0.5954, 11, 1.48, -111.26, 0.4046, 1, 11, -36.61, -57.3, 1, 1, 11, 12.27, -42.7, 1, 1, 11, 14.18, 48.71, 1, 1, 11, -35.97, 57.59, 1, 2, 3, 101.56, 113.45, 0.5954, 11, -1.69, 113.45, 0.4046, 2, 3, 180.64, 104.57, 0.5954, 11, 77.38, 104.57, 0.4046, 2, 3, 31.73, 62.67, 0.1603, 11, -71.52, 62.67, 0.8397, 2, 3, 71.72, 129.96, 0.5115, 11, -31.53, 129.96, 0.4885, 2, 3, 27.29, -54.76, 0.1603, 11, -75.96, -54.76, 0.8397, 2, 3, 71.09, -125.23, 0.5115, 11, -32.16, -125.23, 0.4885, 2, 3, 19.08, 3.58, 0.1603, 11, -84.18, 3.58, 0.8397 ],
  888. "hull": 16,
  889. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 0, 30, 26, 20 ],
  890. "width": 293,
  891. "height": 185
  892. }
  893. },
  894. "blush-l": {
  895. "blush": { "name": "mario/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  896. },
  897. "blush-r": {
  898. "blush": { "name": "mario/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  899. },
  900. "body": {
  901. "body": { "name": "mario/body", "type": "linkedmesh", "skin": "spineboy", "parent": "body", "width": 140, "height": 195 }
  902. },
  903. "ear-l": {
  904. "ear": { "name": "mario/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  905. },
  906. "ear-r": {
  907. "ear": { "name": "mario/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  908. },
  909. "eye-l": {
  910. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  911. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  912. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  913. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  914. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  915. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  916. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  917. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  918. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  919. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  920. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  921. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  922. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  923. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  924. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  925. },
  926. "eye-r": {
  927. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  928. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  929. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  930. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  931. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  932. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  933. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  934. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  935. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  936. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  937. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  938. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  939. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  940. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  941. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  942. },
  943. "eye-sparkle-l": {
  944. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  945. },
  946. "eye-sparkle-r": {
  947. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  948. },
  949. "eyebrow-l": {
  950. "eyebrow": { "name": "mario/eyebrow", "x": 19.37, "y": -6.21, "rotation": 1.46, "width": 64, "height": 33 }
  951. },
  952. "eyebrow-r": {
  953. "eyebrow": { "name": "mario/eyebrow", "x": 19.37, "y": -6.21, "rotation": 1.46, "width": 64, "height": 33 }
  954. },
  955. "hair-front": {
  956. "hair-front": {
  957. "name": "mario/hair-front",
  958. "type": "mesh",
  959. "uvs": [ 1, 1, 0.66667, 1, 0.33333, 1, 0, 1, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0 ],
  960. "triangles": [ 1, 2, 6, 2, 5, 6, 1, 6, 7, 2, 3, 5, 0, 1, 7, 3, 4, 5 ],
  961. "vertices": [ 1, 3, 167.64, -137, 1, 1, 11, 64.38, -45.67, 1, 1, 11, 64.38, 45.67, 1, 1, 3, 167.64, 137, 1, 1, 3, 299.64, 137, 1, 2, 3, 299.64, 45.67, 0.4427, 11, 196.38, 45.67, 0.5573, 2, 3, 299.64, -45.67, 0.4427, 11, 196.38, -45.67, 0.5573, 1, 3, 299.64, -137, 1 ],
  962. "hull": 8,
  963. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 0 ],
  964. "width": 274,
  965. "height": 132
  966. }
  967. },
  968. "head-base": {
  969. "head-base": { "name": "mario/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  970. },
  971. "leg-l": {
  972. "leg": { "name": "mario/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  973. },
  974. "leg-r": {
  975. "leg": { "name": "mario/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  976. },
  977. "mouth": {
  978. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  979. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  980. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  981. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  982. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  983. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  984. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  985. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  986. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  987. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  988. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  989. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  990. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  991. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  992. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  993. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  994. }
  995. }
  996. },
  997. {
  998. "name": "misaki",
  999. "bones": [ "hair-back-long-middle", "hair-back-long-middle-down", "skirt-middle", "skirt-side-l", "skirt-side-r", "skirt-side-rotator-l", "skirt-side-rotator-r" ],
  1000. "attachments": {
  1001. "arm-l": {
  1002. "arm": { "name": "misaki/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  1003. },
  1004. "arm-r": {
  1005. "arm": { "name": "misaki/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  1006. },
  1007. "back-hair": {
  1008. "back-hair": { "name": "misaki/back-hair", "type": "linkedmesh", "skin": "spineboy", "parent": "back-hair", "width": 315, "height": 282 }
  1009. },
  1010. "back-hair-long": {
  1011. "back-hair-long": {
  1012. "name": "misaki/back-hair-long",
  1013. "type": "mesh",
  1014. "uvs": [ 1, 0.25734, 1, 0.52136, 1, 0.70302, 1, 0.87741, 1, 1, 0, 1, 0, 0.85561, 0, 0.68606, 0, 0.51651, 0, 0.23554, 0, 0, 1, 0 ],
  1015. "triangles": [ 8, 0, 1, 8, 9, 0, 6, 2, 3, 6, 7, 2, 7, 1, 2, 7, 8, 1, 5, 3, 4, 5, 6, 3, 9, 11, 0, 9, 10, 11 ],
  1016. "vertices": [ 4, 3, 124.27, -189.5, 0.49055, 37, 32.46, 189.5, 0.07651, 38, -226.1, 189.5, 0.00294, 25, -35.8, -189.5, 0.43, 4, 3, 21.31, -189.5, 0.28125, 37, 135.43, 189.5, 0.23601, 38, -123.13, 189.5, 0.05273, 25, -138.76, -189.5, 0.43, 4, 3, -49.54, -189.5, 0.1369, 37, 206.28, 189.5, 0.27119, 38, -52.28, 189.5, 0.16191, 25, -209.61, -189.5, 0.43, 4, 3, -117.55, -189.5, 0.05292, 37, 274.29, 189.5, 0.22024, 38, 15.73, 189.5, 0.29684, 25, -277.62, -189.5, 0.43, 4, 3, -165.36, -189.5, 0.03507, 37, 322.1, 189.5, 0.19483, 38, 63.54, 189.5, 0.3401, 25, -325.43, -189.5, 0.43, 4, 3, -165.36, 189.5, 0.01124, 37, 322.1, -189.5, 0.24902, 38, 63.54, -189.5, 0.30973, 25, -325.43, 189.5, 0.43, 4, 3, -109.05, 189.5, 0.02961, 37, 265.79, -189.5, 0.28646, 38, 7.23, -189.5, 0.25393, 25, -269.12, 189.5, 0.43, 4, 3, -42.93, 189.5, 0.09968, 37, 199.66, -189.5, 0.34259, 38, -58.9, -189.5, 0.12773, 25, -203, 189.5, 0.43, 4, 3, 23.2, 189.5, 0.21403, 37, 133.54, -189.5, 0.31659, 38, -125.02, -189.5, 0.03938, 25, -136.87, 189.5, 0.43, 4, 3, 132.78, 189.5, 0.42977, 37, 23.96, -189.5, 0.1395, 38, -234.6, -189.5, 7.2E-4, 25, -27.3, 189.5, 0.43, 3, 3, 224.64, 189.5, 0.52237, 37, -67.9, -189.5, 0.04763, 25, 64.57, 189.5, 0.43, 3, 3, 224.64, -189.5, 0.56853, 37, -67.9, 189.5, 0.00147, 25, 64.57, -189.5, 0.43 ],
  1017. "hull": 12,
  1018. "edges": [ 8, 10, 20, 22, 18, 20, 0, 22, 16, 18, 0, 2, 14, 16, 2, 4, 10, 12, 12, 14, 4, 6, 6, 8 ],
  1019. "width": 379,
  1020. "height": 390
  1021. }
  1022. },
  1023. "belt": {
  1024. "belt": { "name": "misaki/belt", "x": 54.42, "rotation": -90, "width": 151, "height": 52 }
  1025. },
  1026. "blush-l": {
  1027. "blush": { "name": "misaki/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  1028. },
  1029. "blush-r": {
  1030. "blush": {
  1031. "name": "misaki/blush",
  1032. "x": 0.81,
  1033. "y": -1.45,
  1034. "scaleX": -1,
  1035. "rotation": -90,
  1036. "width": 57,
  1037. "height": 36
  1038. }
  1039. },
  1040. "body": {
  1041. "body": { "name": "misaki/body", "type": "linkedmesh", "skin": "spineboy", "parent": "body", "width": 140, "height": 195 }
  1042. },
  1043. "ear-l": {
  1044. "ear": { "name": "misaki/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  1045. },
  1046. "ear-r": {
  1047. "ear": { "name": "misaki/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  1048. },
  1049. "eye-l": {
  1050. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1051. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1052. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1053. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1054. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1055. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1056. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1057. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1058. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1059. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1060. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1061. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1062. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1063. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1064. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1065. },
  1066. "eye-r": {
  1067. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1068. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1069. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1070. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1071. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1072. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1073. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1074. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1075. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1076. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1077. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1078. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1079. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1080. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1081. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1082. },
  1083. "eye-sparkle-l": {
  1084. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1085. },
  1086. "eye-sparkle-r": {
  1087. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1088. },
  1089. "eyebrow-l": {
  1090. "eyebrow": { "name": "misaki/eyebrow", "x": 18.6, "y": 4.28, "rotation": 1.46, "width": 59, "height": 24 }
  1091. },
  1092. "eyebrow-r": {
  1093. "eyebrow": { "name": "misaki/eyebrow", "x": 18.6, "y": 4.28, "rotation": 1.46, "width": 59, "height": 24 }
  1094. },
  1095. "glasses": {
  1096. "glasses": { "name": "misaki/glasses", "x": -0.12, "rotation": -90, "width": 282, "height": 70 }
  1097. },
  1098. "glasses-side-l": {
  1099. "glasses-side": {
  1100. "name": "misaki/glasses-side",
  1101. "type": "mesh",
  1102. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1103. "triangles": [ 1, 2, 3, 0, 1, 3 ],
  1104. "vertices": [ 1, 11, 9.38, -141.82, 1, 1, 11, 9.38, -126.82, 1, 2, 3, 142.96, -132.33, 0.8092, 25, -17.11, -132.33, 0.1908, 2, 3, 142.96, -147.33, 0.8092, 25, -17.11, -147.33, 0.1908 ],
  1105. "hull": 4,
  1106. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1107. "width": 15,
  1108. "height": 46
  1109. }
  1110. },
  1111. "hair-front": {
  1112. "hair-front": {
  1113. "name": "misaki/hair-front",
  1114. "type": "mesh",
  1115. "uvs": [ 1, 1, 0.66667, 1, 0.33333, 1, 0, 1, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0, 0.33284, 0.40666, 0.66912, 0.41963 ],
  1116. "triangles": [ 9, 2, 8, 1, 2, 9, 1, 9, 0, 3, 8, 2, 8, 4, 5, 9, 6, 7, 3, 4, 8, 8, 5, 6, 6, 9, 8, 9, 7, 0 ],
  1117. "vertices": [ 2, 3, 136.64, -138.5, 0.4351, 11, 33.38, -138.5, 0.5649, 2, 3, 136.64, -45.5, 0.0229, 11, 33.38, -45.5, 0.9771, 2, 3, 136.64, 47.5, 0.0229, 11, 33.38, 47.5, 0.9771, 1, 3, 136.64, 140.5, 1, 1, 3, 254.64, 140.5, 1, 2, 3, 254.64, 47.5, 0.9618, 11, 151.38, 47.5, 0.0382, 2, 3, 254.64, -45.5, 0.9618, 11, 151.38, -45.5, 0.0382, 1, 3, 254.64, -138.5, 1, 2, 3, 206.65, 47.64, 0.6412, 11, 103.4, 47.64, 0.3588, 2, 3, 205.12, -46.19, 0.6412, 11, 101.87, -46.19, 0.3588 ],
  1118. "hull": 8,
  1119. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 0 ],
  1120. "width": 279,
  1121. "height": 118
  1122. }
  1123. },
  1124. "hair-side-r": {
  1125. "hair-side": {
  1126. "name": "misaki/hair-side",
  1127. "type": "mesh",
  1128. "uvs": [ 0.74895, 0.17111, 0.71722, 0.38069, 1, 0.61472, 1, 1, 0, 1, 1.0E-5, 0.58223, 0.30663, 0.37962, 0.31451, 0.16553, 0.38369, 1.0E-5, 0.62849, 0 ],
  1129. "triangles": [ 5, 1, 2, 4, 2, 3, 4, 5, 2, 5, 6, 1, 0, 1, 7, 1, 6, 7, 0, 7, 9, 7, 8, 9 ],
  1130. "vertices": [ 1, 3, 138.9, 119.35, 1, 2, 3, 80.43, 122.3, 0.50617, 37, 76.31, -122.3, 0.49383, 2, 3, 15.13, 96, 0.313, 37, 141.61, -96, 0.687, 2, 3, -92.36, 96, 0.1908, 37, 249.1, -96, 0.8092, 2, 3, -92.36, 189, 0.1908, 37, 249.1, -189, 0.8092, 3, 3, 24.19, 189, 0.22461, 37, 132.54, -189, 0.49299, 25, -135.88, 189, 0.2824, 3, 3, 80.73, 160.48, 0.36323, 37, 76.01, -160.48, 0.35437, 25, -79.35, 160.48, 0.2824, 2, 3, 140.46, 159.75, 0.7099, 25, -19.62, 159.75, 0.2901, 2, 3, 186.64, 153.32, 0.4885, 25, 26.56, 153.32, 0.5115, 2, 3, 186.64, 130.55, 0.687, 25, 26.57, 130.55, 0.313 ],
  1131. "hull": 10,
  1132. "edges": [ 6, 8, 16, 18, 8, 10, 6, 4, 10, 12, 4, 2, 12, 14, 14, 16, 2, 0, 0, 18 ],
  1133. "width": 93,
  1134. "height": 279
  1135. }
  1136. },
  1137. "head-base": {
  1138. "head-base": { "name": "misaki/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  1139. },
  1140. "leg-l": {
  1141. "leg": { "name": "misaki/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  1142. },
  1143. "leg-r": {
  1144. "leg": { "name": "misaki/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  1145. },
  1146. "mouth": {
  1147. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  1148. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  1149. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  1150. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  1151. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  1152. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  1153. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  1154. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  1155. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  1156. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  1157. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  1158. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  1159. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  1160. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  1161. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  1162. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  1163. },
  1164. "skirt": {
  1165. "skirt": {
  1166. "name": "misaki/skirt",
  1167. "type": "mesh",
  1168. "uvs": [ 1, 0.81016, 1, 1, 0.76146, 1, 0.25284, 1, 0, 1, 0, 0.82297, 0, 0, 0.20134, 0, 0.79453, 0, 1, 0, 0.03666, 0.55801, 0.12343, 0.2329, 0.86901, 0.21378, 0.95401, 0.51339, 0.28998, 0.60688, 0.33602, 0.28603, 0.66184, 0.30303, 0.71496, 0.60901 ],
  1169. "triangles": [ 2, 3, 17, 14, 3, 5, 2, 17, 0, 17, 3, 14, 16, 17, 14, 2, 0, 1, 0, 13, 9, 17, 13, 0, 17, 16, 13, 10, 11, 14, 5, 3, 4, 14, 5, 10, 10, 5, 6, 13, 12, 9, 12, 8, 9, 11, 6, 7, 15, 7, 8, 16, 15, 8, 11, 7, 15, 12, 16, 8, 10, 6, 11, 14, 11, 15, 14, 15, 16, 16, 12, 13 ],
  1170. "vertices": [ 2, 32, 13.21, -72.24, 0.7634, 33, -39.05, -108.2, 0.2366, 2, 32, 33.55, -99.69, 0.7634, 33, -73.22, -108.2, 0.2366, 2, 32, -7.84, -130.37, 0.2672, 33, -73.22, -56.67, 0.7328, 2, 30, -11.14, 130.6, 0.2672, 33, -73.22, 53.19, 0.7328, 2, 30, 32.42, 97.67, 0.7634, 33, -73.22, 107.8, 0.2366, 2, 30, 13.21, 72.25, 0.7634, 33, -41.36, 107.8, 0.2366, 1, 2, 80.42, 108, 1, 1, 2, 80.42, 64.51, 1, 1, 2, 80.42, -63.62, 1, 1, 2, 80.42, -108, 1, 2, 2, -20.02, 100.08, 0.1221, 30, -21.87, 38.98, 0.8779, 2, 2, 38.49, 81.34, 0.8092, 30, -72.11, 3.6, 0.1908, 1, 2, 41.94, -79.71, 1, 2, 2, -11.99, -98.07, 0.1679, 32, -26.58, -35.24, 0.8321, 3, 2, -28.82, 45.36, 0.22937, 30, -60.21, 79, 0.2672, 33, -2.46, 45.16, 0.50343, 2, 2, 28.93, 35.42, 0.5954, 33, 55.29, 35.22, 0.4046, 2, 2, 25.87, -34.96, 0.5954, 33, 52.23, -35.16, 0.4046, 3, 2, -29.2, -46.43, 0.22937, 32, -57.82, -79.81, 0.2672, 33, -2.84, -46.63, 0.50343 ],
  1171. "hull": 10,
  1172. "edges": [ 8, 10, 10, 12, 2, 0, 0, 18, 6, 8, 2, 4, 4, 6, 12, 14, 14, 16, 16, 18 ],
  1173. "width": 216,
  1174. "height": 180
  1175. }
  1176. }
  1177. }
  1178. },
  1179. {
  1180. "name": "nate",
  1181. "attachments": {
  1182. "arm-l": {
  1183. "arm": { "name": "nate/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  1184. },
  1185. "arm-r": {
  1186. "arm": { "name": "nate/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  1187. },
  1188. "back-hair": {
  1189. "back-hair": { "name": "nate/back-hair", "type": "linkedmesh", "skin": "spineboy", "parent": "back-hair", "width": 315, "height": 282 }
  1190. },
  1191. "beard": {
  1192. "beard": {
  1193. "name": "nate/beard",
  1194. "type": "mesh",
  1195. "uvs": [ 0.99999, 0.7024, 0.66667, 1, 0.49608, 1, 0.33333, 1, 1.0E-5, 0.71113, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0, 0.25709, 0.58459, 0.7452, 0.58895, 0.49811, 0.55841 ],
  1196. "triangles": [ 11, 7, 10, 9, 6, 11, 11, 6, 7, 10, 1, 11, 3, 9, 11, 10, 7, 8, 9, 5, 6, 1, 10, 0, 1, 2, 11, 2, 3, 11, 4, 9, 3, 4, 5, 9, 0, 10, 8 ],
  1197. "vertices": [ 1, 3, 34.11, -146.5, 1, 1, 3, -6.36, -48.83, 1, 1, 3, -6.36, 1.15, 1, 1, 3, -6.36, 48.83, 1, 1, 3, 32.93, 146.5, 1, 1, 3, 129.64, 146.5, 1, 1, 11, 26.38, 48.83, 1, 1, 11, 26.38, -48.83, 1, 1, 3, 129.64, -146.5, 1, 2, 3, 50.13, 71.17, 0.2366, 11, -53.12, 71.17, 0.7634, 2, 3, 49.54, -71.84, 0.2366, 11, -53.71, -71.84, 0.7634, 1, 11, -49.56, 0.55, 1 ],
  1198. "hull": 9,
  1199. "edges": [ 10, 12, 12, 14, 14, 16, 8, 10, 0, 16, 0, 2, 6, 8, 2, 4, 4, 6 ],
  1200. "width": 293,
  1201. "height": 136
  1202. }
  1203. },
  1204. "blush-l": {
  1205. "blush": { "name": "nate/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  1206. },
  1207. "blush-r": {
  1208. "blush": {
  1209. "name": "nate/blush",
  1210. "x": 0.81,
  1211. "y": -1.45,
  1212. "scaleX": -1,
  1213. "rotation": -90,
  1214. "width": 57,
  1215. "height": 36
  1216. }
  1217. },
  1218. "body": {
  1219. "body": { "name": "nate/body", "type": "linkedmesh", "skin": "spineboy", "parent": "body", "width": 140, "height": 195 }
  1220. },
  1221. "ear-l": {
  1222. "ear": { "name": "nate/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  1223. },
  1224. "ear-r": {
  1225. "ear": { "name": "nate/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  1226. },
  1227. "eye-l": {
  1228. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1229. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1230. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1231. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1232. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1233. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1234. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1235. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1236. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1237. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1238. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1239. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1240. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1241. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1242. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1243. },
  1244. "eye-r": {
  1245. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1246. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1247. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1248. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1249. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1250. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1251. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1252. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1253. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1254. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1255. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1256. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1257. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1258. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1259. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1260. },
  1261. "eye-sparkle-l": {
  1262. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1263. },
  1264. "eye-sparkle-r": {
  1265. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1266. },
  1267. "eyebrow-l": {
  1268. "eyebrow": { "name": "nate/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 54, "height": 23 }
  1269. },
  1270. "eyebrow-r": {
  1271. "eyebrow": { "name": "nate/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 54, "height": 23 }
  1272. },
  1273. "glasses": {
  1274. "glasses": { "name": "nate/glasses", "x": 1.88, "rotation": -90, "width": 281, "height": 69 }
  1275. },
  1276. "glasses-side-l": {
  1277. "glasses-side": {
  1278. "name": "nate/glasses-side",
  1279. "type": "mesh",
  1280. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1281. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  1282. "vertices": [ 1, 11, 17.92, -129, 1, 1, 11, 17.92, -144, 1, 2, 3, 142.64, -144, 0.64, 25, -17.43, -144, 0.36, 2, 3, 142.64, -129, 0.64, 25, -17.43, -129, 0.36 ],
  1283. "hull": 4,
  1284. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1285. "width": 15,
  1286. "height": 31
  1287. }
  1288. },
  1289. "glasses-side-r": {
  1290. "glasses-side": {
  1291. "name": "nate/glasses-side",
  1292. "type": "mesh",
  1293. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1294. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  1295. "vertices": [ 1, 11, 17.92, 129, 1, 1, 11, 17.92, 144, 1, 2, 3, 142.64, 144, 0.6489, 25, -17.43, 144, 0.3511, 2, 3, 142.64, 129, 0.6489, 25, -17.43, 129, 0.3511 ],
  1296. "hull": 4,
  1297. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1298. "width": 15,
  1299. "height": 31
  1300. }
  1301. },
  1302. "hair-front": {
  1303. "hair-front": {
  1304. "name": "nate/hair-front",
  1305. "type": "mesh",
  1306. "uvs": [ 1, 1, 0.91729, 1, 0.66364, 0.46674, 0.33072, 0.46674, 0.07179, 1, 0, 1, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0 ],
  1307. "triangles": [ 1, 9, 0, 1, 2, 9, 9, 2, 8, 3, 4, 6, 4, 5, 6, 3, 7, 2, 3, 6, 7, 2, 7, 8 ],
  1308. "vertices": [ 1, 3, 128.14, -141.5, 1, 1, 3, 128.14, -118.09, 1, 2, 3, 197.46, -46.31, 0.8855, 11, 94.21, -46.31, 0.1145, 2, 3, 197.46, 47.91, 0.8855, 11, 94.21, 47.91, 0.1145, 1, 3, 128.14, 121.18, 1, 1, 3, 128.14, 141.5, 1, 1, 3, 258.14, 141.5, 1, 2, 3, 258.14, 47.17, 0.8244, 11, 154.88, 47.17, 0.1756, 2, 3, 258.14, -47.17, 0.8244, 11, 154.88, -47.17, 0.1756, 1, 3, 258.14, -141.5, 1 ],
  1309. "hull": 10,
  1310. "edges": [ 10, 12, 12, 14, 14, 16, 16, 18, 18, 0, 8, 10, 0, 2, 8, 6, 4, 2, 6, 4 ],
  1311. "width": 283,
  1312. "height": 130
  1313. }
  1314. },
  1315. "head-base": {
  1316. "head-base": { "name": "nate/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  1317. },
  1318. "leg-l": {
  1319. "leg": { "name": "nate/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  1320. },
  1321. "leg-r": {
  1322. "leg": { "name": "nate/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  1323. },
  1324. "mouth": {
  1325. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  1326. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  1327. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  1328. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  1329. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  1330. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  1331. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  1332. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  1333. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  1334. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  1335. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  1336. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  1337. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  1338. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  1339. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  1340. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  1341. }
  1342. }
  1343. },
  1344. {
  1345. "name": "sinisa",
  1346. "bones": [ "hair-front" ],
  1347. "attachments": {
  1348. "arm-l": {
  1349. "arm": { "name": "sinisa/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  1350. },
  1351. "arm-r": {
  1352. "arm": { "name": "sinisa/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  1353. },
  1354. "back-hair": {
  1355. "back-hair": { "name": "sinisa/back-hair", "type": "linkedmesh", "skin": "spineboy", "parent": "back-hair", "width": 315, "height": 282 }
  1356. },
  1357. "beard": {
  1358. "beard": {
  1359. "name": "sinisa/beard",
  1360. "type": "mesh",
  1361. "uvs": [ 1, 0.47813, 0.75564, 1, 0.26238, 1, 0, 0.53436, 0, 0, 0.32632, 0.26708, 0.66429, 0.2952, 1, 0, 0.49074, 0.7171 ],
  1362. "triangles": [ 8, 6, 1, 2, 5, 8, 8, 5, 6, 2, 8, 1, 1, 6, 0, 2, 3, 5, 3, 4, 5, 6, 7, 0 ],
  1363. "vertices": [ 1, 3, 40.61, -138.5, 1, 1, 3, -6.36, -70.81, 1, 1, 3, -6.36, 65.82, 1, 1, 3, 35.55, 138.5, 1, 1, 3, 83.64, 138.5, 1, 1, 11, -43.65, 48.11, 1, 1, 11, -46.18, -45.51, 1, 1, 3, 83.64, -138.5, 1, 2, 3, 19.1, 2.57, 0.2977, 11, -84.15, 2.57, 0.7023 ],
  1364. "hull": 8,
  1365. "edges": [ 6, 8, 6, 4, 2, 4, 0, 14, 2, 0, 8, 10, 10, 12, 12, 14 ],
  1366. "width": 277,
  1367. "height": 90
  1368. }
  1369. },
  1370. "blush-l": {
  1371. "blush": { "name": "sinisa/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  1372. },
  1373. "blush-r": {
  1374. "blush": {
  1375. "name": "sinisa/blush",
  1376. "x": 0.81,
  1377. "y": -1.45,
  1378. "scaleX": -1,
  1379. "rotation": -90,
  1380. "width": 57,
  1381. "height": 36
  1382. }
  1383. },
  1384. "body": {
  1385. "body": { "name": "sinisa/body", "type": "linkedmesh", "skin": "spineboy", "parent": "body", "width": 140, "height": 195 }
  1386. },
  1387. "body-decoration": {
  1388. "body-decoration": { "name": "sinisa/body-decoration", "x": 77.42, "y": -26.5, "rotation": -90, "width": 53, "height": 54 }
  1389. },
  1390. "ear-l": {
  1391. "ear": { "name": "sinisa/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  1392. },
  1393. "ear-r": {
  1394. "ear": { "name": "sinisa/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  1395. },
  1396. "eye-l": {
  1397. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1398. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1399. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1400. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1401. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1402. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1403. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1404. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1405. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1406. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1407. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1408. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1409. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1410. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1411. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1412. },
  1413. "eye-r": {
  1414. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1415. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1416. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1417. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1418. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1419. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1420. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1421. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1422. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1423. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1424. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1425. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1426. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1427. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1428. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1429. },
  1430. "eye-sparkle-l": {
  1431. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1432. },
  1433. "eye-sparkle-r": {
  1434. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1435. },
  1436. "eyebrow-l": {
  1437. "eyebrow": { "name": "sinisa/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 76, "height": 37 }
  1438. },
  1439. "eyebrow-r": {
  1440. "eyebrow": { "name": "sinisa/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 76, "height": 37 }
  1441. },
  1442. "hair-front": {
  1443. "hair-front": {
  1444. "name": "sinisa/hair-front",
  1445. "type": "mesh",
  1446. "uvs": [ 1, 1, 0.89168, 1, 0.66667, 0.65788, 0.33333, 0.66235, 0.12971, 1, 0, 1, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0 ],
  1447. "triangles": [ 0, 2, 9, 5, 6, 3, 0, 1, 2, 4, 5, 3, 3, 7, 2, 2, 7, 8, 3, 6, 7, 9, 2, 8 ],
  1448. "vertices": [ 1, 3, 135.64, -143, 1, 2, 3, 135.64, -112.02, 0.6565, 11, 32.38, -112.02, 0.3435, 2, 3, 198.25, -47.67, 0.7863, 11, 94.99, -47.67, 0.2137, 2, 3, 197.43, 47.67, 0.7863, 11, 94.17, 47.67, 0.2137, 2, 3, 135.64, 105.9, 0.6565, 11, 32.38, 105.9, 0.3435, 1, 3, 135.64, 143, 1, 2, 14, 101.41, 143, 0.3435, 3, 318.64, 143, 0.6565, 3, 14, 101.41, 47.67, 0.1221, 3, 318.64, 47.67, 0.6565, 11, 215.38, 47.67, 0.2214, 3, 14, 101.41, -47.67, 0.1221, 3, 318.64, -47.67, 0.6565, 11, 215.38, -47.67, 0.2214, 2, 14, 101.41, -143, 0.3435, 3, 318.64, -143, 0.6565 ],
  1449. "hull": 10,
  1450. "edges": [ 10, 12, 12, 14, 14, 16, 16, 18, 18, 0, 6, 14, 4, 16, 8, 10, 8, 6, 0, 2, 4, 2, 6, 4 ],
  1451. "width": 286,
  1452. "height": 183
  1453. }
  1454. },
  1455. "head-base": {
  1456. "head-base": { "name": "sinisa/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  1457. },
  1458. "leg-l": {
  1459. "leg": { "name": "sinisa/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  1460. },
  1461. "leg-r": {
  1462. "leg": { "name": "sinisa/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  1463. },
  1464. "mouth": {
  1465. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  1466. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  1467. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  1468. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  1469. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  1470. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  1471. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  1472. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  1473. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  1474. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  1475. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  1476. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  1477. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  1478. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  1479. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  1480. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  1481. }
  1482. }
  1483. },
  1484. {
  1485. "name": "soeren",
  1486. "bones": [ "hair-front" ],
  1487. "attachments": {
  1488. "arm-l": {
  1489. "arm": { "name": "soeren/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  1490. },
  1491. "arm-r": {
  1492. "arm": { "name": "soeren/arm", "type": "linkedmesh", "skin": "spineboy", "parent": "arm", "width": 55, "height": 179 }
  1493. },
  1494. "back-hair": {
  1495. "back-hair": {
  1496. "name": "soeren/back-hair",
  1497. "type": "mesh",
  1498. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1499. "triangles": [ 1, 3, 0, 1, 2, 3 ],
  1500. "vertices": [ 2, 3, 7.64, -150, 0.7939, 25, -152.43, -150, 0.2061, 2, 3, 7.64, 150, 0.7939, 25, -152.43, 150, 0.2061, 2, 3, 289.64, 150, 0.7939, 25, 129.57, 150, 0.2061, 2, 3, 289.64, -150, 0.7939, 25, 129.57, -150, 0.2061 ],
  1501. "hull": 4,
  1502. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1503. "width": 300,
  1504. "height": 282
  1505. }
  1506. },
  1507. "beard": {
  1508. "beard": {
  1509. "name": "soeren/beard",
  1510. "type": "mesh",
  1511. "uvs": [ 1, 0.67484, 0.68376, 1, 0.30251, 1, 0, 0.63437, 0, 0, 0.12423, 0, 0.32804, 0, 0.66385, 0, 0.87737, 0, 1, 0, 0.49303, 0.70508, 0.33386, 0.63029, 0.39792, 0.38928, 0.6192, 0.40174, 0.67355, 0.63444, 0.31251, 0.24384, 0.69296, 0.22722, 0.10093, 0.34772, 0.89678, 0.42668 ],
  1512. "triangles": [ 14, 16, 18, 17, 15, 11, 10, 12, 13, 14, 13, 16, 11, 15, 12, 15, 5, 6, 16, 7, 8, 16, 13, 7, 15, 6, 12, 13, 12, 7, 12, 6, 7, 11, 12, 10, 10, 13, 14, 16, 8, 18, 17, 5, 15, 2, 10, 1, 10, 14, 1, 0, 14, 18, 0, 1, 14, 2, 3, 11, 2, 11, 10, 11, 3, 17, 18, 9, 0, 3, 4, 17, 18, 8, 9, 17, 4, 5 ],
  1513. "vertices": [ 1, 3, 33.53, -144.5, 1, 1, 3, -10.36, -53.11, 1, 1, 3, -10.36, 57.08, 1, 1, 3, 39, 144.5, 1, 1, 3, 124.64, 144.5, 1, 2, 3, 124.64, 108.6, 0.4198, 11, 21.38, 108.6, 0.5802, 1, 11, 21.38, 49.7, 1, 1, 11, 21.38, -47.35, 1, 2, 3, 124.64, -109.06, 0.4198, 11, 21.38, -109.06, 0.5802, 1, 3, 124.64, -144.5, 1, 2, 3, 29.45, 2.01, 0.2824, 11, -73.8, 2.01, 0.7176, 2, 3, 39.55, 48.01, 0.2824, 11, -63.7, 48.01, 0.7176, 1, 11, -31.17, 29.5, 1, 1, 11, -32.85, -34.45, 1, 2, 3, 38.99, -50.16, 0.2824, 11, -64.27, -50.16, 0.7176, 1, 11, -11.53, 54.18, 1, 1, 11, -9.29, -55.77, 1, 2, 3, 77.7, 115.33, 0.4198, 11, -25.56, 115.33, 0.5802, 2, 3, 67.04, -114.67, 0.4198, 11, -36.22, -114.67, 0.5802 ],
  1514. "hull": 10,
  1515. "edges": [ 6, 8, 6, 4, 2, 4, 0, 18, 2, 0, 12, 14, 8, 10, 10, 12, 34, 10, 14, 16, 16, 18, 36, 16 ],
  1516. "width": 289,
  1517. "height": 135
  1518. }
  1519. },
  1520. "blush-l": {
  1521. "blush": { "name": "soeren/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  1522. },
  1523. "blush-r": {
  1524. "blush": {
  1525. "name": "soeren/blush",
  1526. "x": 0.81,
  1527. "y": -1.45,
  1528. "scaleX": -1,
  1529. "rotation": -90,
  1530. "width": 57,
  1531. "height": 36
  1532. }
  1533. },
  1534. "body": {
  1535. "body": { "name": "soeren/body", "type": "linkedmesh", "skin": "spineboy", "parent": "body", "width": 140, "height": 195 }
  1536. },
  1537. "ear-l": {
  1538. "ear": { "name": "soeren/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  1539. },
  1540. "ear-r": {
  1541. "ear": { "name": "soeren/ear", "type": "linkedmesh", "skin": "spineboy", "parent": "ear", "width": 68, "height": 83 }
  1542. },
  1543. "eye-l": {
  1544. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1545. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1546. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1547. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1548. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1549. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1550. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1551. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1552. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1553. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1554. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1555. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1556. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1557. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1558. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1559. },
  1560. "eye-r": {
  1561. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1562. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1563. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1564. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1565. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1566. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1567. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1568. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1569. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1570. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1571. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1572. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1573. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1574. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1575. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1576. },
  1577. "eye-sparkle-l": {
  1578. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1579. },
  1580. "eye-sparkle-r": {
  1581. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1582. },
  1583. "eyebrow-l": {
  1584. "eyebrow": { "name": "soeren/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 54, "height": 23 }
  1585. },
  1586. "eyebrow-r": {
  1587. "eyebrow": { "name": "soeren/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 54, "height": 23 }
  1588. },
  1589. "glasses": {
  1590. "glasses": {
  1591. "name": "soeren/glasses",
  1592. "type": "mesh",
  1593. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1594. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  1595. "vertices": [ 1, 11, -37.62, -151.5, 1, 1, 11, -37.62, 151.5, 1, 1, 11, 36.38, 151.5, 1, 1, 11, 36.38, -151.5, 1 ],
  1596. "hull": 4,
  1597. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1598. "width": 303,
  1599. "height": 74
  1600. }
  1601. },
  1602. "glasses-side-l": {
  1603. "glasses-side": {
  1604. "name": "soeren/glasses-side",
  1605. "type": "mesh",
  1606. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1607. "triangles": [ 0, 1, 3, 1, 2, 3 ],
  1608. "vertices": [ 1, 11, 11.88, -133, 1, 1, 11, 11.88, -146, 1, 2, 3, 144.24, -146, 0.5878, 25, -15.83, -146, 0.4122, 2, 3, 144.24, -133, 0.5878, 25, -15.83, -133, 0.4122 ],
  1609. "hull": 4,
  1610. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1611. "width": 13,
  1612. "height": 39
  1613. }
  1614. },
  1615. "glasses-side-r": {
  1616. "glasses-side": {
  1617. "name": "soeren/glasses-side",
  1618. "type": "mesh",
  1619. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1620. "triangles": [ 0, 1, 3, 1, 2, 3 ],
  1621. "vertices": [ 1, 11, 11.88, 133, 1, 1, 11, 11.88, 146, 1, 2, 3, 144.24, 146, 0.5878, 25, -15.83, 146, 0.4122, 2, 3, 144.24, 133, 0.5878, 25, -15.83, 133, 0.4122 ],
  1622. "hull": 4,
  1623. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1624. "width": 13,
  1625. "height": 39
  1626. }
  1627. },
  1628. "glove-l": {
  1629. "glove": { "name": "soeren/glove", "x": 47.95, "y": 0.46, "rotation": 90, "width": 83, "height": 106 }
  1630. },
  1631. "glove-r": {
  1632. "glove": { "name": "soeren/glove", "x": 47.95, "y": 0.46, "rotation": 90, "width": 83, "height": 106 }
  1633. },
  1634. "hair-front": {
  1635. "hair-front": {
  1636. "name": "soeren/hair-front",
  1637. "type": "mesh",
  1638. "uvs": [ 0.99999, 0.99999, 0.87008, 1, 0.63193, 0.73645, 0.29859, 0.73645, 0.04434, 1, 0, 1, 0, 0.62161, 0, 0, 0.33333, 0, 0.66667, 0, 1, 0, 0.82465, 0.63638, 0.04166, 0.62132 ],
  1639. "triangles": [ 3, 8, 2, 2, 8, 9, 11, 9, 10, 12, 7, 8, 2, 11, 1, 1, 11, 0, 3, 4, 12, 4, 5, 12, 5, 6, 12, 0, 11, 10, 2, 9, 11, 3, 12, 8, 12, 6, 7 ],
  1640. "vertices": [ 1, 3, 132.64, -170.5, 1, 1, 3, 132.64, -129.32, 1, 2, 3, 191.94, -53.82, 0.4885, 11, 88.68, -53.82, 0.5115, 2, 3, 191.94, 51.85, 0.4885, 11, 88.68, 51.85, 0.5115, 1, 3, 132.64, 132.45, 1, 1, 3, 132.64, 146.5, 1, 3, 3, 217.78, 146.5, 0.66206, 14, 0.55, 146.5, 0.12419, 11, 114.52, 146.5, 0.21375, 3, 3, 357.64, 146.5, 0.1069, 14, 140.41, 146.5, 0.3282, 11, 254.38, 146.5, 0.5649, 3, 3, 357.64, 40.83, 0.1069, 14, 140.41, 40.83, 0.5191, 11, 254.38, 40.83, 0.374, 3, 3, 357.64, -64.83, 0.1069, 14, 140.41, -64.83, 0.5191, 11, 254.38, -64.83, 0.374, 3, 3, 357.64, -170.5, 0.1069, 14, 140.41, -170.5, 0.3282, 11, 254.38, -170.5, 0.5649, 2, 3, 214.45, -114.91, 0.8473, 11, 111.2, -114.91, 0.1527, 2, 3, 217.84, 133.29, 0.8244, 11, 114.59, 133.29, 0.1756 ],
  1641. "hull": 11,
  1642. "edges": [ 4, 6, 14, 16, 16, 18, 18, 20, 20, 0, 6, 8, 8, 10, 0, 2, 2, 4, 10, 12, 12, 14 ],
  1643. "width": 317,
  1644. "height": 225
  1645. }
  1646. },
  1647. "head-base": {
  1648. "head-base": { "name": "soeren/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  1649. },
  1650. "leg-l": {
  1651. "leg": { "name": "soeren/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  1652. },
  1653. "leg-r": {
  1654. "leg": { "name": "soeren/leg", "type": "linkedmesh", "skin": "spineboy", "parent": "leg", "width": 56, "height": 201 }
  1655. },
  1656. "mouth": {
  1657. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  1658. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  1659. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  1660. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  1661. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  1662. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  1663. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  1664. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  1665. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  1666. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  1667. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  1668. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  1669. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  1670. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  1671. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  1672. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  1673. }
  1674. }
  1675. },
  1676. {
  1677. "name": "spineboy",
  1678. "bones": [ "hair-front" ],
  1679. "attachments": {
  1680. "arm-decoration-l": {
  1681. "arm-decoration": {
  1682. "name": "spineboy/arm-decoration",
  1683. "type": "mesh",
  1684. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1685. "triangles": [ 1, 3, 0, 1, 2, 3 ],
  1686. "vertices": [ 2, 23, 116.65, 31.92, 0.1374, 24, 47.18, 31.92, 0.8626, 2, 23, 116.65, -32.08, 0.1374, 24, 47.18, -32.08, 0.8626, 2, 23, 58.65, -32.08, 0.1374, 24, -10.82, -32.08, 0.8626, 2, 23, 58.65, 31.92, 0.1374, 24, -10.82, 31.92, 0.8626 ],
  1687. "hull": 4,
  1688. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1689. "width": 64,
  1690. "height": 58
  1691. }
  1692. },
  1693. "arm-decoration-r": {
  1694. "arm-decoration": {
  1695. "name": "spineboy/arm-decoration",
  1696. "type": "mesh",
  1697. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1698. "triangles": [ 1, 3, 0, 1, 2, 3 ],
  1699. "vertices": [ 2, 9, 116.65, 31.92, 0.1374, 10, 47.18, 31.92, 0.8626, 2, 9, 116.65, -32.08, 0.1374, 10, 47.18, -32.08, 0.8626, 2, 9, 58.65, -32.08, 0.1374, 10, -10.82, -32.08, 0.8626, 2, 9, 58.65, 31.92, 0.1374, 10, -10.82, 31.92, 0.8626 ],
  1700. "hull": 4,
  1701. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1702. "width": 64,
  1703. "height": 58
  1704. }
  1705. },
  1706. "arm-l": {
  1707. "arm": {
  1708. "name": "spineboy/arm",
  1709. "type": "mesh",
  1710. "uvs": [ 1, 1, 0, 1, 0, 0.85714, 0, 0.71429, 0, 0.57143, 0, 0.42857, 0, 0.28571, 0, 0.14286, 0, 0, 1, 0, 1, 0.14286, 1, 0.28571, 1, 0.42857, 1, 0.57143, 1, 0.71429, 1, 0.85714 ],
  1711. "triangles": [ 4, 5, 12, 12, 5, 11, 5, 6, 11, 11, 6, 10, 6, 7, 10, 10, 7, 9, 7, 8, 9, 0, 1, 15, 1, 2, 15, 15, 2, 14, 2, 3, 14, 14, 3, 13, 3, 4, 13, 13, 4, 12 ],
  1712. "vertices": [ 1, 24, 86.68, 27.92, 1, 1, 24, 86.68, -27.08, 1, 2, 24, 61.11, -27.08, 0.8886, 23, 130.58, -27.08, 0.1114, 2, 24, 35.54, -27.08, 0.75445, 23, 105.01, -27.08, 0.24555, 2, 24, 9.97, -27.08, 0.59168, 23, 79.44, -27.08, 0.40832, 2, 24, -15.6, -27.08, 0.41569, 23, 53.86, -27.08, 0.58431, 2, 24, -41.17, -27.08, 0.25141, 23, 28.29, -27.08, 0.74859, 2, 24, -66.75, -27.08, 0.11461, 23, 2.72, -27.08, 0.88539, 1, 23, -22.85, -27.08, 1, 1, 23, -22.85, 27.92, 1, 2, 24, -66.74, 27.92, 0.10989, 23, 2.72, 27.92, 0.89011, 2, 24, -41.17, 27.92, 0.24263, 23, 28.29, 27.92, 0.75737, 2, 24, -15.6, 27.92, 0.40435, 23, 53.86, 27.92, 0.59565, 2, 24, 9.97, 27.92, 0.58003, 23, 79.44, 27.92, 0.41997, 2, 24, 35.54, 27.92, 0.74497, 23, 105.01, 27.92, 0.25503, 2, 24, 61.11, 27.92, 0.88332, 23, 130.58, 27.92, 0.11668 ],
  1713. "hull": 16,
  1714. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 0 ],
  1715. "width": 55,
  1716. "height": 179
  1717. }
  1718. },
  1719. "arm-r": {
  1720. "arm": {
  1721. "name": "spineboy/arm",
  1722. "type": "mesh",
  1723. "uvs": [ 1, 1, 0, 1, 0, 0.85714, 0, 0.71429, 0, 0.57143, 0, 0.42857, 0, 0.28571, 0, 0.14286, 0, 0, 1, 0, 1, 0.14286, 1, 0.28571, 1, 0.42857, 1, 0.57143, 1, 0.71429, 1, 0.85714 ],
  1724. "triangles": [ 4, 5, 12, 12, 5, 11, 5, 6, 11, 11, 6, 10, 6, 7, 10, 10, 7, 9, 7, 8, 9, 0, 1, 15, 2, 3, 14, 14, 3, 13, 3, 4, 13, 13, 4, 12, 1, 2, 15, 15, 2, 14 ],
  1725. "vertices": [ 1, 10, 86.68, 27.92, 1, 1, 10, 86.68, -27.08, 1, 2, 10, 61.11, -27.08, 0.9313, 9, 130.58, -27.08, 0.0687, 2, 10, 35.54, -27.08, 0.75445, 9, 105.01, -27.08, 0.24555, 2, 10, 9.97, -27.08, 0.59168, 9, 79.44, -27.08, 0.40832, 2, 10, -15.6, -27.08, 0.41569, 9, 53.86, -27.08, 0.58431, 2, 10, -41.17, -27.08, 0.25141, 9, 28.29, -27.08, 0.74859, 2, 10, -66.75, -27.08, 0.11461, 9, 2.72, -27.08, 0.88539, 1, 9, -22.85, -27.08, 1, 1, 9, -22.85, 27.92, 1, 2, 10, -66.74, 27.92, 0.10989, 9, 2.72, 27.92, 0.89011, 2, 10, -41.17, 27.92, 0.24263, 9, 28.29, 27.92, 0.75737, 2, 10, -15.6, 27.92, 0.40435, 9, 53.86, 27.92, 0.59565, 2, 10, 9.97, 27.92, 0.58003, 9, 79.44, 27.92, 0.41997, 2, 10, 35.54, 27.92, 0.74497, 9, 105.01, 27.92, 0.25503, 2, 10, 61.11, 27.92, 0.9313, 9, 130.58, 27.92, 0.0687 ],
  1726. "hull": 16,
  1727. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 0 ],
  1728. "width": 55,
  1729. "height": 179
  1730. }
  1731. },
  1732. "arm-shoulder-decoration-l": {
  1733. "arm-shoulder-decoration": { "name": "spineboy/arm-shoulder-decoration", "x": 0.15, "y": 0.92, "rotation": 90, "width": 46, "height": 46 }
  1734. },
  1735. "arm-shoulder-decoration-r": {
  1736. "arm-shoulder-decoration": { "name": "spineboy/arm-shoulder-decoration", "x": 0.15, "y": 0.92, "rotation": 90, "width": 46, "height": 46 }
  1737. },
  1738. "back-hair": {
  1739. "back-hair": {
  1740. "name": "spineboy/back-hair",
  1741. "type": "mesh",
  1742. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1743. "triangles": [ 1, 3, 0, 1, 2, 3 ],
  1744. "vertices": [ 2, 3, 7.64, -157.5, 0.5725, 25, -152.43, -157.5, 0.4275, 2, 3, 7.64, 157.5, 0.5725, 25, -152.43, 157.5, 0.4275, 2, 3, 289.64, 157.5, 0.5725, 25, 129.57, 157.5, 0.4275, 2, 3, 289.64, -157.5, 0.5725, 25, 129.57, -157.5, 0.4275 ],
  1745. "hull": 4,
  1746. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1747. "width": 315,
  1748. "height": 282
  1749. }
  1750. },
  1751. "blush-l": {
  1752. "blush": { "name": "spineboy/blush", "x": 0.81, "y": -1.45, "rotation": -90, "width": 57, "height": 36 }
  1753. },
  1754. "blush-r": {
  1755. "blush": {
  1756. "name": "spineboy/blush",
  1757. "x": 0.81,
  1758. "y": -1.45,
  1759. "scaleX": -1,
  1760. "rotation": -90,
  1761. "width": 57,
  1762. "height": 36
  1763. }
  1764. },
  1765. "body": {
  1766. "body": {
  1767. "name": "spineboy/body",
  1768. "type": "mesh",
  1769. "uvs": [ 1, 1, 0, 1, 0, 0.83333, 0, 0.66667, 0, 0.5, 0, 0.33333, 0, 0.16667, 0, 0, 1, 0, 1, 0.16667, 1, 0.33333, 1, 0.5, 1, 0.66667, 1, 0.83333 ],
  1770. "triangles": [ 6, 7, 8, 6, 8, 9, 5, 6, 9, 5, 9, 10, 4, 5, 10, 4, 10, 11, 3, 4, 11, 3, 11, 12, 2, 3, 12, 2, 12, 13, 1, 2, 13, 1, 13, 0 ],
  1771. "vertices": [ 1, 1, 70, -20.08, 1, 1, 1, -70, -20.08, 1, 1, 1, -70, 12.42, 1, 2, 1, -70, 44.92, 0.65661, 2, 44.92, 70, 0.34339, 2, 1, -70, 77.42, 0.36808, 2, 77.42, 70, 0.63192, 2, 1, -70, 109.92, 0.15684, 2, 109.92, 70, 0.84316, 1, 2, 142.42, 70, 1, 1, 2, 174.92, 70, 1, 1, 2, 174.92, -70, 1, 1, 2, 142.42, -70, 1, 2, 1, 70, 109.92, 0.15684, 2, 109.92, -70, 0.84316, 2, 1, 70, 77.42, 0.36808, 2, 77.42, -70, 0.63192, 2, 1, 70, 44.92, 0.65661, 2, 44.92, -70, 0.34339, 1, 1, 70, 12.42, 1 ],
  1772. "hull": 14,
  1773. "edges": [ 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 0, 0, 2, 14, 16 ],
  1774. "width": 140,
  1775. "height": 195
  1776. }
  1777. },
  1778. "ear-l": {
  1779. "ear": {
  1780. "name": "spineboy/ear",
  1781. "type": "mesh",
  1782. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1783. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  1784. "vertices": [ 2, 3, 61.14, -112, 0.77, 25, -98.93, -112, 0.23, 2, 3, 61.14, -180, 0.77, 25, -98.93, -180, 0.23, 2, 3, 144.14, -180, 0.77, 25, -15.93, -180, 0.23, 2, 3, 144.14, -112, 0.77, 25, -15.93, -112, 0.23 ],
  1785. "hull": 4,
  1786. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1787. "width": 68,
  1788. "height": 83
  1789. }
  1790. },
  1791. "ear-r": {
  1792. "ear": {
  1793. "name": "spineboy/ear",
  1794. "type": "mesh",
  1795. "uvs": [ 1, 1, 0, 1, 0, 0, 1, 0 ],
  1796. "triangles": [ 1, 2, 3, 1, 3, 0 ],
  1797. "vertices": [ 2, 3, 61.14, 112, 0.7786, 25, -98.93, 112, 0.2214, 2, 3, 61.14, 180, 0.7786, 25, -98.93, 180, 0.2214, 2, 3, 144.14, 180, 0.7786, 25, -15.93, 180, 0.2214, 2, 3, 144.14, 112, 0.7786, 25, -15.93, 112, 0.2214 ],
  1798. "hull": 4,
  1799. "edges": [ 0, 2, 2, 4, 4, 6, 0, 6 ],
  1800. "width": 68,
  1801. "height": 83
  1802. }
  1803. },
  1804. "eye-l": {
  1805. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1806. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1807. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1808. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1809. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1810. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1811. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1812. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1813. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1814. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1815. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1816. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1817. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1818. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1819. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1820. },
  1821. "eye-r": {
  1822. "eye-3": { "name": "common/eye-3", "x": 1.01, "y": -1.98, "rotation": -90, "width": 29, "height": 51 },
  1823. "eye-closed-happy": { "name": "common/eye-closed-happy", "x": 0.51, "y": 6.02, "rotation": -90, "width": 50, "height": 18 },
  1824. "eye-dafault": { "name": "common/eye-dafault", "x": 0.01, "y": 0.02, "rotation": -90, "width": 43, "height": 41 },
  1825. "eye-equal": { "name": "common/eye-equal", "x": 0.01, "y": 4.52, "rotation": -90, "width": 50, "height": 30 },
  1826. "eye-fire": { "name": "common/eye-fire", "x": 3.51, "y": 6.02, "rotation": -90, "width": 52, "height": 56 },
  1827. "eye-half-open": { "name": "common/eye-half-open", "x": -6.99, "y": 4.02, "rotation": -90, "width": 52, "height": 32 },
  1828. "eye-heart": { "name": "common/eye-heart", "x": -0.49, "y": 4.02, "rotation": -90, "width": 51, "height": 46 },
  1829. "eye-reverse-v": { "name": "common/eye-reverse-v", "x": 0.01, "y": 5.52, "rotation": -90, "width": 51, "height": 32 },
  1830. "eye-sideway-v": { "name": "common/eye-sideway-v", "x": -1.99, "y": 1.52, "rotation": -90, "width": 41, "height": 45 },
  1831. "eye-slant-close": { "name": "common/eye-slant-close", "x": 2.51, "y": 3.02, "rotation": -90, "width": 46, "height": 32 },
  1832. "eye-small-dot": { "name": "common/eye-small-dot", "x": 2.01, "y": 2.52, "rotation": -90, "width": 29, "height": 29 },
  1833. "eye-star": { "name": "common/eye-star", "x": 2.01, "y": 4.52, "rotation": -90, "width": 57, "height": 53 },
  1834. "eye-twirl": { "name": "common/eye-twirl", "x": 0.01, "y": 2.02, "rotation": -90, "width": 42, "height": 45 },
  1835. "eye-u": { "name": "common/eye-u", "x": -2.99, "y": 2.52, "rotation": -90, "width": 48, "height": 33 },
  1836. "eye-x": { "name": "common/eye-x", "x": 1.51, "y": 2.52, "rotation": -90, "width": 50, "height": 44 }
  1837. },
  1838. "eye-sparkle-l": {
  1839. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1840. },
  1841. "eye-sparkle-r": {
  1842. "eye-sparkle": { "name": "common/eye-sparkle", "x": 1.51, "y": 3.02, "rotation": -90, "width": 59, "height": 57 }
  1843. },
  1844. "eyebrow-l": {
  1845. "eyebrow": { "name": "spineboy/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 54, "height": 23 }
  1846. },
  1847. "eyebrow-r": {
  1848. "eyebrow": { "name": "spineboy/eyebrow", "x": 18.17, "y": 1.76, "rotation": 1.46, "width": 54, "height": 23 }
  1849. },
  1850. "glasses": {
  1851. "glasses": {
  1852. "name": "spineboy/glasses",
  1853. "type": "mesh",
  1854. "uvs": [ 1, 1, 0.75, 1, 0.5, 1, 0.25, 1, 0, 1, 0, 0, 0.25, 0, 0.5, 0, 0.75, 0, 1, 0 ],
  1855. "triangles": [ 3, 4, 6, 1, 8, 9, 3, 6, 7, 2, 3, 7, 2, 7, 8, 1, 2, 8, 4, 5, 6, 0, 1, 9 ],
  1856. "vertices": [ 1, 3, 60.14, -178.5, 1, 2, 3, 60.14, -89.25, 0.0687, 11, -43.12, -89.25, 0.9313, 1, 11, -43.12, 0, 1, 2, 3, 60.14, 89.25, 0.0687, 11, -43.12, 89.25, 0.9313, 1, 3, 60.14, 178.5, 1, 1, 3, 237.14, 178.5, 1, 2, 3, 237.14, 89.25, 0.0687, 11, 133.88, 89.25, 0.9313, 1, 11, 133.88, 0, 1, 2, 3, 237.14, -89.25, 0.0687, 11, 133.88, -89.25, 0.9313, 1, 3, 237.14, -178.5, 1 ],
  1857. "hull": 10,
  1858. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 0 ],
  1859. "width": 357,
  1860. "height": 177
  1861. }
  1862. },
  1863. "glasses-shadow": {
  1864. "glasses-shadow": {
  1865. "name": "spineboy/glasses-shadow",
  1866. "type": "mesh",
  1867. "color": "ffffff8a",
  1868. "uvs": [ 1, 1, 0.75, 1, 0.5, 1, 0.25, 1, 0, 1, 0, 0, 0.25, 0, 0.5, 0, 0.75, 0, 1, 0 ],
  1869. "triangles": [ 0, 1, 9, 4, 5, 6, 1, 2, 8, 2, 7, 8, 2, 3, 7, 3, 6, 7, 1, 8, 9, 3, 4, 6 ],
  1870. "vertices": [ 2, 11, -49.62, -138.5, 0.2901, 3, 53.64, -138.5, 0.7099, 1, 11, -49.62, -69.25, 1, 1, 11, -49.62, 0, 1, 1, 11, -49.62, 69.25, 1, 2, 11, -49.62, 138.5, 0.2901, 3, 53.64, 138.5, 0.7099, 2, 11, 113.38, 138.5, 0.2901, 3, 216.64, 138.5, 0.7099, 1, 11, 113.38, 69.25, 1, 1, 11, 113.38, 0, 1, 1, 11, 113.38, -69.25, 1, 2, 11, 113.38, -138.5, 0.2901, 3, 216.64, -138.5, 0.7099 ],
  1871. "hull": 10,
  1872. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 0 ],
  1873. "width": 277,
  1874. "height": 163
  1875. }
  1876. },
  1877. "hair-front": {
  1878. "hair-front": {
  1879. "name": "spineboy/hair-front",
  1880. "type": "mesh",
  1881. "uvs": [ 0, 0.52334, 0, 1, 0.5075, 1, 1, 1, 1, 0.61788, 0.88593, 0.26923, 0.70136, 0.08807, 0.49976, 1.0E-5, 0.42839, 0, 0.50904, 0.35701, 0.36945, 0.09554, 0.20195, 0.0806, 0.22987, 0.6633, 0.79288, 0.66704 ],
  1882. "triangles": [ 2, 12, 9, 2, 9, 13, 7, 9, 8, 9, 7, 6, 13, 9, 5, 5, 9, 6, 9, 11, 10, 9, 12, 11, 0, 11, 12, 13, 5, 4, 1, 0, 12, 1, 12, 2, 13, 4, 3, 2, 13, 3 ],
  1883. "vertices": [ 1, 3, 247.04, 142, 1, 1, 3, 132.64, 142, 1, 2, 3, 132.64, -4.67, 0.4656, 11, 29.38, -4.67, 0.5344, 1, 3, 132.64, -147, 1, 1, 3, 224.35, -147, 1, 3, 3, 308.02, -114.03, 0.29132, 14, 90.8, -114.03, 0.17428, 11, 204.77, -114.03, 0.5344, 3, 3, 351.5, -60.69, 0.13612, 14, 134.27, -60.69, 0.32948, 11, 248.25, -60.69, 0.5344, 2, 14, 155.41, -2.43, 0.4656, 11, 269.38, -2.43, 0.5344, 2, 14, 155.41, 18.2, 0.4656, 11, 269.38, 18.2, 0.5344, 3, 3, 286.95, -5.11, 0.22037, 14, 69.73, -5.11, 0.24523, 11, 183.7, -5.11, 0.5344, 3, 3, 349.71, 35.23, 0.15993, 14, 132.48, 35.23, 0.30567, 11, 246.45, 35.23, 0.5344, 3, 3, 353.29, 83.64, 0.15993, 14, 136.07, 83.64, 0.30567, 11, 250.04, 83.64, 0.5344, 2, 3, 213.45, 75.57, 0.4656, 11, 110.19, 75.57, 0.5344, 2, 3, 212.55, -87.14, 0.4656, 11, 109.29, -87.14, 0.5344 ],
  1884. "hull": 12,
  1885. "edges": [ 0, 2, 6, 8, 8, 10, 12, 14, 14, 16, 18, 20, 20, 22, 0, 22, 16, 18, 10, 12, 2, 4, 4, 6 ],
  1886. "width": 289,
  1887. "height": 240
  1888. }
  1889. },
  1890. "head-base": {
  1891. "head-base": { "name": "spineboy/head-base", "x": 122.14, "rotation": -90, "width": 286, "height": 249 }
  1892. },
  1893. "leg-l": {
  1894. "leg": {
  1895. "name": "spineboy/leg",
  1896. "type": "mesh",
  1897. "uvs": [ 1, 1, 0, 1, 0, 0.85714, 0, 0.71429, 0, 0.57143, 0, 0.42857, 0, 0.28571, 0, 0.14286, 0, 0, 1, 0, 1, 0.14286, 1, 0.28571, 1, 0.42857, 1, 0.57143, 1, 0.71429, 1, 0.85714 ],
  1898. "triangles": [ 3, 4, 13, 14, 3, 13, 2, 3, 14, 15, 2, 14, 1, 2, 15, 0, 1, 15, 7, 8, 9, 10, 7, 9, 6, 7, 10, 11, 6, 10, 5, 6, 11, 12, 5, 11, 4, 5, 12, 13, 4, 12 ],
  1899. "vertices": [ 1, 20, 96.06, 29.43, 1, 1, 20, 96.06, -27.57, 1, 2, 19, 149.76, -27.57, 0.14633, 20, 67.34, -27.57, 0.85367, 2, 19, 121.04, -27.57, 0.29593, 20, 38.63, -27.57, 0.70407, 2, 19, 92.33, -27.57, 0.44841, 20, 9.91, -27.57, 0.55159, 2, 19, 63.62, -27.57, 0.59914, 20, -18.8, -27.57, 0.40086, 2, 19, 34.9, -27.57, 0.74219, 20, -47.51, -27.57, 0.25781, 2, 19, 6.19, -27.57, 0.87481, 20, -76.23, -27.57, 0.12519, 1, 19, -22.53, -27.57, 1, 1, 19, -22.53, 29.43, 1, 2, 19, 6.19, 29.43, 0.87608, 20, -76.23, 29.43, 0.12392, 2, 19, 34.9, 29.43, 0.74454, 20, -47.51, 29.43, 0.25546, 2, 19, 63.62, 29.43, 0.60217, 20, -18.8, 29.43, 0.39783, 2, 19, 92.33, 29.43, 0.45154, 20, 9.91, 29.43, 0.54846, 2, 19, 121.04, 29.43, 0.29852, 20, 38.63, 29.43, 0.70148, 2, 19, 149.76, 29.43, 0.1478, 20, 67.34, 29.43, 0.8522 ],
  1900. "hull": 16,
  1901. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 0 ],
  1902. "width": 57,
  1903. "height": 201
  1904. }
  1905. },
  1906. "leg-r": {
  1907. "leg": {
  1908. "name": "spineboy/leg",
  1909. "type": "mesh",
  1910. "uvs": [ 1, 1, 0, 1, 0, 0.85714, 0, 0.71429, 0, 0.57143, 0, 0.42857, 0, 0.28571, 0, 0.14286, 0, 0, 1, 0, 1, 0.14286, 1, 0.28571, 1, 0.42857, 1, 0.57143, 1, 0.71429, 1, 0.85714 ],
  1911. "triangles": [ 3, 4, 13, 14, 3, 13, 2, 3, 14, 15, 2, 14, 1, 2, 15, 0, 1, 15, 7, 8, 9, 10, 7, 9, 6, 7, 10, 11, 6, 10, 5, 6, 11, 12, 5, 11, 4, 5, 12, 13, 4, 12 ],
  1912. "vertices": [ 1, 7, 96.06, 29.43, 1, 1, 7, 96.06, -27.57, 1, 2, 5, 149.76, -27.57, 0.14633, 7, 67.34, -27.57, 0.85367, 2, 5, 121.04, -27.57, 0.29593, 7, 38.63, -27.57, 0.70407, 2, 5, 92.33, -27.57, 0.44841, 7, 9.91, -27.57, 0.55159, 2, 5, 63.62, -27.57, 0.59914, 7, -18.8, -27.57, 0.40086, 2, 5, 34.9, -27.57, 0.74219, 7, -47.51, -27.57, 0.25781, 2, 5, 6.19, -27.57, 0.87481, 7, -76.23, -27.57, 0.12519, 1, 5, -22.53, -27.57, 1, 1, 5, -22.53, 29.43, 1, 2, 5, 6.19, 29.43, 0.87608, 7, -76.23, 29.43, 0.12392, 2, 5, 34.9, 29.43, 0.74454, 7, -47.51, 29.43, 0.25546, 2, 5, 63.62, 29.43, 0.60217, 7, -18.8, 29.43, 0.39783, 2, 5, 92.33, 29.43, 0.45154, 7, 9.91, 29.43, 0.54846, 2, 5, 121.04, 29.43, 0.29852, 7, 38.63, 29.43, 0.70148, 2, 5, 149.76, 29.43, 0.1478, 7, 67.34, 29.43, 0.8522 ],
  1913. "hull": 16,
  1914. "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 0 ],
  1915. "width": 57,
  1916. "height": 201
  1917. }
  1918. },
  1919. "mouth": {
  1920. "mouth-3": { "name": "common/mouth-3", "x": 9.5, "y": 1.41, "width": 29, "height": 55 },
  1921. "mouth-bracket": { "name": "common/mouth-bracket", "y": -3.09, "width": 67, "height": 22 },
  1922. "mouth-doubt": { "name": "common/mouth-doubt", "x": -4, "y": -9.59, "width": 51, "height": 30 },
  1923. "mouth-fangs": { "name": "common/mouth-fangs", "x": 1, "y": -5.09, "width": 78, "height": 28 },
  1924. "mouth-line": { "name": "common/mouth-line", "y": 9.41, "width": 72, "height": 14 },
  1925. "mouth-neutral": { "name": "common/mouth-neutral", "y": 1.91, "width": 54, "height": 24 },
  1926. "mouth-o-tall": { "name": "common/mouth-o-tall", "y": -5.09, "width": 43, "height": 66 },
  1927. "mouth-open-smile": { "name": "common/mouth-open-smile", "y": -5.59, "width": 72, "height": 44 },
  1928. "mouth-rectangle": { "name": "common/mouth-rectangle", "y": -6.09, "width": 70, "height": 42 },
  1929. "mouth-reverse-v": { "name": "common/mouth-reverse-v", "y": -6.59, "width": 54, "height": 19 },
  1930. "mouth-s": { "name": "common/mouth-s", "y": -4.59, "width": 82, "height": 21 },
  1931. "mouth-smile-little": { "name": "common/mouth-smile-little", "y": -10.59, "width": 65, "height": 38 },
  1932. "mouth-toungue-sticking-out": { "name": "common/mouth-toungue-sticking-out", "y": -12.59, "width": 62, "height": 41 },
  1933. "mouth-u": { "name": "common/mouth-u", "y": -8.59, "width": 72, "height": 37 },
  1934. "mouth-v": { "name": "common/mouth-v", "y": -1.59, "width": 53, "height": 28 },
  1935. "mouth-x": { "name": "common/mouth-x", "x": -4, "y": -5.59, "width": 42, "height": 39 }
  1936. }
  1937. }
  1938. }
  1939. ],
  1940. "animations": {
  1941. "emotes/angry": {
  1942. "slots": {
  1943. "angry-mark": {
  1944. "attachment": [
  1945. { "name": "common/angry-mark" }
  1946. ]
  1947. },
  1948. "big-purple-fear": {
  1949. "attachment": [
  1950. { "name": "common/big-purple-fear" }
  1951. ]
  1952. },
  1953. "ear-l": {
  1954. "rgba": [
  1955. { "color": "ff9696ff" }
  1956. ]
  1957. },
  1958. "ear-r": {
  1959. "rgba": [
  1960. { "color": "ff9696ff" }
  1961. ]
  1962. },
  1963. "eye-l": {
  1964. "attachment": [
  1965. { "name": "eye-slant-close" }
  1966. ]
  1967. },
  1968. "eye-r": {
  1969. "attachment": [
  1970. { "name": "eye-slant-close" }
  1971. ]
  1972. },
  1973. "head-base": {
  1974. "rgba": [
  1975. { "color": "ff9696ff" }
  1976. ]
  1977. },
  1978. "mouth": {
  1979. "attachment": [
  1980. { "name": "mouth-doubt" }
  1981. ]
  1982. }
  1983. },
  1984. "bones": {
  1985. "eyebrow-l": {
  1986. "rotate": [
  1987. { "value": -19.25 }
  1988. ]
  1989. },
  1990. "eyebrow-r": {
  1991. "rotate": [
  1992. { "value": -23.53 }
  1993. ]
  1994. },
  1995. "arm-holder-r": {
  1996. "translate": [
  1997. { "x": 8.77, "y": -17.53 }
  1998. ]
  1999. },
  2000. "arm-holder-l": {
  2001. "translate": [
  2002. { "x": 8.77, "y": -0.97 }
  2003. ]
  2004. },
  2005. "head-base": {
  2006. "rotate": [
  2007. { "value": -2.88 }
  2008. ],
  2009. "translate": [
  2010. { "x": -10.71, "y": -11.69 },
  2011. { "time": 0.1, "x": -13.66, "y": -11.69 },
  2012. { "time": 0.2, "x": -10.71, "y": -11.69 },
  2013. { "time": 0.3, "x": -13.66, "y": -11.69 },
  2014. { "time": 0.3667, "x": -10.71, "y": -11.69 },
  2015. { "time": 0.4667, "x": -13.66, "y": -11.69 },
  2016. { "time": 0.5333, "x": -10.71, "y": -11.69 },
  2017. { "time": 0.6333, "x": -13.66, "y": -11.69 }
  2018. ]
  2019. },
  2020. "face-holder": {
  2021. "translate": [
  2022. { "x": -6.71 }
  2023. ]
  2024. },
  2025. "effect-head": {
  2026. "translate": [
  2027. { "x": 29.9, "y": 40.18 }
  2028. ],
  2029. "scale": [
  2030. {
  2031. "curve": [ 0.168, 1, 0.133, 1.194, 0.168, 1, 0.133, 1.194 ]
  2032. },
  2033. {
  2034. "time": 0.2,
  2035. "x": 1.194,
  2036. "y": 1.194,
  2037. "curve": [ 0.593, 1.194, 0.511, 1, 0.593, 1.194, 0.511, 1 ]
  2038. },
  2039. { "time": 0.6667 }
  2040. ]
  2041. },
  2042. "hips": {
  2043. "translate": [
  2044. { "x": -5.89 }
  2045. ]
  2046. },
  2047. "arm-up-l": {
  2048. "rotate": [
  2049. { "value": -1.87 },
  2050. { "time": 0.0667, "value": 3.01 },
  2051. { "time": 0.1333, "value": -1.87 },
  2052. { "time": 0.2333, "value": 3.01 },
  2053. { "time": 0.3, "value": -1.87 },
  2054. { "time": 0.3667, "value": 3.01 },
  2055. { "time": 0.4333, "value": -1.87 },
  2056. { "time": 0.5, "value": 3.01 },
  2057. { "time": 0.6, "value": -1.87 },
  2058. { "time": 0.6667, "value": 3.01 }
  2059. ]
  2060. },
  2061. "arm-up-r": {
  2062. "rotate": [
  2063. { "value": -1.77 },
  2064. { "time": 0.0667, "value": 1.89 },
  2065. { "time": 0.1333, "value": -1.77 },
  2066. { "time": 0.2333, "value": 1.89 },
  2067. { "time": 0.3, "value": -1.77 },
  2068. { "time": 0.3667, "value": 1.89 },
  2069. { "time": 0.4333, "value": -1.77 },
  2070. { "time": 0.5, "value": 1.89 },
  2071. { "time": 0.6, "value": -1.77 },
  2072. { "time": 0.6667, "value": 1.89 }
  2073. ]
  2074. }
  2075. },
  2076. "drawOrder": [
  2077. {
  2078. "offsets": [
  2079. { "slot": "arm-r", "offset": -18 },
  2080. { "slot": "arm-decoration-r", "offset": -20 },
  2081. { "slot": "arm-shoulder-decoration-r", "offset": -19 }
  2082. ]
  2083. }
  2084. ]
  2085. },
  2086. "emotes/burp": {
  2087. "slots": {
  2088. "eye-l": {
  2089. "attachment": [
  2090. { "name": "eye-equal" }
  2091. ]
  2092. },
  2093. "eye-r": {
  2094. "attachment": [
  2095. { "name": "eye-equal" }
  2096. ]
  2097. },
  2098. "mouth": {
  2099. "attachment": [
  2100. { "name": "mouth-v" },
  2101. { "time": 1.1, "name": "mouth-bracket" },
  2102. { "time": 1.4, "name": "mouth-rectangle" },
  2103. { "time": 1.8667, "name": "mouth-v" }
  2104. ]
  2105. }
  2106. },
  2107. "bones": {
  2108. "arm-holder-l": {
  2109. "rotate": [
  2110. { "value": -20.07 }
  2111. ],
  2112. "scale": [
  2113. { "x": 0.754 }
  2114. ]
  2115. },
  2116. "arm-down-l": {
  2117. "rotate": [
  2118. {
  2119. "value": -103.61,
  2120. "curve": [ 0.012, -103.68, 0.367, -95.31 ]
  2121. },
  2122. {
  2123. "time": 0.5333,
  2124. "value": -91.91,
  2125. "curve": [ 0.8, -86.48, 0.967, -102.17 ]
  2126. },
  2127. { "time": 1.3667, "value": -103.61 }
  2128. ],
  2129. "translate": [
  2130. { "x": -2.31, "y": -17.14 }
  2131. ],
  2132. "scale": [
  2133. { "x": 0.723, "y": 1.101 }
  2134. ]
  2135. },
  2136. "arm-holder-r": {
  2137. "rotate": [
  2138. { "value": 10.98 }
  2139. ],
  2140. "scale": [
  2141. { "x": 0.774 }
  2142. ]
  2143. },
  2144. "arm-down-r": {
  2145. "rotate": [
  2146. {
  2147. "value": -96.92,
  2148. "curve": [ 0.012, -96.98, 0.367, -91.65 ]
  2149. },
  2150. {
  2151. "time": 0.5333,
  2152. "value": -88.25,
  2153. "curve": [ 0.8, -82.81, 0.967, -96.92 ]
  2154. },
  2155. { "time": 1.3667, "value": -96.92 }
  2156. ],
  2157. "translate": [
  2158. { "x": 6.57, "y": 14.8 }
  2159. ],
  2160. "scale": [
  2161. { "x": 0.929 }
  2162. ]
  2163. },
  2164. "face-holder": {
  2165. "translate": [
  2166. { "x": 14.96, "y": -8.48, "curve": "stepped" },
  2167. { "time": 1, "x": 14.96, "y": -8.48 },
  2168. { "time": 1.2667, "x": 2.02, "y": -7.67 },
  2169. { "time": 1.3667, "x": 16.81, "y": -8.59 },
  2170. { "time": 1.8667, "x": 14.96, "y": -8.48 }
  2171. ]
  2172. },
  2173. "body-up": {
  2174. "rotate": [
  2175. {
  2176. "value": 1.02,
  2177. "curve": [ 0.222, 1.02, 0.444, 2.35 ]
  2178. },
  2179. {
  2180. "time": 0.6667,
  2181. "value": 2.35,
  2182. "curve": [ 0.889, 2.35, 1.033, 1.02 ]
  2183. },
  2184. { "time": 1.3667, "value": 1.02 }
  2185. ],
  2186. "translate": [
  2187. { "time": 1.1667 },
  2188. { "time": 1.3333, "y": 5.56 },
  2189. { "time": 1.5 }
  2190. ],
  2191. "scale": [
  2192. { "time": 1.1333 },
  2193. { "time": 1.2333, "x": 0.981 },
  2194. { "time": 1.3667, "x": 1.026, "y": 0.944 },
  2195. { "time": 1.5333 }
  2196. ]
  2197. },
  2198. "head-base": {
  2199. "rotate": [
  2200. { "value": 2.53 }
  2201. ],
  2202. "translate": [
  2203. { "time": 1.1667 },
  2204. { "time": 1.2667, "x": -8.39, "y": 0.24 },
  2205. { "time": 1.3667, "x": -5.53, "y": 1.95 },
  2206. { "time": 1.5 }
  2207. ]
  2208. },
  2209. "mouth": {
  2210. "scale": [
  2211. { "time": 1.1, "x": 0.693 },
  2212. { "time": 1.3 },
  2213. { "time": 1.4, "y": 0.533 },
  2214. { "time": 1.5333, "y": 0.766 },
  2215. { "time": 1.6 },
  2216. { "time": 1.7, "y": 0.766 },
  2217. { "time": 1.8 }
  2218. ]
  2219. },
  2220. "eyebrow-l": {
  2221. "rotate": [
  2222. { "value": 10.9 }
  2223. ],
  2224. "translate": [
  2225. { "time": 1.1333 },
  2226. { "time": 1.2333, "x": -9.25, "y": 0.57 },
  2227. { "time": 1.7667 }
  2228. ]
  2229. },
  2230. "eyebrow-r": {
  2231. "rotate": [
  2232. { "value": 8.38 }
  2233. ],
  2234. "translate": [
  2235. { "time": 1.1333 },
  2236. { "time": 1.2333, "x": -9.25, "y": -0.57 },
  2237. { "time": 1.7667 }
  2238. ]
  2239. },
  2240. "arm-up-l": {
  2241. "rotate": [
  2242. { "value": 21.18 }
  2243. ],
  2244. "scale": [
  2245. { "x": 1.073, "y": 1.079 }
  2246. ]
  2247. },
  2248. "arm-up-r": {
  2249. "rotate": [
  2250. { "value": 18.95 }
  2251. ],
  2252. "scale": [
  2253. { "x": 1.081 }
  2254. ]
  2255. },
  2256. "leg-target-l": {
  2257. "translate": [
  2258. { "x": 12.97 }
  2259. ]
  2260. },
  2261. "leg-target-r": {
  2262. "translate": [
  2263. { "x": -16.68 }
  2264. ]
  2265. }
  2266. }
  2267. },
  2268. "emotes/confused": {
  2269. "slots": {
  2270. "eye-l": {
  2271. "attachment": [
  2272. { "name": "eye-twirl" }
  2273. ]
  2274. },
  2275. "eye-r": {
  2276. "attachment": [
  2277. { "name": "eye-twirl" }
  2278. ]
  2279. },
  2280. "mouth": {
  2281. "attachment": [
  2282. { "name": "mouth-s" }
  2283. ]
  2284. }
  2285. },
  2286. "bones": {
  2287. "eye-animator-l": {
  2288. "rotate": [
  2289. {},
  2290. { "time": 2, "value": -360 }
  2291. ]
  2292. },
  2293. "eye-animator-r": {
  2294. "rotate": [
  2295. {},
  2296. { "time": 2, "value": 360 }
  2297. ]
  2298. },
  2299. "arm-holder-l": {
  2300. "rotate": [
  2301. { "value": -35.03 }
  2302. ]
  2303. },
  2304. "arm-holder-r": {
  2305. "rotate": [
  2306. { "value": 36.62 }
  2307. ]
  2308. },
  2309. "arm-down-l": {
  2310. "rotate": [
  2311. {
  2312. "value": -17.96,
  2313. "curve": [ 0.067, -18.58, 0.134, -19.22 ]
  2314. },
  2315. {
  2316. "time": 0.2,
  2317. "value": -19.8,
  2318. "curve": [ 0.324, -20.85, 0.446, -21.71 ]
  2319. },
  2320. {
  2321. "time": 0.5667,
  2322. "value": -21.71,
  2323. "curve": [ 0.9, -21.71, 1.233, -15.49 ]
  2324. },
  2325. {
  2326. "time": 1.5667,
  2327. "value": -15.49,
  2328. "curve": [ 1.712, -15.49, 1.857, -16.65 ]
  2329. },
  2330. { "time": 2, "value": -17.96 }
  2331. ]
  2332. },
  2333. "arm-down-r": {
  2334. "rotate": [
  2335. {
  2336. "value": -10.91,
  2337. "curve": [ 0.067, -10.3, 0.134, -9.65 ]
  2338. },
  2339. {
  2340. "time": 0.2,
  2341. "value": -9.07,
  2342. "curve": [ 0.324, -8.02, 0.446, -7.16 ]
  2343. },
  2344. {
  2345. "time": 0.5667,
  2346. "value": -7.16,
  2347. "curve": [ 0.779, -7.16, 0.991, -9.64 ]
  2348. },
  2349. {
  2350. "time": 1.2,
  2351. "value": -11.47,
  2352. "curve": [ 1.324, -12.52, 1.446, -13.38 ]
  2353. },
  2354. {
  2355. "time": 1.5667,
  2356. "value": -13.38,
  2357. "curve": [ 1.712, -13.38, 1.857, -12.22 ]
  2358. },
  2359. { "time": 2, "value": -10.91 }
  2360. ]
  2361. },
  2362. "leg-target-l": {
  2363. "translate": [
  2364. { "time": 0.3 },
  2365. { "time": 0.5333, "x": -16.67, "curve": "stepped" },
  2366. { "time": 1, "x": -16.67 },
  2367. { "time": 1.2 }
  2368. ]
  2369. },
  2370. "leg-target-r": {
  2371. "translate": [
  2372. {},
  2373. { "time": 0.2, "x": -16.67, "curve": "stepped" },
  2374. { "time": 1.3333, "x": -16.67 },
  2375. { "time": 1.5667 }
  2376. ]
  2377. },
  2378. "hips": {
  2379. "translate": [
  2380. {
  2381. "curve": [ 0.519, 0, 0.421, -17.92, 0.333, 0, 0.667, 0 ]
  2382. },
  2383. {
  2384. "time": 1,
  2385. "x": -17.89,
  2386. "curve": [ 1.519, -17.85, 1.421, 0.04, 1.333, 0, 1.667, 0 ]
  2387. },
  2388. { "time": 2 }
  2389. ]
  2390. },
  2391. "body-up": {
  2392. "rotate": [
  2393. {
  2394. "value": -0.51,
  2395. "curve": [ 0.158, -1.76, 0.312, -2.95 ]
  2396. },
  2397. {
  2398. "time": 0.4667,
  2399. "value": -2.95,
  2400. "curve": [ 0.8, -2.95, 1.133, 2.46 ]
  2401. },
  2402. {
  2403. "time": 1.4667,
  2404. "value": 2.46,
  2405. "curve": [ 1.646, 2.46, 1.824, 0.94 ]
  2406. },
  2407. { "time": 2, "value": -0.51 }
  2408. ]
  2409. },
  2410. "face-holder": {
  2411. "translate": [
  2412. { "x": -0.87, "y": 16.88 },
  2413. { "time": 0.5, "x": 2.79, "y": 6.69 },
  2414. { "time": 1, "x": -0.88, "y": -3.86 },
  2415. { "time": 1.5, "x": -8.2, "y": 6.82 },
  2416. { "time": 2, "x": -0.87, "y": 16.88 }
  2417. ]
  2418. }
  2419. }
  2420. },
  2421. "emotes/crying": {
  2422. "slots": {
  2423. "mouth": {
  2424. "attachment": [
  2425. { "name": "mouth-rectangle" }
  2426. ]
  2427. },
  2428. "tear-l": {
  2429. "rgba": [
  2430. { "color": "ffffff00" },
  2431. { "time": 0.1333, "color": "ffffffff", "curve": "stepped" },
  2432. { "time": 0.6, "color": "ffffffff" },
  2433. { "time": 0.8333, "color": "ffffff00" }
  2434. ],
  2435. "attachment": [
  2436. { "name": "common/tear" }
  2437. ]
  2438. },
  2439. "tear-r": {
  2440. "rgba": [
  2441. { "color": "ffffff00" },
  2442. { "time": 0.1333, "color": "ffffffff", "curve": "stepped" },
  2443. { "time": 0.6, "color": "ffffffff" },
  2444. { "time": 0.8, "color": "ffffff00" }
  2445. ],
  2446. "attachment": [
  2447. { "name": "common/tear" }
  2448. ]
  2449. }
  2450. },
  2451. "bones": {
  2452. "eye-animator-l": {
  2453. "rotate": [
  2454. { "value": 19.68 }
  2455. ]
  2456. },
  2457. "tear-l": {
  2458. "translate": [
  2459. { "x": 25.13, "curve": "stepped" },
  2460. {
  2461. "time": 0.1333,
  2462. "x": 25.13,
  2463. "curve": [ 0.243, 23.54, 0.311, -57.7, 0.243, 0, 0.311, 0 ]
  2464. },
  2465. { "time": 0.4333, "x": -67.08, "curve": "stepped" },
  2466. {
  2467. "time": 0.5333,
  2468. "x": -67.08,
  2469. "curve": [ 0.639, -67.08, 0.833, -86.74, 0.639, 0, 0.833, 0 ]
  2470. },
  2471. { "time": 0.8333, "x": -136.96 }
  2472. ],
  2473. "scale": [
  2474. { "time": 0.1 },
  2475. { "time": 0.3, "x": 1.267, "y": 1.267 },
  2476. { "time": 0.6, "x": 0.905 }
  2477. ]
  2478. },
  2479. "eyebrow-l": {
  2480. "rotate": [
  2481. {
  2482. "value": 9.32,
  2483. "curve": [ 0.048, 9.32, 0.04, 13.67 ]
  2484. },
  2485. {
  2486. "time": 0.1,
  2487. "value": 13.86,
  2488. "curve": [ 0.157, 14.05, 0.128, 9.51 ]
  2489. },
  2490. {
  2491. "time": 0.2,
  2492. "value": 9.32,
  2493. "curve": [ 0.257, 9.17, 0.228, 13.67 ]
  2494. },
  2495. {
  2496. "time": 0.3,
  2497. "value": 13.86,
  2498. "curve": [ 0.348, 13.99, 0.367, 9.32 ]
  2499. },
  2500. {
  2501. "time": 0.4,
  2502. "value": 9.32,
  2503. "curve": [ 0.448, 9.32, 0.44, 13.67 ]
  2504. },
  2505. {
  2506. "time": 0.5,
  2507. "value": 13.86,
  2508. "curve": [ 0.557, 14.05, 0.528, 9.51 ]
  2509. },
  2510. {
  2511. "time": 0.6,
  2512. "value": 9.32,
  2513. "curve": [ 0.657, 9.17, 0.628, 13.67 ]
  2514. },
  2515. {
  2516. "time": 0.7,
  2517. "value": 13.86,
  2518. "curve": [ 0.748, 13.99, 0.74, 9.51 ]
  2519. },
  2520. { "time": 0.8, "value": 9.32 }
  2521. ],
  2522. "scale": [
  2523. { "y": -1 }
  2524. ]
  2525. },
  2526. "eyebrow-r": {
  2527. "rotate": [
  2528. {
  2529. "value": 9.32,
  2530. "curve": [ 0.055, 9.32, 0.065, 13.65 ]
  2531. },
  2532. {
  2533. "time": 0.1333,
  2534. "value": 13.86,
  2535. "curve": [ 0.191, 14.05, 0.162, 9.51 ]
  2536. },
  2537. {
  2538. "time": 0.2333,
  2539. "value": 9.32,
  2540. "curve": [ 0.291, 9.17, 0.262, 13.67 ]
  2541. },
  2542. {
  2543. "time": 0.3333,
  2544. "value": 13.86,
  2545. "curve": [ 0.381, 13.99, 0.4, 9.32 ]
  2546. },
  2547. {
  2548. "time": 0.4333,
  2549. "value": 9.32,
  2550. "curve": [ 0.481, 9.32, 0.474, 13.67 ]
  2551. },
  2552. {
  2553. "time": 0.5333,
  2554. "value": 13.86,
  2555. "curve": [ 0.591, 14.05, 0.562, 9.51 ]
  2556. },
  2557. {
  2558. "time": 0.6333,
  2559. "value": 9.32,
  2560. "curve": [ 0.691, 9.17, 0.662, 13.67 ]
  2561. },
  2562. {
  2563. "time": 0.7333,
  2564. "value": 13.86,
  2565. "curve": [ 0.781, 13.99, 0.774, 9.51 ]
  2566. },
  2567. { "time": 0.8333, "value": 9.32 }
  2568. ],
  2569. "scale": [
  2570. { "y": -1 }
  2571. ]
  2572. },
  2573. "mouth": {
  2574. "scale": [
  2575. {},
  2576. { "time": 0.1, "x": 1.127 },
  2577. { "time": 0.2 },
  2578. { "time": 0.3, "x": 1.127 },
  2579. { "time": 0.4 },
  2580. { "time": 0.5, "x": 1.127 },
  2581. { "time": 0.6 },
  2582. { "time": 0.7, "x": 1.127 },
  2583. { "time": 0.8 }
  2584. ]
  2585. },
  2586. "eye-animator-r": {
  2587. "rotate": [
  2588. { "value": 22.29 }
  2589. ]
  2590. },
  2591. "tear-r": {
  2592. "translate": [
  2593. { "x": 25.13, "curve": "stepped" },
  2594. {
  2595. "time": 0.1333,
  2596. "x": 25.13,
  2597. "curve": [ 0.301, 18.9, 0.311, -57.7, 0.301, 0, 0.311, 0 ]
  2598. },
  2599. { "time": 0.4333, "x": -67.08, "curve": "stepped" },
  2600. {
  2601. "time": 0.5,
  2602. "x": -67.08,
  2603. "curve": [ 0.606, -67.08, 0.8, -86.74, 0.606, 0, 0.8, 0 ]
  2604. },
  2605. {
  2606. "time": 0.8,
  2607. "x": -136.96,
  2608. "curve": [ 0.8, -181.6, 0.822, 25.13, 0.8, 0, 0.822, 0 ]
  2609. },
  2610. { "time": 0.8333, "x": 25.13 }
  2611. ],
  2612. "scale": [
  2613. { "time": 0.1 },
  2614. { "time": 0.3, "x": 1.267, "y": 1.267 },
  2615. { "time": 0.6, "x": 0.905 },
  2616. { "time": 0.8333 }
  2617. ]
  2618. },
  2619. "head-base": {
  2620. "translate": [
  2621. {
  2622. "x": -2.84,
  2623. "curve": [ 0.169, -1.83, 0.109, 0, 0.079, 0, 0.156, 0 ]
  2624. },
  2625. {
  2626. "time": 0.2333,
  2627. "curve": [ 0.565, -0.18, 0.456, -3.54, 0.344, 0, 0.456, 0 ]
  2628. },
  2629. {
  2630. "time": 0.5667,
  2631. "x": -3.5,
  2632. "curve": [ 0.693, -3.46, 0.776, -3.18, 0.656, 0, 0.746, 0 ]
  2633. },
  2634. { "time": 0.8333, "x": -2.84 }
  2635. ]
  2636. },
  2637. "face-holder": {
  2638. "translate": [
  2639. {},
  2640. { "time": 0.2, "x": 5.84 },
  2641. { "time": 0.3667, "x": -8.39 },
  2642. { "time": 0.6333 }
  2643. ]
  2644. },
  2645. "body-up": {
  2646. "translate": [
  2647. { "time": 0.1333 },
  2648. { "time": 0.4333, "y": -1.58 },
  2649. { "time": 0.7 }
  2650. ]
  2651. },
  2652. "arm-holder-l": {
  2653. "translate": [
  2654. { "time": 0.0667 },
  2655. { "time": 0.1667, "x": 6.32 },
  2656. { "time": 0.3333, "curve": "stepped" },
  2657. { "time": 0.4333 },
  2658. { "time": 0.5333, "x": 6.32 },
  2659. { "time": 0.7 }
  2660. ]
  2661. },
  2662. "arm-holder-r": {
  2663. "translate": [
  2664. { "time": 0.0667 },
  2665. { "time": 0.1667, "x": 6.32 },
  2666. { "time": 0.3333, "curve": "stepped" },
  2667. { "time": 0.4333 },
  2668. { "time": 0.5333, "x": 6.32 },
  2669. { "time": 0.7 }
  2670. ]
  2671. }
  2672. }
  2673. },
  2674. "emotes/dead": {
  2675. "slots": {
  2676. "eye-l": {
  2677. "attachment": [
  2678. { "name": "eye-x" }
  2679. ]
  2680. },
  2681. "eye-r": {
  2682. "attachment": [
  2683. { "name": "eye-x" }
  2684. ]
  2685. },
  2686. "mouth": {
  2687. "attachment": [
  2688. { "name": "mouth-x" }
  2689. ]
  2690. }
  2691. },
  2692. "bones": {
  2693. "arm-holder-l": {
  2694. "rotate": [
  2695. { "value": -272.91 }
  2696. ],
  2697. "translate": [
  2698. { "x": -48.13, "y": 15.31 }
  2699. ]
  2700. },
  2701. "arm-holder-r": {
  2702. "rotate": [
  2703. { "value": 166.38 }
  2704. ],
  2705. "translate": [
  2706. { "x": 21.89, "y": 7.65 }
  2707. ]
  2708. },
  2709. "hips": {
  2710. "rotate": [
  2711. { "value": -100.71 }
  2712. ],
  2713. "translate": [
  2714. { "y": -104.11 }
  2715. ]
  2716. },
  2717. "body-up": {
  2718. "rotate": [
  2719. { "value": 8.57, "curve": "stepped" },
  2720. {
  2721. "time": 0.4333,
  2722. "value": 8.57,
  2723. "curve": [ 0.543, 8.57, 0.624, 10.63 ]
  2724. },
  2725. { "time": 0.7333, "value": 10.63, "curve": "stepped" },
  2726. {
  2727. "time": 1.1333,
  2728. "value": 10.63,
  2729. "curve": [ 1.189, 10.63, 1.244, 9.26 ]
  2730. },
  2731. { "time": 1.3, "value": 8.57, "curve": "stepped" },
  2732. { "time": 1.6333, "value": 8.57 }
  2733. ]
  2734. },
  2735. "leg-target-l": {
  2736. "translate": [
  2737. { "x": -275.33 }
  2738. ]
  2739. },
  2740. "leg-target-r": {
  2741. "translate": [
  2742. { "x": -153.42 }
  2743. ]
  2744. },
  2745. "arm-down-l": {
  2746. "rotate": [
  2747. { "value": -31.17 }
  2748. ]
  2749. },
  2750. "arm-down-r": {
  2751. "rotate": [
  2752. { "value": 8.66, "curve": "stepped" },
  2753. { "time": 0.8333, "value": 8.66 },
  2754. { "time": 0.9667, "value": 22.52 },
  2755. { "time": 1.0333, "value": 8.66 },
  2756. { "time": 1.1333, "value": 26.52 },
  2757. { "time": 1.3333, "value": 8.66 }
  2758. ]
  2759. },
  2760. "skirt-side-rotator-l": {
  2761. "rotate": [
  2762. { "value": -22.92 }
  2763. ]
  2764. },
  2765. "skirt-side-rotator-r": {
  2766. "rotate": [
  2767. { "value": 2.88 }
  2768. ]
  2769. },
  2770. "skirt-middle": {
  2771. "translate": [
  2772. { "x": -41.8, "y": -10.27 }
  2773. ]
  2774. },
  2775. "hair-back-long-middle": {
  2776. "rotate": [
  2777. { "value": -79.97 }
  2778. ],
  2779. "translate": [
  2780. { "x": 82.47, "y": 146.84 }
  2781. ],
  2782. "scale": [
  2783. { "x": 0.771, "y": 0.802 }
  2784. ]
  2785. },
  2786. "hair-back-long-middle-down": {
  2787. "rotate": [
  2788. { "value": 16.57 }
  2789. ]
  2790. },
  2791. "head-base": {
  2792. "rotate": [
  2793. { "value": 51.4 }
  2794. ]
  2795. },
  2796. "arm-up-l": {
  2797. "rotate": [
  2798. { "time": 0.4333 },
  2799. { "time": 0.6, "value": 4.43 },
  2800. { "time": 1.1333, "value": 4.43 },
  2801. { "time": 1.3 }
  2802. ]
  2803. }
  2804. }
  2805. },
  2806. "emotes/determined": {
  2807. "bones": {
  2808. "eyebrow-l": {
  2809. "rotate": [
  2810. { "value": -19.25 }
  2811. ]
  2812. },
  2813. "eyebrow-r": {
  2814. "rotate": [
  2815. { "value": -23.53 }
  2816. ]
  2817. },
  2818. "arm-up-l": {
  2819. "rotate": [
  2820. {
  2821. "value": 51.24,
  2822. "curve": [ 0.131, 51.24, 0.133, 57.97 ]
  2823. },
  2824. { "time": 0.2, "value": 57.97, "curve": "stepped" },
  2825. {
  2826. "time": 0.4667,
  2827. "value": 57.97,
  2828. "curve": [ 0.655, 57.07, 0.615, 51.24 ]
  2829. },
  2830. { "time": 0.8, "value": 51.24 }
  2831. ]
  2832. },
  2833. "arm-down-l": {
  2834. "rotate": [
  2835. {
  2836. "value": 92.5,
  2837. "curve": [ 0.222, 93.63, 0.178, 101.29 ]
  2838. },
  2839. { "time": 0.2667, "value": 101.29, "curve": "stepped" },
  2840. {
  2841. "time": 0.4667,
  2842. "value": 101.29,
  2843. "curve": [ 0.655, 100.12, 0.615, 92.5 ]
  2844. },
  2845. { "time": 0.8, "value": 92.5 }
  2846. ]
  2847. },
  2848. "face-holder": {
  2849. "translate": [
  2850. {
  2851. "curve": [ 0.106, -0.1, 0.156, -4.42, 0.042, 0, 0.156, 0 ]
  2852. },
  2853. { "time": 0.2333, "x": -4.42, "curve": "stepped" },
  2854. {
  2855. "time": 0.5333,
  2856. "x": -4.42,
  2857. "curve": [ 0.669, -2.41, 0.63, -0.4, 0.879, 0, 0.421, 0 ]
  2858. },
  2859. { "time": 0.7667 }
  2860. ]
  2861. },
  2862. "head-base": {
  2863. "translate": [
  2864. {},
  2865. { "time": 0.3, "x": -7.36 },
  2866. { "time": 0.7333 }
  2867. ]
  2868. },
  2869. "arm-up-r": {
  2870. "rotate": [
  2871. { "value": 9.68 },
  2872. { "time": 0.2333, "value": 11.21 },
  2873. { "time": 0.9, "value": 9.68 }
  2874. ]
  2875. }
  2876. }
  2877. },
  2878. "emotes/dramatic-stare": {
  2879. "slots": {
  2880. "big-purple-fear": {
  2881. "attachment": [
  2882. { "name": "common/big-purple-fear" }
  2883. ]
  2884. },
  2885. "eye-l": {
  2886. "attachment": [
  2887. { "name": "eye-small-dot" },
  2888. { "time": 1.5, "name": "eye-u" }
  2889. ]
  2890. },
  2891. "eye-r": {
  2892. "attachment": [
  2893. { "name": "eye-small-dot" },
  2894. { "time": 1.5, "name": "eye-u" },
  2895. { "time": 1.6667, "name": "eye-u" }
  2896. ]
  2897. },
  2898. "mouth": {
  2899. "attachment": [
  2900. {}
  2901. ]
  2902. },
  2903. "purple-fear-lines": {
  2904. "attachment": [
  2905. { "name": "common/purple-fear-lines" }
  2906. ]
  2907. },
  2908. "small-purple-fear": {
  2909. "attachment": [
  2910. { "name": "common/small-purple-fear" }
  2911. ]
  2912. }
  2913. },
  2914. "bones": {
  2915. "hips": {
  2916. "translate": [
  2917. { "x": 114.2, "y": -110.39 }
  2918. ]
  2919. },
  2920. "body-up": {
  2921. "rotate": [
  2922. { "value": -23.45 }
  2923. ]
  2924. },
  2925. "arm-up-l": {
  2926. "rotate": [
  2927. { "value": -27.6 }
  2928. ],
  2929. "scale": [
  2930. { "x": 1.137 }
  2931. ]
  2932. },
  2933. "arm-up-r": {
  2934. "rotate": [
  2935. { "value": 44.26 }
  2936. ],
  2937. "scale": [
  2938. { "x": 0.953 }
  2939. ]
  2940. },
  2941. "head-base": {
  2942. "rotate": [
  2943. { "value": -1.98 }
  2944. ],
  2945. "translate": [
  2946. { "x": -18.28, "y": -11.69 }
  2947. ]
  2948. },
  2949. "face-holder": {
  2950. "translate": [
  2951. { "x": -21.49, "y": -34.37 }
  2952. ],
  2953. "scale": [
  2954. { "y": 0.895 }
  2955. ]
  2956. },
  2957. "arm-holder-r": {
  2958. "translate": [
  2959. { "x": -22.18, "y": -11.55 }
  2960. ]
  2961. },
  2962. "arm-holder-l": {
  2963. "translate": [
  2964. { "x": -22.36, "y": -9.29 }
  2965. ]
  2966. },
  2967. "arm-down-r": {
  2968. "rotate": [
  2969. { "value": 21.96 }
  2970. ]
  2971. },
  2972. "arm-down-l": {
  2973. "rotate": [
  2974. { "value": -7.37 }
  2975. ]
  2976. },
  2977. "leg-target-l": {
  2978. "translate": [
  2979. { "x": 17.33, "y": 15.16 }
  2980. ]
  2981. },
  2982. "leg-l": {
  2983. "translate": [
  2984. { "x": -6.41, "y": 25.46 }
  2985. ]
  2986. },
  2987. "leg-target-r": {
  2988. "translate": [
  2989. { "x": -32.14, "y": 24.39 }
  2990. ]
  2991. },
  2992. "mouth": {
  2993. "rotate": [
  2994. { "value": 1.56 }
  2995. ],
  2996. "translate": [
  2997. { "y": -15.37 }
  2998. ]
  2999. },
  3000. "eyebrow-r": {
  3001. "translate": [
  3002. { "x": -8.01, "y": 0.2 }
  3003. ]
  3004. },
  3005. "eyebrow-l": {
  3006. "translate": [
  3007. { "x": -8.39, "y": 0.21 }
  3008. ]
  3009. },
  3010. "blush-r": {
  3011. "rotate": [
  3012. { "value": -16.62 }
  3013. ],
  3014. "translate": [
  3015. { "x": 7.91, "y": 1.43 }
  3016. ],
  3017. "scale": [
  3018. { "y": 0.739 }
  3019. ]
  3020. },
  3021. "hair-back-long-middle": {
  3022. "rotate": [
  3023. { "value": -28.4 }
  3024. ],
  3025. "translate": [
  3026. { "x": -29.87, "y": 40.04 }
  3027. ],
  3028. "scale": [
  3029. { "x": 0.85 }
  3030. ]
  3031. },
  3032. "hair-back-long-middle-down": {
  3033. "rotate": [
  3034. { "value": 10.12 }
  3035. ],
  3036. "translate": [
  3037. { "x": -55.96, "y": -37.75 }
  3038. ],
  3039. "scale": [
  3040. { "x": 0.738, "y": 0.689 }
  3041. ]
  3042. },
  3043. "skirt-side-rotator-l": {
  3044. "rotate": [
  3045. { "value": 12.3 }
  3046. ]
  3047. },
  3048. "skirt-side-l": {
  3049. "translate": [
  3050. { "x": -29.1 }
  3051. ]
  3052. }
  3053. },
  3054. "ik": {
  3055. "leg-target-r": [
  3056. { "bendPositive": false }
  3057. ]
  3058. },
  3059. "drawOrder": [
  3060. {
  3061. "offsets": [
  3062. { "slot": "leg-r", "offset": 2 }
  3063. ]
  3064. }
  3065. ]
  3066. },
  3067. "emotes/excited": {
  3068. "slots": {
  3069. "eye-l": {
  3070. "attachment": [
  3071. { "time": 0.0333, "name": "eye-sideway-v" },
  3072. { "time": 0.2, "name": "eye-dafault" }
  3073. ]
  3074. },
  3075. "eye-r": {
  3076. "attachment": [
  3077. { "time": 0.0333, "name": "eye-sideway-v" },
  3078. { "time": 0.2, "name": "eye-dafault" }
  3079. ]
  3080. },
  3081. "eye-sparkle-l": {
  3082. "attachment": [
  3083. { "name": "eye-sparkle" },
  3084. { "time": 0.0333 },
  3085. { "time": 0.2, "name": "eye-sparkle" }
  3086. ]
  3087. },
  3088. "eye-sparkle-r": {
  3089. "attachment": [
  3090. { "name": "eye-sparkle" },
  3091. { "time": 0.0333 },
  3092. { "time": 0.2, "name": "eye-sparkle" }
  3093. ]
  3094. }
  3095. },
  3096. "bones": {
  3097. "arm-down-l": {
  3098. "rotate": [
  3099. { "value": -165.35 },
  3100. { "time": 0.1333, "value": -172.7 },
  3101. { "time": 0.2, "value": -165.35 },
  3102. { "time": 0.3333, "value": -172.7 },
  3103. { "time": 0.4333, "value": -165.35 },
  3104. { "time": 0.5333, "value": -172.7 },
  3105. { "time": 0.7, "value": -165.35 }
  3106. ],
  3107. "translate": [
  3108. { "x": -26.14, "y": -18.84 }
  3109. ]
  3110. },
  3111. "arm-down-r": {
  3112. "rotate": [
  3113. { "value": -171.57 },
  3114. { "time": 0.1333, "value": -178.89 },
  3115. { "time": 0.2, "value": -171.57 },
  3116. { "time": 0.3333, "value": -178.89 },
  3117. { "time": 0.4333, "value": -171.57 },
  3118. { "time": 0.5333, "value": -178.89 },
  3119. { "time": 0.7, "value": -171.57 }
  3120. ],
  3121. "translate": [
  3122. { "x": -26.14, "y": -34.5 }
  3123. ]
  3124. },
  3125. "face-holder": {
  3126. "translate": [
  3127. { "x": 4.91, "y": -13.3 },
  3128. { "time": 0.2667, "x": -1.23, "y": -13.3 },
  3129. {
  3130. "time": 0.8667,
  3131. "x": 4.91,
  3132. "y": -13.3,
  3133. "curve": [ 0.92, 4.84, 0.942, -0.03, 0.907, -13.3, 0.96, -13.3 ]
  3134. },
  3135. {
  3136. "time": 1,
  3137. "y": -13.3,
  3138. "curve": [ 1.043, 0.02, 1.053, 4.94, 1.032, -13.3, 1.068, -13.3 ]
  3139. },
  3140. {
  3141. "time": 1.1,
  3142. "x": 4.91,
  3143. "y": -13.3,
  3144. "curve": [ 1.153, 4.88, 1.142, -0.03, 1.14, -13.3, 1.16, -13.3 ]
  3145. },
  3146. {
  3147. "time": 1.2,
  3148. "y": -13.3,
  3149. "curve": [ 1.253, 0.02, 1.275, 4.94, 1.24, -13.3, 1.293, -13.3 ]
  3150. },
  3151. {
  3152. "time": 1.3333,
  3153. "x": 4.91,
  3154. "y": -13.3,
  3155. "curve": [ 1.387, 4.89, 1.409, -0.03, 1.374, -13.3, 1.426, -13.3 ]
  3156. },
  3157. {
  3158. "time": 1.4667,
  3159. "y": -13.3,
  3160. "curve": [ 1.552, 0.04, 1.571, 4.94, 1.531, -13.3, 1.611, -13.3 ]
  3161. },
  3162. { "time": 1.7, "x": 4.91, "y": -13.3 }
  3163. ]
  3164. },
  3165. "blush-l": {
  3166. "scale": [
  3167. { "x": 1.355, "y": 1.355 }
  3168. ]
  3169. },
  3170. "blush-r": {
  3171. "scale": [
  3172. { "x": 1.355, "y": 1.355 }
  3173. ]
  3174. },
  3175. "eyebrow-l": {
  3176. "rotate": [
  3177. { "value": 10.36 }
  3178. ]
  3179. },
  3180. "eyebrow-r": {
  3181. "rotate": [
  3182. { "value": 9.28 }
  3183. ]
  3184. },
  3185. "head-base": {
  3186. "translate": [
  3187. { "x": -6.14 }
  3188. ]
  3189. },
  3190. "arm-up-l": {
  3191. "rotate": [
  3192. {
  3193. "curve": [ 0.2, 0, 0.4, -10.32 ]
  3194. },
  3195. {
  3196. "time": 0.6,
  3197. "value": -10.32,
  3198. "curve": [ 0.878, -10.32, 1.156, -10.32 ]
  3199. },
  3200. {
  3201. "time": 1.4333,
  3202. "value": -10.32,
  3203. "curve": [ 1.522, -10.32, 1.611, 0 ]
  3204. },
  3205. { "time": 1.7 }
  3206. ]
  3207. },
  3208. "arm-up-r": {
  3209. "rotate": [
  3210. {
  3211. "curve": [ 0.2, 0, 0.4, -8.37 ]
  3212. },
  3213. {
  3214. "time": 0.6,
  3215. "value": -8.37,
  3216. "curve": [ 0.878, -8.37, 1.156, -8.37 ]
  3217. },
  3218. {
  3219. "time": 1.4333,
  3220. "value": -8.37,
  3221. "curve": [ 1.522, -8.37, 1.611, 0 ]
  3222. },
  3223. { "time": 1.7 }
  3224. ]
  3225. },
  3226. "arm-holder-l": {
  3227. "translate": [
  3228. {},
  3229. { "time": 0.5333, "y": -3.68, "curve": "stepped" },
  3230. { "time": 1.3, "y": -3.68 },
  3231. { "time": 1.6667 }
  3232. ]
  3233. },
  3234. "arm-holder-r": {
  3235. "translate": [
  3236. { "y": -7.37 },
  3237. { "time": 0.5333, "y": -2.46, "curve": "stepped" },
  3238. { "time": 1.3, "y": -2.46 },
  3239. { "time": 1.6667, "y": -7.37 }
  3240. ]
  3241. },
  3242. "hips": {
  3243. "translate": [
  3244. {},
  3245. { "time": 0.1333, "y": -6.14 },
  3246. { "time": 0.4 }
  3247. ]
  3248. }
  3249. },
  3250. "ik": {
  3251. "leg-target-l": [
  3252. { "bendPositive": false }
  3253. ],
  3254. "leg-target-r": [
  3255. { "bendPositive": false }
  3256. ]
  3257. },
  3258. "drawOrder": [
  3259. {
  3260. "offsets": [
  3261. { "slot": "bracelet-r", "offset": -3 },
  3262. { "slot": "arm-shoulder-decoration-r", "offset": -3 }
  3263. ]
  3264. }
  3265. ]
  3266. },
  3267. "emotes/fawning": {
  3268. "slots": {
  3269. "eye-l": {
  3270. "attachment": [
  3271. { "name": "eye-heart" }
  3272. ]
  3273. },
  3274. "eye-r": {
  3275. "attachment": [
  3276. { "name": "eye-heart" }
  3277. ]
  3278. },
  3279. "mouth": {
  3280. "attachment": [
  3281. { "name": "mouth-u" }
  3282. ]
  3283. }
  3284. },
  3285. "bones": {
  3286. "arm-holder-l": {
  3287. "rotate": [
  3288. { "value": 62.65 }
  3289. ]
  3290. },
  3291. "arm-holder-r": {
  3292. "rotate": [
  3293. { "value": 64.89 }
  3294. ]
  3295. },
  3296. "arm-down-l": {
  3297. "rotate": [
  3298. { "value": -61.77 }
  3299. ]
  3300. },
  3301. "arm-down-r": {
  3302. "rotate": [
  3303. { "value": 131.39 }
  3304. ]
  3305. },
  3306. "head-base": {
  3307. "rotate": [
  3308. {
  3309. "value": -10.8,
  3310. "curve": [ 0.072, -9.11, 0.117, -7.15 ]
  3311. },
  3312. {
  3313. "time": 0.2,
  3314. "value": -7.15,
  3315. "curve": [ 0.46, -7.15, 0.489, -13.16 ]
  3316. },
  3317. {
  3318. "time": 0.6333,
  3319. "value": -13.16,
  3320. "curve": [ 0.744, -13.16, 0.813, -12.05 ]
  3321. },
  3322. { "time": 0.8667, "value": -10.8 }
  3323. ],
  3324. "translate": [
  3325. { "y": 15.65 }
  3326. ]
  3327. },
  3328. "eyebrow-l": {
  3329. "rotate": [
  3330. { "value": 23.66 }
  3331. ]
  3332. },
  3333. "eyebrow-r": {
  3334. "rotate": [
  3335. { "value": 18.34 }
  3336. ]
  3337. },
  3338. "face-holder": {
  3339. "translate": [
  3340. { "x": 10.62, "y": 1.33 },
  3341. { "time": 0.4333, "x": 10.62, "y": 3.62 },
  3342. { "time": 0.8667, "x": 10.62, "y": 1.33 }
  3343. ]
  3344. },
  3345. "leg-target-r": {
  3346. "translate": [
  3347. {
  3348. "x": -64.59,
  3349. "y": 39.61,
  3350. "curve": [ 0.144, -64.59, 0.289, -71.68, 0.144, 39.61, 0.289, 39.61 ]
  3351. },
  3352. {
  3353. "time": 0.4333,
  3354. "x": -71.68,
  3355. "y": 39.61,
  3356. "curve": [ 0.578, -71.68, 0.722, -64.59, 0.578, 39.61, 0.722, 39.61 ]
  3357. },
  3358. { "time": 0.8667, "x": -64.59, "y": 39.61 }
  3359. ]
  3360. },
  3361. "hips": {
  3362. "rotate": [
  3363. { "value": 14.33 }
  3364. ],
  3365. "translate": [
  3366. { "x": 28.57, "y": 4.07 },
  3367. { "time": 0.4333, "x": 34.47, "y": 4.07 },
  3368. { "time": 0.8667, "x": 28.57, "y": 4.07 }
  3369. ]
  3370. },
  3371. "body-up": {
  3372. "rotate": [
  3373. { "value": -16.65 },
  3374. { "time": 0.4333, "value": -19.48 },
  3375. { "time": 0.8667, "value": -16.65 }
  3376. ]
  3377. },
  3378. "eye-animator-r": {
  3379. "scale": [
  3380. {},
  3381. { "time": 0.1333, "x": 1.38, "y": 1.38 },
  3382. { "time": 0.4333 },
  3383. { "time": 0.5667, "x": 1.38, "y": 1.38 },
  3384. { "time": 0.8667 }
  3385. ]
  3386. },
  3387. "eye-animator-l": {
  3388. "scale": [
  3389. {
  3390. "curve": [ 0.09, 1, 0.089, 1.38, 0.09, 1, 0.089, 1.38 ]
  3391. },
  3392. {
  3393. "time": 0.1333,
  3394. "x": 1.38,
  3395. "y": 1.38,
  3396. "curve": [ 0.336, 1.38, 0.333, 1, 0.336, 1.38, 0.333, 1 ]
  3397. },
  3398. {
  3399. "time": 0.4333,
  3400. "curve": [ 0.523, 1, 0.522, 1.38, 0.523, 1, 0.522, 1.38 ]
  3401. },
  3402. {
  3403. "time": 0.5667,
  3404. "x": 1.38,
  3405. "y": 1.38,
  3406. "curve": [ 0.77, 1.38, 0.767, 1, 0.77, 1.38, 0.767, 1 ]
  3407. },
  3408. { "time": 0.8667 }
  3409. ]
  3410. },
  3411. "hair-front": {
  3412. "rotate": [
  3413. { "value": -14.64 },
  3414. { "time": 0.4667, "value": 23.63 },
  3415. { "time": 0.8667, "value": -14.64 }
  3416. ]
  3417. },
  3418. "leg-up-l": {
  3419. "translate": [
  3420. { "x": 3.79, "y": -14.59 }
  3421. ]
  3422. }
  3423. },
  3424. "ik": {
  3425. "leg-target-r": [
  3426. {
  3427. "bendPositive": false,
  3428. "curve": [ 0.144, 1, 0.289, 1, 0.144, 0, 0.289, 0 ]
  3429. },
  3430. {
  3431. "time": 0.4333,
  3432. "bendPositive": false,
  3433. "curve": [ 0.578, 1, 0.722, 1, 0.578, 0, 0.722, 0 ]
  3434. },
  3435. { "time": 0.8667, "bendPositive": false }
  3436. ]
  3437. },
  3438. "drawOrder": [
  3439. {
  3440. "offsets": [
  3441. { "slot": "bracelet-r", "offset": -2 },
  3442. { "slot": "arm-shoulder-decoration-r", "offset": -4 }
  3443. ]
  3444. }
  3445. ]
  3446. },
  3447. "emotes/flushed": {
  3448. "slots": {
  3449. "eye-l": {
  3450. "attachment": [
  3451. { "name": "eye-sideway-v" }
  3452. ]
  3453. },
  3454. "eye-r": {
  3455. "attachment": [
  3456. { "name": "eye-sideway-v" }
  3457. ]
  3458. },
  3459. "mouth": {
  3460. "attachment": [
  3461. { "name": "mouth-s" }
  3462. ]
  3463. },
  3464. "small-drop-line": {
  3465. "rgba": [
  3466. { "color": "ffffff7f" },
  3467. { "time": 0.0667, "color": "ffffff00", "curve": "stepped" },
  3468. { "time": 0.1, "color": "ffffff00" },
  3469. { "time": 0.2, "color": "ffffffff", "curve": "stepped" },
  3470. { "time": 0.3333, "color": "ffffffff" },
  3471. { "time": 0.4, "color": "ffffff7f" }
  3472. ],
  3473. "attachment": [
  3474. { "name": "common/small-drop-line" }
  3475. ]
  3476. },
  3477. "small-drop-line-l": {
  3478. "rgba": [
  3479. { "time": 0.1333, "color": "ffffffff" },
  3480. { "time": 0.2667, "color": "ffffff00", "curve": "stepped" },
  3481. { "time": 0.3, "color": "ffffff00" },
  3482. { "time": 0.4, "color": "ffffffff" }
  3483. ],
  3484. "attachment": [
  3485. { "name": "common/small-drop-line" }
  3486. ]
  3487. },
  3488. "small-drop-line3": {
  3489. "rgba": [
  3490. { "color": "ffffff00" },
  3491. { "time": 0.1, "color": "ffffffff", "curve": "stepped" },
  3492. { "time": 0.2667, "color": "ffffffff" },
  3493. { "time": 0.4, "color": "ffffff00" }
  3494. ],
  3495. "attachment": [
  3496. { "name": "common/small-drop-line" }
  3497. ]
  3498. }
  3499. },
  3500. "bones": {
  3501. "eyebrow-l": {
  3502. "rotate": [
  3503. { "value": 9.24 }
  3504. ]
  3505. },
  3506. "eyebrow-r": {
  3507. "rotate": [
  3508. { "value": 10.22 }
  3509. ]
  3510. },
  3511. "arm-holder-l": {
  3512. "rotate": [
  3513. { "value": 24.62 }
  3514. ]
  3515. },
  3516. "arm-down-l": {
  3517. "rotate": [
  3518. { "value": -143.52 }
  3519. ],
  3520. "translate": [
  3521. { "y": 7.71 }
  3522. ]
  3523. },
  3524. "arm-down-r": {
  3525. "rotate": [
  3526. { "value": -155.58 }
  3527. ]
  3528. },
  3529. "arm-holder-r": {
  3530. "rotate": [
  3531. { "value": -14.94 }
  3532. ]
  3533. },
  3534. "leg-target-r": {
  3535. "translate": [
  3536. { "x": 12.3 }
  3537. ]
  3538. },
  3539. "leg-target-l": {
  3540. "translate": [
  3541. { "x": -14.76 }
  3542. ]
  3543. },
  3544. "head-base": {
  3545. "rotate": [
  3546. {
  3547. "value": -1.23,
  3548. "curve": [ 0.023, -2.04, 0.045, -2.74 ]
  3549. },
  3550. {
  3551. "time": 0.0667,
  3552. "value": -2.74,
  3553. "curve": [ 0.144, -2.74, 0.222, 1.54 ]
  3554. },
  3555. {
  3556. "time": 0.3,
  3557. "value": 1.54,
  3558. "curve": [ 0.334, 1.54, 0.367, 0 ]
  3559. },
  3560. { "time": 0.4, "value": -1.23 }
  3561. ],
  3562. "translate": [
  3563. { "x": -9.84 }
  3564. ]
  3565. },
  3566. "body-up": {
  3567. "translate": [
  3568. { "y": -4.7 }
  3569. ]
  3570. },
  3571. "face-holder": {
  3572. "translate": [
  3573. { "x": -1.57 },
  3574. { "time": 0.2, "x": -1.57, "y": -7.06 },
  3575. { "time": 0.4, "x": -1.57 }
  3576. ]
  3577. },
  3578. "small-drop-line3": {
  3579. "rotate": [
  3580. { "value": 201.78 },
  3581. { "time": 0.4, "value": 306.34 }
  3582. ],
  3583. "translate": [
  3584. { "y": 141.12 },
  3585. { "time": 0.1333, "x": -79.64, "y": 154.29 },
  3586. { "time": 0.4, "x": -261.86, "y": 145.82 }
  3587. ]
  3588. },
  3589. "small-drop-line2": {
  3590. "rotate": [
  3591. { "value": 129.07 },
  3592. { "time": 0.2667, "value": 51.51 },
  3593. { "time": 0.3, "value": 158.15 },
  3594. { "time": 0.4, "value": 129.07 }
  3595. ],
  3596. "translate": [
  3597. { "x": 176.47, "y": 140.83 },
  3598. { "time": 0.1, "x": 243.05, "y": 164.89 },
  3599. { "time": 0.2667, "x": 366.91, "y": 131.71 },
  3600. { "time": 0.3, "x": 105.06, "y": 144.26 },
  3601. { "time": 0.4, "x": 176.47, "y": 140.83 }
  3602. ]
  3603. },
  3604. "small-drop-line1": {
  3605. "rotate": [
  3606. { "value": 230.88 },
  3607. { "time": 0.0667, "value": 239.96 },
  3608. { "time": 0.1, "value": 190 },
  3609. { "time": 0.4, "value": 230.88 }
  3610. ],
  3611. "translate": [
  3612. { "x": -74.27, "y": 244.18 },
  3613. { "time": 0.0667, "x": -101.92, "y": 264.99 },
  3614. { "time": 0.1, "x": 50.18, "y": 150.53 },
  3615. { "time": 0.4, "x": -74.27, "y": 244.18 }
  3616. ]
  3617. },
  3618. "blush-r": {
  3619. "scale": [
  3620. { "x": 1.614, "y": 1.614 }
  3621. ]
  3622. },
  3623. "blush-l": {
  3624. "scale": [
  3625. { "x": 1.614, "y": 1.614 }
  3626. ]
  3627. },
  3628. "hips": {
  3629. "translate": [
  3630. {
  3631. "x": 2.27,
  3632. "curve": [ 0.065, 2.27, 0.135, -3.4, 0.065, 0, 0.135, 0 ]
  3633. },
  3634. {
  3635. "time": 0.2,
  3636. "x": -3.4,
  3637. "curve": [ 0.265, -3.4, 0.335, 2.27, 0.265, 0, 0.335, 0 ]
  3638. },
  3639. { "time": 0.4, "x": 2.27 }
  3640. ]
  3641. }
  3642. }
  3643. },
  3644. "emotes/hooray": {
  3645. "slots": {
  3646. "eye-l": {
  3647. "attachment": [
  3648. { "name": "eye-reverse-v" }
  3649. ]
  3650. },
  3651. "eye-r": {
  3652. "attachment": [
  3653. { "name": "eye-reverse-v" }
  3654. ]
  3655. },
  3656. "mouth": {
  3657. "attachment": [
  3658. { "name": "mouth-open-smile" }
  3659. ]
  3660. }
  3661. },
  3662. "bones": {
  3663. "arm-holder-r": {
  3664. "rotate": [
  3665. { "value": 135.9 }
  3666. ],
  3667. "translate": [
  3668. {},
  3669. { "time": 0.3667, "x": -8.01 },
  3670. { "time": 0.5333 }
  3671. ]
  3672. },
  3673. "body-up": {
  3674. "rotate": [
  3675. { "value": 3.61 }
  3676. ]
  3677. },
  3678. "arm-up-l": {
  3679. "rotate": [
  3680. { "value": 3.78 },
  3681. { "time": 0.2333, "value": 12.47 },
  3682. { "time": 0.3667, "value": 3.78 }
  3683. ]
  3684. },
  3685. "head-base": {
  3686. "rotate": [
  3687. { "value": 0.17 }
  3688. ]
  3689. },
  3690. "arm-down-l": {
  3691. "rotate": [
  3692. { "value": -4.29 }
  3693. ]
  3694. },
  3695. "arm-down-r": {
  3696. "rotate": [
  3697. { "value": -9.63 }
  3698. ]
  3699. },
  3700. "arm-up-r": {
  3701. "rotate": [
  3702. { "value": -14.5 },
  3703. { "time": 0.2333, "value": 2.71 },
  3704. { "time": 0.3667, "value": -14.5 }
  3705. ]
  3706. },
  3707. "eyebrow-l": {
  3708. "rotate": [
  3709. { "value": 2.4 },
  3710. { "time": 0.2333, "value": 10.38 },
  3711. { "time": 0.3667, "value": 2.4 }
  3712. ]
  3713. },
  3714. "eyebrow-r": {
  3715. "rotate": [
  3716. { "value": 3.59 },
  3717. { "time": 0.2333, "value": 11.66 },
  3718. { "time": 0.3667, "value": 3.59 }
  3719. ]
  3720. },
  3721. "face-holder": {
  3722. "translate": [
  3723. { "x": 17.15, "y": -14.76 },
  3724. { "time": 0.1667, "x": 23.61, "y": -14.76 },
  3725. { "time": 0.3667, "x": 17.15, "y": -14.76 },
  3726. { "time": 0.4333, "x": -10.79, "y": -14.76 },
  3727. { "time": 0.5333, "x": 17.15, "y": -14.76 }
  3728. ]
  3729. },
  3730. "arm-holder-l": {
  3731. "rotate": [
  3732. { "value": -138.48 }
  3733. ],
  3734. "translate": [
  3735. {},
  3736. { "time": 0.3667, "x": -8.01 },
  3737. { "time": 0.5333 }
  3738. ]
  3739. },
  3740. "hips": {
  3741. "translate": [
  3742. {
  3743. "curve": [ 0.044, 0, 0.089, 0, 0.032, 50.06, 0.089, 80.69 ]
  3744. },
  3745. {
  3746. "time": 0.1333,
  3747. "y": 80.69,
  3748. "curve": [ 0.211, 0, 0.289, 0, 0.311, 80.69, 0.289, -8.23 ]
  3749. },
  3750. {
  3751. "time": 0.3667,
  3752. "y": -8.23,
  3753. "curve": [ 0.422, 0, 0.478, 0, 0.471, -8.23, 0.478, 0 ]
  3754. },
  3755. { "time": 0.5333 }
  3756. ]
  3757. },
  3758. "hair-front": {
  3759. "rotate": [
  3760. {},
  3761. { "time": 0.0667, "value": 5.95 },
  3762. { "time": 0.4333, "value": -31.25 },
  3763. { "time": 0.5333 }
  3764. ],
  3765. "translate": [
  3766. {},
  3767. { "time": 0.1333, "x": -62.66 },
  3768. { "time": 0.3667, "x": 13.99 },
  3769. { "time": 0.5333 }
  3770. ]
  3771. },
  3772. "skirt-side-rotator-r": {
  3773. "rotate": [
  3774. {
  3775. "curve": [ 0.089, 0, 0.178, -21.71 ]
  3776. },
  3777. {
  3778. "time": 0.2667,
  3779. "value": -21.71,
  3780. "curve": [ 0.356, -21.71, 0.444, 0 ]
  3781. },
  3782. { "time": 0.5333 }
  3783. ]
  3784. },
  3785. "skirt-side-rotator-l": {
  3786. "rotate": [
  3787. {
  3788. "curve": [ 0.089, 0, 0.178, 16.73 ]
  3789. },
  3790. {
  3791. "time": 0.2667,
  3792. "value": 16.73,
  3793. "curve": [ 0.356, 16.73, 0.444, 0 ]
  3794. },
  3795. { "time": 0.5333 }
  3796. ]
  3797. },
  3798. "skirt-middle": {
  3799. "translate": [
  3800. {
  3801. "curve": [ 0.033, 0, 0.067, -18.14, 0.033, 0, 0.067, 0 ]
  3802. },
  3803. {
  3804. "time": 0.1,
  3805. "x": -18.14,
  3806. "curve": [ 0.167, -18.14, 0.233, 26.36, 0.167, 0, 0.233, 0 ]
  3807. },
  3808. {
  3809. "time": 0.3,
  3810. "x": 26.36,
  3811. "curve": [ 0.442, 26.36, 0.456, 0, 0.378, 0, 0.456, 0 ]
  3812. },
  3813. { "time": 0.5333 }
  3814. ]
  3815. },
  3816. "hair-back-long-middle": {
  3817. "translate": [
  3818. {},
  3819. { "time": 0.0667, "x": -37.11, "y": 2.45 },
  3820. { "time": 0.3333, "x": 29.59, "y": -1.96 },
  3821. { "time": 0.5333 }
  3822. ],
  3823. "scale": [
  3824. {},
  3825. { "time": 0.0667, "y": 0.868 },
  3826. { "time": 0.3333, "x": 0.763, "y": 1.144 },
  3827. { "time": 0.5333 }
  3828. ]
  3829. },
  3830. "hair-back-long-middle-down": {
  3831. "translate": [
  3832. {},
  3833. { "time": 0.3667, "x": -98.46, "y": 4.66 },
  3834. { "time": 0.5333 }
  3835. ],
  3836. "scale": [
  3837. {},
  3838. { "time": 0.0667, "y": 0.868 },
  3839. { "time": 0.3333, "x": 0.763, "y": 1.144 },
  3840. { "time": 0.5333 }
  3841. ]
  3842. },
  3843. "shadow": {
  3844. "scale": [
  3845. {
  3846. "curve": [ 0.067, 1, 0.133, 0.667, 0.067, 1, 0.133, 0.667 ]
  3847. },
  3848. {
  3849. "time": 0.2,
  3850. "x": 0.667,
  3851. "y": 0.667,
  3852. "curve": [ 0.256, 0.667, 0.311, 1, 0.256, 0.667, 0.311, 1 ]
  3853. },
  3854. { "time": 0.3667 }
  3855. ]
  3856. }
  3857. },
  3858. "ik": {
  3859. "leg-target-r": [
  3860. { "bendPositive": false }
  3861. ]
  3862. }
  3863. },
  3864. "emotes/idea": {
  3865. "slots": {
  3866. "eye-l": {
  3867. "attachment": [
  3868. { "time": 1.2333, "name": "eye-closed-happy" },
  3869. { "time": 1.3667, "name": "eye-dafault" }
  3870. ]
  3871. },
  3872. "eye-r": {
  3873. "attachment": [
  3874. { "time": 1.2333, "name": "eye-closed-happy" },
  3875. { "time": 1.3667, "name": "eye-dafault" }
  3876. ]
  3877. },
  3878. "lamp": {
  3879. "rgba": [
  3880. { "time": 1.3667, "color": "4a4b8b00" },
  3881. { "time": 1.5333, "color": "ffffffff", "curve": "stepped" },
  3882. { "time": 2.2, "color": "ffffffff" },
  3883. { "time": 2.3, "color": "ffffff00" }
  3884. ],
  3885. "attachment": [
  3886. { "time": 1.3667, "name": "common/lamp" }
  3887. ]
  3888. },
  3889. "mouth": {
  3890. "attachment": [
  3891. { "name": "mouth-doubt" },
  3892. { "time": 1.4, "name": "mouth-open-smile" },
  3893. { "time": 3, "name": "mouth-doubt" }
  3894. ]
  3895. }
  3896. },
  3897. "bones": {
  3898. "arm-holder-l": {
  3899. "rotate": [
  3900. { "value": -105.63 }
  3901. ],
  3902. "translate": [
  3903. { "x": 3.76, "y": 13.44 }
  3904. ]
  3905. },
  3906. "arm-down-l": {
  3907. "rotate": [
  3908. { "value": 101.23, "curve": "stepped" },
  3909. {
  3910. "time": 0.3,
  3911. "value": 101.23,
  3912. "curve": [ 0.434, 99.75, 0.389, 86.64 ]
  3913. },
  3914. {
  3915. "time": 0.5333,
  3916. "value": 86.77,
  3917. "curve": [ 0.648, 86.87, 0.61, 101.36 ]
  3918. },
  3919. {
  3920. "time": 0.7333,
  3921. "value": 101.23,
  3922. "curve": [ 0.848, 101.11, 0.81, 86.64 ]
  3923. },
  3924. {
  3925. "time": 0.9333,
  3926. "value": 86.77,
  3927. "curve": [ 1.029, 86.87, 0.997, 101.36 ]
  3928. },
  3929. { "time": 1.1, "value": 101.23, "curve": "stepped" },
  3930. {
  3931. "time": 1.2333,
  3932. "value": 101.23,
  3933. "curve": [ 1.247, 101.22, 1.233, 48.65 ]
  3934. },
  3935. {
  3936. "time": 1.4,
  3937. "value": 48.64,
  3938. "curve": [ 1.916, 48.63, 2.892, 101.23 ]
  3939. },
  3940. { "time": 3, "value": 101.23 }
  3941. ]
  3942. },
  3943. "arm-holder-r": {
  3944. "rotate": [
  3945. { "value": -46.39 }
  3946. ],
  3947. "translate": [
  3948. { "x": -7.67, "y": 7.2 }
  3949. ]
  3950. },
  3951. "arm-down-r": {
  3952. "rotate": [
  3953. { "value": -63.37 }
  3954. ]
  3955. },
  3956. "head-base": {
  3957. "rotate": [
  3958. { "value": -7.68, "curve": "stepped" },
  3959. { "time": 1.2333, "value": -7.68 },
  3960. { "time": 1.4, "value": -11.8 },
  3961. { "time": 3, "value": -7.68 }
  3962. ]
  3963. },
  3964. "face-holder": {
  3965. "translate": [
  3966. { "y": 17.68, "curve": "stepped" },
  3967. { "time": 1.1, "y": 17.68 },
  3968. { "time": 1.2333, "x": -23.9, "y": 17.68 },
  3969. { "time": 1.5, "y": 17.68 }
  3970. ]
  3971. },
  3972. "eyebrow-r": {
  3973. "rotate": [
  3974. { "value": 6.65, "curve": "stepped" },
  3975. { "time": 1.2333, "value": 6.65 },
  3976. { "time": 1.4, "value": 23.91 },
  3977. { "time": 3, "value": 6.65 }
  3978. ],
  3979. "translate": [
  3980. { "time": 1.2333 },
  3981. { "time": 1.4, "x": 6.33 },
  3982. { "time": 3 }
  3983. ]
  3984. },
  3985. "eyebrow-l": {
  3986. "rotate": [
  3987. { "value": 6.79, "curve": "stepped" },
  3988. { "time": 1.2333, "value": 6.79 },
  3989. { "time": 1.4, "value": 24.05 },
  3990. { "time": 3, "value": 6.79 }
  3991. ],
  3992. "translate": [
  3993. { "time": 1.2333 },
  3994. { "time": 1.4, "x": 6.33 },
  3995. { "time": 3 }
  3996. ]
  3997. },
  3998. "leg-up-l": {
  3999. "translate": [
  4000. { "x": 11.23, "y": -0.12 }
  4001. ]
  4002. },
  4003. "leg-up-r": {
  4004. "translate": [
  4005. { "x": 11.02, "y": 0.8 }
  4006. ]
  4007. },
  4008. "body-up": {
  4009. "rotate": [
  4010. { "value": -11.45, "curve": "stepped" },
  4011. { "time": 1.1, "value": -11.45 },
  4012. { "time": 1.2333, "value": -5.22 },
  4013. { "time": 1.5333, "value": -12.75 },
  4014. { "time": 3, "value": -11.45 }
  4015. ]
  4016. },
  4017. "hips": {
  4018. "rotate": [
  4019. { "value": 1.99 }
  4020. ],
  4021. "translate": [
  4022. { "x": -20.3, "y": -3.72, "curve": "stepped" },
  4023. {
  4024. "time": 1.2333,
  4025. "x": -20.3,
  4026. "y": -3.72,
  4027. "curve": [ 1.262, -20.3, 1.242, -2.21, 1.262, -3.72, 1.242, -0.71 ]
  4028. },
  4029. { "time": 1.4, "x": -2.21, "y": -0.71, "curve": "stepped" },
  4030. {
  4031. "time": 2.2,
  4032. "x": -2.21,
  4033. "y": -0.71,
  4034. "curve": [ 2.618, -2.21, 2.546, -20.3, 2.618, -0.71, 2.546, -3.72 ]
  4035. },
  4036. { "time": 3, "x": -20.3, "y": -3.72 }
  4037. ]
  4038. },
  4039. "skirt-side-rotator-r": {
  4040. "rotate": [
  4041. {
  4042. "curve": [ 0.344, 0, 0.689, 0 ]
  4043. },
  4044. {
  4045. "time": 1.0333,
  4046. "curve": [ 1.111, 0, 1.189, -4.83 ]
  4047. },
  4048. {
  4049. "time": 1.2667,
  4050. "value": -4.83,
  4051. "curve": [ 1.356, -4.83, 1.444, 1.8 ]
  4052. },
  4053. {
  4054. "time": 1.5333,
  4055. "value": 1.8,
  4056. "curve": [ 1.633, 1.8, 1.733, -5.88 ]
  4057. },
  4058. {
  4059. "time": 1.8333,
  4060. "value": -5.88,
  4061. "curve": [ 1.934, -5.88, 2.034, -3.84 ]
  4062. },
  4063. {
  4064. "time": 2.1333,
  4065. "value": -3.84,
  4066. "curve": [ 2.422, -3.84, 2.711, 0 ]
  4067. },
  4068. { "time": 3 }
  4069. ]
  4070. },
  4071. "skirt-side-rotator-l": {
  4072. "rotate": [
  4073. {
  4074. "curve": [ 0.344, 0, 0.689, 0 ]
  4075. },
  4076. {
  4077. "time": 1.0333,
  4078. "curve": [ 1.111, 0, 1.189, -4.83 ]
  4079. },
  4080. {
  4081. "time": 1.2667,
  4082. "value": -4.83,
  4083. "curve": [ 1.356, -4.83, 1.444, 1.8 ]
  4084. },
  4085. {
  4086. "time": 1.5333,
  4087. "value": 1.8,
  4088. "curve": [ 1.633, 1.8, 1.733, -5.88 ]
  4089. },
  4090. {
  4091. "time": 1.8333,
  4092. "value": -5.88,
  4093. "curve": [ 1.934, -5.88, 2.034, -3.84 ]
  4094. },
  4095. {
  4096. "time": 2.1333,
  4097. "value": -3.84,
  4098. "curve": [ 2.422, -3.84, 2.711, 0 ]
  4099. },
  4100. { "time": 3 }
  4101. ]
  4102. },
  4103. "effect-head": {
  4104. "translate": [
  4105. { "y": 139.88 },
  4106. {
  4107. "time": 1.3667,
  4108. "y": 99.14,
  4109. "curve": [ 1.678, 0, 1.989, -9.24, 1.367, 161.01, 1.514, 233.2 ]
  4110. },
  4111. { "time": 2.3, "x": -9.24, "y": 234.41 }
  4112. ],
  4113. "scale": [
  4114. {
  4115. "time": 1.3667,
  4116. "x": 0.861,
  4117. "y": 0.861,
  4118. "curve": [ 1.367, 1.21, 1.989, 1.445, 1.367, 1.21, 1.989, 1.445 ]
  4119. },
  4120. { "time": 2.3, "x": 1.445, "y": 1.445 }
  4121. ]
  4122. }
  4123. }
  4124. },
  4125. "emotes/just-right": {
  4126. "slots": {
  4127. "eye-l": {
  4128. "attachment": [
  4129. { "name": "eye-u" }
  4130. ]
  4131. },
  4132. "eye-r": {
  4133. "attachment": [
  4134. { "name": "eye-u" }
  4135. ]
  4136. }
  4137. },
  4138. "bones": {
  4139. "arm-holder-r": {
  4140. "rotate": [
  4141. { "value": 94.41, "curve": "stepped" },
  4142. {
  4143. "time": 1.1,
  4144. "value": 94.41,
  4145. "curve": [ 1.178, 90.75, 1.256, 83.43 ]
  4146. },
  4147. {
  4148. "time": 1.3333,
  4149. "value": 83.43,
  4150. "curve": [ 1.433, 83.43, 1.533, 94.41 ]
  4151. },
  4152. { "time": 1.6333, "value": 94.41 }
  4153. ],
  4154. "translate": [
  4155. { "y": -11.05 }
  4156. ]
  4157. },
  4158. "arm-down-r": {
  4159. "rotate": [
  4160. { "value": 64.84 },
  4161. { "time": 0.3, "value": 75.92 },
  4162. { "time": 0.5, "value": 55.67 },
  4163. { "time": 0.6667, "value": 57.69 },
  4164. { "time": 0.8333, "value": 62.98 },
  4165. { "time": 1, "value": 55.22 },
  4166. { "time": 1.1667, "value": 55.22 },
  4167. { "time": 1.4, "value": 64.84 }
  4168. ]
  4169. },
  4170. "arm-down-l": {
  4171. "rotate": [
  4172. { "value": -137.24 },
  4173. { "time": 0.6333, "value": -143.76, "curve": "stepped" },
  4174. { "time": 1, "value": -143.76 },
  4175. { "time": 1.4, "value": -137.24 }
  4176. ]
  4177. },
  4178. "arm-holder-l": {
  4179. "rotate": [
  4180. { "value": -9.35 }
  4181. ]
  4182. },
  4183. "face-holder": {
  4184. "translate": [
  4185. {
  4186. "x": -14.65,
  4187. "y": 11.95,
  4188. "curve": [ 0.1, -11.62, 0.178, -10.67, 0.1, 7.22, 0.178, -4.18 ]
  4189. },
  4190. {
  4191. "time": 0.2667,
  4192. "x": -7.25,
  4193. "y": 0.39,
  4194. "curve": [ 0.416, -1.5, 0.533, 6.81, 0.416, 8.07, 0.533, 19.17 ]
  4195. },
  4196. { "time": 0.6667, "x": 6.81, "y": 19.17, "curve": "stepped" },
  4197. {
  4198. "time": 1,
  4199. "x": 6.81,
  4200. "y": 19.17,
  4201. "curve": [ 1.065, 6.81, 1.117, 2.71, 1.06, 19.17, 1.115, 13.19 ]
  4202. },
  4203. {
  4204. "time": 1.1667,
  4205. "x": -2.45,
  4206. "y": 12.62,
  4207. "curve": [ 1.235, -9.38, 1.302, -17.63, 1.243, 11.82, 1.316, 15.94 ]
  4208. },
  4209. { "time": 1.4, "x": -14.65, "y": 11.95 }
  4210. ]
  4211. },
  4212. "head-base": {
  4213. "rotate": [
  4214. { "value": -6.07, "curve": "stepped" },
  4215. { "time": 0.6667, "value": -6.07 },
  4216. { "time": 1, "value": -7.24 },
  4217. { "time": 1.4, "value": -6.07 }
  4218. ]
  4219. },
  4220. "eyebrow-r": {
  4221. "rotate": [
  4222. { "value": 13.51 },
  4223. { "time": 0.6333, "value": 23.84, "curve": "stepped" },
  4224. { "time": 1, "value": 23.84 },
  4225. { "time": 1.3, "value": 6.96 },
  4226. { "time": 1.6333, "value": 13.51 }
  4227. ],
  4228. "translate": [
  4229. { "x": -12.21, "y": 1.3 }
  4230. ],
  4231. "scale": [
  4232. { "y": -1 }
  4233. ]
  4234. },
  4235. "eyebrow-l": {
  4236. "rotate": [
  4237. { "value": 14.93 },
  4238. { "time": 0.6333, "value": 22.41, "curve": "stepped" },
  4239. { "time": 1, "value": 22.41 },
  4240. { "time": 1.3, "value": 5.86 },
  4241. { "time": 1.6333, "value": 14.93 }
  4242. ],
  4243. "translate": [
  4244. { "x": -12.21, "y": -1.3 }
  4245. ],
  4246. "scale": [
  4247. { "y": -1 }
  4248. ]
  4249. },
  4250. "mouth": {
  4251. "scale": [
  4252. {},
  4253. { "time": 0.6667, "x": 0.74, "y": 1.307, "curve": "stepped" },
  4254. { "time": 0.9, "x": 0.74, "y": 1.307 },
  4255. { "time": 1.1667 }
  4256. ]
  4257. },
  4258. "arm-up-r": {
  4259. "rotate": [
  4260. {},
  4261. { "time": 0.3, "value": -8.3 },
  4262. { "time": 0.6667 }
  4263. ]
  4264. },
  4265. "body-up": {
  4266. "rotate": [
  4267. { "value": -3.77 },
  4268. { "time": 0.6667, "value": 2.9, "curve": "stepped" },
  4269. { "time": 1, "value": 2.9 },
  4270. { "time": 1.4, "value": -3.77 }
  4271. ]
  4272. }
  4273. }
  4274. },
  4275. "emotes/laugh": {
  4276. "slots": {
  4277. "eye-l": {
  4278. "attachment": [
  4279. { "name": "eye-reverse-v" }
  4280. ]
  4281. },
  4282. "eye-r": {
  4283. "attachment": [
  4284. { "name": "eye-reverse-v" }
  4285. ]
  4286. },
  4287. "mouth": {
  4288. "attachment": [
  4289. { "name": "mouth-open-smile" }
  4290. ]
  4291. }
  4292. },
  4293. "bones": {
  4294. "arm-up-l": {
  4295. "rotate": [
  4296. { "value": 30.67 }
  4297. ]
  4298. },
  4299. "arm-down-l": {
  4300. "rotate": [
  4301. { "value": -87.6 }
  4302. ]
  4303. },
  4304. "arm-up-r": {
  4305. "rotate": [
  4306. { "value": 36.64 }
  4307. ]
  4308. },
  4309. "arm-down-r": {
  4310. "rotate": [
  4311. { "value": -93.4 }
  4312. ]
  4313. },
  4314. "body-up": {
  4315. "translate": [
  4316. {
  4317. "curve": [ 0.051, 0, 0.116, 0, 0.083, 0, 0.116, 7.79 ]
  4318. },
  4319. {
  4320. "time": 0.1667,
  4321. "y": 7.79,
  4322. "curve": [ 0.238, 0, 0.295, 0, 0.282, 7.79, 0.295, 0 ]
  4323. },
  4324. { "time": 0.3667 }
  4325. ]
  4326. },
  4327. "head-base": {
  4328. "translate": [
  4329. {
  4330. "x": 1.44,
  4331. "curve": [ 0.036, 0.8, 0.057, 0, 0.032, 0, 0.064, 0 ]
  4332. },
  4333. {
  4334. "time": 0.1,
  4335. "curve": [ 0.183, 0, 0.216, 2.23, 0.151, 0, 0.216, 0 ]
  4336. },
  4337. {
  4338. "time": 0.2667,
  4339. "x": 2.23,
  4340. "curve": [ 0.313, 2.23, 0.343, 1.87, 0.302, 0, 0.335, 0 ]
  4341. },
  4342. { "time": 0.3667, "x": 1.44 }
  4343. ]
  4344. },
  4345. "face-holder": {
  4346. "translate": [
  4347. {
  4348. "x": 3.94,
  4349. "curve": [ 0.058, 0.87, 0.079, -5.56, 0.044, 0, 0.085, 0 ]
  4350. },
  4351. {
  4352. "time": 0.1333,
  4353. "x": -5.56,
  4354. "curve": [ 0.216, -5.56, 0.249, 5.56, 0.184, 0, 0.249, 0 ]
  4355. },
  4356. {
  4357. "time": 0.3,
  4358. "x": 5.56,
  4359. "curve": [ 0.327, 5.56, 0.349, 4.9, 0.324, 0, 0.346, 0 ]
  4360. },
  4361. { "time": 0.3667, "x": 3.94 }
  4362. ]
  4363. },
  4364. "eyebrow-l": {
  4365. "rotate": [
  4366. { "value": 9.75 }
  4367. ]
  4368. },
  4369. "eyebrow-r": {
  4370. "rotate": [
  4371. { "value": 13.01 }
  4372. ]
  4373. }
  4374. }
  4375. },
  4376. "emotes/love": {
  4377. "slots": {
  4378. "eye-l": {
  4379. "attachment": [
  4380. { "name": "eye-heart" }
  4381. ]
  4382. },
  4383. "eye-r": {
  4384. "attachment": [
  4385. { "name": "eye-heart" }
  4386. ]
  4387. },
  4388. "small-drop-line": {
  4389. "rgba": [
  4390. {
  4391. "color": "ffffff00",
  4392. "curve": [ 0.022, 1, 0.044, 1, 0.022, 1, 0.044, 1, 0.022, 1, 0.044, 1, 0.018, 0.19, 0.025, 0.94 ]
  4393. },
  4394. { "time": 0.0667, "color": "ffffffff", "curve": "stepped" },
  4395. { "time": 0.3667, "color": "ffffffff" },
  4396. { "time": 0.4333, "color": "ffffff00", "curve": "stepped" },
  4397. {
  4398. "time": 0.4667,
  4399. "color": "ffffff00",
  4400. "curve": [ 0.489, 1, 0.511, 1, 0.489, 1, 0.511, 1, 0.489, 1, 0.511, 1, 0.485, 0.19, 0.491, 0.94 ]
  4401. },
  4402. { "time": 0.5333, "color": "ffffffff", "curve": "stepped" },
  4403. { "time": 0.8333, "color": "ffffffff" },
  4404. { "time": 0.9, "color": "ffffff00" }
  4405. ],
  4406. "attachment": [
  4407. { "name": "common/eye-heart" }
  4408. ]
  4409. },
  4410. "small-drop-line-l": {
  4411. "rgba": [
  4412. { "color": "ffffff00", "curve": "stepped" },
  4413. {
  4414. "time": 0.0333,
  4415. "color": "ffffff00",
  4416. "curve": [ 0.056, 1, 0.078, 1, 0.056, 1, 0.078, 1, 0.056, 1, 0.078, 1, 0.052, 0.19, 0.058, 0.94 ]
  4417. },
  4418. { "time": 0.1, "color": "ffffffff", "curve": "stepped" },
  4419. { "time": 0.4, "color": "ffffffff" },
  4420. { "time": 0.4667, "color": "ffffff00", "curve": "stepped" },
  4421. {
  4422. "time": 0.5,
  4423. "color": "ffffff00",
  4424. "curve": [ 0.522, 1, 0.544, 1, 0.522, 1, 0.544, 1, 0.522, 1, 0.544, 1, 0.518, 0.19, 0.525, 0.94 ]
  4425. },
  4426. { "time": 0.5667, "color": "ffffffff", "curve": "stepped" },
  4427. { "time": 0.8667, "color": "ffffffff" },
  4428. { "time": 0.9333, "color": "ffffff00" }
  4429. ],
  4430. "attachment": [
  4431. { "time": 0.0333, "name": "common/eye-heart" }
  4432. ]
  4433. },
  4434. "small-drop-line3": {
  4435. "rgba": [
  4436. { "color": "ffffff00", "curve": "stepped" },
  4437. {
  4438. "time": 0.0333,
  4439. "color": "ffffff00",
  4440. "curve": [ 0.056, 1, 0.078, 1, 0.056, 1, 0.078, 1, 0.056, 1, 0.078, 1, 0.052, 0.19, 0.058, 0.94 ]
  4441. },
  4442. { "time": 0.1, "color": "ffffffff", "curve": "stepped" },
  4443. { "time": 0.4, "color": "ffffffff" },
  4444. { "time": 0.4667, "color": "ffffff00", "curve": "stepped" },
  4445. {
  4446. "time": 0.5,
  4447. "color": "ffffff00",
  4448. "curve": [ 0.522, 1, 0.544, 1, 0.522, 1, 0.544, 1, 0.522, 1, 0.544, 1, 0.518, 0.19, 0.525, 0.94 ]
  4449. },
  4450. { "time": 0.5667, "color": "ffffffff", "curve": "stepped" },
  4451. { "time": 0.8667, "color": "ffffffff" },
  4452. { "time": 0.9333, "color": "ffffff00" }
  4453. ],
  4454. "attachment": [
  4455. { "time": 0.0333, "name": "common/eye-heart" }
  4456. ]
  4457. }
  4458. },
  4459. "bones": {
  4460. "arm-holder-l": {
  4461. "rotate": [
  4462. { "value": -171.66 }
  4463. ],
  4464. "translate": [
  4465. { "x": -19.64, "y": 4.71 }
  4466. ]
  4467. },
  4468. "arm-down-l": {
  4469. "rotate": [
  4470. {
  4471. "value": -47.87,
  4472. "curve": [ 0.167, -47.87, 0.333, -39.16 ]
  4473. },
  4474. {
  4475. "time": 0.5,
  4476. "value": -39.16,
  4477. "curve": [ 0.644, -39.16, 0.789, -47.87 ]
  4478. },
  4479. { "time": 0.9333, "value": -47.87 }
  4480. ],
  4481. "translate": [
  4482. {
  4483. "x": -31.1,
  4484. "y": 2.94,
  4485. "curve": [ 0.2, -31.1, 0.4, -41.13, 0.2, 2.94, 0.4, -0.03 ]
  4486. },
  4487. {
  4488. "time": 0.6,
  4489. "x": -41.13,
  4490. "y": -0.03,
  4491. "curve": [ 0.711, -41.13, 0.822, -31.1, 0.711, -0.03, 0.822, 2.94 ]
  4492. },
  4493. { "time": 0.9333, "x": -31.1, "y": 2.94 }
  4494. ]
  4495. },
  4496. "arm-holder-r": {
  4497. "rotate": [
  4498. { "value": 149.84 },
  4499. { "time": 0.5, "value": 155.95 },
  4500. { "time": 0.9333, "value": 149.84 }
  4501. ],
  4502. "translate": [
  4503. { "x": -1.28, "y": -2.21 }
  4504. ]
  4505. },
  4506. "arm-down-r": {
  4507. "rotate": [
  4508. {
  4509. "value": -44.63,
  4510. "curve": [ 0.167, -44.63, 0.333, -51.01 ]
  4511. },
  4512. {
  4513. "time": 0.5,
  4514. "value": -51.01,
  4515. "curve": [ 0.644, -51.01, 0.789, -44.63 ]
  4516. },
  4517. { "time": 0.9333, "value": -44.63 }
  4518. ],
  4519. "translate": [
  4520. {
  4521. "x": -28.82,
  4522. "y": 3.17,
  4523. "curve": [ 0.2, -28.82, 0.4, -39.27, 0.2, 3.17, 0.4, 3.73 ]
  4524. },
  4525. {
  4526. "time": 0.6,
  4527. "x": -39.27,
  4528. "y": 3.73,
  4529. "curve": [ 0.711, -39.27, 0.822, -28.82, 0.711, 3.73, 0.822, 3.17 ]
  4530. },
  4531. { "time": 0.9333, "x": -28.82, "y": 3.17 }
  4532. ],
  4533. "scale": [
  4534. { "x": 0.878 }
  4535. ]
  4536. },
  4537. "head-base": {
  4538. "rotate": [
  4539. {
  4540. "value": 9.05,
  4541. "curve": [ 0.156, 9.05, 0.311, 6.84 ]
  4542. },
  4543. { "time": 0.4667, "value": 6.84, "curve": "stepped" },
  4544. {
  4545. "time": 0.7,
  4546. "value": 6.84,
  4547. "curve": [ 0.778, 6.84, 0.856, 9.05 ]
  4548. },
  4549. { "time": 0.9333, "value": 9.05 }
  4550. ],
  4551. "translate": [
  4552. { "x": -11.55, "y": -1.75 },
  4553. { "time": 0.6667, "x": -1.52, "y": -0.54 },
  4554. { "time": 0.9333, "x": -11.55, "y": -1.75 }
  4555. ]
  4556. },
  4557. "arm-up-r": {
  4558. "rotate": [
  4559. { "value": 20.36 }
  4560. ]
  4561. },
  4562. "face-holder": {
  4563. "translate": [
  4564. { "x": 11.35, "y": -1.31 },
  4565. { "time": 0.1333, "x": 12.8, "y": 6.71 },
  4566. { "time": 0.2333, "x": 13.88, "y": -9.8 },
  4567. { "time": 0.3333, "x": 14.96, "y": 7.63 },
  4568. { "time": 0.4667, "x": 16.4, "y": -1.31 },
  4569. { "time": 0.9333, "x": 11.35, "y": -1.31 }
  4570. ]
  4571. },
  4572. "body-up": {
  4573. "rotate": [
  4574. { "value": 7.46 }
  4575. ]
  4576. },
  4577. "hips": {
  4578. "rotate": [
  4579. { "value": 0.7 }
  4580. ],
  4581. "translate": [
  4582. { "x": 25.09, "y": 1.22 },
  4583. { "time": 0.4333, "x": 16.25, "y": 1.11 },
  4584. { "time": 0.9, "x": 25.09, "y": 1.22 }
  4585. ]
  4586. },
  4587. "eyebrow-l": {
  4588. "rotate": [
  4589. { "value": 11.16 }
  4590. ]
  4591. },
  4592. "eyebrow-r": {
  4593. "rotate": [
  4594. { "value": 11.76 }
  4595. ]
  4596. },
  4597. "small-drop-line1": {
  4598. "rotate": [
  4599. { "value": 21.46 }
  4600. ],
  4601. "translate": [
  4602. {
  4603. "x": -47.03,
  4604. "y": 163.33,
  4605. "curve": [ 0.118, -52.13, 0.161, -72.98, 0.118, 176.33, 0.161, 229.35 ]
  4606. },
  4607. { "time": 0.4333, "x": -74.5, "y": 233.22 },
  4608. {
  4609. "time": 0.4667,
  4610. "x": -47.03,
  4611. "y": 163.33,
  4612. "curve": [ 0.585, -52.13, 0.628, -72.98, 0.585, 176.33, 0.628, 229.35 ]
  4613. },
  4614. { "time": 0.9, "x": -74.5, "y": 233.22 },
  4615. { "time": 0.9333, "x": -47.03, "y": 163.33 }
  4616. ],
  4617. "scale": [
  4618. { "x": 1.445, "y": 1.445 }
  4619. ]
  4620. },
  4621. "small-drop-line2": {
  4622. "rotate": [
  4623. { "value": 43.03 }
  4624. ],
  4625. "translate": [
  4626. { "x": -208.55, "y": 164.01 },
  4627. {
  4628. "time": 0.0333,
  4629. "x": -149.83,
  4630. "y": 101.1,
  4631. "curve": [ 0.152, -160.75, 0.322, -208.55, 0.152, 112.8, 0.322, 164.01 ]
  4632. },
  4633. { "time": 0.4667, "x": -208.55, "y": 164.01 },
  4634. {
  4635. "time": 0.5,
  4636. "x": -149.83,
  4637. "y": 101.1,
  4638. "curve": [ 0.618, -160.75, 0.661, -205.3, 0.618, 112.8, 0.661, 160.53 ]
  4639. },
  4640. { "time": 0.9333, "x": -208.55, "y": 164.01 }
  4641. ],
  4642. "scale": [
  4643. { "x": 1.445, "y": 1.445 }
  4644. ]
  4645. },
  4646. "small-drop-line3": {
  4647. "rotate": [
  4648. { "value": -6.28 }
  4649. ],
  4650. "translate": [
  4651. { "x": 70.03, "y": 236.22 },
  4652. {
  4653. "time": 0.0333,
  4654. "x": 63.34,
  4655. "y": 175.41,
  4656. "curve": [ 0.152, 64.59, 0.322, 70.03, 0.152, 186.72, 0.322, 236.22 ]
  4657. },
  4658. { "time": 0.4667, "x": 70.03, "y": 236.22 },
  4659. {
  4660. "time": 0.5,
  4661. "x": 63.34,
  4662. "y": 175.41,
  4663. "curve": [ 0.618, 64.59, 0.661, 69.66, 0.618, 186.72, 0.661, 232.86 ]
  4664. },
  4665. { "time": 0.9333, "x": 70.03, "y": 236.22 }
  4666. ],
  4667. "scale": [
  4668. { "x": 1.445, "y": 1.445 }
  4669. ]
  4670. }
  4671. }
  4672. },
  4673. "emotes/scared": {
  4674. "slots": {
  4675. "big-purple-fear": {
  4676. "attachment": [
  4677. { "name": "common/big-purple-fear" }
  4678. ]
  4679. },
  4680. "eye-l": {
  4681. "attachment": [
  4682. { "name": "eye-x" }
  4683. ]
  4684. },
  4685. "eye-r": {
  4686. "attachment": [
  4687. { "name": "eye-x" }
  4688. ]
  4689. },
  4690. "mouth": {
  4691. "attachment": [
  4692. { "name": "mouth-rectangle" }
  4693. ]
  4694. },
  4695. "purple-fear-lines": {
  4696. "attachment": [
  4697. { "name": "common/purple-fear-lines" }
  4698. ]
  4699. },
  4700. "small-purple-fear": {
  4701. "attachment": [
  4702. { "name": "common/small-purple-fear" }
  4703. ]
  4704. }
  4705. },
  4706. "bones": {
  4707. "eyebrow-l": {
  4708. "rotate": [
  4709. { "value": 13.82 }
  4710. ]
  4711. },
  4712. "eyebrow-r": {
  4713. "rotate": [
  4714. { "value": 11.58 }
  4715. ]
  4716. },
  4717. "head-base": {
  4718. "translate": [
  4719. { "x": -4.27 }
  4720. ]
  4721. },
  4722. "arm-holder-l": {
  4723. "rotate": [
  4724. { "value": -26.87 }
  4725. ],
  4726. "translate": [
  4727. { "y": 9.3 }
  4728. ]
  4729. },
  4730. "arm-holder-r": {
  4731. "rotate": [
  4732. { "value": 25.4 }
  4733. ],
  4734. "translate": [
  4735. { "y": -12.68 }
  4736. ]
  4737. },
  4738. "arm-up-l": {
  4739. "rotate": [
  4740. {},
  4741. { "time": 0.0667, "value": 2.25 },
  4742. { "time": 0.1667 }
  4743. ]
  4744. },
  4745. "arm-up-r": {
  4746. "rotate": [
  4747. {},
  4748. { "time": 0.0667, "value": 5.63 },
  4749. { "time": 0.1667 }
  4750. ]
  4751. },
  4752. "face-holder": {
  4753. "translate": [
  4754. {},
  4755. { "time": 0.0667, "x": -1.42 },
  4756. { "time": 0.1667 }
  4757. ]
  4758. },
  4759. "hips": {
  4760. "translate": [
  4761. { "x": -1.42 },
  4762. { "time": 0.0667, "x": -4.27 },
  4763. { "time": 0.1333 },
  4764. { "time": 0.1667, "x": -1.42 }
  4765. ]
  4766. }
  4767. }
  4768. },
  4769. "emotes/see-no-evil": {
  4770. "slots": {
  4771. "eye-l": {
  4772. "attachment": [
  4773. { "name": "eye-equal" }
  4774. ]
  4775. },
  4776. "eye-r": {
  4777. "attachment": [
  4778. { "name": "eye-equal" }
  4779. ]
  4780. },
  4781. "mouth": {
  4782. "attachment": [
  4783. { "name": "mouth-reverse-v" }
  4784. ]
  4785. }
  4786. },
  4787. "bones": {
  4788. "arm-holder-l": {
  4789. "rotate": [
  4790. { "value": 184.78 }
  4791. ]
  4792. },
  4793. "arm-holder-r": {
  4794. "rotate": [
  4795. { "value": -186.56 }
  4796. ]
  4797. },
  4798. "face-holder": {
  4799. "translate": [
  4800. {
  4801. "x": -14.36,
  4802. "curve": [ 0.067, -14.36, 0.133, -21.66, 0.067, 0, 0.133, 0 ]
  4803. },
  4804. {
  4805. "time": 0.2,
  4806. "x": -21.66,
  4807. "curve": [ 0.244, -21.66, 0.289, -21.66, 0.244, 0, 0.289, 10.94 ]
  4808. },
  4809. {
  4810. "time": 0.3333,
  4811. "x": -21.66,
  4812. "y": 10.94,
  4813. "curve": [ 0.378, -21.66, 0.422, -21.66, 0.378, 10.94, 0.422, -9.44 ]
  4814. },
  4815. {
  4816. "time": 0.4667,
  4817. "x": -21.66,
  4818. "y": -9.44,
  4819. "curve": [ 0.5, -21.66, 0.533, -21.66, 0.5, -9.44, 0.533, 7.36 ]
  4820. },
  4821. {
  4822. "time": 0.5667,
  4823. "x": -21.66,
  4824. "y": 7.36,
  4825. "curve": [ 0.611, -21.66, 0.656, -21.66, 0.611, 7.36, 0.656, 0 ]
  4826. },
  4827. {
  4828. "time": 0.7,
  4829. "x": -21.66,
  4830. "curve": [ 0.8, -21.66, 0.9, -14.36, 0.8, 0, 0.9, 0 ]
  4831. },
  4832. { "time": 1, "x": -14.36 }
  4833. ]
  4834. },
  4835. "arm-up-l": {
  4836. "rotate": [
  4837. { "value": -25.75 }
  4838. ]
  4839. },
  4840. "arm-down-l": {
  4841. "rotate": [
  4842. { "value": 54.56 }
  4843. ]
  4844. },
  4845. "arm-up-r": {
  4846. "rotate": [
  4847. { "value": -22.79 }
  4848. ]
  4849. },
  4850. "arm-down-r": {
  4851. "rotate": [
  4852. { "value": 50.99 }
  4853. ]
  4854. },
  4855. "eyebrow-r": {
  4856. "rotate": [
  4857. { "value": 19.03 }
  4858. ]
  4859. },
  4860. "eyebrow-l": {
  4861. "rotate": [
  4862. { "value": 16.74 }
  4863. ]
  4864. },
  4865. "body-up": {
  4866. "translate": [
  4867. {
  4868. "curve": [ 0.067, 0, 0.133, 0, 0.067, 0, 0.133, -5.47 ]
  4869. },
  4870. { "time": 0.2, "y": -5.47, "curve": "stepped" },
  4871. {
  4872. "time": 0.7,
  4873. "y": -5.47,
  4874. "curve": [ 0.8, 0, 0.9, 0, 0.8, -5.47, 0.9, 0 ]
  4875. },
  4876. { "time": 1, "curve": "stepped" },
  4877. { "time": 1.3333 }
  4878. ]
  4879. }
  4880. }
  4881. },
  4882. "emotes/shrug": {
  4883. "slots": {
  4884. "mouth": {
  4885. "attachment": [
  4886. { "name": "mouth-bracket" }
  4887. ]
  4888. }
  4889. },
  4890. "bones": {
  4891. "arm-up-l": {
  4892. "rotate": [
  4893. { "value": 47.9 }
  4894. ]
  4895. },
  4896. "arm-up-r": {
  4897. "rotate": [
  4898. { "value": 45.86 }
  4899. ]
  4900. },
  4901. "arm-down-l": {
  4902. "rotate": [
  4903. { "value": 81.86 }
  4904. ]
  4905. },
  4906. "arm-down-r": {
  4907. "rotate": [
  4908. { "value": 76.61 }
  4909. ]
  4910. },
  4911. "arm-holder-r": {
  4912. "translate": [
  4913. {
  4914. "curve": [ 0.23, 0, 0.072, 7.1, 0.089, 0, 0.178, 0 ]
  4915. },
  4916. {
  4917. "time": 0.2667,
  4918. "x": 7.1,
  4919. "curve": [ 0.525, 7.1, 0.348, 0, 0.367, 0, 0.467, 0 ]
  4920. },
  4921. { "time": 0.5667 }
  4922. ]
  4923. },
  4924. "arm-holder-l": {
  4925. "translate": [
  4926. {
  4927. "curve": [ 0.23, 0, 0.072, 7.1, 0.089, 0, 0.178, 0 ]
  4928. },
  4929. {
  4930. "time": 0.2667,
  4931. "x": 7.1,
  4932. "curve": [ 0.525, 7.1, 0.348, 0, 0.367, 0, 0.467, 0 ]
  4933. },
  4934. { "time": 0.5667 }
  4935. ]
  4936. },
  4937. "head-base": {
  4938. "translate": [
  4939. {
  4940. "curve": [ 0.23, 0, 0.072, -5.92, 0.089, 0, 0.178, 0 ]
  4941. },
  4942. {
  4943. "time": 0.2667,
  4944. "x": -5.92,
  4945. "curve": [ 0.525, -5.92, 0.348, 0, 0.367, 0, 0.467, 0 ]
  4946. },
  4947. { "time": 0.5667, "curve": "stepped" },
  4948. { "time": 1.1667 }
  4949. ]
  4950. },
  4951. "face-holder": {
  4952. "translate": [
  4953. {},
  4954. { "time": 0.2667, "x": 4.86 },
  4955. { "time": 0.6333 }
  4956. ]
  4957. }
  4958. }
  4959. },
  4960. "emotes/sulk": {
  4961. "slots": {
  4962. "eye-l": {
  4963. "attachment": [
  4964. { "name": "eye-3" }
  4965. ]
  4966. },
  4967. "eye-r": {
  4968. "attachment": [
  4969. { "name": "eye-3" }
  4970. ]
  4971. },
  4972. "mouth": {
  4973. "attachment": [
  4974. { "name": "mouth-3" }
  4975. ]
  4976. }
  4977. },
  4978. "bones": {
  4979. "eye-animator-r": {
  4980. "scale": [
  4981. { "y": -1 }
  4982. ]
  4983. },
  4984. "mouth": {
  4985. "scale": [
  4986. { "y": 0.922 },
  4987. { "time": 0.2667, "y": 1.16 },
  4988. { "time": 0.5667, "y": 0.922 },
  4989. { "time": 0.8333, "y": 1.16 },
  4990. { "time": 1.1333, "y": 0.922 }
  4991. ]
  4992. },
  4993. "arm-down-l": {
  4994. "rotate": [
  4995. { "value": -43.19 }
  4996. ]
  4997. },
  4998. "arm-down-r": {
  4999. "rotate": [
  5000. { "value": 71.44 }
  5001. ]
  5002. },
  5003. "hips": {
  5004. "translate": [
  5005. { "x": -55.43, "y": -144.74 }
  5006. ]
  5007. },
  5008. "leg-target-r": {
  5009. "translate": [
  5010. { "x": 46.47, "y": -35.74 }
  5011. ]
  5012. },
  5013. "leg-r": {
  5014. "translate": [
  5015. { "x": 26.81, "y": -10.72 }
  5016. ]
  5017. },
  5018. "arm-up-r": {
  5019. "rotate": [
  5020. { "value": 7.97 }
  5021. ]
  5022. },
  5023. "body-up": {
  5024. "rotate": [
  5025. { "value": -16.41 }
  5026. ]
  5027. },
  5028. "head-base": {
  5029. "rotate": [
  5030. { "value": 13.73 }
  5031. ],
  5032. "translate": [
  5033. { "y": -16.54 },
  5034. { "time": 0.5333, "x": -3.85, "y": -16.54 },
  5035. { "time": 1.1333, "y": -16.54 }
  5036. ]
  5037. },
  5038. "leg-up-r": {
  5039. "translate": [
  5040. { "x": -0.89 }
  5041. ],
  5042. "scale": [
  5043. { "x": 0.836, "y": 0.904 }
  5044. ]
  5045. },
  5046. "leg-down-l": {
  5047. "scale": [
  5048. { "y": 1.135 }
  5049. ]
  5050. },
  5051. "leg-down-r": {
  5052. "scale": [
  5053. { "x": 1.098, "y": 1.328 }
  5054. ]
  5055. },
  5056. "leg-target-l": {
  5057. "translate": [
  5058. { "x": -2.68, "y": -33.96 }
  5059. ]
  5060. },
  5061. "leg-up-l": {
  5062. "translate": [
  5063. { "x": 37.53, "y": 7.15 }
  5064. ]
  5065. },
  5066. "face-holder": {
  5067. "translate": [
  5068. { "x": -14.63, "y": -28.6 }
  5069. ],
  5070. "scale": [
  5071. { "y": 0.925 }
  5072. ]
  5073. },
  5074. "skirt-side-rotator-r": {
  5075. "rotate": [
  5076. { "value": 13.99 }
  5077. ],
  5078. "scale": [
  5079. { "x": 1.109 }
  5080. ]
  5081. },
  5082. "skirt-side-rotator-l": {
  5083. "rotate": [
  5084. { "value": 19.34 }
  5085. ],
  5086. "scale": [
  5087. { "x": 0.843 }
  5088. ]
  5089. },
  5090. "skirt-middle": {
  5091. "rotate": [
  5092. { "value": 19.37 }
  5093. ],
  5094. "translate": [
  5095. { "x": 11.51, "y": -34.96 }
  5096. ],
  5097. "scale": [
  5098. { "x": -0.031, "y": 0.782 }
  5099. ]
  5100. },
  5101. "hair-back-long-middle": {
  5102. "translate": [
  5103. { "x": 76.82, "y": 28 }
  5104. ],
  5105. "scale": [
  5106. { "x": 0.823, "y": 1.186 }
  5107. ]
  5108. }
  5109. },
  5110. "ik": {
  5111. "leg-target-r": [
  5112. { "bendPositive": false }
  5113. ]
  5114. },
  5115. "drawOrder": [
  5116. {
  5117. "offsets": [
  5118. { "slot": "leg-r", "offset": 8 },
  5119. { "slot": "arm-r", "offset": -40 },
  5120. { "slot": "glove-r", "offset": -35 },
  5121. { "slot": "arm-decoration-r", "offset": -42 },
  5122. { "slot": "bracelet-r", "offset": -36 },
  5123. { "slot": "arm-shoulder-decoration-r", "offset": -34 }
  5124. ]
  5125. }
  5126. ]
  5127. },
  5128. "emotes/sweat": {
  5129. "slots": {
  5130. "big-tear": {
  5131. "rgba": [
  5132. { "color": "ffffff00" },
  5133. { "time": 0.1667, "color": "ffffffff", "curve": "stepped" },
  5134. { "time": 0.6667, "color": "ffffffff" },
  5135. { "time": 0.7667, "color": "ffffff00" }
  5136. ],
  5137. "attachment": [
  5138. { "name": "common/big-tear" }
  5139. ]
  5140. },
  5141. "eye-l": {
  5142. "attachment": [
  5143. { "name": "eye-closed-happy" }
  5144. ]
  5145. },
  5146. "eye-r": {
  5147. "attachment": [
  5148. { "name": "eye-closed-happy" }
  5149. ]
  5150. },
  5151. "mouth": {
  5152. "attachment": [
  5153. { "name": "mouth-line" }
  5154. ]
  5155. }
  5156. },
  5157. "bones": {
  5158. "arm-holder-r": {
  5159. "rotate": [
  5160. { "value": 116.7 }
  5161. ]
  5162. },
  5163. "arm-down-r": {
  5164. "rotate": [
  5165. { "value": 59.22 },
  5166. { "time": 0.4667, "value": 87.36 },
  5167. { "time": 0.9667, "value": 59.22 }
  5168. ]
  5169. },
  5170. "head-base": {
  5171. "translate": [
  5172. { "x": -9.72 }
  5173. ]
  5174. },
  5175. "effect-head": {
  5176. "translate": [
  5177. {
  5178. "y": 52.37,
  5179. "curve": [ 0.233, 0, 0.467, 0, 0.099, -27.85, 0.231, -60.91 ]
  5180. },
  5181. { "time": 0.7, "y": -62.14 }
  5182. ]
  5183. },
  5184. "arm-up-r": {
  5185. "rotate": [
  5186. {},
  5187. { "time": 0.4667, "value": -15.25 },
  5188. { "time": 0.9667 }
  5189. ]
  5190. },
  5191. "face-holder": {
  5192. "translate": [
  5193. {
  5194. "x": -3.52,
  5195. "curve": [ 0.09, -1.77, 0.178, 0, 0.09, 0, 0.178, 0 ]
  5196. },
  5197. {
  5198. "time": 0.2667,
  5199. "curve": [ 0.411, 0, 0.556, -7.05, 0.411, 0, 0.556, 0 ]
  5200. },
  5201. {
  5202. "time": 0.7,
  5203. "x": -7.05,
  5204. "curve": [ 0.789, -7.05, 0.879, -5.3, 0.789, 0, 0.879, 0 ]
  5205. },
  5206. { "time": 0.9667, "x": -3.52 }
  5207. ]
  5208. },
  5209. "hips": {
  5210. "translate": [
  5211. { "y": -9.39 }
  5212. ]
  5213. },
  5214. "leg-up-r": {
  5215. "scale": [
  5216. { "x": 0.962 }
  5217. ]
  5218. },
  5219. "leg-up-l": {
  5220. "scale": [
  5221. { "x": 0.963 }
  5222. ]
  5223. },
  5224. "eyebrow-l": {
  5225. "rotate": [
  5226. { "value": 7.9 }
  5227. ]
  5228. },
  5229. "eyebrow-r": {
  5230. "rotate": [
  5231. { "value": 10.6 }
  5232. ]
  5233. }
  5234. }
  5235. },
  5236. "emotes/thinking": {
  5237. "slots": {
  5238. "mouth": {
  5239. "attachment": [
  5240. { "name": "mouth-doubt" }
  5241. ]
  5242. }
  5243. },
  5244. "bones": {
  5245. "arm-holder-l": {
  5246. "rotate": [
  5247. { "value": -105.63, "curve": "stepped" },
  5248. {
  5249. "time": 1.1,
  5250. "value": -105.63,
  5251. "curve": [ 1.2, -105.63, 1.3, -87.55 ]
  5252. },
  5253. { "time": 1.4, "value": -87.55, "curve": "stepped" },
  5254. { "time": 2.5667, "value": -87.55 },
  5255. { "time": 3, "value": -105.63 }
  5256. ],
  5257. "translate": [
  5258. { "x": 3.76, "y": 13.44 }
  5259. ]
  5260. },
  5261. "arm-down-l": {
  5262. "rotate": [
  5263. { "value": 101.23, "curve": "stepped" },
  5264. {
  5265. "time": 0.3,
  5266. "value": 101.23,
  5267. "curve": [ 0.434, 99.75, 0.389, 86.64 ]
  5268. },
  5269. {
  5270. "time": 0.5333,
  5271. "value": 86.77,
  5272. "curve": [ 0.648, 86.87, 0.61, 101.36 ]
  5273. },
  5274. {
  5275. "time": 0.7333,
  5276. "value": 101.23,
  5277. "curve": [ 0.848, 101.11, 0.81, 86.64 ]
  5278. },
  5279. {
  5280. "time": 0.9333,
  5281. "value": 86.77,
  5282. "curve": [ 1.029, 86.87, 0.997, 101.36 ]
  5283. },
  5284. {
  5285. "time": 1.1,
  5286. "value": 101.23,
  5287. "curve": [ 1.154, 101.17, 1.264, 125.76 ]
  5288. },
  5289. { "time": 1.4, "value": 125.74, "curve": "stepped" },
  5290. {
  5291. "time": 2.5667,
  5292. "value": 125.74,
  5293. "curve": [ 2.786, 125.05, 2.856, 101.23 ]
  5294. },
  5295. { "time": 3, "value": 101.23 }
  5296. ]
  5297. },
  5298. "arm-holder-r": {
  5299. "rotate": [
  5300. { "value": -46.39 }
  5301. ],
  5302. "translate": [
  5303. { "x": -7.67, "y": 7.2 }
  5304. ]
  5305. },
  5306. "arm-down-r": {
  5307. "rotate": [
  5308. { "value": -63.37 }
  5309. ]
  5310. },
  5311. "head-base": {
  5312. "rotate": [
  5313. { "value": -7.68 }
  5314. ]
  5315. },
  5316. "face-holder": {
  5317. "translate": [
  5318. { "y": 17.68, "curve": "stepped" },
  5319. {
  5320. "time": 1.1,
  5321. "y": 17.68,
  5322. "curve": [ 1.2, 0, 1.3, -16.35, 1.2, 17.68, 1.3, 17.68 ]
  5323. },
  5324. {
  5325. "time": 1.4,
  5326. "x": -16.35,
  5327. "y": 17.68,
  5328. "curve": [ 1.511, -16.35, 1.622, -23.96, 1.511, 17.68, 1.622, 17.68 ]
  5329. },
  5330. { "time": 1.7333, "x": -23.96, "y": 17.68, "curve": "stepped" },
  5331. {
  5332. "time": 2.1667,
  5333. "x": -23.96,
  5334. "y": 17.68,
  5335. "curve": [ 2.367, -23.96, 2.428, -16.35, 2.367, 17.68, 2.428, 17.68 ]
  5336. },
  5337. {
  5338. "time": 2.5667,
  5339. "x": -16.35,
  5340. "y": 17.68,
  5341. "curve": [ 2.711, -16.35, 2.856, 0, 2.711, 17.68, 2.856, 17.68 ]
  5342. },
  5343. { "time": 3, "y": 17.68 }
  5344. ]
  5345. },
  5346. "eyebrow-r": {
  5347. "rotate": [
  5348. { "value": 6.65, "curve": "stepped" },
  5349. { "time": 1.1, "value": 6.65 },
  5350. { "time": 1.3667, "value": -3.27, "curve": "stepped" },
  5351. { "time": 2.6667, "value": -3.27 },
  5352. { "time": 3, "value": 6.65 }
  5353. ],
  5354. "translate": [
  5355. { "time": 1.1 },
  5356. { "time": 1.3667, "x": -11.15, "y": -1.01, "curve": "stepped" },
  5357. { "time": 2.6667, "x": -11.15, "y": -1.01 },
  5358. { "time": 3 }
  5359. ]
  5360. },
  5361. "eyebrow-l": {
  5362. "rotate": [
  5363. { "value": 6.79, "curve": "stepped" },
  5364. { "time": 1.1, "value": 6.79 },
  5365. { "time": 1.3667, "value": -1.58, "curve": "stepped" },
  5366. { "time": 2.6667, "value": -1.58 },
  5367. { "time": 3, "value": 6.79 }
  5368. ],
  5369. "translate": [
  5370. { "time": 1.1 },
  5371. { "time": 1.3667, "x": -11.15, "y": -1.04, "curve": "stepped" },
  5372. { "time": 2.6667, "x": -11.15, "y": -1.04 },
  5373. { "time": 3 }
  5374. ]
  5375. },
  5376. "leg-up-l": {
  5377. "translate": [
  5378. { "x": 11.23, "y": -0.12 }
  5379. ]
  5380. },
  5381. "leg-up-r": {
  5382. "translate": [
  5383. { "x": 11.02, "y": 0.8 }
  5384. ]
  5385. },
  5386. "body-up": {
  5387. "rotate": [
  5388. { "value": -11.45, "curve": "stepped" },
  5389. {
  5390. "time": 1.1,
  5391. "value": -11.45,
  5392. "curve": [ 1.2, -11.45, 1.3, 3.54 ]
  5393. },
  5394. { "time": 1.4, "value": 3.54, "curve": "stepped" },
  5395. { "time": 2.5667, "value": 3.54 },
  5396. { "time": 3, "value": -11.45 }
  5397. ]
  5398. },
  5399. "hips": {
  5400. "rotate": [
  5401. { "value": 1.99, "curve": "stepped" },
  5402. {
  5403. "time": 1.1,
  5404. "value": 1.99,
  5405. "curve": [ 1.2, 1.99, 1.3, 5.67 ]
  5406. },
  5407. { "time": 1.4, "value": 5.67, "curve": "stepped" },
  5408. { "time": 2.5667, "value": 5.67 },
  5409. { "time": 3, "value": 1.99 }
  5410. ],
  5411. "translate": [
  5412. { "x": -20.3, "y": -3.72, "curve": "stepped" },
  5413. {
  5414. "time": 1.1,
  5415. "x": -20.3,
  5416. "y": -3.72,
  5417. "curve": [ 1.2, -20.3, 1.3, 8.71, 1.2, -3.72, 1.3, -2.71 ]
  5418. },
  5419. { "time": 1.4, "x": 8.71, "y": -2.71, "curve": "stepped" },
  5420. { "time": 2.5667, "x": 8.71, "y": -2.71 },
  5421. { "time": 3, "x": -20.3, "y": -3.72 }
  5422. ]
  5423. },
  5424. "skirt-side-rotator-r": {
  5425. "rotate": [
  5426. {
  5427. "curve": [ 0.056, 0, 0.111, 1.3 ]
  5428. },
  5429. {
  5430. "time": 0.1667,
  5431. "value": 1.3,
  5432. "curve": [ 0.256, 1.3, 0.344, 0 ]
  5433. },
  5434. { "time": 0.4333, "curve": "stepped" },
  5435. {
  5436. "time": 1.0333,
  5437. "curve": [ 1.111, 0, 1.189, -4.83 ]
  5438. },
  5439. {
  5440. "time": 1.2667,
  5441. "value": -4.83,
  5442. "curve": [ 1.356, -4.83, 1.444, 1.8 ]
  5443. },
  5444. {
  5445. "time": 1.5333,
  5446. "value": 1.8,
  5447. "curve": [ 1.633, 1.8, 1.733, -5.88 ]
  5448. },
  5449. {
  5450. "time": 1.8333,
  5451. "value": -5.88,
  5452. "curve": [ 1.934, -5.88, 2.034, -3.84 ]
  5453. },
  5454. { "time": 2.1333, "value": -3.84, "curve": "stepped" },
  5455. {
  5456. "time": 2.5667,
  5457. "value": -3.84,
  5458. "curve": [ 2.633, -3.84, 2.7, 5.97 ]
  5459. },
  5460. {
  5461. "time": 2.7667,
  5462. "value": 5.97,
  5463. "curve": [ 2.844, 5.97, 2.922, 0 ]
  5464. },
  5465. { "time": 3 }
  5466. ]
  5467. },
  5468. "skirt-side-rotator-l": {
  5469. "rotate": [
  5470. {
  5471. "curve": [ 0.056, 0, 0.111, 1.3 ]
  5472. },
  5473. {
  5474. "time": 0.1667,
  5475. "value": 1.3,
  5476. "curve": [ 0.256, 1.3, 0.344, 0 ]
  5477. },
  5478. { "time": 0.4333, "curve": "stepped" },
  5479. {
  5480. "time": 1.0333,
  5481. "curve": [ 1.111, 0, 1.189, -4.83 ]
  5482. },
  5483. {
  5484. "time": 1.2667,
  5485. "value": -4.83,
  5486. "curve": [ 1.356, -4.83, 1.444, 1.8 ]
  5487. },
  5488. {
  5489. "time": 1.5333,
  5490. "value": 1.8,
  5491. "curve": [ 1.633, 1.8, 1.733, -5.88 ]
  5492. },
  5493. {
  5494. "time": 1.8333,
  5495. "value": -5.88,
  5496. "curve": [ 1.934, -5.88, 2.034, -3.84 ]
  5497. },
  5498. { "time": 2.1333, "value": -3.84, "curve": "stepped" },
  5499. {
  5500. "time": 2.5667,
  5501. "value": -3.84,
  5502. "curve": [ 2.633, -3.84, 2.7, 5.97 ]
  5503. },
  5504. {
  5505. "time": 2.7667,
  5506. "value": 5.97,
  5507. "curve": [ 2.844, 5.97, 2.922, 0 ]
  5508. },
  5509. { "time": 3 }
  5510. ]
  5511. }
  5512. }
  5513. },
  5514. "emotes/tongue-out": {
  5515. "slots": {
  5516. "eye-r": {
  5517. "attachment": [
  5518. { "name": "eye-closed-happy" }
  5519. ]
  5520. },
  5521. "mouth": {
  5522. "attachment": [
  5523. { "name": "mouth-toungue-sticking-out" }
  5524. ]
  5525. }
  5526. },
  5527. "bones": {
  5528. "arm-holder-r": {
  5529. "rotate": [
  5530. { "value": 116.7 }
  5531. ]
  5532. },
  5533. "arm-down-r": {
  5534. "rotate": [
  5535. { "value": 59.22 },
  5536. { "time": 0.4667, "value": 87.36 },
  5537. { "time": 0.9667, "value": 59.22 }
  5538. ]
  5539. },
  5540. "head-base": {
  5541. "translate": [
  5542. { "x": -9.72 }
  5543. ]
  5544. },
  5545. "arm-up-r": {
  5546. "rotate": [
  5547. {},
  5548. { "time": 0.4667, "value": -15.25 },
  5549. { "time": 0.9667 }
  5550. ]
  5551. },
  5552. "face-holder": {
  5553. "translate": [
  5554. {
  5555. "x": -3.52,
  5556. "curve": [ 0.09, -1.77, 0.178, 0, 0.09, 0, 0.178, 0 ]
  5557. },
  5558. {
  5559. "time": 0.2667,
  5560. "curve": [ 0.411, 0, 0.556, -7.05, 0.411, 0, 0.556, 0 ]
  5561. },
  5562. {
  5563. "time": 0.7,
  5564. "x": -7.05,
  5565. "curve": [ 0.789, -7.05, 0.879, -5.3, 0.789, 0, 0.879, 0 ]
  5566. },
  5567. { "time": 0.9667, "x": -3.52 }
  5568. ]
  5569. },
  5570. "hips": {
  5571. "translate": [
  5572. { "y": -6.18 }
  5573. ]
  5574. },
  5575. "leg-up-r": {
  5576. "scale": [
  5577. { "x": 0.962 }
  5578. ]
  5579. },
  5580. "leg-up-l": {
  5581. "scale": [
  5582. { "x": 0.963 }
  5583. ]
  5584. },
  5585. "eyebrow-l": {
  5586. "rotate": [
  5587. { "value": 5.14 }
  5588. ]
  5589. },
  5590. "eyebrow-r": {
  5591. "rotate": [
  5592. { "value": -12.64 }
  5593. ]
  5594. },
  5595. "arm-up-l": {
  5596. "rotate": [
  5597. { "value": 29.18 }
  5598. ]
  5599. },
  5600. "arm-down-l": {
  5601. "rotate": [
  5602. { "value": -40.21 }
  5603. ]
  5604. },
  5605. "arm-holder-l": {
  5606. "translate": [
  5607. { "x": -4.91, "y": 9.64 }
  5608. ]
  5609. }
  5610. }
  5611. },
  5612. "emotes/wave": {
  5613. "slots": {
  5614. "eye-l": {
  5615. "attachment": [
  5616. { "name": "eye-reverse-v" }
  5617. ]
  5618. },
  5619. "eye-r": {
  5620. "attachment": [
  5621. { "name": "eye-reverse-v" }
  5622. ]
  5623. },
  5624. "mouth": {
  5625. "attachment": [
  5626. { "name": "mouth-open-smile" }
  5627. ]
  5628. }
  5629. },
  5630. "bones": {
  5631. "arm-holder-r": {
  5632. "rotate": [
  5633. { "value": 135.9 }
  5634. ]
  5635. },
  5636. "hips": {
  5637. "rotate": [
  5638. { "value": 3.07 }
  5639. ],
  5640. "translate": [
  5641. { "x": 30.87 },
  5642. { "time": 0.4667, "x": 21.09 },
  5643. { "time": 1, "x": 30.87 }
  5644. ]
  5645. },
  5646. "body-up": {
  5647. "rotate": [
  5648. { "value": 3.61 }
  5649. ]
  5650. },
  5651. "arm-up-l": {
  5652. "rotate": [
  5653. { "value": 19.06 }
  5654. ]
  5655. },
  5656. "head-base": {
  5657. "rotate": [
  5658. { "value": -12.08 },
  5659. { "time": 0.4333, "value": -8.52 },
  5660. { "time": 1, "value": -12.08 }
  5661. ]
  5662. },
  5663. "arm-down-l": {
  5664. "rotate": [
  5665. { "value": 15.72 }
  5666. ]
  5667. },
  5668. "arm-down-r": {
  5669. "rotate": [
  5670. {
  5671. "value": -13.86,
  5672. "curve": [ 0.034, -15.04, 0.078, -16.03 ]
  5673. },
  5674. {
  5675. "time": 0.1333,
  5676. "value": -16.03,
  5677. "curve": [ 0.474, -16.03, 0.227, 20.49 ]
  5678. },
  5679. {
  5680. "time": 0.6333,
  5681. "value": 20.49,
  5682. "curve": [ 0.928, 20.49, 0.783, -6.42 ]
  5683. },
  5684. { "time": 1, "value": -13.86 }
  5685. ]
  5686. },
  5687. "arm-up-r": {
  5688. "rotate": [
  5689. {
  5690. "value": -27.78,
  5691. "curve": [ 0.341, -27.78, 0.093, 36.52 ]
  5692. },
  5693. {
  5694. "time": 0.5,
  5695. "value": 36.52,
  5696. "curve": [ 0.586, 36.52, 0.65, 31.09 ]
  5697. },
  5698. {
  5699. "time": 0.7,
  5700. "value": 24.92,
  5701. "curve": [ 0.848, 6.76, 0.876, -27.78 ]
  5702. },
  5703. { "time": 1, "value": -27.78 }
  5704. ]
  5705. },
  5706. "leg-up-r": {
  5707. "scale": [
  5708. {},
  5709. { "time": 0.4667, "x": 0.982 },
  5710. { "time": 1 }
  5711. ]
  5712. },
  5713. "eyebrow-l": {
  5714. "rotate": [
  5715. { "value": 2.4 }
  5716. ]
  5717. },
  5718. "eyebrow-r": {
  5719. "rotate": [
  5720. { "value": 3.59 }
  5721. ]
  5722. },
  5723. "face-holder": {
  5724. "translate": [
  5725. {
  5726. "x": 0.27,
  5727. "y": -2.83,
  5728. "curve": [ 0.045, 0.35, 0.089, 0.4, 0.045, -3.65, 0.089, -4.25 ]
  5729. },
  5730. {
  5731. "time": 0.1333,
  5732. "x": 0.4,
  5733. "y": -4.25,
  5734. "curve": [ 0.278, 0.4, 0.422, -0.54, 0.278, -4.25, 0.422, 5.67 ]
  5735. },
  5736. {
  5737. "time": 0.5667,
  5738. "x": -0.54,
  5739. "y": 5.67,
  5740. "curve": [ 0.711, -0.54, 0.856, 0.01, 0.711, 5.67, 0.856, -0.11 ]
  5741. },
  5742. { "time": 1, "x": 0.27, "y": -2.83 }
  5743. ]
  5744. }
  5745. }
  5746. },
  5747. "movement/idle-back": {
  5748. "bones": {
  5749. "arm-holder-l": {
  5750. "rotate": [
  5751. { "value": -14.37 }
  5752. ]
  5753. },
  5754. "arm-holder-r": {
  5755. "rotate": [
  5756. { "value": 16.93 }
  5757. ]
  5758. },
  5759. "arm-down-l": {
  5760. "rotate": [
  5761. { "value": 6.94 }
  5762. ]
  5763. },
  5764. "arm-down-r": {
  5765. "rotate": [
  5766. { "value": 5.94 }
  5767. ]
  5768. },
  5769. "body-up": {
  5770. "translate": [
  5771. {
  5772. "curve": [ 0.156, 0, 0.311, 0, 0.162, 0.08, 0.298, 5.1 ]
  5773. },
  5774. {
  5775. "time": 0.4667,
  5776. "y": 5.05,
  5777. "curve": [ 0.744, 0, 1.022, 0, 0.756, 4.97, 0.998, 0.03 ]
  5778. },
  5779. { "time": 1.3 }
  5780. ]
  5781. },
  5782. "head-base": {
  5783. "translate": [
  5784. {
  5785. "x": 0.49,
  5786. "curve": [ 0.101, 0.22, 0.2, 0, 0.101, 0, 0.2, 0 ]
  5787. },
  5788. {
  5789. "time": 0.3,
  5790. "curve": [ 0.478, 0, 0.656, 1.44, 0.478, 0, 0.656, 0 ]
  5791. },
  5792. {
  5793. "time": 0.8333,
  5794. "x": 1.44,
  5795. "curve": [ 0.989, 1.44, 1.145, 0.91, 0.989, 0, 1.145, 0 ]
  5796. },
  5797. { "time": 1.3, "x": 0.49 }
  5798. ]
  5799. },
  5800. "face-holder": {
  5801. "translate": [
  5802. {
  5803. "x": 0.19,
  5804. "curve": [ 0.033, 0.08, 0.067, 0, 0.033, 0, 0.067, 0 ]
  5805. },
  5806. {
  5807. "time": 0.1,
  5808. "curve": [ 0.311, 0, 0.522, 2.87, 0.311, 0, 0.522, 0 ]
  5809. },
  5810. {
  5811. "time": 0.7333,
  5812. "x": 2.87,
  5813. "curve": [ 0.922, 2.87, 1.111, 0.81, 0.922, 0, 1.111, 0 ]
  5814. },
  5815. { "time": 1.3, "x": 0.19 }
  5816. ]
  5817. },
  5818. "hips": {
  5819. "translate": [
  5820. {
  5821. "curve": [ 0.044, 0.26, 0.089, 0, 0.044, 0, 0.089, 0 ]
  5822. },
  5823. { "time": 0.1333, "curve": "stepped" },
  5824. {
  5825. "time": 0.7667,
  5826. "curve": [ 0.944, 0, 1.122, -1.02, 0.944, 0, 1.122, 0 ]
  5827. },
  5828. { "time": 1.3 }
  5829. ]
  5830. }
  5831. },
  5832. "drawOrder": [
  5833. {
  5834. "offsets": [
  5835. { "slot": "shield", "offset": 60 },
  5836. { "slot": "hat-border-back", "offset": 56 },
  5837. { "slot": "back-hair", "offset": 52 },
  5838. { "slot": "back-hair-long", "offset": 51 },
  5839. { "slot": "sword", "offset": 53 },
  5840. { "slot": "leg-l", "offset": 2 },
  5841. { "slot": "body", "offset": 34 },
  5842. { "slot": "hair-side-r", "offset": -25 },
  5843. { "slot": "hair-side-l", "offset": -25 },
  5844. { "slot": "hat-top", "offset": 27 },
  5845. { "slot": "strawberries-decoration", "offset": -30 },
  5846. { "slot": "arm-r", "offset": -38 },
  5847. { "slot": "glove-r", "offset": -38 },
  5848. { "slot": "arm-l", "offset": -37 },
  5849. { "slot": "arm-decoration-r", "offset": -39 },
  5850. { "slot": "glove-l", "offset": -37 },
  5851. { "slot": "arm-decoration-l", "offset": -39 },
  5852. { "slot": "bracelet-r", "offset": -34 },
  5853. { "slot": "arm-shoulder-decoration-r", "offset": -34 },
  5854. { "slot": "arm-shoulder-decoration-l", "offset": -17 }
  5855. ]
  5856. }
  5857. ]
  5858. },
  5859. "movement/idle-front": {
  5860. "bones": {
  5861. "arm-holder-l": {
  5862. "rotate": [
  5863. { "value": -14.37 }
  5864. ]
  5865. },
  5866. "arm-holder-r": {
  5867. "rotate": [
  5868. { "value": 16.93 }
  5869. ]
  5870. },
  5871. "arm-down-l": {
  5872. "rotate": [
  5873. { "value": 6.94 }
  5874. ]
  5875. },
  5876. "arm-down-r": {
  5877. "rotate": [
  5878. { "value": 5.94 }
  5879. ]
  5880. },
  5881. "body-up": {
  5882. "translate": [
  5883. {
  5884. "curve": [ 0.156, 0, 0.311, 0, 0.162, 0.08, 0.298, 5.1 ]
  5885. },
  5886. {
  5887. "time": 0.4667,
  5888. "y": 5.05,
  5889. "curve": [ 0.744, 0, 1.022, 0, 0.756, 4.97, 0.998, 0.03 ]
  5890. },
  5891. { "time": 1.3 }
  5892. ]
  5893. },
  5894. "head-base": {
  5895. "translate": [
  5896. {
  5897. "x": 0.49,
  5898. "curve": [ 0.101, 0.22, 0.2, 0, 0.101, 0, 0.2, 0 ]
  5899. },
  5900. {
  5901. "time": 0.3,
  5902. "curve": [ 0.478, 0, 0.656, 1.44, 0.478, 0, 0.656, 0 ]
  5903. },
  5904. {
  5905. "time": 0.8333,
  5906. "x": 1.44,
  5907. "curve": [ 0.989, 1.44, 1.145, 0.91, 0.989, 0, 1.145, 0 ]
  5908. },
  5909. { "time": 1.3, "x": 0.49 }
  5910. ]
  5911. },
  5912. "face-holder": {
  5913. "translate": [
  5914. {
  5915. "x": 0.19,
  5916. "curve": [ 0.033, 0.08, 0.067, 0, 0.033, 0, 0.067, 0 ]
  5917. },
  5918. {
  5919. "time": 0.1,
  5920. "curve": [ 0.311, 0, 0.522, 2.87, 0.311, 0, 0.522, 0 ]
  5921. },
  5922. {
  5923. "time": 0.7333,
  5924. "x": 2.87,
  5925. "curve": [ 0.922, 2.87, 1.111, 0.81, 0.922, 0, 1.111, 0 ]
  5926. },
  5927. { "time": 1.3, "x": 0.19 }
  5928. ]
  5929. },
  5930. "hips": {
  5931. "translate": [
  5932. {
  5933. "curve": [ 0.044, 0.26, 0.089, 0, 0.044, 0, 0.089, 0 ]
  5934. },
  5935. { "time": 0.1333, "curve": "stepped" },
  5936. {
  5937. "time": 0.7667,
  5938. "curve": [ 0.944, 0, 1.122, -1.02, 0.944, 0, 1.122, 0 ]
  5939. },
  5940. { "time": 1.3 }
  5941. ]
  5942. }
  5943. }
  5944. },
  5945. "movement/idle-left": {
  5946. "bones": {
  5947. "face-holder": {
  5948. "translate": [
  5949. {
  5950. "x": 1.08,
  5951. "y": -21.07,
  5952. "curve": [ 0.033, 0.97, 0.067, 0.89, 0.033, -21.07, 0.067, -21.07 ]
  5953. },
  5954. {
  5955. "time": 0.1,
  5956. "x": 0.89,
  5957. "y": -21.07,
  5958. "curve": [ 0.311, 0.89, 0.522, 3.76, 0.311, -21.07, 0.522, -21.07 ]
  5959. },
  5960. {
  5961. "time": 0.7333,
  5962. "x": 3.76,
  5963. "y": -21.07,
  5964. "curve": [ 0.922, 3.76, 1.111, 1.7, 0.922, -21.07, 1.111, -21.07 ]
  5965. },
  5966. { "time": 1.3, "x": 1.08, "y": -21.07 }
  5967. ]
  5968. },
  5969. "body-up": {
  5970. "rotate": [
  5971. { "value": -2.42 }
  5972. ],
  5973. "translate": [
  5974. {},
  5975. {
  5976. "time": 0.4667,
  5977. "y": 5.05,
  5978. "curve": [ 0.744, 0, 1.022, 0, 0.756, 4.97, 0.998, 0.03 ]
  5979. },
  5980. { "time": 1.3 }
  5981. ]
  5982. },
  5983. "leg-l": {
  5984. "translate": [
  5985. { "x": -22.43 }
  5986. ]
  5987. },
  5988. "leg-target-l": {
  5989. "translate": [
  5990. { "x": -22.43 }
  5991. ]
  5992. },
  5993. "leg-r": {
  5994. "translate": [
  5995. { "x": 22.43 }
  5996. ]
  5997. },
  5998. "leg-target-r": {
  5999. "translate": [
  6000. { "x": 22.43 }
  6001. ]
  6002. },
  6003. "arm-holder-r": {
  6004. "translate": [
  6005. { "y": 16.44 }
  6006. ]
  6007. },
  6008. "arm-holder-l": {
  6009. "translate": [
  6010. { "y": -16.44 }
  6011. ]
  6012. },
  6013. "head-base": {
  6014. "translate": [
  6015. { "x": 0.49 },
  6016. {
  6017. "time": 0.3,
  6018. "curve": [ 0.478, 0, 0.656, 1.44, 0.478, 0, 0.656, 0 ]
  6019. },
  6020. {
  6021. "time": 0.8333,
  6022. "x": 1.44,
  6023. "curve": [ 0.989, 1.44, 1.145, 0.91, 0.989, 0, 1.145, 0 ]
  6024. },
  6025. { "time": 1.3, "x": 0.49 }
  6026. ]
  6027. }
  6028. },
  6029. "drawOrder": [
  6030. {
  6031. "offsets": [
  6032. { "slot": "leg-r", "offset": 4 },
  6033. { "slot": "leg-decoration-r", "offset": 4 },
  6034. { "slot": "arm-r", "offset": -36 },
  6035. { "slot": "glove-r", "offset": -36 },
  6036. { "slot": "arm-decoration-r", "offset": -33 },
  6037. { "slot": "bracelet-r", "offset": -35 },
  6038. { "slot": "arm-shoulder-decoration-r", "offset": -35 }
  6039. ]
  6040. }
  6041. ]
  6042. },
  6043. "movement/idle-right": {
  6044. "bones": {
  6045. "face-holder": {
  6046. "translate": [
  6047. {
  6048. "x": -0.36,
  6049. "y": 12.97,
  6050. "curve": [ 0.033, -0.47, 0.067, -0.55, 0.033, 12.97, 0.067, 12.97 ]
  6051. },
  6052. {
  6053. "time": 0.1,
  6054. "x": -0.55,
  6055. "y": 12.97,
  6056. "curve": [ 0.311, -0.55, 0.522, 2.32, 0.311, 12.97, 0.522, 12.97 ]
  6057. },
  6058. {
  6059. "time": 0.7333,
  6060. "x": 2.32,
  6061. "y": 12.97,
  6062. "curve": [ 0.922, 2.32, 1.111, 0.26, 0.922, 12.97, 1.111, 12.97 ]
  6063. },
  6064. { "time": 1.3, "x": -0.36, "y": 12.97 }
  6065. ]
  6066. },
  6067. "body-up": {
  6068. "rotate": [
  6069. { "value": -2.42 }
  6070. ],
  6071. "translate": [
  6072. {},
  6073. {
  6074. "time": 0.4667,
  6075. "y": 5.05,
  6076. "curve": [ 0.744, 0, 1.022, 0, 0.756, 4.97, 0.998, 0.03 ]
  6077. },
  6078. { "time": 1.3 }
  6079. ]
  6080. },
  6081. "leg-l": {
  6082. "translate": [
  6083. { "x": -22.43 }
  6084. ]
  6085. },
  6086. "leg-target-l": {
  6087. "translate": [
  6088. { "x": -22.43 }
  6089. ]
  6090. },
  6091. "leg-r": {
  6092. "translate": [
  6093. { "x": 22.43 }
  6094. ]
  6095. },
  6096. "leg-target-r": {
  6097. "translate": [
  6098. { "x": 22.43 }
  6099. ]
  6100. },
  6101. "arm-holder-r": {
  6102. "translate": [
  6103. { "y": 16.44 }
  6104. ]
  6105. },
  6106. "arm-holder-l": {
  6107. "translate": [
  6108. { "y": -16.44 }
  6109. ]
  6110. },
  6111. "head-base": {
  6112. "translate": [
  6113. { "x": 0.49 },
  6114. {
  6115. "time": 0.3,
  6116. "curve": [ 0.478, 0, 0.656, 1.44, 0.478, 0, 0.656, 0 ]
  6117. },
  6118. {
  6119. "time": 0.8333,
  6120. "x": 1.44,
  6121. "curve": [ 0.989, 1.44, 1.145, 0.91, 0.989, 0, 1.145, 0 ]
  6122. },
  6123. { "time": 1.3, "x": 0.49 }
  6124. ]
  6125. }
  6126. },
  6127. "drawOrder": [
  6128. {
  6129. "offsets": [
  6130. { "slot": "arm-l", "offset": -45 },
  6131. { "slot": "glove-l", "offset": -33 },
  6132. { "slot": "arm-decoration-l", "offset": -45 },
  6133. { "slot": "bracelet-l", "offset": -36 },
  6134. { "slot": "arm-shoulder-decoration-l", "offset": -39 }
  6135. ]
  6136. }
  6137. ]
  6138. },
  6139. "movement/trot-back": {
  6140. "bones": {
  6141. "face-holder": {
  6142. "translate": [
  6143. { "x": -0.94, "y": -6.02 },
  6144. { "time": 0.1, "x": -26.02, "y": -11.65 },
  6145. { "time": 0.4, "x": 7.21, "y": -13.42 },
  6146. { "time": 0.5, "x": -0.94, "y": -6.02 },
  6147. { "time": 0.6, "x": -26.69, "y": 4.32 },
  6148. { "time": 0.9, "x": 6.23, "y": 9.77 },
  6149. { "time": 1, "x": -0.94, "y": -6.02 }
  6150. ]
  6151. },
  6152. "hips": {
  6153. "translate": [
  6154. {
  6155. "y": -32.81,
  6156. "curve": [ 0.056, 0, 0.111, 0, 0.127, -32.81, 0.037, 99.38 ]
  6157. },
  6158. {
  6159. "time": 0.1667,
  6160. "y": 99.38,
  6161. "curve": [ 0.278, 0, 0.389, 0, 0.491, 99.38, 0.417, -9.45 ]
  6162. },
  6163. {
  6164. "time": 0.5,
  6165. "y": -32.81,
  6166. "curve": [ 0.556, 0, 0.611, 0, 0.622, -67.33, 0.537, 99.38 ]
  6167. },
  6168. {
  6169. "time": 0.6667,
  6170. "y": 99.38,
  6171. "curve": [ 0.778, 0, 0.889, 0, 0.991, 99.38, 0.917, -9.45 ]
  6172. },
  6173. { "time": 1, "y": -32.81 }
  6174. ],
  6175. "scale": [
  6176. { "x": 1.183, "y": 0.922 },
  6177. { "time": 0.1667 },
  6178. { "time": 0.4, "x": 0.95, "y": 1.05 },
  6179. { "time": 0.5, "x": 1.183, "y": 0.922 },
  6180. { "time": 0.6667 },
  6181. { "time": 0.9, "x": 0.95, "y": 1.05 },
  6182. { "time": 1, "x": 1.183, "y": 0.922 }
  6183. ]
  6184. },
  6185. "arm-up-r": {
  6186. "rotate": [
  6187. {
  6188. "value": 18.96,
  6189. "curve": [ 0.079, -11, 0.156, 40.71 ]
  6190. },
  6191. {
  6192. "time": 0.2333,
  6193. "value": 40.71,
  6194. "curve": [ 0.4, 40.71, 0.47, 30.34 ]
  6195. },
  6196. {
  6197. "time": 0.5,
  6198. "value": 18.96,
  6199. "curve": [ 0.579, -11, 0.656, 40.71 ]
  6200. },
  6201. {
  6202. "time": 0.7333,
  6203. "value": 40.71,
  6204. "curve": [ 0.9, 40.71, 0.965, 32.33 ]
  6205. },
  6206. { "time": 1, "value": 18.96 }
  6207. ]
  6208. },
  6209. "arm-up-l": {
  6210. "rotate": [
  6211. {
  6212. "value": 18.96,
  6213. "curve": [ 0.079, -11, 0.156, 40.71 ]
  6214. },
  6215. {
  6216. "time": 0.2333,
  6217. "value": 40.71,
  6218. "curve": [ 0.4, 40.71, 0.47, 30.34 ]
  6219. },
  6220. {
  6221. "time": 0.5,
  6222. "value": 18.96,
  6223. "curve": [ 0.579, -11, 0.656, 40.71 ]
  6224. },
  6225. {
  6226. "time": 0.7333,
  6227. "value": 40.71,
  6228. "curve": [ 0.9, 40.71, 0.965, 32.33 ]
  6229. },
  6230. { "time": 1, "value": 18.96 }
  6231. ]
  6232. },
  6233. "arm-down-l": {
  6234. "rotate": [
  6235. {},
  6236. { "time": 0.1333, "value": -15.16 },
  6237. { "time": 0.4, "value": 24.89 },
  6238. { "time": 0.5 },
  6239. { "time": 0.6333, "value": -15.16 },
  6240. { "time": 0.9, "value": 24.89 },
  6241. { "time": 1 }
  6242. ]
  6243. },
  6244. "arm-down-r": {
  6245. "rotate": [
  6246. {},
  6247. { "time": 0.1333, "value": -15.16 },
  6248. { "time": 0.4, "value": 24.89 },
  6249. { "time": 0.5 },
  6250. { "time": 0.6333, "value": -15.16 },
  6251. { "time": 0.9, "value": 24.89 },
  6252. { "time": 1 }
  6253. ]
  6254. },
  6255. "skirt-side-rotator-l": {
  6256. "rotate": [
  6257. { "value": -21.87 },
  6258. { "time": 0.3, "value": 7.67 },
  6259. { "time": 0.5, "value": -21.87 },
  6260. { "time": 0.8, "value": 7.67 },
  6261. { "time": 1, "value": -21.87 }
  6262. ],
  6263. "translate": [
  6264. {},
  6265. { "time": 0.1, "x": -33.6, "y": -1.42 },
  6266. { "time": 0.2333, "x": 23.4, "y": 0.99 },
  6267. { "time": 0.5 },
  6268. { "time": 0.6, "x": -33.6, "y": -1.42 },
  6269. { "time": 0.7333, "x": 23.4, "y": 0.99 },
  6270. { "time": 1 }
  6271. ]
  6272. },
  6273. "skirt-side-rotator-r": {
  6274. "rotate": [
  6275. { "value": 21.03 },
  6276. { "time": 0.3, "value": -6.78 },
  6277. { "time": 0.5, "value": 21.03 },
  6278. { "time": 0.8, "value": -6.78 },
  6279. { "time": 1, "value": 21.03 }
  6280. ],
  6281. "translate": [
  6282. {},
  6283. { "time": 0.1, "x": -33.6, "y": -1.42 },
  6284. { "time": 0.2333, "x": 23.4, "y": 0.99 },
  6285. { "time": 0.5 },
  6286. { "time": 0.6, "x": -33.6, "y": -1.42 },
  6287. { "time": 0.7333, "x": 23.4, "y": 0.99 },
  6288. { "time": 1 }
  6289. ]
  6290. },
  6291. "skirt-middle": {
  6292. "translate": [
  6293. {},
  6294. { "time": 0.2667, "x": 92.01, "y": 1.36 },
  6295. { "time": 0.5 },
  6296. { "time": 0.7667, "x": 92.01, "y": 1.36 },
  6297. { "time": 1 }
  6298. ],
  6299. "scale": [
  6300. {},
  6301. { "time": 0.2667, "x": 1.038, "y": 0.087 },
  6302. { "time": 0.5 },
  6303. { "time": 0.7667, "x": 1.038, "y": 0.087 },
  6304. { "time": 1 }
  6305. ]
  6306. },
  6307. "hair-back-long-middle": {
  6308. "rotate": [
  6309. {
  6310. "value": 0.7,
  6311. "curve": [ 0.068, -5.23, 0.134, -18.44 ]
  6312. },
  6313. {
  6314. "time": 0.2,
  6315. "value": -18.44,
  6316. "curve": [ 0.367, -18.44, 0.533, 20.95 ]
  6317. },
  6318. {
  6319. "time": 0.7,
  6320. "value": 20.95,
  6321. "curve": [ 0.801, 20.95, 0.9, 9.45 ]
  6322. },
  6323. { "time": 1, "value": 0.7 }
  6324. ],
  6325. "translate": [
  6326. { "x": -15.75, "y": -0.66 },
  6327. { "time": 0.1667, "x": 100.07, "y": 4.22 },
  6328. { "time": 0.4333, "x": -62.08, "y": -2.62 },
  6329. { "time": 0.6667, "x": 100.07, "y": 4.22 },
  6330. { "time": 0.9333, "x": -62.08, "y": -2.62 },
  6331. { "time": 1, "x": -15.75, "y": -0.66 }
  6332. ],
  6333. "scale": [
  6334. { "y": 1.041 },
  6335. { "time": 0.1667, "x": 1.091, "y": 0.902 },
  6336. { "time": 0.3333 },
  6337. { "time": 0.5, "y": 1.041 },
  6338. { "time": 0.6667, "x": 1.091, "y": 0.902 },
  6339. { "time": 0.8333 },
  6340. { "time": 1, "y": 1.041 }
  6341. ]
  6342. },
  6343. "hair-back-long-middle-down": {
  6344. "rotate": [
  6345. {
  6346. "value": 0.82,
  6347. "curve": [ 0.067, -4.05, 0.134, -14.9 ]
  6348. },
  6349. {
  6350. "time": 0.2,
  6351. "value": -20.46,
  6352. "curve": [ 0.257, -25.02, 0.312, -25.01 ]
  6353. },
  6354. {
  6355. "time": 0.3667,
  6356. "value": -25.01,
  6357. "curve": [ 0.533, -25.01, 0.7, 27.36 ]
  6358. },
  6359. {
  6360. "time": 0.8667,
  6361. "value": 27.36,
  6362. "curve": [ 0.911, 27.36, 0.956, 4.04 ]
  6363. },
  6364. { "time": 1, "value": 0.82 }
  6365. ],
  6366. "scale": [
  6367. {},
  6368. { "time": 0.1667, "y": 1.041 },
  6369. { "time": 0.3333, "x": 1.091, "y": 0.902 },
  6370. { "time": 0.5 },
  6371. { "time": 0.6667, "y": 1.041 },
  6372. { "time": 0.8333, "x": 1.091, "y": 0.902 },
  6373. { "time": 1 }
  6374. ]
  6375. },
  6376. "hair-front": {
  6377. "rotate": [
  6378. { "value": -6.24 },
  6379. { "time": 0.2, "value": 38.69 },
  6380. { "time": 0.5, "value": -6.24 },
  6381. { "time": 0.7, "value": 38.69 },
  6382. { "time": 1, "value": -6.24 }
  6383. ],
  6384. "translate": [
  6385. { "x": -40.65, "y": -1.72 },
  6386. { "time": 0.4, "x": 9.44, "y": 0.4 },
  6387. { "time": 0.5, "x": -40.65, "y": -1.72 },
  6388. { "time": 0.9, "x": 9.44, "y": 0.4 },
  6389. { "time": 1, "x": -40.65, "y": -1.72 }
  6390. ]
  6391. },
  6392. "leg-up-r": {
  6393. "scale": [
  6394. { "x": 0.805 },
  6395. { "time": 0.3333, "x": 0.745 },
  6396. { "time": 0.6667, "x": 1.308 },
  6397. { "time": 1, "x": 0.805 }
  6398. ]
  6399. },
  6400. "leg-up-l": {
  6401. "scale": [
  6402. { "x": 1.027 },
  6403. { "time": 0.1667, "x": 1.308 },
  6404. { "time": 0.5, "x": 0.805 },
  6405. { "time": 0.8333, "x": 0.745 },
  6406. { "time": 1, "x": 1.027 }
  6407. ]
  6408. },
  6409. "shadow": {
  6410. "scale": [
  6411. {
  6412. "curve": [ 0.067, 1, 0.133, 0.667, 0.067, 1, 0.133, 0.667 ]
  6413. },
  6414. {
  6415. "time": 0.2,
  6416. "x": 0.667,
  6417. "y": 0.667,
  6418. "curve": [ 0.3, 0.667, 0.4, 1, 0.3, 0.667, 0.4, 1 ]
  6419. },
  6420. {
  6421. "time": 0.5,
  6422. "curve": [ 0.567, 1, 0.633, 0.667, 0.567, 1, 0.633, 0.667 ]
  6423. },
  6424. {
  6425. "time": 0.7,
  6426. "x": 0.667,
  6427. "y": 0.667,
  6428. "curve": [ 0.8, 0.667, 0.9, 1, 0.8, 0.667, 0.9, 1 ]
  6429. },
  6430. { "time": 1 }
  6431. ]
  6432. }
  6433. },
  6434. "ik": {
  6435. "leg-target-l": [
  6436. {},
  6437. { "time": 0.2333, "mix": 0 },
  6438. { "time": 0.5 },
  6439. { "time": 0.7333, "mix": 0 },
  6440. { "time": 1 }
  6441. ],
  6442. "leg-target-r": [
  6443. {},
  6444. { "time": 0.2333, "mix": 0 },
  6445. { "time": 0.5 },
  6446. { "time": 0.7333, "mix": 0 },
  6447. { "time": 1 }
  6448. ]
  6449. },
  6450. "drawOrder": [
  6451. {
  6452. "offsets": [
  6453. { "slot": "shield", "offset": 60 },
  6454. { "slot": "hat-border-back", "offset": 56 },
  6455. { "slot": "back-hair", "offset": 52 },
  6456. { "slot": "back-hair-long", "offset": 51 },
  6457. { "slot": "sword", "offset": 53 },
  6458. { "slot": "leg-l", "offset": -1 },
  6459. { "slot": "body", "offset": 30 },
  6460. { "slot": "hair-side-r", "offset": -25 },
  6461. { "slot": "hair-side-l", "offset": -25 },
  6462. { "slot": "hat-top", "offset": 27 },
  6463. { "slot": "strawberries-decoration", "offset": -30 },
  6464. { "slot": "arm-r", "offset": -38 },
  6465. { "slot": "glove-r", "offset": -38 },
  6466. { "slot": "arm-decoration-r", "offset": -39 },
  6467. { "slot": "bracelet-r", "offset": -37 },
  6468. { "slot": "arm-shoulder-decoration-r", "offset": -37 }
  6469. ]
  6470. },
  6471. {
  6472. "time": 0.5,
  6473. "offsets": [
  6474. { "slot": "shield", "offset": 60 },
  6475. { "slot": "back-hair", "offset": 52 },
  6476. { "slot": "back-hair-long", "offset": 51 },
  6477. { "slot": "sword", "offset": 53 },
  6478. { "slot": "body", "offset": 30 },
  6479. { "slot": "hair-side-r", "offset": -25 },
  6480. { "slot": "hair-side-l", "offset": -25 },
  6481. { "slot": "hat-border", "offset": 27 },
  6482. { "slot": "hat-top", "offset": 27 },
  6483. { "slot": "strawberries-decoration", "offset": -18 },
  6484. { "slot": "arm-l", "offset": -40 },
  6485. { "slot": "glove-l", "offset": -40 },
  6486. { "slot": "arm-decoration-l", "offset": -42 },
  6487. { "slot": "bracelet-l", "offset": -38 },
  6488. { "slot": "arm-shoulder-decoration-l", "offset": -40 }
  6489. ]
  6490. }
  6491. ]
  6492. },
  6493. "movement/trot-front": {
  6494. "bones": {
  6495. "face-holder": {
  6496. "translate": [
  6497. { "x": -0.94, "y": -6.02 },
  6498. { "time": 0.1, "x": -26.02, "y": -11.65 },
  6499. { "time": 0.4, "x": 7.21, "y": -13.42 },
  6500. { "time": 0.5, "x": -0.94, "y": -6.02 },
  6501. { "time": 0.6, "x": -26.69, "y": 4.32 },
  6502. { "time": 0.9, "x": 6.23, "y": 9.77 },
  6503. { "time": 1, "x": -0.94, "y": -6.02 }
  6504. ]
  6505. },
  6506. "hips": {
  6507. "translate": [
  6508. {
  6509. "y": -32.81,
  6510. "curve": [ 0.056, 0, 0.111, 0, 0.127, -32.81, 0.037, 99.38 ]
  6511. },
  6512. {
  6513. "time": 0.1667,
  6514. "y": 99.38,
  6515. "curve": [ 0.278, 0, 0.389, 0, 0.491, 99.38, 0.417, -9.45 ]
  6516. },
  6517. {
  6518. "time": 0.5,
  6519. "y": -32.81,
  6520. "curve": [ 0.556, 0, 0.611, 0, 0.622, -67.33, 0.537, 99.38 ]
  6521. },
  6522. {
  6523. "time": 0.6667,
  6524. "y": 99.38,
  6525. "curve": [ 0.778, 0, 0.889, 0, 0.991, 99.38, 0.917, -9.45 ]
  6526. },
  6527. { "time": 1, "y": -32.81 }
  6528. ],
  6529. "scale": [
  6530. { "x": 1.183, "y": 0.922 },
  6531. { "time": 0.1667 },
  6532. { "time": 0.4, "x": 0.95, "y": 1.05 },
  6533. { "time": 0.5, "x": 1.183, "y": 0.922 },
  6534. { "time": 0.6667 },
  6535. { "time": 0.9, "x": 0.95, "y": 1.05 },
  6536. { "time": 1, "x": 1.183, "y": 0.922 }
  6537. ]
  6538. },
  6539. "arm-up-r": {
  6540. "rotate": [
  6541. {
  6542. "value": 18.96,
  6543. "curve": [ 0.079, -11, 0.156, 40.71 ]
  6544. },
  6545. {
  6546. "time": 0.2333,
  6547. "value": 40.71,
  6548. "curve": [ 0.4, 40.71, 0.47, 30.34 ]
  6549. },
  6550. {
  6551. "time": 0.5,
  6552. "value": 18.96,
  6553. "curve": [ 0.579, -11, 0.656, 40.71 ]
  6554. },
  6555. {
  6556. "time": 0.7333,
  6557. "value": 40.71,
  6558. "curve": [ 0.9, 40.71, 0.965, 32.33 ]
  6559. },
  6560. { "time": 1, "value": 18.96 }
  6561. ]
  6562. },
  6563. "arm-up-l": {
  6564. "rotate": [
  6565. {
  6566. "value": 18.96,
  6567. "curve": [ 0.079, -11, 0.156, 40.71 ]
  6568. },
  6569. {
  6570. "time": 0.2333,
  6571. "value": 40.71,
  6572. "curve": [ 0.4, 40.71, 0.47, 30.34 ]
  6573. },
  6574. {
  6575. "time": 0.5,
  6576. "value": 18.96,
  6577. "curve": [ 0.579, -11, 0.656, 40.71 ]
  6578. },
  6579. {
  6580. "time": 0.7333,
  6581. "value": 40.71,
  6582. "curve": [ 0.9, 40.71, 0.965, 32.33 ]
  6583. },
  6584. { "time": 1, "value": 18.96 }
  6585. ]
  6586. },
  6587. "arm-down-l": {
  6588. "rotate": [
  6589. {},
  6590. { "time": 0.1333, "value": -15.16 },
  6591. { "time": 0.4, "value": 24.89 },
  6592. { "time": 0.5 },
  6593. { "time": 0.6333, "value": -15.16 },
  6594. { "time": 0.9, "value": 24.89 },
  6595. { "time": 1 }
  6596. ]
  6597. },
  6598. "arm-down-r": {
  6599. "rotate": [
  6600. {},
  6601. { "time": 0.1333, "value": -15.16 },
  6602. { "time": 0.4, "value": 24.89 },
  6603. { "time": 0.5 },
  6604. { "time": 0.6333, "value": -15.16 },
  6605. { "time": 0.9, "value": 24.89 },
  6606. { "time": 1 }
  6607. ]
  6608. },
  6609. "skirt-side-rotator-l": {
  6610. "rotate": [
  6611. { "value": -21.87 },
  6612. { "time": 0.3, "value": 7.67 },
  6613. { "time": 0.5, "value": -21.87 },
  6614. { "time": 0.8, "value": 7.67 },
  6615. { "time": 1, "value": -21.87 }
  6616. ],
  6617. "translate": [
  6618. {},
  6619. { "time": 0.1, "x": -33.6, "y": -1.42 },
  6620. { "time": 0.2333, "x": 23.4, "y": 0.99 },
  6621. { "time": 0.5 },
  6622. { "time": 0.6, "x": -33.6, "y": -1.42 },
  6623. { "time": 0.7333, "x": 23.4, "y": 0.99 },
  6624. { "time": 1 }
  6625. ]
  6626. },
  6627. "skirt-side-rotator-r": {
  6628. "rotate": [
  6629. { "value": 21.03 },
  6630. { "time": 0.3, "value": -6.78 },
  6631. { "time": 0.5, "value": 21.03 },
  6632. { "time": 0.8, "value": -6.78 },
  6633. { "time": 1, "value": 21.03 }
  6634. ],
  6635. "translate": [
  6636. {},
  6637. { "time": 0.1, "x": -33.6, "y": -1.42 },
  6638. { "time": 0.2333, "x": 23.4, "y": 0.99 },
  6639. { "time": 0.5 },
  6640. { "time": 0.6, "x": -33.6, "y": -1.42 },
  6641. { "time": 0.7333, "x": 23.4, "y": 0.99 },
  6642. { "time": 1 }
  6643. ]
  6644. },
  6645. "skirt-middle": {
  6646. "translate": [
  6647. {},
  6648. { "time": 0.2667, "x": 92.01, "y": 1.36 },
  6649. { "time": 0.5 },
  6650. { "time": 0.7667, "x": 92.01, "y": 1.36 },
  6651. { "time": 1 }
  6652. ],
  6653. "scale": [
  6654. {},
  6655. { "time": 0.2667, "x": 1.038, "y": 0.087 },
  6656. { "time": 0.5 },
  6657. { "time": 0.7667, "x": 1.038, "y": 0.087 },
  6658. { "time": 1 }
  6659. ]
  6660. },
  6661. "hair-back-long-middle": {
  6662. "rotate": [
  6663. {
  6664. "value": 0.7,
  6665. "curve": [ 0.068, -5.23, 0.134, -18.44 ]
  6666. },
  6667. {
  6668. "time": 0.2,
  6669. "value": -18.44,
  6670. "curve": [ 0.367, -18.44, 0.533, 20.95 ]
  6671. },
  6672. {
  6673. "time": 0.7,
  6674. "value": 20.95,
  6675. "curve": [ 0.801, 20.95, 0.9, 9.45 ]
  6676. },
  6677. { "time": 1, "value": 0.7 }
  6678. ],
  6679. "translate": [
  6680. { "x": -15.75, "y": -0.66 },
  6681. { "time": 0.1667, "x": 100.07, "y": 4.22 },
  6682. { "time": 0.4333, "x": -62.08, "y": -2.62 },
  6683. { "time": 0.6667, "x": 100.07, "y": 4.22 },
  6684. { "time": 0.9333, "x": -62.08, "y": -2.62 },
  6685. { "time": 1, "x": -15.75, "y": -0.66 }
  6686. ],
  6687. "scale": [
  6688. { "y": 1.041 },
  6689. { "time": 0.1667, "x": 1.091, "y": 0.902 },
  6690. { "time": 0.3333 },
  6691. { "time": 0.5, "y": 1.041 },
  6692. { "time": 0.6667, "x": 1.091, "y": 0.902 },
  6693. { "time": 0.8333 },
  6694. { "time": 1, "y": 1.041 }
  6695. ]
  6696. },
  6697. "hair-back-long-middle-down": {
  6698. "rotate": [
  6699. {
  6700. "value": 0.82,
  6701. "curve": [ 0.067, -4.05, 0.134, -14.9 ]
  6702. },
  6703. {
  6704. "time": 0.2,
  6705. "value": -20.46,
  6706. "curve": [ 0.257, -25.02, 0.312, -25.01 ]
  6707. },
  6708. {
  6709. "time": 0.3667,
  6710. "value": -25.01,
  6711. "curve": [ 0.533, -25.01, 0.7, 27.36 ]
  6712. },
  6713. {
  6714. "time": 0.8667,
  6715. "value": 27.36,
  6716. "curve": [ 0.911, 27.36, 0.956, 4.04 ]
  6717. },
  6718. { "time": 1, "value": 0.82 }
  6719. ],
  6720. "scale": [
  6721. {},
  6722. { "time": 0.1667, "y": 1.041 },
  6723. { "time": 0.3333, "x": 1.091, "y": 0.902 },
  6724. { "time": 0.5 },
  6725. { "time": 0.6667, "y": 1.041 },
  6726. { "time": 0.8333, "x": 1.091, "y": 0.902 },
  6727. { "time": 1 }
  6728. ]
  6729. },
  6730. "hair-front": {
  6731. "rotate": [
  6732. { "value": -6.24 },
  6733. { "time": 0.2, "value": 38.69 },
  6734. { "time": 0.5, "value": -6.24 },
  6735. { "time": 0.7, "value": 38.69 },
  6736. { "time": 1, "value": -6.24 }
  6737. ],
  6738. "translate": [
  6739. { "x": -40.65, "y": -1.72 },
  6740. { "time": 0.4, "x": 9.44, "y": 0.4 },
  6741. { "time": 0.5, "x": -40.65, "y": -1.72 },
  6742. { "time": 0.9, "x": 9.44, "y": 0.4 },
  6743. { "time": 1, "x": -40.65, "y": -1.72 }
  6744. ]
  6745. },
  6746. "leg-up-r": {
  6747. "scale": [
  6748. { "x": 0.805 },
  6749. { "time": 0.3333, "x": 0.745 },
  6750. { "time": 0.6667, "x": 1.308 },
  6751. { "time": 1, "x": 0.805 }
  6752. ]
  6753. },
  6754. "leg-up-l": {
  6755. "scale": [
  6756. { "x": 1.027 },
  6757. { "time": 0.1667, "x": 1.308 },
  6758. { "time": 0.5, "x": 0.805 },
  6759. { "time": 0.8333, "x": 0.745 },
  6760. { "time": 1, "x": 1.027 }
  6761. ]
  6762. },
  6763. "shadow": {
  6764. "scale": [
  6765. {
  6766. "curve": [ 0.067, 1, 0.133, 0.667, 0.067, 1, 0.133, 0.667 ]
  6767. },
  6768. {
  6769. "time": 0.2,
  6770. "x": 0.667,
  6771. "y": 0.667,
  6772. "curve": [ 0.3, 0.667, 0.4, 1, 0.3, 0.667, 0.4, 1 ]
  6773. },
  6774. {
  6775. "time": 0.5,
  6776. "curve": [ 0.567, 1, 0.633, 0.667, 0.567, 1, 0.633, 0.667 ]
  6777. },
  6778. {
  6779. "time": 0.7,
  6780. "x": 0.667,
  6781. "y": 0.667,
  6782. "curve": [ 0.8, 0.667, 0.9, 1, 0.8, 0.667, 0.9, 1 ]
  6783. },
  6784. { "time": 1 }
  6785. ]
  6786. }
  6787. },
  6788. "ik": {
  6789. "leg-target-l": [
  6790. {},
  6791. { "time": 0.2333, "mix": 0 },
  6792. { "time": 0.5 },
  6793. { "time": 0.7333, "mix": 0 },
  6794. { "time": 1 }
  6795. ],
  6796. "leg-target-r": [
  6797. {},
  6798. { "time": 0.2333, "mix": 0 },
  6799. { "time": 0.5 },
  6800. { "time": 0.7333, "mix": 0 },
  6801. { "time": 1 }
  6802. ]
  6803. },
  6804. "drawOrder": [
  6805. {
  6806. "offsets": [
  6807. { "slot": "leg-l", "offset": 0 },
  6808. { "slot": "arm-r", "offset": -36 },
  6809. { "slot": "glove-r", "offset": -36 },
  6810. { "slot": "arm-decoration-r", "offset": -33 },
  6811. { "slot": "bracelet-r", "offset": -35 },
  6812. { "slot": "arm-shoulder-decoration-r", "offset": -35 }
  6813. ]
  6814. },
  6815. {
  6816. "time": 0.5,
  6817. "offsets": [
  6818. { "slot": "arm-l", "offset": -38 },
  6819. { "slot": "glove-l", "offset": -33 },
  6820. { "slot": "arm-decoration-l", "offset": -40 },
  6821. { "slot": "bracelet-l", "offset": -36 },
  6822. { "slot": "arm-shoulder-decoration-l", "offset": -39 }
  6823. ]
  6824. }
  6825. ]
  6826. },
  6827. "movement/trot-left": {
  6828. "bones": {
  6829. "face-holder": {
  6830. "translate": [
  6831. { "y": -28.23 },
  6832. { "time": 0.1, "x": -25.08, "y": -33.86 },
  6833. { "time": 0.4, "x": 8.14, "y": -35.63 },
  6834. { "time": 0.5, "y": -28.23 },
  6835. { "time": 0.6, "x": -25.76, "y": -17.89 },
  6836. { "time": 0.9, "x": 7.17, "y": -12.44 },
  6837. { "time": 1, "y": -28.23 }
  6838. ]
  6839. },
  6840. "body-up": {
  6841. "rotate": [
  6842. { "value": -2.42 }
  6843. ]
  6844. },
  6845. "leg-l": {
  6846. "translate": [
  6847. { "x": -22.43 }
  6848. ]
  6849. },
  6850. "leg-target-l": {
  6851. "translate": [
  6852. { "x": -22.43 },
  6853. { "time": 0.1, "x": -122.43 },
  6854. { "time": 0.3667, "x": 55.34 },
  6855. { "time": 0.6, "x": -177.99 },
  6856. { "time": 0.8667, "x": 110.9 },
  6857. { "time": 1, "x": -22.43 }
  6858. ]
  6859. },
  6860. "leg-r": {
  6861. "translate": [
  6862. { "x": 22.43 }
  6863. ]
  6864. },
  6865. "leg-target-r": {
  6866. "translate": [
  6867. { "x": 22.43 },
  6868. { "time": 0.1, "x": -77.57 },
  6869. { "time": 0.3667, "x": 100.21 },
  6870. { "time": 0.6, "x": -133.12 },
  6871. { "time": 0.8667, "x": 155.77 },
  6872. { "time": 1, "x": 22.43 }
  6873. ]
  6874. },
  6875. "arm-holder-r": {
  6876. "translate": [
  6877. { "y": 16.44 }
  6878. ]
  6879. },
  6880. "arm-holder-l": {
  6881. "translate": [
  6882. { "y": -16.44 }
  6883. ]
  6884. },
  6885. "hips": {
  6886. "translate": [
  6887. {
  6888. "y": -32.81,
  6889. "curve": [ 0.056, 0, 0.111, 0, 0.127, -32.81, 0.037, 99.38 ]
  6890. },
  6891. {
  6892. "time": 0.1667,
  6893. "y": 99.38,
  6894. "curve": [ 0.278, 0, 0.389, 0, 0.491, 99.38, 0.417, -9.45 ]
  6895. },
  6896. {
  6897. "time": 0.5,
  6898. "y": -32.81,
  6899. "curve": [ 0.556, 0, 0.611, 0, 0.622, -67.33, 0.537, 99.38 ]
  6900. },
  6901. {
  6902. "time": 0.6667,
  6903. "y": 99.38,
  6904. "curve": [ 0.778, 0, 0.889, 0, 0.991, 99.38, 0.917, -9.45 ]
  6905. },
  6906. { "time": 1, "y": -32.81 }
  6907. ],
  6908. "scale": [
  6909. { "x": 1.183, "y": 0.922 },
  6910. { "time": 0.1667 },
  6911. { "time": 0.4, "x": 0.95, "y": 1.05 },
  6912. { "time": 0.5, "x": 1.183, "y": 0.922 },
  6913. { "time": 0.6667 },
  6914. { "time": 0.9, "x": 0.95, "y": 1.05 },
  6915. { "time": 1, "x": 1.183, "y": 0.922 }
  6916. ]
  6917. },
  6918. "arm-up-r": {
  6919. "rotate": [
  6920. {
  6921. "value": -9.99,
  6922. "curve": [ 0.079, -39.95, 0.156, -68.58 ]
  6923. },
  6924. {
  6925. "time": 0.2333,
  6926. "value": -68.58,
  6927. "curve": [ 0.4, -68.58, 0.567, 61.43 ]
  6928. },
  6929. {
  6930. "time": 0.7333,
  6931. "value": 61.43,
  6932. "curve": [ 0.823, 61.43, 0.912, 24.71 ]
  6933. },
  6934. { "time": 1, "value": -9.99 }
  6935. ]
  6936. },
  6937. "arm-up-l": {
  6938. "rotate": [
  6939. {
  6940. "value": -9.99,
  6941. "curve": [ 0.079, -39.95, 0.156, -68.58 ]
  6942. },
  6943. {
  6944. "time": 0.2333,
  6945. "value": -68.58,
  6946. "curve": [ 0.4, -68.58, 0.567, 61.43 ]
  6947. },
  6948. {
  6949. "time": 0.7333,
  6950. "value": 61.43,
  6951. "curve": [ 0.823, 61.43, 0.912, 24.71 ]
  6952. },
  6953. { "time": 1, "value": -9.99 }
  6954. ]
  6955. },
  6956. "leg-up-l": {
  6957. "rotate": [
  6958. { "value": -26.36 },
  6959. { "time": 0.1667, "value": -108.28 },
  6960. { "time": 0.5, "value": -26.36 },
  6961. { "time": 0.6667, "value": 32.12 },
  6962. { "time": 1, "value": -26.36 }
  6963. ]
  6964. },
  6965. "leg-down-l": {
  6966. "rotate": [
  6967. { "value": 52.71 },
  6968. { "time": 0.1667, "value": 107.07 },
  6969. { "time": 0.3333, "value": -30.83 },
  6970. { "time": 0.5, "value": 52.71 },
  6971. { "time": 0.6667, "value": 54.49 },
  6972. { "time": 0.8333, "value": 143.39 },
  6973. { "time": 1, "value": 52.71 }
  6974. ]
  6975. },
  6976. "leg-up-r": {
  6977. "rotate": [
  6978. { "value": 26.36 },
  6979. { "time": 0.2333, "value": -22.67 },
  6980. { "time": 0.3333, "value": -43.02 },
  6981. { "time": 0.5, "value": 26.36 },
  6982. { "time": 0.6667, "value": 103.31 },
  6983. { "time": 1, "value": 26.36 }
  6984. ]
  6985. },
  6986. "leg-down-r": {
  6987. "rotate": [
  6988. { "value": -52.71 },
  6989. { "time": 0.2333, "value": -66.64 },
  6990. { "time": 0.3333, "value": -123.3 },
  6991. { "time": 0.5, "value": -52.71 },
  6992. { "time": 0.6667, "value": -95.34 },
  6993. { "time": 0.8333, "value": 18.05 },
  6994. { "time": 1, "value": -52.71 }
  6995. ]
  6996. },
  6997. "arm-down-l": {
  6998. "rotate": [
  6999. {},
  7000. { "time": 0.1333, "value": 17.84 },
  7001. { "time": 0.3667, "value": -41.95 },
  7002. { "time": 0.5 },
  7003. { "time": 0.6333, "value": -41.95 },
  7004. { "time": 0.8667, "value": 17.84 },
  7005. { "time": 1 }
  7006. ]
  7007. },
  7008. "arm-down-r": {
  7009. "rotate": [
  7010. {},
  7011. { "time": 0.1333, "value": 17.84 },
  7012. { "time": 0.3667, "value": -41.95 },
  7013. { "time": 0.5 },
  7014. { "time": 0.6333, "value": -41.95 },
  7015. { "time": 0.8667, "value": 17.84 },
  7016. { "time": 1 }
  7017. ]
  7018. },
  7019. "skirt-side-rotator-l": {
  7020. "rotate": [
  7021. {},
  7022. { "time": 0.3, "value": 37.57 },
  7023. { "time": 0.5 },
  7024. { "time": 0.8, "value": 21.53 },
  7025. { "time": 1 }
  7026. ],
  7027. "translate": [
  7028. {},
  7029. { "time": 0.1, "x": -33.6, "y": -1.42 },
  7030. { "time": 0.2333, "x": 23.4, "y": 0.99 },
  7031. { "time": 0.5 },
  7032. { "time": 0.6, "x": -33.6, "y": -1.42 },
  7033. { "time": 0.7333, "x": 23.4, "y": 0.99 },
  7034. { "time": 1 }
  7035. ]
  7036. },
  7037. "skirt-side-rotator-r": {
  7038. "rotate": [
  7039. {},
  7040. { "time": 0.3, "value": -25 },
  7041. { "time": 0.5 },
  7042. { "time": 0.8, "value": -41.03 },
  7043. { "time": 1 }
  7044. ],
  7045. "translate": [
  7046. {},
  7047. { "time": 0.1, "x": -33.6, "y": -1.42 },
  7048. { "time": 0.2333, "x": 23.4, "y": 0.99 },
  7049. { "time": 0.5 },
  7050. { "time": 0.6, "x": -33.6, "y": -1.42 },
  7051. { "time": 0.7333, "x": 23.4, "y": 0.99 },
  7052. { "time": 1 }
  7053. ]
  7054. },
  7055. "skirt-middle": {
  7056. "translate": [
  7057. {},
  7058. { "time": 0.2667, "x": 32.26, "y": 1.36 },
  7059. { "time": 0.5 },
  7060. { "time": 0.7667, "x": 32.26, "y": 1.36 },
  7061. { "time": 1 }
  7062. ],
  7063. "scale": [
  7064. {},
  7065. { "time": 0.2667, "x": 1.038, "y": 0.087 },
  7066. { "time": 0.5 },
  7067. { "time": 0.7667, "x": 1.038, "y": 0.087 },
  7068. { "time": 1 }
  7069. ]
  7070. },
  7071. "hair-back-long-middle": {
  7072. "rotate": [
  7073. {
  7074. "value": -14,
  7075. "curve": [ 0.068, -19.94, 0.134, -33.14 ]
  7076. },
  7077. {
  7078. "time": 0.2,
  7079. "value": -33.14,
  7080. "curve": [ 0.367, -33.14, 0.533, 6.25 ]
  7081. },
  7082. {
  7083. "time": 0.7,
  7084. "value": 6.25,
  7085. "curve": [ 0.801, 6.25, 0.9, -5.25 ]
  7086. },
  7087. { "time": 1, "value": -14 }
  7088. ],
  7089. "translate": [
  7090. { "x": -15.75, "y": -0.66 },
  7091. { "time": 0.1667, "x": 100.07, "y": 4.22 },
  7092. { "time": 0.4333, "x": -62.08, "y": -2.62 },
  7093. { "time": 0.6667, "x": 100.07, "y": 4.22 },
  7094. { "time": 0.9333, "x": -62.08, "y": -2.62 },
  7095. { "time": 1, "x": -15.75, "y": -0.66 }
  7096. ],
  7097. "scale": [
  7098. { "y": 1.041 },
  7099. { "time": 0.1667, "x": 1.091, "y": 0.902 },
  7100. { "time": 0.3333 },
  7101. { "time": 0.5, "y": 1.041 },
  7102. { "time": 0.6667, "x": 1.091, "y": 0.902 },
  7103. { "time": 0.8333 },
  7104. { "time": 1, "y": 1.041 }
  7105. ]
  7106. },
  7107. "hair-back-long-middle-down": {
  7108. "rotate": [
  7109. {
  7110. "value": 0.82,
  7111. "curve": [ 0.067, -4.05, 0.134, -14.9 ]
  7112. },
  7113. {
  7114. "time": 0.2,
  7115. "value": -20.46,
  7116. "curve": [ 0.257, -25.02, 0.312, -25.01 ]
  7117. },
  7118. {
  7119. "time": 0.3667,
  7120. "value": -25.01,
  7121. "curve": [ 0.533, -25.01, 0.7, 27.36 ]
  7122. },
  7123. {
  7124. "time": 0.8667,
  7125. "value": 27.36,
  7126. "curve": [ 0.911, 27.36, 0.956, 4.04 ]
  7127. },
  7128. { "time": 1, "value": 0.82 }
  7129. ],
  7130. "scale": [
  7131. {},
  7132. { "time": 0.1667, "y": 1.041 },
  7133. { "time": 0.3333, "x": 1.091, "y": 0.902 },
  7134. { "time": 0.5 },
  7135. { "time": 0.6667, "y": 1.041 },
  7136. { "time": 0.8333, "x": 1.091, "y": 0.902 },
  7137. { "time": 1 }
  7138. ]
  7139. },
  7140. "hair-front": {
  7141. "rotate": [
  7142. { "value": -6.24 },
  7143. { "time": 0.2, "value": 38.69 },
  7144. { "time": 0.5, "value": -6.24 },
  7145. { "time": 0.7, "value": 38.69 },
  7146. { "time": 1, "value": -6.24 }
  7147. ],
  7148. "translate": [
  7149. { "x": -40.65, "y": -1.72 },
  7150. { "time": 0.4, "x": 9.44, "y": 0.4 },
  7151. { "time": 0.5, "x": -40.65, "y": -1.72 },
  7152. { "time": 0.9, "x": 9.44, "y": 0.4 },
  7153. { "time": 1, "x": -40.65, "y": -1.72 }
  7154. ]
  7155. },
  7156. "shadow": {
  7157. "scale": [
  7158. {
  7159. "curve": [ 0.067, 1, 0.133, 0.667, 0.067, 1, 0.133, 0.667 ]
  7160. },
  7161. {
  7162. "time": 0.2,
  7163. "x": 0.667,
  7164. "y": 0.667,
  7165. "curve": [ 0.3, 0.667, 0.4, 1, 0.3, 0.667, 0.4, 1 ]
  7166. },
  7167. {
  7168. "time": 0.5,
  7169. "curve": [ 0.567, 1, 0.633, 0.667, 0.567, 1, 0.633, 0.667 ]
  7170. },
  7171. {
  7172. "time": 0.7,
  7173. "x": 0.667,
  7174. "y": 0.667,
  7175. "curve": [ 0.8, 0.667, 0.9, 1, 0.8, 0.667, 0.9, 1 ]
  7176. },
  7177. { "time": 1 }
  7178. ]
  7179. }
  7180. },
  7181. "ik": {
  7182. "leg-target-l": [
  7183. {},
  7184. { "time": 0.2333, "mix": 0 },
  7185. { "time": 0.5 },
  7186. { "time": 0.7333, "mix": 0 },
  7187. { "time": 1 }
  7188. ],
  7189. "leg-target-r": [
  7190. { "bendPositive": false },
  7191. { "time": 0.2333, "mix": 0, "bendPositive": false },
  7192. { "time": 0.5, "bendPositive": false },
  7193. { "time": 0.7333, "mix": 0, "bendPositive": false },
  7194. { "time": 1, "bendPositive": false }
  7195. ]
  7196. },
  7197. "drawOrder": [
  7198. {
  7199. "offsets": [
  7200. { "slot": "leg-r", "offset": 3 },
  7201. { "slot": "leg-decoration-r", "offset": 4 },
  7202. { "slot": "arm-r", "offset": -36 },
  7203. { "slot": "glove-r", "offset": -36 },
  7204. { "slot": "arm-decoration-r", "offset": -33 },
  7205. { "slot": "bracelet-r", "offset": -35 },
  7206. { "slot": "arm-shoulder-decoration-r", "offset": -35 }
  7207. ]
  7208. }
  7209. ]
  7210. },
  7211. "movement/trot-right": {
  7212. "bones": {
  7213. "face-holder": {
  7214. "translate": [
  7215. { "y": 28.23 },
  7216. { "time": 0.1, "x": -25.08, "y": 33.86 },
  7217. { "time": 0.4, "x": 8.14, "y": 35.63 },
  7218. { "time": 0.5, "y": 28.23 },
  7219. { "time": 0.6, "x": -25.76, "y": 17.89 },
  7220. { "time": 0.9, "x": 7.17, "y": 12.44 },
  7221. { "time": 1, "y": 28.23 }
  7222. ]
  7223. },
  7224. "body-up": {
  7225. "rotate": [
  7226. { "value": 2.42 }
  7227. ]
  7228. },
  7229. "leg-l": {
  7230. "translate": [
  7231. { "x": -22.43 }
  7232. ]
  7233. },
  7234. "leg-target-l": {
  7235. "translate": [
  7236. { "x": -22.43 },
  7237. { "time": 0.1, "x": 77.57 },
  7238. { "time": 0.3667, "x": -100.21 },
  7239. { "time": 0.6, "x": 133.12 },
  7240. { "time": 0.8667, "x": -155.77 },
  7241. { "time": 1, "x": -22.43 }
  7242. ]
  7243. },
  7244. "leg-r": {
  7245. "translate": [
  7246. { "x": 22.43 }
  7247. ]
  7248. },
  7249. "leg-target-r": {
  7250. "translate": [
  7251. { "x": 22.43 },
  7252. { "time": 0.1, "x": 122.43 },
  7253. { "time": 0.3667, "x": -55.34 },
  7254. { "time": 0.6, "x": 177.99 },
  7255. { "time": 0.8667, "x": -110.9 },
  7256. { "time": 1, "x": 22.43 }
  7257. ]
  7258. },
  7259. "arm-holder-r": {
  7260. "translate": [
  7261. { "y": 16.44 }
  7262. ]
  7263. },
  7264. "arm-holder-l": {
  7265. "translate": [
  7266. { "y": -16.44 }
  7267. ]
  7268. },
  7269. "hips": {
  7270. "translate": [
  7271. {
  7272. "y": -32.81,
  7273. "curve": [ 0.056, 0, 0.111, 0, 0.127, -32.81, 0.037, 99.38 ]
  7274. },
  7275. {
  7276. "time": 0.1667,
  7277. "y": 99.38,
  7278. "curve": [ 0.278, 0, 0.389, 0, 0.491, 99.38, 0.417, -9.45 ]
  7279. },
  7280. {
  7281. "time": 0.5,
  7282. "y": -32.81,
  7283. "curve": [ 0.556, 0, 0.611, 0, 0.622, -67.33, 0.537, 99.38 ]
  7284. },
  7285. {
  7286. "time": 0.6667,
  7287. "y": 99.38,
  7288. "curve": [ 0.778, 0, 0.889, 0, 0.991, 99.38, 0.917, -9.45 ]
  7289. },
  7290. { "time": 1, "y": -32.81 }
  7291. ],
  7292. "scale": [
  7293. { "x": 1.183, "y": 0.922 },
  7294. { "time": 0.1667 },
  7295. { "time": 0.4, "x": 0.95, "y": 1.05 },
  7296. { "time": 0.5, "x": 1.183, "y": 0.922 },
  7297. { "time": 0.6667 },
  7298. { "time": 0.9, "x": 0.95, "y": 1.05 },
  7299. { "time": 1, "x": 1.183, "y": 0.922 }
  7300. ]
  7301. },
  7302. "arm-up-r": {
  7303. "rotate": [
  7304. {
  7305. "value": -9.99,
  7306. "curve": [ 0.079, -39.95, 0.156, -68.58 ]
  7307. },
  7308. {
  7309. "time": 0.2333,
  7310. "value": -68.58,
  7311. "curve": [ 0.4, -68.58, 0.567, 61.43 ]
  7312. },
  7313. {
  7314. "time": 0.7333,
  7315. "value": 61.43,
  7316. "curve": [ 0.823, 61.43, 0.912, 24.71 ]
  7317. },
  7318. { "time": 1, "value": -9.99 }
  7319. ]
  7320. },
  7321. "arm-up-l": {
  7322. "rotate": [
  7323. {
  7324. "value": -9.99,
  7325. "curve": [ 0.079, -39.95, 0.156, -68.58 ]
  7326. },
  7327. {
  7328. "time": 0.2333,
  7329. "value": -68.58,
  7330. "curve": [ 0.4, -68.58, 0.567, 61.43 ]
  7331. },
  7332. {
  7333. "time": 0.7333,
  7334. "value": 61.43,
  7335. "curve": [ 0.823, 61.43, 0.912, 24.71 ]
  7336. },
  7337. { "time": 1, "value": -9.99 }
  7338. ]
  7339. },
  7340. "arm-down-l": {
  7341. "rotate": [
  7342. {},
  7343. { "time": 0.1333, "value": 17.84 },
  7344. { "time": 0.3667, "value": -41.95 },
  7345. { "time": 0.5 },
  7346. { "time": 0.6333, "value": -41.95 },
  7347. { "time": 0.8667, "value": 17.84 },
  7348. { "time": 1 }
  7349. ]
  7350. },
  7351. "arm-down-r": {
  7352. "rotate": [
  7353. {},
  7354. { "time": 0.1333, "value": 17.84 },
  7355. { "time": 0.3667, "value": -41.95 },
  7356. { "time": 0.5 },
  7357. { "time": 0.6333, "value": -41.95 },
  7358. { "time": 0.8667, "value": 17.84 },
  7359. { "time": 1 }
  7360. ]
  7361. },
  7362. "skirt-side-rotator-l": {
  7363. "rotate": [
  7364. {},
  7365. { "time": 0.3, "value": 37.57 },
  7366. { "time": 0.5 },
  7367. { "time": 0.8, "value": 21.53 },
  7368. { "time": 1 }
  7369. ],
  7370. "translate": [
  7371. {},
  7372. { "time": 0.1, "x": -33.6, "y": -1.42 },
  7373. { "time": 0.2333, "x": 23.4, "y": 0.99 },
  7374. { "time": 0.5 },
  7375. { "time": 0.6, "x": -33.6, "y": -1.42 },
  7376. { "time": 0.7333, "x": 23.4, "y": 0.99 },
  7377. { "time": 1 }
  7378. ]
  7379. },
  7380. "skirt-side-rotator-r": {
  7381. "rotate": [
  7382. {},
  7383. { "time": 0.3, "value": -25 },
  7384. { "time": 0.5 },
  7385. { "time": 0.8, "value": -41.03 },
  7386. { "time": 1 }
  7387. ],
  7388. "translate": [
  7389. {},
  7390. { "time": 0.1, "x": -33.6, "y": -1.42 },
  7391. { "time": 0.2333, "x": 23.4, "y": 0.99 },
  7392. { "time": 0.5 },
  7393. { "time": 0.6, "x": -33.6, "y": -1.42 },
  7394. { "time": 0.7333, "x": 23.4, "y": 0.99 },
  7395. { "time": 1 }
  7396. ]
  7397. },
  7398. "skirt-middle": {
  7399. "translate": [
  7400. {},
  7401. { "time": 0.2667, "x": 32.26, "y": 1.36 },
  7402. { "time": 0.5 },
  7403. { "time": 0.7667, "x": 32.26, "y": 1.36 },
  7404. { "time": 1 }
  7405. ],
  7406. "scale": [
  7407. {},
  7408. { "time": 0.2667, "x": 1.038, "y": 0.087 },
  7409. { "time": 0.5 },
  7410. { "time": 0.7667, "x": 1.038, "y": 0.087 },
  7411. { "time": 1 }
  7412. ]
  7413. },
  7414. "hair-back-long-middle": {
  7415. "rotate": [
  7416. {
  7417. "value": 20,
  7418. "curve": [ 0.068, 14.07, 0.134, 32.94 ]
  7419. },
  7420. {
  7421. "time": 0.2,
  7422. "value": 32.94,
  7423. "curve": [ 0.367, 32.94, 0.533, 6.25 ]
  7424. },
  7425. {
  7426. "time": 0.7,
  7427. "value": 6.25,
  7428. "curve": [ 0.801, 6.25, 0.9, 28.76 ]
  7429. },
  7430. { "time": 1, "value": 20 }
  7431. ],
  7432. "translate": [
  7433. { "x": -15.75, "y": -0.66 },
  7434. { "time": 0.1667, "x": 100.07, "y": 4.22 },
  7435. { "time": 0.4333, "x": -62.08, "y": -2.62 },
  7436. { "time": 0.6667, "x": 100.07, "y": 4.22 },
  7437. { "time": 0.9333, "x": -62.08, "y": -2.62 },
  7438. { "time": 1, "x": -15.75, "y": -0.66 }
  7439. ],
  7440. "scale": [
  7441. { "y": 1.041 },
  7442. { "time": 0.1667, "x": 1.091, "y": 0.902 },
  7443. { "time": 0.3333 },
  7444. { "time": 0.5, "y": 1.041 },
  7445. { "time": 0.6667, "x": 1.091, "y": 0.902 },
  7446. { "time": 0.8333 },
  7447. { "time": 1, "y": 1.041 }
  7448. ]
  7449. },
  7450. "hair-back-long-middle-down": {
  7451. "rotate": [
  7452. {
  7453. "value": 0.82,
  7454. "curve": [ 0.067, -4.05, 0.134, 44.68 ]
  7455. },
  7456. {
  7457. "time": 0.2,
  7458. "value": 39.13,
  7459. "curve": [ 0.257, 34.56, 0.312, 25.73 ]
  7460. },
  7461. {
  7462. "time": 0.3667,
  7463. "value": 25.73,
  7464. "curve": [ 0.533, 25.73, 0.7, -27.73 ]
  7465. },
  7466. {
  7467. "time": 0.8667,
  7468. "value": -27.73,
  7469. "curve": [ 0.911, -27.73, 0.956, 4.04 ]
  7470. },
  7471. { "time": 1, "value": 0.82 }
  7472. ],
  7473. "scale": [
  7474. {},
  7475. { "time": 0.1667, "y": 1.041 },
  7476. { "time": 0.3333, "x": 1.091, "y": 0.902 },
  7477. { "time": 0.5 },
  7478. { "time": 0.6667, "y": 1.041 },
  7479. { "time": 0.8333, "x": 1.091, "y": 0.902 },
  7480. { "time": 1 }
  7481. ]
  7482. },
  7483. "hair-front": {
  7484. "rotate": [
  7485. { "value": 5.9 },
  7486. { "time": 0.2, "value": -48.09 },
  7487. { "time": 0.5, "value": 5.9 },
  7488. { "time": 0.7, "value": -48.09 },
  7489. { "time": 1, "value": 5.9 }
  7490. ],
  7491. "translate": [
  7492. { "x": -40.65, "y": -1.72 },
  7493. { "time": 0.4, "x": 9.44, "y": 0.4 },
  7494. { "time": 0.5, "x": -40.65, "y": -1.72 },
  7495. { "time": 0.7, "x": -15.61, "y": -0.66 },
  7496. { "time": 0.9, "x": 9.44, "y": 0.4 },
  7497. { "time": 1, "x": -40.65, "y": -1.72 }
  7498. ]
  7499. },
  7500. "leg-up-r": {
  7501. "rotate": [
  7502. { "value": -29.03 },
  7503. { "time": 0.1667, "value": -107.85 },
  7504. { "time": 0.3333, "value": -67.91 },
  7505. { "time": 0.5, "value": -29.03 },
  7506. { "time": 0.6667, "value": 31.9 },
  7507. { "time": 0.8333, "value": 2.94 },
  7508. { "time": 1, "value": -29.03 }
  7509. ]
  7510. },
  7511. "leg-down-r": {
  7512. "rotate": [
  7513. { "value": 60.54 },
  7514. { "time": 0.1667, "value": 106.28 },
  7515. { "time": 0.3333, "value": -27.99 },
  7516. { "time": 0.5, "value": 60.54 },
  7517. { "time": 0.6667, "value": 54.29 },
  7518. { "time": 0.8333, "value": 142.77 },
  7519. { "time": 1, "value": 60.54 }
  7520. ]
  7521. },
  7522. "leg-up-l": {
  7523. "rotate": [
  7524. { "value": 31.52 },
  7525. { "time": 0.2333, "value": -23.21 },
  7526. { "time": 0.3333, "value": -43.03 },
  7527. { "time": 0.5, "value": 31.52 },
  7528. { "time": 0.6667, "value": 103.18 },
  7529. { "time": 1, "value": 31.52 }
  7530. ]
  7531. },
  7532. "leg-down-l": {
  7533. "rotate": [
  7534. { "value": -60.54 },
  7535. { "time": 0.2333, "value": -65.01 },
  7536. { "time": 0.3333, "value": -123.15 },
  7537. { "time": 0.5, "value": -60.54 },
  7538. { "time": 0.6667, "value": -95.03 },
  7539. { "time": 0.8333, "value": 12.91 },
  7540. { "time": 1, "value": -60.54 }
  7541. ]
  7542. },
  7543. "shadow": {
  7544. "scale": [
  7545. {
  7546. "curve": [ 0.067, 1, 0.133, 0.667, 0.067, 1, 0.133, 0.667 ]
  7547. },
  7548. {
  7549. "time": 0.2,
  7550. "x": 0.667,
  7551. "y": 0.667,
  7552. "curve": [ 0.3, 0.667, 0.4, 1, 0.3, 0.667, 0.4, 1 ]
  7553. },
  7554. {
  7555. "time": 0.5,
  7556. "curve": [ 0.567, 1, 0.633, 0.667, 0.567, 1, 0.633, 0.667 ]
  7557. },
  7558. {
  7559. "time": 0.7,
  7560. "x": 0.667,
  7561. "y": 0.667,
  7562. "curve": [ 0.8, 0.667, 0.9, 1, 0.8, 0.667, 0.9, 1 ]
  7563. },
  7564. { "time": 1 }
  7565. ]
  7566. }
  7567. },
  7568. "ik": {
  7569. "leg-target-l": [
  7570. { "bendPositive": false },
  7571. { "time": 0.2333, "mix": 0, "bendPositive": false },
  7572. { "time": 0.5, "bendPositive": false },
  7573. { "time": 0.7333, "mix": 0, "bendPositive": false },
  7574. { "time": 1, "bendPositive": false }
  7575. ],
  7576. "leg-target-r": [
  7577. {},
  7578. { "time": 0.2333, "mix": 0 },
  7579. { "time": 0.5 },
  7580. { "time": 0.7333, "mix": 0 },
  7581. { "time": 1 }
  7582. ]
  7583. },
  7584. "drawOrder": [
  7585. {
  7586. "offsets": [
  7587. { "slot": "arm-l", "offset": -45 },
  7588. { "slot": "glove-l", "offset": -33 },
  7589. { "slot": "arm-decoration-l", "offset": -45 },
  7590. { "slot": "bracelet-l", "offset": -36 },
  7591. { "slot": "arm-shoulder-decoration-l", "offset": -39 }
  7592. ]
  7593. }
  7594. ]
  7595. }
  7596. }
  7597. }